You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using leafmap's function that works with Maxar (notebook link: [https://leafmap.org/notebooks/67_maxar_open_data/])
I got this error. Looks like it's using a removed command (gdf.append)
What I Did
gdf = leafmap.maxar_all_items(
collection_id='Kahramanmaras-turkey-earthquake-23',
return_gdf=True,
verbose=True
)
gdf.to_file('maxar_footprints.geojson', driver='GeoJSON')
gdf
Processing (01 out of 76): 10200100B5C3A800 ...
Processing (02 out of 76): 10300100D6740900 ...
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
[<ipython-input-4-63e56299955b>](https://localhost:8080/#) in <cell line: 0>()
----> 1 gdf = leafmap.maxar_all_items(
2 collection_id='Kahramanmaras-turkey-earthquake-23',
3 return_gdf=True,
4 verbose=True
5 )
1 frames
[/usr/local/lib/python3.11/dist-packages/pandas/core/generic.py](https://localhost:8080/#) in __getattr__(self, name)
6297 ):
6298 return self[name]
-> 6299 return object.__getattribute__(self, name)
6300
6301 @final
AttributeError: 'GeoDataFrame' object has no attribute 'append'
The text was updated successfully, but these errors were encountered:
Oddly enough it doesn't work for me either on my machine (actually our lab server) or on Colab...
Here is what I got, together with the packages' versions:
Environment Information
Description
When using leafmap's function that works with Maxar (notebook link: [https://leafmap.org/notebooks/67_maxar_open_data/])
I got this error. Looks like it's using a removed command (gdf.append)
What I Did
The text was updated successfully, but these errors were encountered: