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

https://github.com/oskaritimperi/plag

Photo Location As GeoJSON
https://github.com/oskaritimperi/plag

cli geojson photo rust

Last synced: 23 days ago
JSON representation

Photo Location As GeoJSON

Awesome Lists containing this project

README

        

# Photo Location As GeoJSON

This little tool will extract GPS coordinates from your photos and use the locations to create
GeoJSON.

Using the tool is simple. You just give the filenames of your photos as arguments and you will get
GeoJSON on stdout:

```
$ ./plag --pretty photo1.jpg photo2.jpg
{
"features": [
{
"geometry": {
"coordinates": [
-121.06083333333333,
48.47138888888889
],
"type": "Point"
},
"properties": {},
"type": "Feature"
},
{
"geometry": {
"coordinates": [
-122.70194444444445,
45.51888888888889
],
"type": "Point"
},
"properties": {},
"type": "Feature"
}
],
"type": "FeatureCollection"
}
```