Skip to main content
Solved

Updating ArcGIS Online Attributes and Not Geometry

  • September 29, 2021
  • 4 replies
  • 225 views

peteratqfes
Contributor
Forum|alt.badge.img+6

Can you update the attributes of a feature without having to upload the geometry to a AGOL hosted feature service?

 

For example, we have a feature service with about 80 features where the geometry for each feature is huge. We want to do daily updates to the attributes and the geometry never changes.

 

There is a work around where you have a non-spatial table and use hosted dynamic joins, but is a little awkward.

Best answer by drc43

This can be done, IF your AGOL hosted feature service is set up to not allow geometry updates (Attribute updates only). When you run the workspace, FME will ignore the geometry and just update the attributes as you have set up on the writer. I'm not sure if this is the right way to do this or not, but it does the job.

 

ignored

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

nielsgerrits
VIP
Forum|alt.badge.img+62

I think this is currently (2021.1) not possible with the AGOL writer. (I think in the SDE writer an option like this exist. Update Spatial: Yes/No)

 

But there are examples using the Python API, like this one, which you can implement using the PythonCaller.

 

Also see Updating features in a feature layer.


drc43
Contributor
Forum|alt.badge.img+12
  • Contributor
  • Best Answer
  • September 29, 2021

This can be done, IF your AGOL hosted feature service is set up to not allow geometry updates (Attribute updates only). When you run the workspace, FME will ignore the geometry and just update the attributes as you have set up on the writer. I'm not sure if this is the right way to do this or not, but it does the job.

 

ignored


nielsgerrits
VIP
Forum|alt.badge.img+62

This can be done, IF your AGOL hosted feature service is set up to not allow geometry updates (Attribute updates only). When you run the workspace, FME will ignore the geometry and just update the attributes as you have set up on the writer. I'm not sure if this is the right way to do this or not, but it does the job.

 

ignored

Nice one!


peteratqfes
Contributor
Forum|alt.badge.img+6
  • Author
  • Contributor
  • September 29, 2021

This can be done, IF your AGOL hosted feature service is set up to not allow geometry updates (Attribute updates only). When you run the workspace, FME will ignore the geometry and just update the attributes as you have set up on the writer. I'm not sure if this is the right way to do this or not, but it does the job.

 

ignored

Thanks for the quick answer.