upload_file = "c:\data.csv"
file_properties = {'title': friendly_name,
'tags': 'public, data, animal, welfare',
'type': 'CSV'
}
item = gis.content.add(file_properties, upload_file)
misc = item.publish()
===
I want to publish it as a Table but item.publish() results in a FeatureLayer being published.
When I do this interactively through portal, there is an option Locate Features By: coordinates or none.
I am not finding where I can in Python set this to none.
Suggestions?