-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
bugSomething isn't workingSomething isn't working
Description
What happened?
Cool tool. Playing around a bit, I get different fields between get_all_data and get_filtered_data. In particular, I was hoping to get eventName out of get_all_data
What did you expect to happen?
same or more fields in get_all_data
Minimal Complete Verifiable Example
hwm_all = STNFloodEventData.get_all_data(
"hwms", as_list=False, async_retriever_kwargs={
"disable": False, # temporarily disable caching requests and get new responses from the server, defaults to False.
#"max_workers": 6,
}
)
hwm_all.info()
<class 'geopandas.geodataframe.GeoDataFrame'>
RangeIndex: 38634 entries, 0 to 38633
Data columns (total 33 columns):
hwm_filtered = STNFloodEventData.get_filtered_data(
"hwms",
crs="ESRI:102003",
async_retriever_kwargs={"disable": False},
query_params={"States": "SC,NC"},
)
hwm_filtered.info()
<class 'geopandas.geodataframe.GeoDataFrame'>
RangeIndex: 4513 entries, 0 to 4512
Data columns (total 54 columns):MVCE confirmation
- Minimal example — the example is as focused as reasonably possible to demonstrate the underlying issue.
- Complete example — the example is self-contained, including all data and the text of any traceback.
- New issue — a search of GitHub Issues suggests this is not a duplicate.
Relevant log output
Anything else we need to know?
No response
Environment
Details
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working