Hi All,
Fairly new to publishing spatially enabled dataframes, looking for advice on the following
Both of the above methods seem to export the dataframe out to shapefile first before publishing to feature class. This is causing a couple issues on the back end (field values are being converted to different datatypes resulting in a failed publish)
Is there a better way to publish spatially enabled dataframes in an environment that is not using arcpy?
Thanks!
A better way would probably be to avoid it entirely. I've had lots of similar trouble publishing from a dataframe directly to a layer.
Personally, I would built the destination layer first in order to control the data types, then use the Python API to append data to it.
I was considering that and, yeah it would probably give better control over the destination schema.
Just feels pretty odd having to write a file out to disk just to immediately read it back in....😐