Hello there. I have a pandas dataframe and a feature class. The rows of each relate to a set of ecoregions and ecoregions are named in the same way in the "ecoregion_name" column of each. I would like to append, join, insert cursor, or what have you the dataframe to the feature class.
I do not believe that the "arcpy.management.AddJoin" tool supports dataframes. Does it support csv files by chance?
I have also tried using "update cursor" . The issue I encountered here was being unable to access the value of the join field within the "row" for each for loop iteration, so that I could write a conditional statement which made the match happen between the two join columns.
Is there a concise way of doing this without too much data conversion and code that I am missing? Any solution is very appreciated.
Thanks.
Max