atlite
atlite copied to clipboard
Atlite: A Lightweight Python Package for Calculating Renewable Power Potentials and Time Series
In hydro.py, line 103 `nhours = (distances * (flowspeed * 3.6) + 0.5).astype(int)` should be `nhours = ((distances * 1000) / (flowspeed * 3600) + 0.5).astype(int)` or `nhours = (distances...
Closes #227. ## Change proposed in this Pull Request Methods ``get_windturbineconfig``, ``get_solarpanelconfig`` and ``get_cspinstallationconfig`` load yaml files based on the passed configuration name. Now, additionally, the methods recognize if a...
- [ ] Think about heuristic to download in smaller/larger chunks depending on data geographical scope to download ERA5 cutouts are currently being downloaded as time=yearly slices (after #236 on...
## Change proposed in this Pull Request Add `tracking` keywords to `cutout.irradiation` functions similar to `cutout.pv`. ## Description The underlying `SurfaceOrientation` and `TiltedIrradiation` functions already have support for solar tracking...
## Description The latest SARAH v3 downloads for SID and SIS include a few extra data variables in the xarray dataset, e.g record_status which is an int, which breaks the...
## Change proposed in this Pull Request Once ready, this pull requests would add the possibility to include wind data from the COSMO REA6 reanalysis into atlite. This is a...
It would be helpful to have a description of the details for the weather and climate data (in addition to the table here): ...
## Description In convert.py, one comment in the code says that the hydrological parameters are in "m of water per day" and that they need to be multiplied by 1,000...
Using my config.yaml file, I get an error in the build_cutout, which is related to alite INFO:root:Preparing cutout with parameters {'module': ['sarah', 'era5'], 'x': slice(-12.0, 45.0, None), 'y': slice(33.0, 65,...
## Description When using a global cutout with atlite, problems arise in creating time series. Some problems are related to bounds on the shapes especially when using padding, such as...