<?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 exporting dataframe to feature class missing field in attribute table in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/exporting-dataframe-to-feature-class-missing-field/m-p/1125416#M49005</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I'm using Python on a notebook on ArcGis Pro 2.9.0 to create a featureclas by Pandas dataframe.&lt;BR /&gt;The procedure is executed without error, however when looking in the attributes table the "price" field (flot64) is ignored and does not appear in the attributes table.&lt;BR /&gt;Any tips about it?&lt;/P&gt;&lt;P&gt;This is part of code I'm using:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;# Cria um datafram com o preço sumarizado pelo prefixo do zipcode (3 dígitos)&lt;/SPAN&gt;
gp = df.groupby(&lt;SPAN class=""&gt;'customer_zip_code_prefix_3_digits'&lt;/SPAN&gt;)[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;].&lt;SPAN class=""&gt;sum&lt;/SPAN&gt;().to_frame()

gp[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;] = gp[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;] / &lt;SPAN class=""&gt;1000&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Criando receita --&amp;gt; localização + gp&lt;/SPAN&gt;
receita = localizacao.merge(gp, left_on=&lt;SPAN class=""&gt;'geolocation_zip_code_prefix_3_digits'&lt;/SPAN&gt;, right_on=&lt;SPAN class=""&gt;'customer_zip_code_prefix_3_digits'&lt;/SPAN&gt;, how=&lt;SPAN class=""&gt;'left'&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Cria geodataframe&lt;/SPAN&gt;
receita_geo = receita.spatial.from_xy(localizacao, x_column=&lt;SPAN class=""&gt;"geolocation_lng"&lt;/SPAN&gt;, y_column=&lt;SPAN class=""&gt;"geolocation_lat"&lt;/SPAN&gt;, sr=&lt;SPAN class=""&gt;4326&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Cria a FeatureClass na GDB&lt;/SPAN&gt;
receita_geo = receita_geo.spatial.to_featureclass(location=&lt;SPAN class=""&gt;r"D:/DADOS/Python/trabalhos/E_comerce/CEP_Ecomerce_GIS/CEP_Ecomerce_GIS.gdb/receita_geo"&lt;/SPAN&gt;, overwrite=&lt;SPAN class=""&gt;True)&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 462px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29532i66F52E9365C849F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.JPG" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29533i126FF906895D2799/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.JPG" alt="2.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.JPG" style="width: 991px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29534iEBA98A48DE988AAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.JPG" alt="3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 13 Dec 2021 15:14:47 GMT</pubDate>
    <dc:creator>AroldoRocha</dc:creator>
    <dc:date>2021-12-13T15:14:47Z</dc:date>
    <item>
      <title>exporting dataframe to feature class missing field in attribute table</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/exporting-dataframe-to-feature-class-missing-field/m-p/1125416#M49005</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I'm using Python on a notebook on ArcGis Pro 2.9.0 to create a featureclas by Pandas dataframe.&lt;BR /&gt;The procedure is executed without error, however when looking in the attributes table the "price" field (flot64) is ignored and does not appear in the attributes table.&lt;BR /&gt;Any tips about it?&lt;/P&gt;&lt;P&gt;This is part of code I'm using:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;# Cria um datafram com o preço sumarizado pelo prefixo do zipcode (3 dígitos)&lt;/SPAN&gt;
gp = df.groupby(&lt;SPAN class=""&gt;'customer_zip_code_prefix_3_digits'&lt;/SPAN&gt;)[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;].&lt;SPAN class=""&gt;sum&lt;/SPAN&gt;().to_frame()

gp[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;] = gp[&lt;SPAN class=""&gt;'price'&lt;/SPAN&gt;] / &lt;SPAN class=""&gt;1000&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Criando receita --&amp;gt; localização + gp&lt;/SPAN&gt;
receita = localizacao.merge(gp, left_on=&lt;SPAN class=""&gt;'geolocation_zip_code_prefix_3_digits'&lt;/SPAN&gt;, right_on=&lt;SPAN class=""&gt;'customer_zip_code_prefix_3_digits'&lt;/SPAN&gt;, how=&lt;SPAN class=""&gt;'left'&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Cria geodataframe&lt;/SPAN&gt;
receita_geo = receita.spatial.from_xy(localizacao, x_column=&lt;SPAN class=""&gt;"geolocation_lng"&lt;/SPAN&gt;, y_column=&lt;SPAN class=""&gt;"geolocation_lat"&lt;/SPAN&gt;, sr=&lt;SPAN class=""&gt;4326&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Cria a FeatureClass na GDB&lt;/SPAN&gt;
receita_geo = receita_geo.spatial.to_featureclass(location=&lt;SPAN class=""&gt;r"D:/DADOS/Python/trabalhos/E_comerce/CEP_Ecomerce_GIS/CEP_Ecomerce_GIS.gdb/receita_geo"&lt;/SPAN&gt;, overwrite=&lt;SPAN class=""&gt;True)&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1.JPG" style="width: 462px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29532i66F52E9365C849F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="1.JPG" alt="1.JPG" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2.JPG" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29533i126FF906895D2799/image-size/large?v=v2&amp;amp;px=999" role="button" title="2.JPG" alt="2.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="3.JPG" style="width: 991px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/29534iEBA98A48DE988AAC/image-size/large?v=v2&amp;amp;px=999" role="button" title="3.JPG" alt="3.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 15:14:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/exporting-dataframe-to-feature-class-missing-field/m-p/1125416#M49005</guid>
      <dc:creator>AroldoRocha</dc:creator>
      <dc:date>2021-12-13T15:14:47Z</dc:date>
    </item>
  </channel>
</rss>

