img_coords 0.1.3

Rust binary to scan a directory tree for images and collect their coordinates from EXIF
img_coords-0.1.3 is not a library.
Visit the last successful build: img_coords-0.1.8

ImageCoordinates

This executable can scan a directory tree on your disk, find all images with EXIF data containing coordinates, and collect them into a single file. Output can be either GeoJSON (default), or KML. JSON also contains the camera direction, if available in EXIF.

Installation

cargo install img_coords

, or download the binaries for your platform from the release

, or checkout and build the repo manually

Uninstall

cargo uninstall img_coords

Example

Write a KML file to STDOUT:

img_coords scan --dir SOME_ROOT_DIRECTORY --format kml

Use a previously generated KML file and only scan/add files not in there:

img_coords scan --dir SOME_ROOT_DIRECTORY --format kml --update EXISTING.KML

Use find command (can be faster than the build-in scan command in some cases) to generate a file list:

find SOME_ROOT_DIRECTORY | img_coords import --format kml

Run img_coords or img_coords scan to get help.