How do you UPDATE a row's geometry? #80
-
SQL UPDATE Statements work on all columns except the geometry (SHAPE) column. What is the proper syntax to update (replace) the value of a row's geometry column? Also, Is there a way to name the geometry column something other than SHAPE when creating a new Feature Class? |
Beta Was this translation helpful? Give feedback.
Answered by
jlhumber
Oct 18, 2024
Replies: 1 comment 1 reply
-
Take a look at this commit -- I just now added this to ensure it was working as expected. As for creating a Feature Class with a geometry column other than |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jlhumber
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Take a look at this commit -- I just now added this to ensure it was working as expected.
As for creating a Feature Class with a geometry column other than
SHAPE
, it is not supported at the moment. I have added #82 to address this.