Pandas DataFrames and tables Problem
See original GitHub issueI have a service published in ArcGis Online that consists of a layer and two related tables. I have to access one of the tables to write a url and I’m using Pandas to do it. Until now it worked correctly, but now I get the following error.
item = gis.content.get("xxxxxxxxxxx")
foto = (item.tables)[1]
field_service_dataframe = pd.DataFrame.spatial.from_layer(foto)
error:
Could not load the dataset: 'PropertyMap' instance has no attribute 'drawingInfo'
If I want to access the layer, I can create the dataframe correctly; however with a table I can’t. Is it normal that only the data of the layer can be accessed or I have something missing in my code?
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Pandas DataFrames and tables Problem - Esri Community
I have a service published in ArcGis Online that consists of a layer and two related tables. I have to access one of...
Read more >python - performance problem when dealing with DataFrames
I tried different approaches to enhance the performance, such as reading it row by row and accessing the values from that row instead...
Read more >Display the Pandas DataFrame in table style - GeeksforGeeks
In this article, we'll see how we can display a DataFrame in the form of a table with borders around rows and columns....
Read more >Scaling to large datasets — pandas 1.5.2 documentation
pandas provides data structures for in-memory analytics, which makes using pandas to analyze datasets that are larger than memory datasets somewhat tricky. Even ......
Read more >HDFExtError: Problem creating the table · Issue #24823 - GitHub
I tried it with pandas as below. With ncols=1000, it works alright, when ncols=2000 it fails with error "HDF5ExtError: Problems creating the ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Tentatively around UC 2021.
Is there a release window or timeframe for 1.9.0?