pjdohertygis / SARCOP

This is a GitHub page for recording and resolving issues related to SARCOP.
https://nsargc.napsgfoundation.org/
GNU General Public License v3.0
10 stars 0 forks source link

Add Unique ID for Waypoints #148

Closed CLivingstone closed 3 years ago

CLivingstone commented 3 years ago

The need for a clear way to refer to specific waypoints, coming out of Surfside building collapse response. Must be displayed in S123 so field teams can note ID down. (USNG not reliably unique.)

CLivingstone commented 3 years ago

Example solution provided by Alix: image

CLivingstone commented 3 years ago

Test of solution using Alix's method: image

grover556 commented 3 years ago

ObjectID might be a smidge easier (fireman friendly) - it's sequential and only uses numbers.

CLivingstone commented 3 years ago

Thanks @grover556, that was considered. However a feature's Object ID is created only when it reaches AGOL (i.e. when the survey is submitted), so it is not possible to display the Object ID in a new survey. See this Esri community thread.

pjdohertygis commented 3 years ago

Also, they want to be able to take field notes for human remains, rescues, etc but not down the unique ID at time of entry. We always wanted to just use USNG for this, but on the Surfside Collapse they’re in tight quarters, some USNG will be duplicate.

Then the problem with Object ID is they’ll only know it once they submit it. We will expose ObjectID elsewhere but we need something that will help in the field pre-entry.

On Wed, Jun 30, 2021 at 08:41 CLivingstone @.***> wrote:

Thanks @grover556 https://github.com/grover556, that was considered. However a feature's Object ID is created only when it reaches AGOL (i.e. when the survey is submitted), so it is not possible to display the Object ID in a new survey. See this Esri community thread https://community.esri.com/t5/arcgis-survey123-questions/pull-objectid-survey123/td-p/772166 .

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/pjdohertygis/WideAreaSearchTemplates/issues/148#issuecomment-871465178, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABAPJU6HFKTAPXV4ZZUEJ3DTVMUJJANCNFSM47SHSRPA .

-- Sent from Gmail Mobile

CLivingstone commented 3 years ago

The change described above has been implemented.

pjdohertygis commented 2 years ago

I have added this to the NAPSG Sandbox now as well, also included the syntax for the inbox to show the unique ID on the 2nd line if(${followup_status}='assigned',concat("",${usng}, " ", "Type: ", ${waypoint}, " ", ${PointID},""),if(${followup_status}='needs_followup',concat("",${usng}, " ", "Type: ", ${waypoint}," ", ${PointID},""),concat("",${usng}, " ", "Type: ", ${waypoint}, " ", ${PointID},"")))

image

image