<?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 Re: How do I convert altitude to Mean Sea Level altitude? in ArcGIS Runtime SDK for Android Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208599#M1380</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;Nathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vertical datum transformations are not currently supported in the Runtime. Calling the `project` method will only transform the horizontal coordinates between two different datums or spatial references.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are, however, a number of vertical coordinate transformations available in our desktop software ArcGIS Pro that can handle this for you. Here's a link you may find helpful:&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/help/mapping/properties/vertical-coordinate-systems.htm" title="https://pro.arcgis.com/en/pro-app/help/mapping/properties/vertical-coordinate-systems.htm"&gt;Vertical coordinate systems—Properties of maps | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To vertically transform between WGS 1984 and EGM 2008, I believe you'd&amp;nbsp;require geographic transformation WKID `110018` or `110019`.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Mar 2019 22:36:01 GMT</pubDate>
    <dc:creator>MikeWilburn</dc:creator>
    <dc:date>2019-03-21T22:36:01Z</dc:date>
    <item>
      <title>How do I convert altitude to Mean Sea Level altitude?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208597#M1378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For whatever dumb reason, Android location altitude is WS84 altitude and not the one which most users expect, which is mean sea level altitude.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I make the conversion with ArcGIS Runtime? From WGS84 to EGM2008 or something.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought I was real smart and could figure it out.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE style="background-color: #ffffff; color: #000000; font-family: 'Menlo'; font-size: 9.0pt;"&gt;&lt;PRE style="background-color: #ffffff; color: #000000; font-family: 'Menlo'; font-size: 9.0pt;"&gt;Geometry vprojected = GeometryEngine.&lt;SPAN style="font-style: italic;"&gt;project&lt;/SPAN&gt;(currentLocation, SpatialReference.&lt;SPAN style="font-style: italic;"&gt;create&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;4326&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;3855&lt;/SPAN&gt;));&lt;/PRE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;This looks like what a reasonable person would do to project to Mean Sea Level. The vertical spatialreference is EGM2008.&lt;/P&gt;&lt;P&gt;It doesn't crash or give any error messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem:&lt;/P&gt;&lt;P&gt;It doesn't change the z value of the point. Not the slightest bit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do I need to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2019 21:31:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208597#M1378</guid>
      <dc:creator>NathanMellor</dc:creator>
      <dc:date>2019-03-01T21:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: How do I convert altitude to Mean Sea Level altitude?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208598#M1379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And in case it comes up:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE style="background-color: #ffffff; color: #000000; font-family: 'Menlo'; font-size: 9.0pt;"&gt;DatumTransformation transform = TransformationCatalog.&lt;SPAN style="font-style: italic;"&gt;getTransformation&lt;/SPAN&gt;(SpatialReference.&lt;SPAN style="font-style: italic;"&gt;create&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;4326&lt;/SPAN&gt;), SpatialReference.&lt;SPAN style="font-style: italic;"&gt;create&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;4326&lt;/SPAN&gt;,&lt;SPAN style="color: #0000ff;"&gt;3855&lt;/SPAN&gt;));&lt;/PRE&gt;&lt;P&gt;returns null. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Mar 2019 22:03:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208598#M1379</guid>
      <dc:creator>NathanMellor</dc:creator>
      <dc:date>2019-03-01T22:03:01Z</dc:date>
    </item>
    <item>
      <title>Re: How do I convert altitude to Mean Sea Level altitude?</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208599#M1380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;Nathan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vertical datum transformations are not currently supported in the Runtime. Calling the `project` method will only transform the horizontal coordinates between two different datums or spatial references.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are, however, a number of vertical coordinate transformations available in our desktop software ArcGIS Pro that can handle this for you. Here's a link you may find helpful:&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/help/mapping/properties/vertical-coordinate-systems.htm" title="https://pro.arcgis.com/en/pro-app/help/mapping/properties/vertical-coordinate-systems.htm"&gt;Vertical coordinate systems—Properties of maps | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To vertically transform between WGS 1984 and EGM 2008, I believe you'd&amp;nbsp;require geographic transformation WKID `110018` or `110019`.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Mar 2019 22:36:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-android-questions/how-do-i-convert-altitude-to-mean-sea-level/m-p/208599#M1380</guid>
      <dc:creator>MikeWilburn</dc:creator>
      <dc:date>2019-03-21T22:36:01Z</dc:date>
    </item>
  </channel>
</rss>

