<?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: buffer() on a PointGeometry created from projectAs() returns a _passthrough object in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542775#M42338</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure you are testing with the right longitude/latitude.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;import arcpy

wgs84 = arcpy.SpatialReference(4326) # GCS_WGS_1984
utm = arcpy.SpatialReference(26912) # NAD_1983_UTM_Zone_12N


lon = 10.0
lat = 10.0 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":"NaN","y":"NaN","spatialReference":{"wkid":26912,"latestWkid":26912}}


lon = -66.0
lat = -90.0 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":500000.90467679536,"y":-9997964.038261544,"spatialReference":{"wkid":26912,"latestWkid":26912}}


lon = -90.1994
lat = 38.6270 # St Louis 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":2318817.8976651346,"y":4486685.917933098,"spatialReference":{"wkid":26912,"latestWkid":26912}}
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;It appears that your longitude needs to be -66.0 or to the west with the desired spatial reference system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Dec 2021 23:30:48 GMT</pubDate>
    <dc:creator>RandyBurton</dc:creator>
    <dc:date>2021-12-11T23:30:48Z</dc:date>
    <item>
      <title>buffer() on a PointGeometry created from projectAs() returns a _passthrough object</title>
      <link>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542774#M42337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to read in a CSV with point data in lat/long, reproject&amp;nbsp;the points to UTM with &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;.projectAs()&lt;/SPAN&gt;, and then create a buffer around each point using &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;.buffer()&lt;/SPAN&gt;.&amp;nbsp;I'm using&amp;nbsp;the geometry objects rather than operating on feature classes as mentioned in the Discussion section of the &lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/analyze/arcpy-classes/pointgeometry.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;PointGeometry &lt;/A&gt;documentation.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;When I try this procedure and then insert the resulting geometry into a feature class using an insert cursor, it fails with &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;SystemError: &amp;lt;built-in method insertRow of da.InsertCursor object at 0x000001BACC5F1B70&amp;gt; returned NULL without setting an error&lt;/SPAN&gt;. Digging further reveals that the &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;buffer()&lt;/SPAN&gt; operation returns an &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;arcpy.arcobjects.mixins.GeometrySpecializationMixin._passthrough&lt;/SPAN&gt; object instead of an &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;arcpy.arcobjects.geometries.Polygon&lt;/SPAN&gt; object.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;If I don't project a lat/long point but instead just buffer it directly, &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;buffer()&lt;/SPAN&gt; returns the Polygon object as expected (see example code below) and inserts just fine. If I create a very small buffer on the&amp;nbsp;lat/long point (&lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;point.buffer(0.000001)&lt;/SPAN&gt;), project the resulting polygon to UTM, and then buffer the UTM polygon it returns a Polygon as expected as well.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Am I using &lt;SPAN style="font-family: terminal, monaco, monospace;"&gt;.projectAs()&lt;/SPAN&gt; on the lat/long points wrong?&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;1&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;import&lt;/SPAN&gt; arcpy

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;2&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; wgs84 &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SpatialReference&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;4326&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;3&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; utm &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;SpatialReference&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;26912&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;4&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; p &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Point&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;5&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; point &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PointGeometry&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;p&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; wgs84&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;point&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Out&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;6&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;arcobjects&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometries&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PointGeometry

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;7&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; utm_point &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; point&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;projectAs&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;utm&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;8&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;utm_point&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Out&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;8&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;arcobjects&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometries&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;PointGeometry

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;9&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; point_buffer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; point&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;buffer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;point_buffer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Out&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;arcobjects&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;geometries&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Polygon

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;11&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; utm_buffer &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; utm_point&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;buffer&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;10&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;

In &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;12&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; type&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;utm_buffer&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
Out&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;12&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;arcobjects&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mixins&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GeometrySpecializationMixin&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_passthrough‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:30:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542774#M42337</guid>
      <dc:creator>JakeAdamsUGRC</dc:creator>
      <dc:date>2021-12-11T23:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: buffer() on a PointGeometry created from projectAs() returns a _passthrough object</title>
      <link>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542775#M42338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure you are testing with the right longitude/latitude.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;import arcpy

wgs84 = arcpy.SpatialReference(4326) # GCS_WGS_1984
utm = arcpy.SpatialReference(26912) # NAD_1983_UTM_Zone_12N


lon = 10.0
lat = 10.0 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":"NaN","y":"NaN","spatialReference":{"wkid":26912,"latestWkid":26912}}


lon = -66.0
lat = -90.0 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":500000.90467679536,"y":-9997964.038261544,"spatialReference":{"wkid":26912,"latestWkid":26912}}


lon = -90.1994
lat = 38.6270 # St Louis 
utm_point = arcpy.PointGeometry(arcpy.Point(lon,lat), wgs84).projectAs(utm)
print utm_point.JSON
# {"x":2318817.8976651346,"y":4486685.917933098,"spatialReference":{"wkid":26912,"latestWkid":26912}}
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;It appears that your longitude needs to be -66.0 or to the west with the desired spatial reference system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:30:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542775#M42338</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2021-12-11T23:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: buffer() on a PointGeometry created from projectAs() returns a _passthrough object</title>
      <link>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542776#M42339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;D'oh, yeah, you're right on the range of valid lat/longs. My example point definitely wasn't in the range.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;While changing that, I realized I had my latitude and longitude reversed in my script, so all the points were not valid UTM points. Garbage in, garbage out. Everything worked as expected once I fixed that.&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;P&gt;Lessons learned: check your inputs, and if you .buffer() a PointGeometry object with NaN x/y values, you get back a _passthrough object instead of a Polygon object, and no error&amp;nbsp;is raised.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2019 18:03:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542776#M42339</guid>
      <dc:creator>JakeAdamsUGRC</dc:creator>
      <dc:date>2019-11-01T18:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: buffer() on a PointGeometry created from projectAs() returns a _passthrough object</title>
      <link>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542777#M42340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done that too.&amp;nbsp; I try to remember longitude/latitude (reverse alpha, but matching x/y).&amp;nbsp; Doesn't help when Google Maps and others&amp;nbsp;use latitude/longitude or y/x.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Nov 2019 19:40:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/buffer-on-a-pointgeometry-created-from-projectas/m-p/542777#M42340</guid>
      <dc:creator>RandyBurton</dc:creator>
      <dc:date>2019-11-01T19:40:25Z</dc:date>
    </item>
  </channel>
</rss>

