-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* restructured providers * moved auth to providers * expanded gfm class * WIP fixing auth for gfm api * fixed gfm api call for posting aoi * added available_data method to GFM * add select_data method * added data export for GFM * added tests for GFM workflow * WIP on GFM.view_data() * added view_data method to gfm class * making eo-floods ruff compliant * added docstrings and typing * added docstrings and typing to leaflet.py * added __init__.py * added typing and docstrings to auth.py * added support for authenticating with environment variables * updated gfm tests * added testpath and ruff exclude * improved typing * improved structure * improved hydrafloods auth * added docstring * updated example notebook
- Loading branch information
1 parent
4b22e5e
commit f7840cb
Showing
22 changed files
with
943 additions
and
421 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
""" An easy to use interface for deriving flood maps from earth observation data""" | ||
"""An easy to use interface for deriving flood maps from earth observation data.""" # noqa: N999 | ||
|
||
from dotenv import load_dotenv | ||
|
||
from EO_Floods.floodmap import FloodMap | ||
|
||
load_dotenv() | ||
|
||
__version__ = "2023.12" | ||
__all__ = ["FloodMap"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.