Releases: openalea/astk
Releases · openalea/astk
Release 2025
- https://github.com/openalea/astk
- Documentation: https://openalea-astk.readthedocs.io
- Astk allows to calculate sky luminance and sky sources to be used with FSPM light models from weather data.
- namespace changed from
alinea.astktoopenalea.astk
instead of
import alinea.astk
from alinea.astk.Weather import Weatherdo
import openalea.astk
from openalea.astk.Weather import Weather- main interface to generate a sky from meteorlogical data is no longer via alinea.sun_and_sky.sun_sky_sources, but by using sky_irradiance and sky_sources.
instead of
from alinea.astk.sun_and_sky import sun_sky_sources
sources = sun_sky_sources(model='blended')do
from openalea.astk.sky_irradiance import sky_irradiance
from openalea.astk.sky_sources import sky_sources
irradiance = sky_irradiance()
sources = sky_sources('blended', irradiance)NewCI Test
Test release CI
try remove v from conda package name
Try removing v from conda package version (to allow correct identification of latest version by conda)
Modernise access to data
Modernise access to data using setuptools recommandations
Fore horizontal source irradiance
Force the irradiance of source to be horizontal
test wheteher git_describe_tag is set for conda-build
test whether toml dynamic version is okay
new API
Review astk API for better and extended sky generation
v2.4.1
v2.4.0
Update to namespace packages.
What's Changed
- Packaging for release with Python 3 support by @pradal in #17
- Fix SyntaxWarning by @pradal in #18
- Update numpy by @pradal in #19
- Pure Python Package by @pradal in #24
- Packaging by @pradal in #25
- Move alinea to namespace package by @pradal in #26
Full Changelog: 2.2.1...2.4.0
fix __next__
Merge pull request #15 from openalea-incubator/bugfix Bugfix from echap package