<?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: Separating One Layer into different layers based on Longitude in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51288#M4085</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not know how to close a topic ... please consider this topic closed ...&amp;nbsp; the technique I used is to continue on with the creation of the columns corresponding to the shape file just like I mentioned in my plan above and populate it programmatically and then let the code continue from there ...&amp;nbsp; thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2014 16:59:03 GMT</pubDate>
    <dc:creator>RicM</dc:creator>
    <dc:date>2014-10-15T16:59:03Z</dc:date>
    <item>
      <title>Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51283#M4080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am given a shape file which consists of polylines&amp;nbsp; in just one&lt;/P&gt;&lt;P&gt;layer and my task is to separate them into three layers based on&lt;/P&gt;&lt;P&gt;the longitude of the vertices of the said polylines.&amp;nbsp; So that&lt;/P&gt;&lt;P&gt;polylines whose vertices are between say 100 to 110 should be in&lt;/P&gt;&lt;P&gt;LayerA, and those between 111 to 120 should be in LayerB .. is this&lt;/P&gt;&lt;P&gt;possible to do in python?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help greatly appreciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gratefully,&lt;/P&gt;&lt;P&gt;Ric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.&lt;/P&gt;&lt;P&gt;I am a bit new at this .. so far as starters, I have succeeded in extracting the latitudes and longitudes &lt;BR /&gt;using the technique&amp;nbsp; below but I am not sure if my approach is&amp;nbsp; the the right way or if there is a more &lt;BR /&gt;correct/proper way to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14133186899462848 jive_text_macro" jivemacro_uid="_14133186899462848"&gt;
&lt;P&gt;import arcpy&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;strKPipeLayer = 'TestPipeLines'&lt;/P&gt;
&lt;P&gt;strKPipeFullPathShape = r"F:\TestPipeLines.shp"&lt;/P&gt;
&lt;P&gt;strK = r"F:\creatingMeridians.mxd"&lt;/P&gt;
&lt;P&gt;mxd = arcpy.mapping.MapDocument(strK)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;for ly in arcpy.mapping.ListLayers(mxd): &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; if (ly.name == strKPipeLayer):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; rowData = arcpy.SearchCursor(strKPipeFullPathShape)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for rowDatum in rowData:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.Describe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; poly = rowDatum.Shape&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lst = list(poly)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ary = arcpy.Array(lst)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for ply in&amp;nbsp; ary:&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; countPoly = countPoly + 1&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; &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; print "Polyline # " + str(countPoly)&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; print ' '&lt;/P&gt;
&lt;P&gt;&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; counter = 0&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; for pt in ary[0]:&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; xcoord = ary[0][counter].X&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; ycoord = ary[0][counter].Y&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; &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; point = arcpy.Point(xcoord,ycoord)&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; ptGeometry = arcpy.PointGeometry(point)&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; &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; print str(xcoord)&amp;nbsp; +&amp;nbsp; ','&amp;nbsp; + str(ycoord) + ',' + '0.0000'&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; &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; counter = counter + 1&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Curtis Price (added code highlight in-place)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 14:27:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51283#M4080</guid>
      <dc:creator>RicM</dc:creator>
      <dc:date>2014-10-14T14:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51284#M4081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use the &lt;A _jive_internal="true" href="https://community.esri.com/people/curtvprice/blog/2014/09/25/posting-code-blocks-in-the-new-geonet"&gt;syntax highlighting feature&lt;/A&gt; (under the advanced editor) of the forums here, it helps present your code in a more readable way.&lt;/P&gt;&lt;P&gt;(see above - cp)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 16:37:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51284#M4081</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2014-10-14T16:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51285#M4082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello and thanks for the highlighting technique info ... the code looks much more readable indeed .. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 17:35:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51285#M4082</guid>
      <dc:creator>RicM</dc:creator>
      <dc:date>2014-10-14T17:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51286#M4083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. Arcpy.mapping is for interacting with the map display, you can access the shapefile directly by path if you want.&lt;/P&gt;&lt;P&gt;2. What if a line crosses those boundaries?&lt;/P&gt;&lt;P&gt;3. Don't forget to delete your cursor when you are done with it:&lt;/P&gt;&lt;PRE __default_attr="python" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14133191092472201" jivemacro_uid="_14133191092472201"&gt;
&lt;P&gt;del RowDatum, RowData&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A more brute force approach that does not require editing geometry may be to use the Create Fishnet tool and then use overlay tools to select or clip your geometries. You could do this in ModelBuilder with no coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 20:39:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51286#M4083</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2014-10-14T20:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51287#M4084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the valuable info you have given ..&lt;BR /&gt; &lt;BR /&gt; If a line crosses the boundaries the work flow would be that a&amp;nbsp; copy of the polyline needs to be&lt;BR /&gt;created&amp;nbsp; so that both LayerA and LayerB would have the polyline … one layer would have&lt;BR /&gt; original and the other layer would have its copy.&lt;BR /&gt; &lt;BR /&gt; Thanks for the Fishnet tip, I really appreciate it .. I am going to do further research how to use &lt;BR /&gt;this technique ... for additional fire power ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, for&amp;nbsp; the tool I am building&amp;nbsp; there is a need to be coding based, the reason&lt;BR /&gt; being that they are intending to divide the two layers into many many&amp;nbsp; layers&amp;nbsp;&amp;nbsp; which could present &lt;BR /&gt;a problem if&amp;nbsp; not in code.&lt;BR /&gt; &lt;BR /&gt; So far, the biggest problem I have is I do not know what can and can’t be done using python and&lt;BR /&gt; arcpy ... I do not know it's limits … so that if I pursue a direction I am not sure if I’d end up shipwrecked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Wondering if a plan to populate the attribute table with info saying that the corresponding &lt;BR /&gt; polyline in the row is&amp;nbsp; between 100 to 110" another column&amp;nbsp; which says&amp;nbsp; "polyline is between 111 to 120" and &lt;BR /&gt; a third one which says&amp;nbsp; "polyline is in both 100 to 110 and 111 to 120"&amp;nbsp; etc.&amp;nbsp; and then trying&lt;BR /&gt; to change the layer of the entities (and create needed copies of the polylines) based on those three &lt;BR /&gt;columns’&amp;nbsp; Yes/No value&amp;nbsp; is possible?&lt;BR /&gt; &lt;BR /&gt;If the plan won't work because it is beyond the capability of arcpy and python the guidance telling me that&lt;BR /&gt;what I am thinking of is impossible&amp;nbsp; would greatly&amp;nbsp; help me focus my energy on finding a different strategy.&lt;BR /&gt;&lt;BR /&gt;Any other strategy, advise, enlightenment, link, or any idea much appreciated .. thanks again&lt;BR /&gt;&lt;BR /&gt;Gratefully,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 11.0pt; font-family: 'Calibri','sans-serif';"&gt;Ric&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="smarterwiki-popup-bubble-active smarterwiki-popup-bubble-flipped smarterwiki-popup-bubble" style="top: 620px; left: 274px; margin-left: -54px; opacity: 1;"&gt;&lt;SPAN class="smarterwiki-popup-bubble-tip"&gt;&lt;/SPAN&gt;&lt;SPAN class="smarterwiki-popup-bubble-body"&gt;&lt;SPAN class="smarterwiki-popup-bubble-links-container"&gt;&lt;SPAN class="smarterwiki-popup-bubble-links"&gt;&lt;SPAN class="smarterwiki-popup-bubble-links-row"&gt;&lt;A class="smarterwiki-popup-bubble-link" href="http://duckduckgo.com/?q=%20All%20help%20much%20appreciated%20and%20thanks%20again.&amp;amp;t=ff" target="_blank" title="Search DuckDuckGo"&gt;&lt;IMG alt="" class="smarterwiki-popup-bubble-link-favicon" src="https://ff.duckduckgo.com/favicon.ico" /&gt;&lt;/A&gt;&lt;A class="smarterwiki-popup-bubble-link" href="http://www.google.com/search?hl=com&amp;amp;btnI=I'm+Feeling+Lucky&amp;amp;q=%20All%20help%20much%20appreciated%20and%20thanks%20again.+wikipedia" target="_blank" title="Search Wikipedia"&gt;&lt;IMG alt="" class="smarterwiki-popup-bubble-link-favicon" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAATCAYAAACQjC21AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAIpwAACKcBMsYCAwAAAAd0SU1FB9kFEwgQLXKnj9oAAAPsSURBVDiNdVRZSGRXEH1Joz8icSIMJsEQEvKvov4ICoOYIAp+KKISkLiAgij5UGOMjgoug6CiKC64i/sSpVHcl7jv7W6722pcWmyNoqBW6hRpyYSZC8W7975bdU+dOrcUIlL+axYWFq+SkpLybWxsYo17VlZWX/H6DebOzs4/ent7/+Lu7v7z/31h7y8U5fvV1VWNra3tIObGvZqamtaHh4fHxMTExb29vcejoyMKCwt7jIqKWuD/bz4Y0MXF5e319bU2JyfngA99x/YJ22empqZuERERKwcHB9Td3U37+/u0srJCc3NzNDIyQk1NTVcqleonPvv6JSCPL87OznQ8p+TkZC2vv2GzcnNz+83a2joqLy9vCQFnZ2dpfX2dlpaWqLe3lzo7O+WStLS0ORMTE7+XgCkpKTX07/Dz86PIyEhDVlaWISMjgxISEmRfp9PRzs4O7e7uEtMi6EZHRyVweHg4gp6bm5tbKK958PlbODES+ZmZmQmkxjsE2d3dHWm1WsrOzqa6ujoaGhqigYEBGh4epvT0dCovLyd7e3sfhR3fGR0vLy9fULa0tMj8/PycNBoNcVGIi0NxcXHU09NDY2Nj1N/fL2mXlZXJJV5eXkXK9va2DojggIDPz8/iuLGxQcvLy8IXEN7c3JBer5f14uKiIOzr66P29naqqqqiiooK8vf3n1aYbP3ExIQcZkkIKgcHBwJ/BoNB1ltbW8IbF466urrk3OTkpFhDQ4MEZA7Jx8fnSGEJ6I2pHh4eyvf2ViglVBbBwBMQb25u0sLCgnAXExMjVLS1tVFJSYmkHRoa+pfCmydwPjk5EYf7+3txwBoVRTFmZmZetFdcXEyBgYGUm5srVa6traWioiIqKCig4ODgVYVJnUE6LGpBhLQQDMjAHeaQzPT0tASG7iorK0U2kAwC4hIE9PT0HFZYvB7j4+NPQHlxcSGFOD4+Fvnw8xKOUGnwxAWkqakpqSz7CJ/V1dXEmiV+/+To6Pi7CJvFq356ehIHaA2ogPjq6krSRlVbW1ulqoODgyIbyMfX15dKS0spNjYWAf+2tLT8UgLyJAIPHinPz89LFcEXJIJUcdHa2ppIBAjVajWlpqYSNwcqLCwUdEFBQX9+ysP4llXcSf7gFO6A8PT0lJqbm4UXvB6kBc6QKgz/sAfu8Ers7OzecYxv3+s2PD53dXX9FVUFCiCqr6+njo4OSRMBwSN3FylKfn4+MQgKCAhAC1N9rB+aODk5vWUU5+ARUoHu8CpQ0cbGRjFcxA3kkjtRAft8/dEGazRuRabcZH8ICQkpjo6OVjNHmvj4+GXuiyMeHh453ATCzMzMXn3I9x8oCiuuorpqawAAAABJRU5ErkJggg==" /&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;SPAN class="smarterwiki-popup-bubble-links-row"&gt;&lt;A class="smarterwiki-popup-bubble-link" href="http://www.google.com/search?q=%20All%20help%20much%20appreciated%20and%20thanks%20again." target="_blank" title="Search Google"&gt;&lt;IMG alt="" class="smarterwiki-popup-bubble-link-favicon" src="https://www.google.com/favicon.ico" /&gt;&lt;/A&gt;&lt;A class="smarterwiki-popup-bubble-link" href="http://search.surfcanyon.com/search?f=nrl1&amp;amp;q=%20All%20help%20much%20appreciated%20and%20thanks%20again.&amp;amp;partner=fastestfox" target="_blank" title="Search Surf Canyon"&gt;&lt;IMG alt="" class="smarterwiki-popup-bubble-link-favicon" src="data:image/x-icon;base64,AAABAAEAEBAAAAEAIABoBAAAFgAAACgAAAAQAAAAIAAAAAEAIAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8AycnKOmdmaastLTDuIB8j/yAfI/87Oz7eg4OFi+no6Rj///8A////AP///wD///8A////AP///wD6+voDfHx+kyAfI/8gHyP/LCsv+FJRVPhHRkr6IiEl/SAfI/8tLTDuuLe5T////wD///8A////AP///wD///8AfHx+kyAfI/8wLzP4qqqr+Pv7+////////////+3t7f+Dg4X9IB8j/yMiJvq/vr9H////AP///wD///8AyMfIPyIhJf8wLzP429vb+P///////////////////////////////66ur/0gHyP/ODc74////wD///8A////AHRzda4wLjH/rKyt+P/////8/Pz/h4eJ/z8+Qv9GRUn/rq6v////////////iIiK/6ijnP/269Y/////AP///wBQTlDzR0VI+vv7+///////oqGh/zg2Of8hICT/IB8j/yAfI//c3Nz/7de7/9alX//GfhL/48KOfv///wD///8AWFZX/3Vzdfr//////////4iGhv9SUFL/MC8z/2ZlaP+1jmz/unMv/7NjFf+zYxX/s2MV/9atin7WrYp+1q2KfmdlZf91c3T8//////////+npaT/bWtr/0tJS/81Mzf/jIB5/9Gidv+/eDD/v3gw/8B6M//NlWD/x4pO/8WFRvqLiIjXbmxs/+rq6v//////6Ofn/4yJiP9lY2T/Q0JE/0tKTf/09PT/9uvc/+K5gP/apFL/9+zaP////wD///8AwcDAe357e/+koqL9///////////09PT/zs3N/8jHx//5+fn//////+7u7/9/f4H/4tfC//rv2T////8A////APb29g+YlZXjhYKB/7W0s//9/f3//////////////////////+vr6/9paGn/NTQ3/319f6f///8A////AP///wD///8A6OjnMpmWle6MiYf/lZOS/8XEw//b2tr/0dHR/6elpv9hYGH/TkxO/25sb8L09PQM////AP///wD///8A////AP///wDv7+4jsa6tu5KPjf+Kh4b/gX59/3h2df9vbW3/amho96alpof4+PgH////AP///wD///8A////AP///wD///8A////AP///wDs6+srz87Nb8XDw37Av75+zMvKXvLy8hT///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A////AP///wD///8A//8AAPA/AADAHwAAgA8AAIAHAAAABwAAAAcAAAAHAAAAAAAAAAcAAIAHAACABwAAwA8AAOAfAAD//wAA//8AAA%3D%3D" /&gt;&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Oct 2014 22:29:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51287#M4084</guid>
      <dc:creator>RicM</dc:creator>
      <dc:date>2014-10-14T22:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51288#M4085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do not know how to close a topic ... please consider this topic closed ...&amp;nbsp; the technique I used is to continue on with the creation of the columns corresponding to the shape file just like I mentioned in my plan above and populate it programmatically and then let the code continue from there ...&amp;nbsp; thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 16:59:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51288#M4085</guid>
      <dc:creator>RicM</dc:creator>
      <dc:date>2014-10-15T16:59:03Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51289#M4086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Happy my post helped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; &lt;SPAN style="font-family: Calibri, sans-serif; font-size: 15px; background-color: #f3f3f3;"&gt;If the plan won't work because it is beyond the capability of arcpy and python&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Python/ArcPy includes the ability to do things with python modules outside of the ArcGIS universe - so there really aren't a lot of limits to what you can do -- or , different ways to accomplish a task!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt; &lt;SPAN style="font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; background-color: #f3f3f3;"&gt;I do not know how to close a topic ... please consider this topic closed&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By marking an answer correct you have "closed" the thread as much as you can. But the thread remains open&amp;nbsp; if anyone has anything they want to say in the future!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2014 17:18:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51289#M4086</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2014-10-15T17:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Separating One Layer into different layers based on Longitude</title>
      <link>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51290#M4087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;&amp;gt;so there really aren't a lot of limits to what you can do&lt;BR /&gt;Thanks for these encouraging words ... I will always keep them in mind in all my developments ... thanks again&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Oct 2014 15:02:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/separating-one-layer-into-different-layers-based/m-p/51290#M4087</guid>
      <dc:creator>RicM</dc:creator>
      <dc:date>2014-10-16T15:02:51Z</dc:date>
    </item>
  </channel>
</rss>

