<?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: Read one field and apply domain value to another field with UpdateCursor: KeyError in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272754#M67273</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/564224"&gt;@nsidaniel&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789" target="_blank" rel="noopener"&gt;@BlakeTerhune&lt;/A&gt;, no need to apologize, I appreciate your help! For context, I posted the feature class' attribute table that the code produces below the python.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So I assume your question is not answered? Could you describe exactly what you want to do?&lt;/P&gt;</description>
    <pubDate>Tue, 28 Mar 2023 20:16:20 GMT</pubDate>
    <dc:creator>BlakeTerhune</dc:creator>
    <dc:date>2023-03-28T20:16:20Z</dc:date>
    <item>
      <title>Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272569#M67263</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to read the [OWN] field and apply a domain value to 3 different fields with UpdateCursor, yet I keep getting a KeyError:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;KeyError                                  Traceback (most recent call last)
In  [84]:
Line 49:    row[0] = lookup_values['Fee']

KeyError: 'Fee'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The domains are already set and show up correctly on the a POLYGONS_feature_class. I'm sick of staring at this bit of code! Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt; # defines OpCo, RightsType, and Type_of_Use fields 
    # by info in OWN field

gdb = projectfilepath + projectfileGDB
fc = POLYGONS_feature_class
domains = arcpy.da.ListDomains(gdb)

 # 'OpCo' field
cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN') == 'INT %' or 'IT %' or 'TRANSMISSION, TAX DEPARTMENT':       
        fieldname = 'OpCo'
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
# Set 'OpCo' field
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['IT']
                cursor.updateRow(row)


# 'RightsType' field  
cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN') == 'INT %' or 'IT %' or 'TRANSMISSION, TAX DEPARTMENT':
        fieldname = 'RightsType'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'RightsType' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['Fee']
                cursor.updateRow(row)   
                
 
 # 'Type_of_Use' field
cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN') == 'INT %' or 'IT %' or 'TRANSMISSION, TAX DEPARTMENT': 
        fieldname = 'Type_of_Use'
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set Type_of_Use field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['Full T-Line']
                cursor.updateRow(row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 16:30:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272569#M67263</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-28T16:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272583#M67264</link>
      <description>&lt;P&gt;That error means there's no key of "Fee" lookup_values dictionary when you build it for the RightsType field. Some things to check:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Is a domain assigned to that RightsType field? If so, is the domain you expect?&lt;/LI&gt;&lt;LI&gt;Does that domain have a description of "Fee"? Your zip is putting the description as the key in lookup_values and code in value. Also remember that this lookup value is case sensitive.&lt;/LI&gt;&lt;LI&gt;Maybe print()&amp;nbsp;lookup_values when you build it for the RightsType field so you can confirm what you're getting.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:03:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272583#M67264</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2023-03-28T17:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272600#M67265</link>
      <description>&lt;P&gt;Thanks Blake!&lt;/P&gt;&lt;P&gt;1. Yep, a domain is assigned to the RightsType field&lt;/P&gt;&lt;P&gt;2. Yes, the domain has "Fee"&lt;/P&gt;&lt;P&gt;3. GREAT IDEA!!! I had stored the wrong codes in my domain dictionary.&lt;/P&gt;&lt;P&gt;I had feeling it was something really obvious (it always is, isn't it?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:28:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272600#M67265</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-28T17:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272622#M67269</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789"&gt;@BlakeTerhune&lt;/a&gt;, would you happen to know why when I repeat the code within the same feature class looking for a different domain value within the same domain, the cursor merely writes over the entire field with the new domain?&lt;/P&gt;&lt;LI-CODE lang="c"&gt;cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN') == 'CONSUMERS':
        fieldname = 'OpCo'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'RightsType' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['MET']
                cursor.updateRow(row)   &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 17:57:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272622#M67269</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-28T17:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272647#M67270</link>
      <description>&lt;P&gt;I'm either misunderstanding your question or your original intent. Your code is applying the same value to that field on every row. If you want it to apply a lookup value based on what's already in the field, then you probably want to change it like this.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
    for row in cursor:
        row[0] = lookup_values[row[0]]
        cursor.updateRow(row)&lt;/LI-CODE&gt;&lt;P&gt;My apologies if I'm not answering the correct question.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 18:23:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272647#M67270</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2023-03-28T18:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272690#M67271</link>
      <description>&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789" target="_blank"&gt;@BlakeTerhune&lt;/A&gt;, no need to apologize, I appreciate your help! For context, I posted the feature class' attribute table that the code produces below the python.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN1') == 'ITC' or 'TRANSMISSION':
        fieldname = 'OpCo'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'OpCo' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['ITCT']
                cursor.updateRow(row)



    if row.getValue('OWN1') == 'CONSUMERS':
        fieldname = 'OpCo'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'OpCo' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['METC']
                cursor.updateRow(row)  &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nsidaniel_0-1680029717866.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66558iDF52818B855245AB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nsidaniel_0-1680029717866.png" alt="nsidaniel_0-1680029717866.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 19:55:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272690#M67271</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-28T19:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272754#M67273</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/564224"&gt;@nsidaniel&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789" target="_blank" rel="noopener"&gt;@BlakeTerhune&lt;/A&gt;, no need to apologize, I appreciate your help! For context, I posted the feature class' attribute table that the code produces below the python.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;So I assume your question is not answered? Could you describe exactly what you want to do?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 20:16:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272754#M67273</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2023-03-28T20:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272802#M67276</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789"&gt;@BlakeTerhune&lt;/a&gt;&lt;/P&gt;&lt;P&gt;So, I run the code from my initial question that (thanks to your suggestion) is running wonderfully, here's a sample:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN1') == 'ITC' or 'TRANSMISSION':
        fieldname = 'OpCo'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'OpCo' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['ITCT']
                cursor.updateRow(row)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, then I run the next portion:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="c"&gt;cur = arcpy.UpdateCursor(fc)
for row in cur:
    if row.getValue('OWN1') == 'CONSUMERS':
        fieldname = 'OpCo'              
        field = arcpy.ListFields(fc, fieldname)[0]
        for domain in domains:
            if domain.name == field.domain:
                coded_values = domain.codedValues
                lookup_values = dict(zip(coded_values.values(),coded_values.keys()))
                break
 # Set 'OpCo' field 
        with arcpy.da.UpdateCursor(fc, fieldname) as cursor:
            for row in cursor:
                row[0] = lookup_values['METC']
                cursor.updateRow(row)  &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It spits out:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nsidaniel_0-1680036821003.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/66586iCA3EEEC0EDC72C5A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nsidaniel_0-1680036821003.png" alt="nsidaniel_0-1680036821003.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the OpCo field should all contain "METC"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In theory, if OWN1 contains CONSUMERS, OpCo should be"METC"&lt;/P&gt;&lt;P&gt;and if OWN1 contains ITC or TRANSMISSION, OpCo should be"ITCT"&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 21:07:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1272802#M67276</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-28T21:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273323#M67298</link>
      <description>&lt;P&gt;You're still not telling me what you are tying to do. I'm still guessing, but here's another method to consider.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Build dictionary of domain objects for each field.
domains = arcpy.da.ListDomains(gdb)
field_domain = {}
for field in arcpy.ListFields(fc):
    dom = [d for d in domains if d.name == field.domain]
    if dom:
        field_domain[field.name] = dom[0]

# Update data to change code to description.
fields = ["OWN1", "OpCo", "RightsType", "Type_of_Use"]
with arcpy.da.UpdateCursor(fc, fields) as u_cursor:
    for own1, opco, rightstype, type_of_use in u_cursor:
        # Pick the right domain coded values
        if own1 in ("ITC", "TRANSMISSION"):
            coded_values = field_domain["OpCo"].codedValues
        elif "INT " in own1 or "IT " in own1 or own1 == "TRANSMISSION, TAX DEPARTMENT":
            coded_values = field_domain["RightsType"].codedValues
        # elif a_field == some other condition:
        #     coded_values = field_domain["a_field"].codedValues
        else:
            raise Exception(f"This data doesn't match any criteria.\n{[own1, opco, rightstype, type_of_use]}")

        # Change field value.
        own1 = coded_values['ITCT']
        # Update the row.
        u_cursor.updateRow([own1, opco, rightstype, type_of_use])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Mar 2023 22:14:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273323#M67298</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2023-03-29T22:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273608#M67307</link>
      <description>&lt;P&gt;I apologize for my terrible explanations, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789"&gt;@BlakeTerhune&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;My initial question was how to read one field and then apply a domain value to another field with UpdateCursor. (To be honest I had written successful code for this ... then accidentally&amp;nbsp;changed something.) You helped immensely, which I very much appreciate!&lt;/P&gt;&lt;P&gt;After I applied your suggestion, I then attempted to update the code to search the OWN1 field for "ITC", and "TRANSMISSION, TAX DEPARTMENT", or "CONSUMERS.&lt;/P&gt;&lt;P&gt;It was supposed to search the OWN1 field:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;If it found "ITC", or "TRANSMISSION, TAX DEPARTMENT", it would change the OpCo field to "ITCT".&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;If it found "CONSUMERS", it would change the OpCo field to "METC".&lt;/P&gt;&lt;P&gt;Instead, the code wrote only "ITCT" or "METC" in the OpCo field depending on which I ran first. I'm sure it's obvious that I'm new to coding (but unfortunately, I kind of love it), and cannot see what's wrong.&lt;/P&gt;&lt;P&gt;Hopefully, that makes sense! No matter what, thank you for your time.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 15:53:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273608#M67307</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-03-30T15:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273701#M67310</link>
      <description>&lt;P&gt;Like this then?&lt;/P&gt;&lt;LI-CODE lang="python"&gt;fields = ["OWN1", "OpCo", "RightsType", "Type_of_Use"]
with arcpy.da.UpdateCursor(fc, fields) as u_cursor:
    for own1, opco, rightstype, type_of_use in u_cursor:
        if own1 in ("ITC", "TRANSMISSION, TAX DEPARTMENT"):
            opco = "ITCT"
        elif own1 == "CONSUMERS":
            opco = "METC"
        u_cursor.updateRow([own1, opco, rightstype, type_of_use])&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 17:48:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1273701#M67310</guid>
      <dc:creator>BlakeTerhune</dc:creator>
      <dc:date>2023-03-30T17:48:37Z</dc:date>
    </item>
    <item>
      <title>Re: Read one field and apply domain value to another field with UpdateCursor: KeyError</title>
      <link>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1275383#M67346</link>
      <description>&lt;P&gt;Yes! That's it! Thank you &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/191789"&gt;@BlakeTerhune&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 17:32:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/read-one-field-and-apply-domain-value-to-another/m-p/1275383#M67346</guid>
      <dc:creator>nsidaniel</dc:creator>
      <dc:date>2023-04-04T17:32:49Z</dc:date>
    </item>
  </channel>
</rss>

