<?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: Selecting PLSS data from a table of attributes in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652930#M50862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If your set of PLSS data has the T, R, S... in separate columns, and your other table has them joined, you could just split the joined values and run a query on that, e.g. "Twp = newlist[0] and Rng = newlist[1] and Sec = newlist[2]..." and so on.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even easier would be to make a new field in the first, PLSS, dataset and run a field calculation to concatenate your separate values, then join like James recommends above.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2014 17:53:04 GMT</pubDate>
    <dc:creator>Zeke</dc:creator>
    <dc:date>2014-04-28T17:53:04Z</dc:date>
    <item>
      <title>Selecting PLSS data from a table of attributes</title>
      <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652927#M50859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello, I thought I would post a question I am having to see if Python can work with what I'm trying to accomplish. I know Python at the most basic level so any help would be appreciated. I am trying to select the appropriate township, range, section, quarter, and quarter quarter section data from a separate table that contains what I am wanting queried. In the most Lehman terms possible, I have one data set of PLSS data and then a separate table that has a column (attribute) of specific locations such as T 1 S R 3 W Section 27 or NWSW, NWSE, NENW, NESW, NESE, SWNE, SWSW, SWSE, SENW, SESW, SESE. What I am trying to accomplish is I want to generate an easy way of selecting my PLSS data from this table of attributes so I do not have to find them individually. I hope this makes sense.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you kindly for any help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 19:34:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652927#M50859</guid>
      <dc:creator>JaromHlebasko</dc:creator>
      <dc:date>2014-02-12T19:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting PLSS data from a table of attributes</title>
      <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652928#M50860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are grouping all the PLSS data into one field, e.g. a single column with T,R,S, q, qq in one column in each row (record) then it would seem you could enter it into the attribute table.&amp;nbsp; This seems related to what I am doing with well logs.&amp;nbsp; I have a file called "wells" and I'm in an edit mode, creating new shapefiles... I have the edit tool set to open the attribute table a point at a time so I can write in the county well log code.&amp;nbsp; Later I will edit the attribute table to include elevation data so I can make cross sections and contour the water levels.&amp;nbsp; You might consider creating separate columns for each location parameter in the attribute table.&amp;nbsp; However, since locations are built in why not query the locations with a python macro?&amp;nbsp; I don't know how to do this so if you figure it out please pm me at &lt;/SPAN&gt;&lt;A href="mailto:grnchm@gmail.com"&gt;grnchm@gmail.com&lt;/A&gt;&lt;SPAN&gt;.&amp;nbsp; I hope this was at least vaguely responsive and if it wasn't I apologize to you and all affected.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2014 19:33:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652928#M50860</guid>
      <dc:creator>NicholasCoffey</dc:creator>
      <dc:date>2014-04-25T19:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting PLSS data from a table of attributes</title>
      <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652929#M50861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello, I thought I would post a question I am having to see if Python can work with what I'm trying to accomplish. I know Python at the most basic level so any help would be appreciated. I am trying to select the appropriate township, range, section, quarter, and quarter quarter section data from a separate table that contains what I am wanting queried. In the most Lehman terms possible, I have one data set of PLSS data and then a separate table that has a column (attribute) of specific locations such as T 1 S R 3 W Section 27 or NWSW, NWSE, NENW, NESW, NESE, SWNE, SWSW, SWSE, SENW, SESW, SESE. What I am trying to accomplish is I want to generate an easy way of selecting my PLSS data from this table of attributes so I do not have to find them individually. I hope this makes sense.&lt;BR /&gt;&lt;BR /&gt;Thank you kindly for any help!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You may have to clarify a bit, but it doesn't sound like you need Python to accomplish this at all.&amp;nbsp; Why not simply join your PLSS layer with your table of attributes?&amp;nbsp; You can then just make your required selections on the PLSS layer.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 11:31:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652929#M50861</guid>
      <dc:creator>JamesCrandall</dc:creator>
      <dc:date>2014-04-28T11:31:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting PLSS data from a table of attributes</title>
      <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652930#M50862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If your set of PLSS data has the T, R, S... in separate columns, and your other table has them joined, you could just split the joined values and run a query on that, e.g. "Twp = newlist[0] and Rng = newlist[1] and Sec = newlist[2]..." and so on.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Even easier would be to make a new field in the first, PLSS, dataset and run a field calculation to concatenate your separate values, then join like James recommends above.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 17:53:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652930#M50862</guid>
      <dc:creator>Zeke</dc:creator>
      <dc:date>2014-04-28T17:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting PLSS data from a table of attributes</title>
      <link>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652931#M50863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;you can create a sorted list of unique PLSS values&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;lst=sorted(set([row.getValue("attr field") for row in arcpy.SearchCursor(feature_class_name)]))&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 12:49:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/selecting-plss-data-from-a-table-of-attributes/m-p/652931#M50863</guid>
      <dc:creator>benberman</dc:creator>
      <dc:date>2014-04-29T12:49:18Z</dc:date>
    </item>
  </channel>
</rss>

