Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kamataryo/exif-plotter


https://github.com/kamataryo/exif-plotter

Last synced: about 2 months ago
JSON representation

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
```