<?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: Update a single attribute field of manually selected features (not sel by locatio in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570785#M44743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is what I have added.&amp;nbsp; I see what you are getting me to do but in the I am getting the error in select by attributes.&amp;nbsp; I intend to select a single point feature, run this script by entering an elevation and click enter and have this script do the math and update the answers into the attribute table.&amp;nbsp; It should only update one field.&amp;nbsp; I think in the selectlayerbyattribute there is no option for continue with current selection as I dont want to create a new selection I just want to update a field from a feature that I have already selected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create(9.3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Creating lyr.. "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.MakeFeatureLayer_management("stations.shp", "lyr")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Selecting..."&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.SelectLayerByAttribute_management("lyr", "New_Selection","ANN_PREC")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Calculating..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CalculateField_management("stations.shp","ANN_PREC", x)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#print "Manhole elevation calculated..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#gp.CalculateField_management("Manhole","InteriorDrop", y)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2011 19:49:19 GMT</pubDate>
    <dc:creator>ThomasBooth</dc:creator>
    <dc:date>2011-06-07T19:49:19Z</dc:date>
    <item>
      <title>Update a single attribute field of manually selected features (not sel by location)</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570783#M44741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am trying to write a python script that will populate an attribute field of a selected feature.&amp;nbsp; I see that it is possible with select features by location by..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Use makefeaturelayer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Feed the feature layer into the selectbylocation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;then use calculate field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However I am selecting one point feature at a time and I am only trying to update one field with my script..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I thought the right tool was the script below but it updates every feature in that field instead of the selected feature. (Manhole is the feature class, Elevation is the field name, x is the sum of a mathematical function from another part of the code.)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CalculateField_management("Manhole","Elevation", "x")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any help will be appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 16:46:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570783#M44741</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-07T16:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570784#M44742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You have it right, just replace SelectLayerByLocation with SelectLayerByAttribute, similar to this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;print "Creating lyr.. "
gp.MakeFeatureLayer_management("az019s.shp", "lyr")
print "Selecting..."&amp;nbsp;&amp;nbsp;&amp;nbsp; 
gp.SelectLayerByAttribute_management("lyr", "New_Selection", "Func_class" = -1)
print "Calculating..."
gp.CalculateField_management("lyr", "FROMLEFT", 0)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:33:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570784#M44742</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2021-12-12T00:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570785#M44743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is what I have added.&amp;nbsp; I see what you are getting me to do but in the I am getting the error in select by attributes.&amp;nbsp; I intend to select a single point feature, run this script by entering an elevation and click enter and have this script do the math and update the answers into the attribute table.&amp;nbsp; It should only update one field.&amp;nbsp; I think in the selectlayerbyattribute there is no option for continue with current selection as I dont want to create a new selection I just want to update a field from a feature that I have already selected.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create(9.3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Creating lyr.. "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.MakeFeatureLayer_management("stations.shp", "lyr")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Selecting..."&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.SelectLayerByAttribute_management("lyr", "New_Selection","ANN_PREC")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;print "Calculating..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CalculateField_management("stations.shp","ANN_PREC", x)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#print "Manhole elevation calculated..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#gp.CalculateField_management("Manhole","InteriorDrop", y)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks for your help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 19:49:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570785#M44743</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-07T19:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570786#M44744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are running this as an in-process script tool from within ArcMap, pass in the name of the feature layer that has the selection to CalculateField_management and it will honor that selection. No need for Make Feature Layer or Select by Attributes/Location in this case.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This won't work if you are running the script standalone, outside of ArcMap.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 20:17:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570786#M44744</guid>
      <dc:creator>LoganPugh</dc:creator>
      <dc:date>2011-06-07T20:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570787#M44745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the idea, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I tried this first thinking it woukd recognize the skeceted feature but it didnt, it just updated every feature in the specified field inside the feature class... It did not recognize the seleceted feature.. I tried this on a dummy shapefile and not on my actuak database bc i dont want to risk compromising the data... Any other options or ideas??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 21:16:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570787#M44745</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-07T21:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570788#M44746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;It should work, post the code you are using. Also, did you create a script tool in ArcToolbox for it? As I mentioned it won't recognize feature layers in ArcMap if you run the script standalone.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 21:44:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570788#M44746</guid>
      <dc:creator>LoganPugh</dc:creator>
      <dc:date>2011-06-07T21:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570789#M44747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hey Logan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; This was the demo tool I used to see if it would update a single field within an attribute table.... the result was all the features in the specified field had the number 23.......&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry I will give you my whole code when I return&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create(9.3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#ManholeElevation = sys.argv[1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.workspace = "Q:/63_Projects/State/SC/SC_DNR_2010/Hampton/ANALYSIS/DATA/SHP/LiDAR_QA"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;#x = (ManholeElevation - 1.7)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.CalculateField_management("05_11_2011_3.shp","Altitude", "23")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # If an error occurred while running a tool, then print the messages&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #print gp.GetMessages()&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2011 22:50:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570789#M44747</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-07T22:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570790#M44748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Here is my whole code with comments on each line&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting, sys&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create(9.3)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;##a = input ("Enter Manhole Elevation: ")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##c = (a - 1.7)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##b = input ("Enter Inv Out: ")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##z = (a - b)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##print "Manhole Elevation is: " ,c&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;##print "Interior Drop is: " ,z&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ManholeElevation = sys.argv[1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;InvertOut = sys.argv[2]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.workspace =&amp;nbsp; #this is not complete b/c it will be a file GDB (I need the server name&amp;nbsp; etc)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; x = (ManholeElevation - 1.7)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #math function&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; y = (ManholeElevation - InvertOut)&amp;nbsp; #math function&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Creating lyr.. "&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.MakeFeatureLayer_management("manhole", "lyr")&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #create temp lyr from manhole fetaure class with selected features&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Selecting..."&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.SelectLayerByAttribute_management("lyr", "New_Selection", "Elevation")&amp;nbsp;&amp;nbsp; #select the feature in that temporary layer???&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Calculating..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gp.CalculateField_management("manhole","Elevation", x)&amp;nbsp;&amp;nbsp;&amp;nbsp; # in the manhole feature class, under the field name Elevation populate the selected feature with the sum of variable x&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; "Manhole elevation calculated..."&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;#gp.CalculateField_management("Manhole","InteriorDrop", y) # in the manhole feature class, under the Elevation field populate the sum of variable y .&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;except:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; #If an error occurred while running a tool, then print the messages&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print gp.GetMessages() &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;any help will be appreciated, thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 00:48:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570790#M44748</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-08T00:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570791#M44749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thomas,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Are you updating every RECORD in the table?&amp;nbsp; In other words, is there any reason to do manual selections in ArcMap?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're updating every row, this could quite easily be done running a stand-alone script using a cursor that runs down through the table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need to do manual selections inside ArcMap, then that's outside of my expertise.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 11:59:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570791#M44749</guid>
      <dc:creator>RDHarles</dc:creator>
      <dc:date>2011-06-08T11:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update a single attribute field of manually selected features (not sel by locatio</title>
      <link>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570792#M44750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes, I need to do an manual selection inside arcmap and only populate one field of that selected feature, not of all the features in that one field.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your help though.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2011 12:32:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/update-a-single-attribute-field-of-manually/m-p/570792#M44750</guid>
      <dc:creator>ThomasBooth</dc:creator>
      <dc:date>2011-06-08T12:32:10Z</dc:date>
    </item>
  </channel>
</rss>

