<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to check vertical coordinate system ?  in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708349#M54897</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating Python tool box where I am collecting 4 Input raster layer from the user. However I want to check their vertical coordinate system and check whether all the layers have same coordinate system or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Aug 2015 10:30:45 GMT</pubDate>
    <dc:creator>AmeyaNatu1</dc:creator>
    <dc:date>2015-08-19T10:30:45Z</dc:date>
    <item>
      <title>How to check vertical coordinate system ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708349#M54897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating Python tool box where I am collecting 4 Input raster layer from the user. However I want to check their vertical coordinate system and check whether all the layers have same coordinate system or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Aug 2015 10:30:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708349#M54897</guid>
      <dc:creator>AmeyaNatu1</dc:creator>
      <dc:date>2015-08-19T10:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to check vertical coordinate system ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708350#M54898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What have you tried? You will get better results if you present you stage so far so that people can comment on your code or at least the help file reference topics that you have examined.&lt;/P&gt;&lt;P&gt;​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 01:00:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708350#M54898</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-08-20T01:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to check vertical coordinate system ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708351#M54899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3116"&gt;Dan Patterson&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I have tried with 'hasZPrecision' property of spatial reference object but i am not sure whether it is correct. I want to know the vertical coordinate system is present in raster or not. If yes then is it same with others or not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2015 09:21:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708351#M54899</guid>
      <dc:creator>AmeyaNatu1</dc:creator>
      <dc:date>2015-09-01T09:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to check vertical coordinate system ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708352#M54900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried collecting the SpatialReference object of the feature class, exporting it to a string and parsing the string representation for the VERTCS? For example, I created some data that uses Web Mercator and MSL_Height vertical system and it's coordinate system string is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]],&lt;SPAN style="color: #2873ee;"&gt;&lt;STRONG style="color: #2873ee;"&gt;VERTCS['MSL_Height',VDATUM['Mea&lt;/STRONG&gt;&lt;SPAN style="color: #303030;"&gt;&lt;STRONG style="color: #2873ee;"&gt;n_Sea_Level'],&lt;/STRONG&gt;&lt;SPAN style="color: #303030;"&gt;PARAMETER['Vertical_Shift',0.0],PARAMETER['Direction',1.0],UNIT['Meter',1.0]];-20037700 -30241100 10000;-100000 10000;-100000 10000;0.001;0.001;0.001;IsHighPrecision&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030;"&gt;I would assume that most vertical coordinate systems would have these VERTCS and VDATUM tags. If I needed to parse this information I'd just build a regular expression to search for the needed tags or I'd just use python to slice the string to get the portion I need.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2015 16:21:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708352#M54900</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-09-01T16:21:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to check vertical coordinate system ?</title>
      <link>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708353#M54901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Other the identifying of the z parameter, you can search the arcpy tree to see if there is anything direct&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/main/analyze/what-is-geoprocessing.htm" title="http://desktop.arcgis.com/en/desktop/latest/main/analyze/what-is-geoprocessing.htm"&gt;What is geoprocessing?—Help | ArcGIS for Desktop&lt;/A&gt; &lt;/P&gt;&lt;P&gt;I suspect not, so parsing the coordinate system is your only other option​&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Sep 2015 02:55:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/how-to-check-vertical-coordinate-system/m-p/708353#M54901</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2015-09-03T02:55:45Z</dc:date>
    </item>
  </channel>
</rss>

