Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
8a14ac0
initial attemtp at opendap access
mrmorawski May 8, 2026
2732e4f
smarter CE plus semaphore to limit no of simultaneous connections
mrmorawski May 8, 2026
9c17e13
add caching
mrmorawski May 8, 2026
336df02
add deps for ncar
mrmorawski May 8, 2026
e029c46
zarr instead of netcdf for cahing to improve parallelism, tests to co…
mrmorawski May 8, 2026
e1d0dcd
test setup simplified, minor fix to downloaded coords
mrmorawski May 8, 2026
21488ef
first pass at spatial subsetting
mrmorawski May 8, 2026
e7ce2d6
processing for solar
mrmorawski May 8, 2026
86f734c
first attempt at regrid
mrmorawski May 8, 2026
66ca5da
regridding fixed
mrmorawski May 8, 2026
016b6a6
processing for remaining values implemented, passes tests at native r…
mrmorawski May 8, 2026
1c9a7b4
merged tests for era5_ncar
mrmorawski May 8, 2026
5f1e7ff
precomputed time axis to save on fetches, parallel building, skip int…
mrmorawski May 8, 2026
5ddb2eb
rate limit downloads through a custom dask pool instead of semaphore
mrmorawski May 8, 2026
e4cc402
todos after code review
mrmorawski May 8, 2026
4050e3f
style updated for consistency with era5.py, type annotations
mrmorawski May 8, 2026
96031ed
added units to missing vars
mrmorawski May 8, 2026
294bc87
invariant import handling simplified@
mrmorawski May 8, 2026
29cdb9e
per-variable tolerances for weird resolution cutout
mrmorawski May 8, 2026
540685d
numpy style docstrings
mrmorawski May 8, 2026
c2347b2
add time sampling tests
mrmorawski May 9, 2026
df033d6
first pass at era5_ncar doc
mrmorawski May 9, 2026
ada0936
finished docs
mrmorawski May 10, 2026
c55a890
suppress pydap log, add regridding warning
mrmorawski May 10, 2026
b5d5010
updated comments + reorganised function - update incomplete
mrmorawski May 10, 2026
ff639ec
use circular azimuth error in tests, better zero meridian handling, c…
mrmorawski May 10, 2026
7e29bca
fix documentation typos
mrmorawski May 10, 2026
a3d1e01
clearer comment structure, fix for edge case when retrieving data aro…
mrmorawski May 10, 2026
ed5a2c7
Merge branch 'PyPSA:master' into era5-ncar-thredds
mrmorawski May 10, 2026
fce7552
add release note
mrmorawski May 10, 2026
639a749
move release note to correct place
mrmorawski May 10, 2026
bb0c78f
clean up comments in era5_ncar tests
mrmorawski May 11, 2026
4538c74
consistent formatting of log output in era5_ncar, suppress known warn…
mrmorawski May 11, 2026
8bec53c
clean up doc notebook output
mrmorawski May 12, 2026
e88f915
more efficient zarr cache chunking, minor refactoring of logging setup
mrmorawski May 12, 2026
f0e286b
add all atlite vars downloaded from edh plus tests
mrmorawski May 15, 2026
d70e5c7
update docs for EDH model
mrmorawski May 15, 2026
81cf6a0
customizable chunk size support, cast all vars to float32 to save on …
mrmorawski May 16, 2026
342075d
udpate test tols for compatibility with float32 cast
mrmorawski May 16, 2026
ff4ecd3
updated documentation in notebooks
mrmorawski May 17, 2026
41c7ad8
clearer comments
mrmorawski May 17, 2026
ec9085f
retries on failed chunk downloads, minor refactors
mrmorawski May 19, 2026
08fe6aa
docs improvements
mrmorawski May 21, 2026
ce942d4
fix typo in test docstring
mrmorawski May 22, 2026
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
6 changes: 6 additions & 0 deletions RELEASE_NOTES.rst
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ Upcoming Release

* Fix backwards compatibility of ``aggregate_matrix``.

**Features**

* Add an Earth Data Hub (EDH) source for ERA5 as a new dataset ``atlite/datasets/era5_edh.py``.
EDH provides data without a processing queue.


`v0.6.0 <https://github.com/PyPSA/atlite/releases/tag/v0.6.0>`__ (15th April 2026)
=======================================================================================

Expand Down
9 changes: 7 additions & 2 deletions atlite/datasets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
atlite datasets.
"""

from atlite.datasets import era5, gebco, sarah
from atlite.datasets import era5, era5_edh, gebco, sarah

modules = {"era5": era5, "sarah": sarah, "gebco": gebco}
modules = {
"era5": era5,
"era5-edh": era5_edh,
"sarah": sarah,
"gebco": gebco,
}
Loading