<?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 Create point with mouse click in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731530#M56768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to learn python so please bare with me. I would like to create points with a mouse click. I have the following code from another post but it's not working i am getting the following error. at this point i would like to just create one point but after i get past this code i would like to be able to click anywhere and create multiple points. Can some one help me out with this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "C:\GIS\AddPoint.py", line 17, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row)&lt;/P&gt;&lt;P&gt;TypeError: sequence size must match size of the row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Failed to execute (Script).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import modules&amp;nbsp; 
import arcpy&amp;nbsp; 

point = arcpy.GetParameterAsText(0)&amp;nbsp; #click
An = "AnimalPoints" #target point feature class Animal Sightings
&amp;nbsp; 
for prow in arcpy.da.SearchCursor(point,'SHAPE@XY'):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; x,y = prow[0]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
del prow&amp;nbsp; 
&amp;nbsp;&amp;nbsp; 
point1 = arcpy.Point(x, y)&amp;nbsp; 
ptGeometry = arcpy.PointGeometry(point1)

with arcpy.da.InsertCursor(An,('SHAPE@XY')) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 07:13:42 GMT</pubDate>
    <dc:creator>PacoAlverez</dc:creator>
    <dc:date>2021-12-12T07:13:42Z</dc:date>
    <item>
      <title>Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731530#M56768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am attempting to learn python so please bare with me. I would like to create points with a mouse click. I have the following code from another post but it's not working i am getting the following error. at this point i would like to just create one point but after i get past this code i would like to be able to click anywhere and create multiple points. Can some one help me out with this code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Traceback (most recent call last):&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "C:\GIS\AddPoint.py", line 17, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row)&lt;/P&gt;&lt;P&gt;TypeError: sequence size must match size of the row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Failed to execute (Script).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import modules&amp;nbsp; 
import arcpy&amp;nbsp; 

point = arcpy.GetParameterAsText(0)&amp;nbsp; #click
An = "AnimalPoints" #target point feature class Animal Sightings
&amp;nbsp; 
for prow in arcpy.da.SearchCursor(point,'SHAPE@XY'):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; x,y = prow[0]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
del prow&amp;nbsp; 
&amp;nbsp;&amp;nbsp; 
point1 = arcpy.Point(x, y)&amp;nbsp; 
ptGeometry = arcpy.PointGeometry(point1)

with arcpy.da.InsertCursor(An,('SHAPE@XY')) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731530#M56768</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2021-12-12T07:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731531#M56769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;You need to fill the fields passed in the cursor initiation statement. Because SHAPE@XY is tuple, you must fill that tuple when you call insertRow. See the second code sample &lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/arcpy-data-access/insertcursor-class.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;with arcpy.da.InsertCursor(An,(&lt;SPAN class="string" style="font-weight: inherit; font-style: inherit; color: blue; font-size: 9pt !important; background-color: inherit;"&gt;'SHAPE@XY'&lt;/SPAN&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 9pt !important; background-color: inherit;"&gt;)) as cursor: &lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(&lt;CODE&gt;&lt;SPAN class="p"&gt;(x,y&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;) &lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a side question, how are you planning to capture a click event as text? Is this a Python add-in? It may be possible, I've just never seen this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731531#M56769</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-12T07:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731532#M56770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made changes to my code that you suggested but i get the same error. i am not sure what you mean by "capture a click event as text?" basically just click on the map where coyotes are spotted and create points for now but eventually add more to the code.&amp;nbsp; yes at some point it would be made into an pathon add-in. The link you posted for the sample is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; File "C:\GIS\AddPoint.py", line 17, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow((x,y))&lt;/P&gt;&lt;P&gt;TypeError: sequence size must match size of the row&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 22:30:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731532#M56770</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-23T22:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731533#M56771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Oh, you've listed 'SHAPE@XY' (itself a tuple), inside another tuple. Try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14376915201528131 jive_text_macro" data-renderedposition="50_8_912_16" jivemacro_uid="_14376915201528131"&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;cursor.insertRow(((x,y)))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;... or remove the parentheses around 'SHAPE@XY'.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 22:45:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731533#M56771</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2015-07-23T22:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731534#M56772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried both suggestions but i get the same error. &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/confused.png" /&gt;&lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/cry.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 22:54:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731534#M56772</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-23T22:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731535#M56773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to create a script tool that allows you to dynamically click on the map to create points as part of the gp tool's UI? If so, have you tried setting your input parameter type to Feature Set?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Using the interactive feature and record input controls&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/analyze/executing-tools/using-the-interactive-feature-and-record-input-con.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/analyze/executing-tools/using-the-interactive-feature-and-record-input-con.htm&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise are you needing to implement a tool where you can wire into the OnMouseDown Event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Creating a Python add-in tool&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;A href="http://desktop.arcgis.com/en/desktop/latest/guide-books/python-addins/creating-an-add-in-tool.htm"&gt;http://desktop.arcgis.com/en/desktop/latest/guide-books/python-addins/creating-an-add-in-tool.htm&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 23:05:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731535#M56773</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-07-23T23:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731536#M56774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the input, very interesting in deed. At this point i have it in a script in a tool box. Yes my input parameter type is set to Feature Set. after getting the code to run i will most likely look into making it a add-in.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 23:15:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731536#M56774</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-23T23:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731537#M56775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you wanting to parse the values from the feature set and insert them into another feature class with the same coordinate system?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 23:20:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731537#M56775</guid>
      <dc:creator>FreddieGibson</dc:creator>
      <dc:date>2015-07-23T23:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731538#M56776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Won't pretend to understand why this works and my previous suggestion didn't, but this seems to work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;gt;&amp;gt;&amp;gt; with arcpy.da.InsertCursor(An,['SHAPE@XY']) as cursor:
...&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow([(x,y)])&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731538#M56776</guid>
      <dc:creator>DarrenWiens2</dc:creator>
      <dc:date>2021-12-12T07:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731539#M56777</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/people/FGibson-esristaff" target="_blank"&gt;Freddie Gibson&lt;/A&gt;​makes a good point you may want to start your code with something like below just to make sure your in the same spatial reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
dfsr = df.spatialReference
fcsr = arcpy.Describe(An).spatialReference
if dfsr.name == fcsr.name:
&amp;nbsp;&amp;nbsp;&amp;nbsp; """Now do your work"""&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731539#M56777</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2021-12-12T07:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731540#M56778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No i am not just want to create features on a feature class and at some point get features from another feature class and import those features into the new point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 14:57:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731540#M56778</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-24T14:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731541#M56779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wes thank you i will incorporate that into the code. Also how would i create multiple points and actually have them created to the feature class?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to populate the POINT_X AND POINT_Y when the point is created.&lt;/P&gt;&lt;P&gt;i have add to my code to try to get the x,y populated but i get an error, i am thinking it's a syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;File "C:\GIS\Python\AddPoint\AddPoint.py", line 24, in &amp;lt;module&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row_value)&lt;/P&gt;&lt;P&gt;TypeError: sequence size must match size of the row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;#import modules&amp;nbsp; 
import arcpy&amp;nbsp; 

arcpy.env.qualifiedFieldNames = False
An = "AnimalPoints" #target point feature class Animal Sightings

mxd = arcpy.mapping.MapDocument("CURRENT")&amp;nbsp; 
df = arcpy.mapping.ListDataFrames(mxd)[0]&amp;nbsp; 
dfsr = df.spatialReference&amp;nbsp; 
fcsr = arcpy.Describe(An).spatialReference&amp;nbsp; 
if dfsr.name == fcsr.name:&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; """Now do your work"""&amp;nbsp; 

point = arcpy.GetParameterAsText(0)&amp;nbsp; #click

for prow in arcpy.da.SearchCursor(point,'SHAPE@XY'):&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; x,y = prow[0]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
del prow&amp;nbsp; 

row_value = ([(x,y)])

with arcpy.da.InsertCursor(An,('POINT_X', 'POINT_Y','SHAPE@XY')) as cursor:
&amp;nbsp;&amp;nbsp;&amp;nbsp; cursor.insertRow(row_value)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 07:13:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731541#M56779</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2021-12-12T07:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731542#M56780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to make row_value = something before you can create the row. Insert Row will accept either a list or tuple. You'll need to set row_value in the order of your field list [&lt;SPAN class="string" style="font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif; color: blue; background-color: #f6f6f6;"&gt;'POINT_X', 'POINT_Y','SHAPE@XY'] &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 15:22:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731542#M56780</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-07-24T15:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731543#M56781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am do that here am i not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;row_value = (x,y)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 15:41:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731543#M56781</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-24T15:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731544#M56782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is the tuple for Shape@XY&lt;/P&gt;&lt;P&gt;it should be &lt;/P&gt;&lt;P&gt;row_value = [x,y,(x,y)] or something similar &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 15:51:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731544#M56782</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-07-24T15:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Create point with mouse click</title>
      <link>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731545#M56783</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it, thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2015 15:58:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/create-point-with-mouse-click/m-p/731545#M56783</guid>
      <dc:creator>PacoAlverez</dc:creator>
      <dc:date>2015-07-24T15:58:46Z</dc:date>
    </item>
  </channel>
</rss>

