I observe that Arcade can be used to READ a feature geometry. It can be used to CREATE a feature geometry. But, is there a way to UPDATE a feature geometry? Can I alter a point's X and Y values through Arcade?
Solved! Go to Solution.
No, Arcade cannot be used to modify geometry in a dataset.
The only Arcade profile which allows edits is Field Calculate. However, modifying the SHAPE field will only result in data corruption.
You should instead look into Python and specifically ArcPy as this scripting language has powerful geometry editing capabilities.
Updates to geometry in any environment are done in an edit session
No, Arcade cannot be used to modify geometry in a dataset.
The only Arcade profile which allows edits is Field Calculate. However, modifying the SHAPE field will only result in data corruption.
You should instead look into Python and specifically ArcPy as this scripting language has powerful geometry editing capabilities.
May be late to the party here but this functionality exists. Here is some documentation for you.