Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamataryo/exif-plotter
https://github.com/kamataryo/exif-plotter
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kamataryo/exif-plotter
- Owner: kamataryo
- Created: 2022-09-02T00:22:12.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-19T07:43:44.000Z (over 2 years ago)
- Last Synced: 2023-09-17T00:26:26.695Z (over 1 year ago)
- Language: JavaScript
- Size: 2.63 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# EXIF Plotter
A tool to read GPS data from large amount of image files, generate vector tiles and preview it.
## develop and usage
```shell
# build
$ docker build -t kamataryo/exif-plotter .# run
$ docker run \
--rm -v $(pwd)/images:/images \
-v $(pwd)/out:/out \
-p 3000:3000 \
-it kamataryo/exif-plotter# run without exif-reading process
$ docker run \
--env SKIP_EXIF=true \
--rm -v $(pwd)/images:/images \
-v $(pwd)/out:/out \
-p 3000:3000 \
-it kamataryo/exif-plotter
```