Can you think of a way that we can have the latitude and longitude that are collected in Collector show up automatically in lat/long fields?
As it is right now, the workflow goes like this:
My drill crew wants to be able to pull lats and longs automatically from the table in AGOL, but I have to generate these through the calculate geometry tool each time they collect. Any ideas?
Solved! Go to Solution.
You should be able to do this with a Python script using REST services. This blog explains "Using Python to push updates to a hosted feature service from an external source. Instead of the external source, you would query your own data. The process would go something like this:
You can set the script to run a preset times, or it can be run manually.
You should be able to do this with a Python script using REST services. This blog explains "Using Python to push updates to a hosted feature service from an external source. Instead of the external source, you would query your own data. The process would go something like this:
You can set the script to run a preset times, or it can be run manually.
Thanks Randy. I'll explore employing your method.
Thanks again.