nrt

Python package for near real time detection of change in spatio-temporal datasets, with a focus on forest disturbances mapping.
https://github.com/ec-jrc/nrt

Category: Biosphere
Sub Category: Forest Remote Sensing

Keywords

anomalies-detection datacube forest-disturbances monitoring sentinel-2

Last synced: about 15 hours ago
JSON representation

Repository metadata

Near Real Time monitoring of satellite image time-series

README.rst

          ***
nrt
***

*Python package for near real time detection of change in spatio-temporal datasets*

.. image:: https://badge.fury.io/py/nrt.svg
    :target: https://badge.fury.io/py/nrt

.. image:: https://readthedocs.org/projects/nrt/badge/?version=latest
    :target: https://nrt.readthedocs.io/en/latest/?badge=latest
    :alt: Documentation Status

.. image:: https://github.com/ec-jrc/nrt/actions/workflows/build_and_test.yml/badge.svg
    :target: https://github.com/ec-jrc/nrt/actions/workflows/build_and_test.yml
    :alt: Build status

.. image:: https://joss.theoj.org/papers/10.21105/joss.06815/status.svg
   :target: https://doi.org/10.21105/joss.06815


``nrt`` provides a standardized interface for Near Real Time monitoring of disturbances on satellite image time-series.
The package is optimized for fast computation and suitable for operational deployment at scale.
A typical operational use case of such package would be a system constantly receiving new satellite based acquisitions and generating alerts when an anomaly is detected.
Five monitoring frameworks from scientific literature on change detection are implemented and exposed via a common API.
All five monitoring framework share a common general approach which consists in modelling the "normal" behavior of the variable through time by fitting a linear model on a user defined stable history period and monitoring until a "break" is detected.
Monitoring starts right after the stable history period, and for each new incoming observation the observed value is compared to the predicted "normal" behavior.
When observations and predictions diverge, a "break" is detected.
A confirmed "break" typically requires several successive diverging observations, this sensitivity or rapid detection capacity depending on many variables such as the algorithm, its fitting and monitoring parameters, the noise level of the history period or the magnitude of the divergence. 
The five monitoring frameworks implemented are:

- Exponentially Weighted Moving Average (EWMA_) (Brooks et al., 2013) 
- Cumulative Sum of Residual (CuSum_) (Verbesselt et al., 2012; Zeileis et al., 2005). CuSum is one of the monitoring option of the ``bfastmonitor`` function available in the R package bfast_.
- Moving Sum of Residuals (MoSum_) (Verbesselt et al., 2012; Zeileis et al., 2005). MoSum is one of the monitoring option of the ``bfastmonitor`` function available in the R package bfast_.
- Continuous Change Detection and Classification of land cover (CCDC_, CMFDA_) (Zhu et al., 2012, 2014) - Partial implementation only of the original published method.
- InterQuantile Range (IQR) - Simple, unpublished outlier identification strategy described on stackexchange_.


Parts of this package are derived from Chris Holden's pybreakpoints_ and yatsm_ packages. Please see the copyright statements in the respective modules.

.. _EWMA: https://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6573358
.. _CMFDA: https://www.sciencedirect.com/science/article/pii/S0034425712000387
.. _CCDC: https://www.sciencedirect.com/science/article/pii/S0034425714000248#bbb0350
.. _CuSum: https://www.sciencedirect.com/science/article/pii/S0034425712001150
.. _MoSum: https://www.sciencedirect.com/science/article/pii/S0034425712001150
.. _stackexchange: https://stats.stackexchange.com/a/1153
.. _bfast: https://bfast.r-forge.r-project.org/
.. _pybreakpoints: https://github.com/ceholden/pybreakpoints
.. _yatsm: https://github.com/ceholden/yatsm



Documentation
=============

Learn more about nrt in its official documentation at https://nrt.readthedocs.io/en/latest/

  
Installation
============

.. code-block:: bash

    pip install nrt


The main dependencies, which should be automatically resolved by ``pip``, are:

- `numpy `_
- `scipy `_
- `xarray `_
- `numba `_
- `rasterio `_
- `netCDF4 `_


Example usage
=============

The snippet below presents a near real time monitoring simulation. The input data is split in stable history and monitoring period; the monitoring class is instantiated (EWMA algorithm), a simple harmonic model is fitted on the history period, and new acquisition are passed to the monitor method one at the time. Note that in a real operational scenario where new observations come at a less frequent interval (e.g. every 5 or 8 days which coorespond to the revisit frequency of sentinel 2 and Landsat constellations respectively), the monitoring state can be saved on disk and reloaded when required.

.. code-block:: python

    import datetime

    from nrt.monitor.ewma import EWMA
    from nrt import data

    # Forest/non-forest mask
    mask = (data.romania_forest_cover_percentage() > 30).astype('int')

    # NDVI training and monitoring periods
    s2_cube = data.romania_20m()
    s2_cube['ndvi'] = (s2_cube.B8A - s2_cube.B04) / (s2_cube.B8A + s2_cube.B04)
    s2_cube = s2_cube.where(s2_cube.SCL.isin([4,5,7]))
    ndvi_history = s2_cube.ndvi.sel(time=slice('2015-01-01', '2018-12-31'))
    ndvi_monitoring = s2_cube.ndvi.sel(time=slice('2019-01-01', '2021-12-31'))

    # Instantiate monitoring class and fit stable history
    EwmaMonitor = EWMA(trend=False, mask=mask)
    EwmaMonitor.fit(dataarray=ndvi_history)

    # Monitor new observations
    for array, date in zip(ndvi_monitoring.values,
                           ndvi_monitoring.time.values.astype('M8[s]').astype(datetime.datetime)):
        EwmaMonitor.monitor(array=array, date=date)

    # At any time a monitoring report can be produced with EwmaMonitor.report(filename)
    # and state of the monitoring instance can be saved as netcdf with
    # EwmaMonitor.to_netcdf(filename)


Contributing
============

Any type of contribution is welcome. Please see the contributing guidelines at `CONTRIBUTING.md `_.


Citing nrt
==========

If you use nrt in your research or project, please consider citing it using the following BibTeX entry.

.. code-block:: bibtex

   @article{dutrieux2024nrt,
     year = {2024},
     publisher = {The Open Journal},
     volume = {9},
     number = {100},
     pages = {6815},
     author = {Lo\"{i}c Dutrieux and Jonas Viehweger},
     title = {nrt: operational monitoring of satellite image time-series in Python},
     journal = {Journal of Open Source Software},
     doi = {10.21105/joss.06815},
   }


About the authors
=================

Loïc Dutrieux works as a remote sensing researcher at the Joint Research Center (JRC) in Ispra, Italy. His work focuses on forest disturbances mapping and characterization from satellite image time-series.

Jonas Viehweger is a young researcher with a MSc in remote sensing from the university of Marburg, Germany. He developped a large part of the nrt package during his traineeship period at the Joint Research Center (JRC) in Ispra, Italy.

Chris Holden implemented many time-series change detection algorithms in python during his PhD at Boston university.


References
==========

Brooks, E.B., Wynne, R.H., Thomas, V.A., Blinn, C.E. and Coulston, J.W., 2013. On-the-fly massively multitemporal change detection using statistical quality control charts and Landsat data. IEEE Transactions on Geoscience and Remote Sensing, 52(6), pp.3316-3332.
https://doi.org/10.1109/TGRS.2013.2272545

Verbesselt, J., Zeileis, A. and Herold, M., 2012. Near real-time disturbance detection using satellite image time series. Remote Sensing of Environment, 123, pp.98-108.
https://doi.org/10.1016/j.rse.2012.02.022

Zeileis, A., Leisch, F., Kleiber, C. and Hornik, K., 2005. Monitoring structural change in dynamic econometric models. Journal of Applied Econometrics, 20(1), pp.99-121.
https://doi.org/10.1002/jae.776

Zhu, Z., Woodcock, C.E. and Olofsson, P., 2012. Continuous monitoring of forest disturbance using all available Landsat imagery. Remote sensing of environment, 122, pp.75-91.
https://doi.org/10.1016/j.rse.2011.10.030

Zhu, Z. and Woodcock, C.E., 2014. Continuous change detection and classification of land cover using all available Landsat data. Remote sensing of Environment, 144, pp.152-171.
https://doi.org/10.1016/j.rse.2014.01.011

        

Citation (CITATION.cff)

cff-version: "1.2.0"
authors:
- family-names: Dutrieux
  given-names: Loïc
  orcid: "https://orcid.org/0000-0002-5058-2526"
- family-names: Viehweger
  given-names: Jonas
  orcid: "https://orcid.org/0000-0002-1610-4600"
doi: 10.5281/zenodo.12799278
message: If you use nrt in your research or project, please cite our article in the
  Journal of Open Source Software.
preferred-citation:
  authors:
  - family-names: Dutrieux
    given-names: Loïc
    orcid: "https://orcid.org/0000-0002-5058-2526"
  - family-names: Viehweger
    given-names: Jonas
    orcid: "https://orcid.org/0000-0002-1610-4600"
  date-published: 2024-08-15
  doi: 10.21105/joss.06815
  issn: 2475-9066
  issue: 100
  journal: Journal of Open Source Software
  publisher:
    name: Open Journals
  start: 6815
  title: "nrt: operational monitoring of satellite image time-series in
    Python"
  type: article
  url: "https://joss.theoj.org/papers/10.21105/joss.06815"
  volume: 9
title: "nrt: operational monitoring of satellite image time-series in
  Python"


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 27 days ago

Total Commits: 342
Total Committers: 4
Avg Commits per committer: 85.5
Development Distribution Score (DDS): 0.395

Commits in past year: 31
Committers in past year: 2
Avg Commits per committer in past year: 15.5
Development Distribution Score (DDS) in past year: 0.097

Name Email Commits
Jonas Viehweger j****h@g****m 207
Loïc Dutrieux l****x@g****m 131
Adam R. Jensen 3****n 3
ash5thpeak 1****k 1

Committer domains:


Issue and Pull Request metadata

Last synced: 6 days ago

Total issues: 24
Total pull requests: 7
Average time to close issues: 16 days
Average time to close pull requests: about 2 months
Total issue authors: 6
Total pull request authors: 3
Average comments per issue: 1.25
Average comments per pull request: 1.57
Merged pull request: 6
Bot issues: 0
Bot pull requests: 0

Past year issues: 20
Past year pull requests: 3
Past year average time to close issues: 2 days
Past year average time to close pull requests: about 2 hours
Past year issue authors: 4
Past year pull request authors: 1
Past year average comments per issue: 1.1
Past year average comments per pull request: 1.67
Past year merged pull request: 2
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/ec-jrc/nrt

Top Issue Authors

  • AdamRJensen (12)
  • loicdtx (4)
  • szwiep (4)
  • alexgleith (2)
  • kenoz (1)
  • jdilger (1)

Top Pull Request Authors

  • loicdtx (3)
  • AdamRJensen (3)
  • ash5thpeak (1)

Top Issue Labels

  • enhancement (1)

Top Pull Request Labels


Package metadata

pypi.org: nrt

Online monitoring with xarray

  • Homepage: https://github.com/ec-jrc/nrt.git
  • Documentation: https://nrt.readthedocs.io/
  • Licenses: EUPL-1.2
  • Latest release: 0.3.0 (published 8 months ago)
  • Last Synced: 2025-05-03T05:37:23.853Z (6 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 212 Last month
  • Rankings:
    • Downloads: 4.122%
    • Dependent packages count: 9.995%
    • Average: 11.948%
    • Dependent repos count: 21.728%
  • Maintainers (1)
pypi.org: nrt-data

nrt namespace package giving access to demo and test datasets, extracted from nrt core

  • Homepage:
  • Documentation: https://nrt-data.readthedocs.io/
  • Licenses: EUPL-1.2
  • Latest release: 0.0.1 (published 8 months ago)
  • Last Synced: 2025-05-03T05:37:27.998Z (6 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 183 Last month
  • Rankings:
    • Dependent packages count: 10.423%
    • Average: 34.546%
    • Dependent repos count: 58.67%
  • Maintainers (1)

Dependencies

setup.py pypi
  • affine *
  • netCDF4 *
  • numba *
  • numpy *
  • pandas *
  • rasterio *
  • scipy *
  • xarray *
.github/workflows/build_and_test.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite

Score: 11.60433714640434