<?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: Simply? getting Z values into attribute table in 3D Questions</title>
    <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121493#M721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Eric,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Add XY Coordinates tool will add POINT_Z and POINT_M fields when the input feature is z- and m-enabled. It's located in Data Management Tools &amp;gt; Features.&amp;nbsp; If you don't want the X, Y fields you can delete them and keep just the Z.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In ArcGIS 10, the Calculate Geometry has the option to get the Z for a point dataset.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tested your code sample and it worked fine for me so there is nothing wrong with that.&amp;nbsp; What does your dataset say in the Shape field?&amp;nbsp; And how did the data get the Z values originally?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Sep 2010 20:17:29 GMT</pubDate>
    <dc:creator>EricRice</dc:creator>
    <dc:date>2010-09-13T20:17:29Z</dc:date>
    <item>
      <title>Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121492#M720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This should be really simple and I'm surprized that an hour of looking through the forums and other support hasn't turned up an answer for me yet.&amp;nbsp; Am I just being blind?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have a shapefile of 3D points, and I want to fill a field in the attribute table with the Z values.&amp;nbsp; Calculate Geometry does not offer Z coordinate options.&amp;nbsp; So I've tried using the Field Calculator with&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[INDENT]Dim Output As Double&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pPoint As IPoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim pZAware as IZAware&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pPoint = [Shape]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Set pZAware = pPoint&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;pZAware.ZAware = true&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Output = pPoint.Z&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[/INDENT]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(and variants thereof)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;But all I get for output is the value '1'&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 18:47:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121492#M720</guid>
      <dc:creator>DataSteward</dc:creator>
      <dc:date>2010-09-13T18:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121493#M721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Eric,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The Add XY Coordinates tool will add POINT_Z and POINT_M fields when the input feature is z- and m-enabled. It's located in Data Management Tools &amp;gt; Features.&amp;nbsp; If you don't want the X, Y fields you can delete them and keep just the Z.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In ArcGIS 10, the Calculate Geometry has the option to get the Z for a point dataset.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I tested your code sample and it worked fine for me so there is nothing wrong with that.&amp;nbsp; What does your dataset say in the Shape field?&amp;nbsp; And how did the data get the Z values originally?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 20:17:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121493#M721</guid>
      <dc:creator>EricRice</dc:creator>
      <dc:date>2010-09-13T20:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121494#M722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;"Add XY Coordinates" did the trick!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm at version 9.3.1 - looking forward to 10.&amp;nbsp; My shape field reports "Point ZM".&amp;nbsp; The file originated as a CSV with XYZ values, turned into a shape file with "ASCII 3D to Feature Class". My code may remain a mystery, but the overall problem is solved.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Sep 2010 22:08:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121494#M722</guid>
      <dc:creator>DataSteward</dc:creator>
      <dc:date>2010-09-13T22:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121495#M723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well i have the same problem i tried but i am getting only x,y coordinates, i am using 10.2.2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 17:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121495#M723</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-01-28T17:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121496#M724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the python syntax and write:&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14224656736956136" jivemacro_uid="_14224656736956136"&gt;&lt;P&gt;!Shape!.firstPoint.Z&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More examples here: &lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//005s0000002m000000" title="http://resources.arcgis.com/en/help/main/10.2/index.html#//005s0000002m000000"&gt;ArcGIS Help (10.2, 10.2.1, and 10.2.2)&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 17:21:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121496#M724</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-01-28T17:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121497#M725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;very usefull! any suggestion if i want to create a line with a start and end point which is not drawn at the terrain but as a chord, to get&amp;nbsp; after that the z values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 18:55:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121497#M725</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-01-28T18:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121498#M726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to start a new thread and include some more details about what you're after? Maybe include some sample data or an image that explains the situation?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Xander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 19:17:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121498#M726</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2015-01-28T19:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121499#M727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/thread/120741" style="font-size: 15px; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; color: #287433; background-color: #f8fbfe;"&gt;create line-chord from higher point to lower,is the title, thanks a lot&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 22:02:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121499#M727</guid>
      <dc:creator>KONPETROV</dc:creator>
      <dc:date>2015-01-28T22:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121500#M728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm late to the party but this tool in Pro works great!&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/data-management/add-geometry-attributes.htm"&gt;Add Geometry Attributes—Data Management toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 May 2017 04:25:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121500#M728</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2017-05-16T04:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121501#M729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have the same type of problem and simply cannot believe that this is still an issue.&lt;/P&gt;&lt;P&gt;I have gps data which i have extracted from photo metadata and converted to .kmz using geosetter.&lt;/P&gt;&lt;P&gt;I import this data using the kmz to layer tool and then save the points to a shapefile.&lt;/P&gt;&lt;P&gt;if i select a point the coordinates of the point are shown in the pop-up window in full with x, y and z (altitude).&lt;/P&gt;&lt;P&gt;then i&amp;nbsp;tried both the 'Add XY Coordinates' tool which returned a 0 for all the z values and the 'add geometry attributes' tool which returned a 'null' for all the z values. the XY coordinates were written correctly.&lt;/P&gt;&lt;P&gt;what is the deal? it is 2019, we live in a 3D world. why is this so difficult?&lt;/P&gt;&lt;P&gt;please!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Oct 2019 09:21:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121501#M729</guid>
      <dc:creator>NigelBaker</dc:creator>
      <dc:date>2019-10-14T09:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121502#M730</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/377465"&gt;Nigel Baker&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe first try converting these features to 3D:&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/3d-analyst/feature-to-3d-by-attribute.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/3d-analyst/feature-to-3d-by-attribute.htm"&gt;Feature To 3D By Attribute—Help | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then try getting Z values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Oct 2019 19:15:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121502#M730</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2019-10-16T19:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121503#M731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the tip.&lt;/P&gt;&lt;P&gt;However that tool requires that you have an attribute field for the Z component.&lt;/P&gt;&lt;P&gt;I do not have this… kinda the point of this whole thread!&lt;/P&gt;&lt;P&gt;When I try to generate Z coordinates using update coordinates or some other tool all I get are zeros or nulls.&lt;/P&gt;&lt;P&gt;So either I try this tool before generating the false Z values; and the tool doesn’t run… or I try it after generating the Z field full of zeros and the 3D features are tied to the ground…&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or was there some other way to get the necessary Z values so that this tool can work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Oct 2019 08:16:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121503#M731</guid>
      <dc:creator>NigelBaker</dc:creator>
      <dc:date>2019-10-17T08:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121504#M732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure without trying it myself. I personally would extract the exif data from the photos in order to grab all of the attributes that I would (like x,y, and z), then put those back into the attributes of the point feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Oct 2019 20:34:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121504#M732</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2019-10-22T20:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121505#M733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps i was not clear in my original post.&lt;/P&gt;&lt;P&gt;This was what I did.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.       Extract Exif data from the images using Geosetter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.       Export the data as .kmz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3.       Import then .kmz into ArcGISpro using the ‘kml to layer’ tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.       Save the feature as a shapefile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.       Try to write the Z value to the attribute table by either ‘Add XY coordinates’ or ‘Add geometry attributes’. These tools return either a 1 or a 0 to the attribute. (I also tried this on the feature before saving to shapefile but same result)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I have the feature imported I can query the points and in the pop-up under PopupInfo I can see the XY AND Z coordinates, as well as, taken and GPS date and time. So the data is there associated with the feature but for some reason ArcGISpro cannot read it. It manages the XY part just fine so whats the possible problem?&lt;/P&gt;&lt;P&gt;As I said in my original post, this is 2019… we still live in a 3D world… why is GIS so bad at the 3rd dimension?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, sorry for the rant, but I feel like I have had to repeat myself all the time with this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nigel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2019 07:25:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121505#M733</guid>
      <dc:creator>NigelBaker</dc:creator>
      <dc:date>2019-10-23T07:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121506#M734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nigel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the double clarification. I understand your issue. I was suggesting another way of solving the problem versus going the geosetter route.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It looks to me that all of this info is stored in the typical "popupinfo" box that Google files get thrown into. This info is not the easiest to extract and is usually comprised in one long html text string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take a look a this thread of someone else having this issue:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/214856"&gt;Converting a KML to a Layer, how to convert popupinfo data to fields?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer is not what you're looking for as it links to another thread which may have some help you can utilize. It is not easy or straight forward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe instead of geosetter you could use the&amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/geotagged-photos-to-points.htm" title="https://pro.arcgis.com/en/pro-app/tool-reference/data-management/geotagged-photos-to-points.htm"&gt;GeoTagged Photos To Points&lt;/A&gt;&amp;nbsp;tool in ArcGIS Pro. For me personally, building off of what I mentioned earlier, I need more control and don't trust google/KMZ files so I extract the exif data into a CSV and work my way around the photos that way - very manually (though I have built a process that automates this).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Oct 2019 14:32:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121506#M734</guid>
      <dc:creator>AdrianWelsh</dc:creator>
      <dc:date>2019-10-23T14:32:10Z</dc:date>
    </item>
    <item>
      <title>Re: Simply? getting Z values into attribute table</title>
      <link>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121507#M735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adrian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So after spending an hour or 2 yesterday figuring out EXIFtool so I could generate a .csv for all image locations which I could then import into Arc.. which worked great. It turns out Arc had the right tool all along!!!&lt;/P&gt;&lt;P&gt;The ‘Geotagged photo to points’ tool works perfectly. Of course you have to run the ‘add XY coordinates’ tool to end up with a fully populated attribute table but hey, it is still easier than what I had figured out.&lt;/P&gt;&lt;P&gt;It really seems to be an issue with Arc that it can be difficult to find the right tool. Without you mentioning this as an aside, after this week long thread chat I think proves that point.&lt;/P&gt;&lt;P&gt;Well, problem solved. Thankyou.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nigel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Oct 2019 07:30:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/3d-questions/simply-getting-z-values-into-attribute-table/m-p/121507#M735</guid>
      <dc:creator>NigelBaker</dc:creator>
      <dc:date>2019-10-24T07:30:05Z</dc:date>
    </item>
  </channel>
</rss>

