Select to view content in your preferred language

Coordinate from Survey123 map in report ?

411
2
12-11-2023 06:54 AM
StadtCuxhaven
Emerging Contributor

Hello,

how i can input the coodinate from survery123 map in the report ?

Regards

Sebastian

0 Kudos
2 Replies
GregKeith
Frequent Contributor

How are you getting the coordinate in the survey? You can use pulldata() on a geopoint question to get the x and y and use those fields. Here, sample_location is the name of the geopint question

pulldata("@geopoint", ${sample_location}, "y")

pulldata("@geopoint", ${sample_location}, "x")

abureaux
MVP Frequent Contributor

From your description, I believe @GregKeith is correct.

  1. You'd want two separate calculates in your survey to store the x and y data from a geopoint (both calculates are referenced above).
  2. Then, you'd reference those two questions in your Feature Report to display the location data.

Here are a few other calculates exclusive to geopoints, in case you need them:

abureaux_0-1702319220884.png