Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Local frequency analysis #20

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
f97c84a
replaced github username by organisation's name
TC-FF May 10, 2023
7a40b36
changed layout in documentation
TC-FF May 10, 2023
f29380f
first functions
TC-FF Jun 1, 2023
b9dff83
added select_catchments function
TC-FF Jun 1, 2023
7465d49
Merge branch 'master' of https://github.com/hydrologie/xhydro into Cl…
TC-FF Jun 1, 2023
d09c450
custom_group_by
TC-FF Jun 1, 2023
fd58a71
custom_group_by comment in english
TC-FF Jun 1, 2023
46f640d
seasons related functions
TC-FF Jun 1, 2023
9abd34a
get_bool_over_tolerence function added
TC-FF Jun 1, 2023
e187afa
added functions to get maximum and represent them
TC-FF Jun 1, 2023
5057003
added imports and function to calculate volume
TC-FF Jun 13, 2023
c910dc2
changed to comply with flake8 standards
TC-FF Jun 13, 2023
ce72f2f
ran black formatter
TC-FF Jun 14, 2023
c09a79a
Merge branch 'main' of https://github.com/hydrologie/xhydro into Clas…
TC-FF Jun 14, 2023
62c0869
added class local
TC-FF Jun 20, 2023
db77d2c
Merge branch 'main' of https://github.com/hydrologie/xhydro into Clas…
TC-FF Jun 20, 2023
60c55d1
Added utils functions to go with local and data classes
TC-FF Jun 23, 2023
40e74ad
updated init to run first Notebook
TC-FF Jun 23, 2023
02b94bb
made changes to adrees new dataset dimensions
TC-FF Jun 23, 2023
db600c5
NB's first comit. Code still need upgrades for end
TC-FF Jun 23, 2023
c123558
change paths to general format
sebastienlanglois Aug 28, 2023
14368b5
add xdatasets to retrieve data in example nb
sebastienlanglois Aug 28, 2023
a3f6ced
first draft notebook for local frequency analysis
sebastienlanglois Aug 28, 2023
dce5076
make frequency_analysis a module
sebastienlanglois Aug 28, 2023
a7bb04c
remove first paragraph
sebastienlanglois Aug 28, 2023
4ac2f97
Merge remote-tracking branch 'origin/main' into Class-Data-in-frequen…
RondeauG Oct 2, 2023
7b4fb8a
Merge branch 'main' into Class-Data-in-frequency_analysis.local
Zeitsperre Oct 3, 2023
b479682
exclude jupyter notebooks
Zeitsperre Oct 3, 2023
5b18b64
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 3, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Welcome to xHydro's documentation!
.. toctree::
:maxdepth: 2
:caption: Contents:
:hidden:

readme
installation
Expand All @@ -13,8 +14,8 @@ Welcome to xHydro's documentation!
authors
history

Indices and tables
==================
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
.. Indices and tables
.. ==================
.. * :ref:`genindex`
.. * :ref:`modindex`
.. * :ref:`search`
4,000 changes: 4,000 additions & 0 deletions docs/notebooks/local_frequency_analysis.ipynb

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ dependencies:
- xarray >=0.17.0
- xclim >=0.43.0
- zarr >=2.11.1
- pip:
- xdatasets
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"docs": docs_requirements,
"dev": dev_requirements,
},
url="https://github.com/TC-FF/xhydro",
url="https://github.com/hydrologie/xhydro",
version="0.1.5",
zip_safe=False,
)
2 changes: 2 additions & 0 deletions xhydro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
__author__ = """Thomas-Charles Fortier Filion"""
__email__ = "tcff_hydro@outlook.com"
__version__ = "0.1.5"

from .utils import get_julian_day, get_timestep
Empty file.
Loading
Loading