exif-geojson

Generate a GeoJSON Point from EXIF GPS data

Usage no npm install needed!

<script type="module">
  import exifGeojson from 'https://cdn.skypack.dev/exif-geojson';
</script>

README

exif-geojson

Build Status Dependency Status Download Status Sponsor on GitHub

A ES2017 function to generate a GeoJSON Point from EXIF GPS data.

This function is meant to be used with exif or exif-async.

Installation

npm install --save exif-geojson exif-async

Usage

const exifGeojson = require('exif-geojson');
const getExif = require('exif-async');

(async function() {
    try {
        const exif = await getExif('./photo_exif.jpg');
        const point = exifGeojson(exif);
        console.log(point);
    } catch {
        console.log('No location data found');
    }
})();

License

MIT