<?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: draw a polygon with a python add-in and clip it in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325559#M25326</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting, but not what I was hoping for... &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose that you do have access to an Advanced license, right? I noticed that the "Feature To Polygon" tool requires that type of license. I do not have one available at the moment. I did rewrite the code to work as stand alone, so I can test it easier and to solve the "Feature To Polygon", in the code I create an empty featureclass (lines 17 - 25) and write the polygon to it (lines 28 - 29). The line geometry is created on lines 34 - 39.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14084840751772562" jivemacro_uid="_14084840751772562"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;def testing(line_geometry):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_routes = r"D:\Xander\GeoNet\ClipTool\ROUTE_SHAPE.shp"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_graphics = r"D:\Xander\GeoNet\ClipTool\GRAPHICS.shp"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_result = r"D:\Xander\GeoNet\ClipTool\POLYGON.shp"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; array = arcpy.Array()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; part = line_geometry.getPart(0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for pt in part:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(pt)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(line_geometry.firstPoint)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygon = arcpy.Polygon(array, fc_routes)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create empty shapefile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry_type = "POLYGON"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; template = ""&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; has_m = "DISABLED"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; has_z = "DISABLED"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sr = arcpy.Describe(fc_routes).spatialReference&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ws_path, fc_out_name = os.path.split(fc_graphics)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateFeatureclass_management(ws_path, fc_out_name,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry_type, template, has_m, has_z, sr)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # FeatureToPolygon_management requires Advanced&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.InsertCursor(fc_graphics, ("SHAPE@")) as curs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curs.insertRow((polygon,))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_analysis(fc_routes, fc_graphics, fc_result)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# create a line geometry&lt;/P&gt;
&lt;P&gt;array = arcpy.Array([arcpy.Point(467075, 211310),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Point(467550, 214930),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Point(470900, 212561)])&lt;/P&gt;
&lt;P&gt;polyline = arcpy.Polyline(array)&lt;/P&gt;
&lt;P&gt;line_geometry = arcpy.Polyline(array)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# call the clip function&lt;/P&gt;
&lt;P&gt;testing(line_geometry)&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This did work without problems:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ClipWithPolygon.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/3651_ClipWithPolygon.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Can you check your graphics shapefile to see if it has the desired content?&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>Tue, 19 Aug 2014 21:39:29 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2014-08-19T21:39:29Z</dc:date>
    <item>
      <title>draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325556#M25323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everybody, I really need some help for my project in ArcMap 10.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create a tool with a python add-in, then click on it and draw a polygon on a map. Then I want to use this polygon to clip my map and to keep what I've selected with the polygon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To do that, I've made this code in my Add-in :&lt;IMG alt="Untitled.jpg" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/3637_Untitled.jpg" style="width: 620px; height: 137px;" /&gt; &lt;/P&gt;&lt;P&gt;Everything seems to work except one thing! The clip tool creates a empty output, I've got the error "Empty output generated", and I really don't understand why. My "Route_shapes.shp" and my "polygon.shp" have the same coordinate system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestion?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 18:18:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325556#M25323</guid>
      <dc:creator>EstelleWuilliez1</dc:creator>
      <dc:date>2014-08-19T18:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325557#M25324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe it's because the clip features "Graphics.shp" is not assigned a coordinate system? You can do this by changing the line where you create the polygon to this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14084815719707908 jive_text_macro" jivemacro_uid="_14084815719707908"&gt;
&lt;P&gt;polygon = arcpy.Polygon(array, "X:/Users/ROUTE_SHAPES.shp")&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 20:53:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325557#M25324</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-08-19T20:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325558#M25325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With your line, ArcMap crashes&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 21:02:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325558#M25325</guid>
      <dc:creator>EstelleWuilliez1</dc:creator>
      <dc:date>2014-08-19T21:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325559#M25326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting, but not what I was hoping for... &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/sad.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose that you do have access to an Advanced license, right? I noticed that the "Feature To Polygon" tool requires that type of license. I do not have one available at the moment. I did rewrite the code to work as stand alone, so I can test it easier and to solve the "Feature To Polygon", in the code I create an empty featureclass (lines 17 - 25) and write the polygon to it (lines 28 - 29). The line geometry is created on lines 34 - 39.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14084840751772562" jivemacro_uid="_14084840751772562"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;arcpy.env.overwriteOutput = True&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;def testing(line_geometry):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_routes = r"D:\Xander\GeoNet\ClipTool\ROUTE_SHAPE.shp"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_graphics = r"D:\Xander\GeoNet\ClipTool\GRAPHICS.shp"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; fc_result = r"D:\Xander\GeoNet\ClipTool\POLYGON.shp"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; array = arcpy.Array()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; part = line_geometry.getPart(0)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for pt in part:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(pt)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; array.add(line_geometry.firstPoint)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; polygon = arcpy.Polygon(array, fc_routes)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # create empty shapefile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry_type = "POLYGON"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; template = ""&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; has_m = "DISABLED"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; has_z = "DISABLED"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; sr = arcpy.Describe(fc_routes).spatialReference&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ws_path, fc_out_name = os.path.split(fc_graphics)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.CreateFeatureclass_management(ws_path, fc_out_name,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry_type, template, has_m, has_z, sr)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # FeatureToPolygon_management requires Advanced&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; with arcpy.da.InsertCursor(fc_graphics, ("SHAPE@")) as curs:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curs.insertRow((polygon,))&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Clip_analysis(fc_routes, fc_graphics, fc_result)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# create a line geometry&lt;/P&gt;
&lt;P&gt;array = arcpy.Array([arcpy.Point(467075, 211310),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Point(467550, 214930),&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Point(470900, 212561)])&lt;/P&gt;
&lt;P&gt;polyline = arcpy.Polyline(array)&lt;/P&gt;
&lt;P&gt;line_geometry = arcpy.Polyline(array)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;# call the clip function&lt;/P&gt;
&lt;P&gt;testing(line_geometry)&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This did work without problems:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="ClipWithPolygon.png" class="jive-image image-1" src="https://community.esri.com/legacyfs/online/3651_ClipWithPolygon.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Can you check your graphics shapefile to see if it has the desired content?&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>Tue, 19 Aug 2014 21:39:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325559#M25326</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-08-19T21:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325560#M25327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow ok your code works on my project!&lt;/P&gt;&lt;P&gt;And there is something strange, my old code works when yours is also launched.. So I think that my problem is linked to coordinates and that kind of stuff, because your polygon is really bigger than my "Route_shape" shapefile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, thank you very much for your help and for your time, I really appreciated it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards, Estelle&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2014 23:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325560#M25327</guid>
      <dc:creator>EstelleWuilliez1</dc:creator>
      <dc:date>2014-08-19T23:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325561#M25328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since I don't know what your data looks like and I don't know where it is located, I just created an arbitrary polygon (triangle) over a set of test data pulled from a different thread. When you run your original code this should create the shapefile "X:/Users/Graphics.shp". Is this shapefile created correctly? Does it overlay with your data in the shapefile "X:/Users/ROUTE_SHAPES.shp"? Is your data frame, where you are drawing your line geometry, in the same projection?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those would be the first places to check. If the code is now working satisfactory then there may have been something with perhaps a previous shapefile that may have been conflicting...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you remove the "Graphics.shp" or have you configured the option to overwrite the output in case it exists? I included this in my code to avoid problems. Since you are creating a tool (which I suppose you want to use more than once) and the intermediate and output results are hard coded (those will be the same each time you run the tool) you will need to include some handling of overwriting existing files.&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, 20 Aug 2014 01:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325561#M25328</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2014-08-20T01:10:42Z</dc:date>
    </item>
    <item>
      <title>Re: draw a polygon with a python add-in and clip it</title>
      <link>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325562#M25329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My original code creates all the shapefile I want but they are all empty, my polygon doesn't take the attributes of Route_Shape. But now, when I launch your code and then execute mine, it works. But if I execute mine before yours, it doesn't work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About the overwrite option, it is a good idea that I'm going to do now, because I removed the "Graphics.shp" all the time before.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Aug 2014 20:55:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/draw-a-polygon-with-a-python-add-in-and-clip-it/m-p/325562#M25329</guid>
      <dc:creator>EstelleWuilliez1</dc:creator>
      <dc:date>2014-08-20T20:55:10Z</dc:date>
    </item>
  </channel>
</rss>

