MuseoPheno documentation

Build status Documentation status Museo Pheno License

PyPI version Build status Downloads

MuseoPheno

MuseoPheno aims to be a phenology toolbox for Satellite Image Time Series. The documentation is hosted on readthedocs.

What does MuseoPheno do today ?

MuseoPheno globally eases the way to smooth or compute spectral indices for time series.

Don’t manage temporal information, MuseoPheno does it for you

Spectral indices

Let’s suppose you want to compute the NDVI, and you know how your bands are ordered in your raster. Just define your band order (it supposes your bands are stacked in the following order : band1, band2… for date 1, then band1, band2 for date 2 and so on…) then give MuseoPheno the expression “(B8-B4)/(B8+B4)”, and the library will generate the NDVI for each date.

So it takes only a few lines to go from your time series to a temporal spectral index. It is also as fast to produce the indice raster.

You can see the demo here with Leaf Chlorophyll Content.

Your index is not listed ? It is very easy to add a new sensor or to add new index. Just follow the simple documentation.

Temporal resampling and smoothing

It has never been so easy to temporaly resample a time series given an array. Just define the beginning date, the end date, and the delta between acquistion, then MuseoPheno will deal it for you. You need to smooth your new time series ? No problem, just use the SmoothSignal class.

Phenological metrics

You can easilly compute phenological metrics (start of season, end of season) using the PhenologyMetrics class from the time_series module.

How do I install it ?

A package is available on pip : python3 -m pip install museopheno --user

Alternatively, you can install museopheno directly from the git : python3 -m pip install git+https://github.com/nkarasiak/MuseoPheno.git --user

Feel free to remove the --user if you like to install the library for every user on the machine.

Indices and tables