diff --git a/README.md b/README.md index d46bd5d..0bd2b88 100644 --- a/README.md +++ b/README.md @@ -87,11 +87,11 @@ pip install lap # a bug in lap/poetry/conda that lap needs to be installed usin ### Start Spatialyze Geospatial Metadata Store [MobilityDB](https://github.com/MobilityDB/MobilityDB) ```bash docker volume create spatialyze-gs-store-data -docker run --name "spatialyze-gs-store" \ - -d \ - -p 25432:5432 \ - -v spatialyze-gs-store-data:/var/lib/postgresql \ - mobilitydb/mobilitydb +docker run --name "spatialyze-gs-store" \ + --detach \ + --publish 25432:5432 \ + --volume spatialyze-gs-store-data:/var/lib/postgresql \ + mobilitydb/mobilitydb ``` Setup the MobilityDB with customized functions ```bash @@ -104,7 +104,7 @@ To run MobilityDB every system restart docker update --restart unless-stopped spatialyze-gs-store ``` -### Try the demo. +### Try the demo (WIP 🚧) In spatialyze repo: ```sh jupyter-lab @@ -116,11 +116,11 @@ The demo notebook first constructs the world. Then it queries for the trajectory This paper is currently under review for [VLDB](https://vldb.org/2024/). ```bib @misc{kittivorawong2023spatialyze, - title={Spatialyze: A Geospatial Video Analytics System with Spatial-Aware Optimizations}, - author={Chanwut Kittivorawong and Yongming Ge and Yousef Helal and Alvin Cheung}, - year={2023}, - eprint={2308.03276}, - archivePrefix={arXiv}, - primaryClass={cs.DB} + title={Spatialyze: A Geospatial Video Analytics System with Spatial-Aware Optimizations}, + author={Chanwut Kittivorawong and Yongming Ge and Yousef Helal and Alvin Cheung}, + year={2023}, + eprint={2308.03276}, + archivePrefix={arXiv}, + primaryClass={cs.DB} } ``` diff --git a/data/amber_videos/traffic-overhead.mp4 b/data/amber_videos/traffic-overhead.mp4 deleted file mode 100644 index 3662419..0000000 Binary files a/data/amber_videos/traffic-overhead.mp4 and /dev/null differ diff --git a/data/amber_videos/traffic-scene-mini.mp4 b/data/amber_videos/traffic-scene-mini.mp4 deleted file mode 100644 index cb985f7..0000000 Binary files a/data/amber_videos/traffic-scene-mini.mp4 and /dev/null differ diff --git a/data/amber_videos/traffic-scene-shorter.mp4 b/data/amber_videos/traffic-scene-shorter.mp4 deleted file mode 100644 index 27a886c..0000000 Binary files a/data/amber_videos/traffic-scene-shorter.mp4 and /dev/null differ diff --git a/data/amber_videos/traffic-scene.mp4 b/data/amber_videos/traffic-scene.mp4 deleted file mode 100644 index 9314276..0000000 Binary files a/data/amber_videos/traffic-scene.mp4 and /dev/null differ diff --git a/data/h264_videos/BirdsInCage_h264.mp4 b/data/h264_videos/BirdsInCage_h264.mp4 deleted file mode 100644 index 62f3935..0000000 Binary files a/data/h264_videos/BirdsInCage_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/CrowdRun_h264.mp4 b/data/h264_videos/CrowdRun_h264.mp4 deleted file mode 100644 index d0bd566..0000000 Binary files a/data/h264_videos/CrowdRun_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/ElFuente1_h264.mp4 b/data/h264_videos/ElFuente1_h264.mp4 deleted file mode 100644 index 9a6ce8d..0000000 Binary files a/data/h264_videos/ElFuente1_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/ElFuente2_h264.mp4 b/data/h264_videos/ElFuente2_h264.mp4 deleted file mode 100644 index 1edfbbb..0000000 Binary files a/data/h264_videos/ElFuente2_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/OldTownCross_h264.mp4 b/data/h264_videos/OldTownCross_h264.mp4 deleted file mode 100644 index cd7b69f..0000000 Binary files a/data/h264_videos/OldTownCross_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/Seeking_h264.mp4 b/data/h264_videos/Seeking_h264.mp4 deleted file mode 100644 index a0ba254..0000000 Binary files a/data/h264_videos/Seeking_h264.mp4 and /dev/null differ diff --git a/data/h264_videos/Tennis_h264.mp4 b/data/h264_videos/Tennis_h264.mp4 deleted file mode 100644 index d9fa343..0000000 Binary files a/data/h264_videos/Tennis_h264.mp4 and /dev/null differ diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 8e1887d..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,23 +0,0 @@ -version: '2.3' -services: - mobilitydb: - # image to fetch from docker hub - image: mobilitydb/mobilitydb - ports: - - "25432:5432" - volumes: - - "mobilitydb_data:/var/lib/postgresql" - networks: - vpcbr: - ipv4_address: 172.19.0.3 - -volumes: - mobilitydb_data: - -networks: - vpcbr: - driver: bridge - ipam: - config: - - subnet: 172.19.0.0/16 - gateway: 172.19.0.1