Hey @SeanKMcGinnis
I'm struggling to obtain the Lat/Long as decimal degrees from my features despite them being available in the JSON. Here's my issue:
- Feature Service1 in AGOL is in Spatial Reference: 3857 (WGS84 Web Mercator (Auxiliary Sphere)). The unit is set to display Meters.
- Feature Service2 in AGOL also in Spatial Reference: 3857 (WGS84 Web Mercator (Auxiliary Sphere)). The unit is set to display Meters.
- Using ArcGIS for Power Automate for each new record in FS1 I wish to create a new record in FS2.
- I set the geometry for the new feature in FS2 to be the geometry from the latest feature in FS1.
- The geometry for FS1 gets recorded in AGOL as 3857. This is shown in the 'Extent' values for the feature service:

- Using the dynamic content functions within ArcGIS for MS Power Automate Connector to pull 'lat' or 'long' values for FS1 or 2 I'm getting Meters values back. This may be expected behaviour, but...
- If I query the (geo)JSON and obtain the full feature, not just what the ArcGIS for MS Power Automate Connector returns, I can see that the feature's coordinates as recorded in AGOL are listed in Decimal Degrees:
Therefore: - Is it expected behaviour that using the dynamic content functions within ArcGIS for MS Power Automate Connector to pull 'lat' or 'long' values returns them in the units specified within the feature service?
- How do I actually get the values used by AGOL (decimal degrees) using the ArcGIS for MS Power Automate Connector to pull 'lat' or 'long' functions? I'm presently having to query the whole features geoJSON and parse out the {coordinates} shown above.