Geopoint from Exif

537
2
Jump to solution
10-02-2018 07:41 PM
PeterTimmers
Occasional Contributor III

Can you construct a geopoint from the latitude and longitude from the exif information?

0 Kudos
1 Solution

Accepted Solutions
JamesTedrick
Esri Esteemed Contributor

Hi Peter,

Yes you can do so using pulldata('@exif') (see Media—Survey123 for ArcGIS | ArcGIS) to retrieve the values and then calculating them into the geopoint question (Geopoints—Survey123 for ArcGIS | ArcGIS) .

View solution in original post

2 Replies
JamesTedrick
Esri Esteemed Contributor

Hi Peter,

Yes you can do so using pulldata('@exif') (see Media—Survey123 for ArcGIS | ArcGIS) to retrieve the values and then calculating them into the geopoint question (Geopoints—Survey123 for ArcGIS | ArcGIS) .

PeterTimmers
Occasional Contributor III

Thanks for pointing me to the pages.  It must have been something hidden in the Excel sheet because I was using the following and it wasn't working.

pulldata("@exif", ${PHOTO}, "gpslatitude") + " " + pulldata("@exif", ${PHOTO}, "gpslongitude")

And now it is...  Thanks

0 Kudos