I was trying to import a pandas dataframe which contained information about coordinates to use in a layer. However I got the message: The maximum number of records allowed (1000) has been exceeded.
This is my code, I am using Jupyter Notebook.
coord = all_data[['LATITUDE','LONGITUDE']]
imp = gis.content.import_data(coord)
... View more