Adding Z values to an existing polygon

5613
3
Jump to solution
03-16-2018 10:11 PM
janehansen
New Contributor III

Hi I have been asked to include a z value for polygons which have already been created. Is this possible, and is it possible to add z values when there are no elevation or vertical values in the attribute table?

Thank

Jane

0 Kudos
1 Solution

Accepted Solutions
DanPatterson_Retired
MVP Emeritus

You can't retro-fit an existing featureclass, but you probably could create a new one and copy the existing 2D geometry over and define how z is to be assigned

http://pro.arcgis.com/en/pro-app/help/editing/create-polygon-features.htm

http://pro.arcgis.com/en/pro-app/help/editing/specify-an-elevation-for-3d-features.htm

beyond this some operations that require a z value simply need a field in the attribute table.  You would have to provide values for it but that field can be used for such things as extruding polygons.

View solution in original post

3 Replies
DanPatterson_Retired
MVP Emeritus

You can't retro-fit an existing featureclass, but you probably could create a new one and copy the existing 2D geometry over and define how z is to be assigned

http://pro.arcgis.com/en/pro-app/help/editing/create-polygon-features.htm

http://pro.arcgis.com/en/pro-app/help/editing/specify-an-elevation-for-3d-features.htm

beyond this some operations that require a z value simply need a field in the attribute table.  You would have to provide values for it but that field can be used for such things as extruding polygons.

janehansen
New Contributor III

Thanks once again for your help Dan. Very helpful!

Jane

XanderBakker
Esri Esteemed Contributor

In case you would be interested in doing some python coding, I have a blog post here that explains how to set Z values: https://community.esri.com/people/xander_bakker/blog/2016/07/08/working-with-3d-and-m-aware-geometri...