<?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: Using ArcPy to plot points in a map in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51893#M4117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You won't be able to add the point as a graphic, but you can add it as a shapefile/feature class using the PointGeometry class and the CopyFeatures_management function.&amp;nbsp; Here is an example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.outputCoordinateSystem = r"Coordinate Systems\Geographic Coordinate Systems\World\WGS 1984.prj"
env.workspace = r"C:\temp\python\test.gdb"

point = arcpy.Point(-97.36, 101.56)

pointGeometry = arcpy.PointGeometry(point)

arcpy.CopyFeatures_management(pointGeometry, "Hydrant")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 10 Dec 2021 22:00:10 GMT</pubDate>
    <dc:creator>JakeSkinner</dc:creator>
    <dc:date>2021-12-10T22:00:10Z</dc:date>
    <item>
      <title>Using ArcPy to plot points in a map</title>
      <link>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51892#M4116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I see that it is possible to create a a point geometry object in arcpy, but can I give it a graphic element to display or plot that point in a map document?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to see if I can port some of my VBA stuff over to ArcPy.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Sep 2011 16:36:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51892#M4116</guid>
      <dc:creator>JasonMarcinski</dc:creator>
      <dc:date>2011-09-01T16:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Using ArcPy to plot points in a map</title>
      <link>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51893#M4117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You won't be able to add the point as a graphic, but you can add it as a shapefile/feature class using the PointGeometry class and the CopyFeatures_management function.&amp;nbsp; Here is an example:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
from arcpy import env
env.outputCoordinateSystem = r"Coordinate Systems\Geographic Coordinate Systems\World\WGS 1984.prj"
env.workspace = r"C:\temp\python\test.gdb"

point = arcpy.Point(-97.36, 101.56)

pointGeometry = arcpy.PointGeometry(point)

arcpy.CopyFeatures_management(pointGeometry, "Hydrant")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 22:00:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51893#M4117</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-10T22:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using ArcPy to plot points in a map</title>
      <link>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51894#M4118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2011 12:16:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/using-arcpy-to-plot-points-in-a-map/m-p/51894#M4118</guid>
      <dc:creator>JasonMarcinski</dc:creator>
      <dc:date>2011-09-02T12:16:34Z</dc:date>
    </item>
  </channel>
</rss>

