https://github.com/crc-fonda/nf-core-rangeland

Pipeline for remotely sensed imagery. The pipeline processes satellite imagery alongside auxiliary data in multiple steps to arrive at a set of trend files related to land-cover changes.

https://github.com/crc-fonda/nf-core-rangeland

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
  • .zenodo.json file
  • DOI references
    Found 13 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.1%) to scientific vocabulary
Last synced: 6 months ago · JSON representation

Repository

Pipeline for remotely sensed imagery. The pipeline processes satellite imagery alongside auxiliary data in multiple steps to arrive at a set of trend files related to land-cover changes.

Basic Info
  • Host: GitHub
  • Owner: CRC-FONDA
  • License: mit
  • Language: Nextflow
  • Default Branch: dev
  • Homepage: https://nf-co.re/rangeland
  • Size: 7.22 MB
Statistics
  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Fork of nf-core/rangeland
Created about 2 years ago · Last pushed 8 months ago

https://github.com/CRC-FONDA/nf-core-rangeland/blob/dev/

nf-core/rangeland

[![GitHub Actions CI Status](https://github.com/nf-core/rangeland/actions/workflows/nf-test.yml/badge.svg)](https://github.com/nf-core/rangeland/actions/workflows/nf-test.yml) [![GitHub Actions Linting Status](https://github.com/nf-core/rangeland/actions/workflows/linting.yml/badge.svg)](https://github.com/nf-core/rangeland/actions/workflows/linting.yml)[![AWS CI](https://img.shields.io/badge/CI%20tests-full%20size-FF9900?labelColor=000000&logo=Amazon%20AWS)](https://nf-co.re/rangeland/results)[![Cite with Zenodo](http://img.shields.io/badge/DOI-10.5281/zenodo.14679189-1073c8?labelColor=000000)](https://doi.org/10.5281/zenodo.14679189) [![nf-test](https://img.shields.io/badge/unit_tests-nf--test-337ab7.svg)](https://www.nf-test.com) [![Nextflow](https://img.shields.io/badge/version-%E2%89%A524.10.5-green?style=flat&logo=nextflow&logoColor=white&color=%230DC09D&link=https%3A%2F%2Fnextflow.io)](https://www.nextflow.io/) [![nf-core template version](https://img.shields.io/badge/nf--core_template-3.3.2-green?style=flat&logo=nfcore&logoColor=white&color=%2324B064&link=https%3A%2F%2Fnf-co.re)](https://github.com/nf-core/tools/releases/tag/3.3.2) [![run with conda](http://img.shields.io/badge/run%20with-conda-3EB049?labelColor=000000&logo=anaconda)](https://docs.conda.io/en/latest/) [![run with docker](https://img.shields.io/badge/run%20with-docker-0db7ed?labelColor=000000&logo=docker)](https://www.docker.com/) [![run with singularity](https://img.shields.io/badge/run%20with-singularity-1d355c.svg?labelColor=000000)](https://sylabs.io/docs/) [![Launch on Seqera Platform](https://img.shields.io/badge/Launch%20%F0%9F%9A%80-Seqera%20Platform-%234256e7)](https://cloud.seqera.io/launch?pipeline=https://github.com/nf-core/rangeland) [![Get help on Slack](http://img.shields.io/badge/slack-nf--core%20%23rangeland-4A154B?labelColor=000000&logo=slack)](https://nfcore.slack.com/channels/rangeland)[![Follow on Bluesky](https://img.shields.io/badge/bluesky-%40nf__core-1185fe?labelColor=000000&logo=bluesky)](https://bsky.app/profile/nf-co.re)[![Follow on Mastodon](https://img.shields.io/badge/mastodon-nf__core-6364ff?labelColor=FFFFFF&logo=mastodon)](https://mstdn.science/@nf_core)[![Watch on YouTube](http://img.shields.io/badge/youtube-nf--core-FF0000?labelColor=000000&logo=youtube)](https://www.youtube.com/c/nf-core) ![HiRSE Code Promo Badge](https://img.shields.io/badge/Promo-8db427?label=HiRSE&labelColor=005aa0&link=https%3A%2F%2Fgo.fzj.de%2FCodePromo) ## Introduction **nf-core/rangeland** is a best-practice Earth Observation analysis pipeline for remotely sensed imagery. The pipeline processes satellite imagery alongside auxiliary data in multiple steps to arrive at a set of trend files related to land-cover changes. The main pipeline steps are: 1. Read satellite imagery, datacube definition, area of interest definition (aoi) and optional inputs such as digital elevation model (dem), endmember definition and water vapor database (wvdb) 2. Generate allow list and analysis mask to determine which pixels from the satellite data can be used 3. Preprocess data to obtain atmospherically corrected images alongside quality assurance information (aka. level 2 analysis read data) 4. Merge preprocessed data based on spatially and temporally overlap 5. Time series analyses to obtain trends in vegetation dynamics to derive level 3 data 6. Create mosaic and pyramid visualizations of the results 7. Version reporting with MultiQC ([`MultiQC`](http://multiqc.info/))

## Usage > [!NOTE] > If you are new to Nextflow and nf-core, please refer to [this page](https://nf-co.re/docs/usage/installation) on how to set-up Nextflow. Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) with `-profile test` before running the workflow on actual data. To run, satellite imagery, datacube specification, and a area-of-interest specification are required as input. It is highly recommended to also provide data water vapor data, a digital elevation model and a endmember definition. Please refer to the [usage documentation](https://nf-co.re/rangeland/usage) for details on the input structure. Now, you can run the pipeline using: ```bash nextflow run nf-core/rangeland \ -profile \ --input \ --data_cube \ --aoi \ --outdir ``` The following parameters should be added for optimal results: ```bash --dem \ --wvdb \ --endmember ``` To enable spectral unmixing, and use the endmember file, the `--indexes` parameters should contain `SMA`, e.g.: ```bash --indexes "SMA NDVI BLUE GREEN RED NIR SWIR1 SWIR2" ``` See the [usage documentation](./docs/usage.md#higher-level-processing-indexes) for more details on indexes. > [!WARNING] > Please provide pipeline parameters via the CLI or Nextflow `-params-file` option. Custom config files including those provided by the `-c` Nextflow option can be used to provide any configuration _**except for parameters**_; see [docs](https://nf-co.re/docs/usage/getting_started/configuration#custom-configuration-files). For more details and further functionality, please refer to the [usage documentation](https://nf-co.re/rangeland/usage) and the [parameter documentation](https://nf-co.re/rangeland/parameters). ## Pipeline output To see the results of an example test run with a full size dataset refer to the [results](https://nf-co.re/rangeland/results) tab on the nf-core website pipeline page. For more details about the output files and reports, please refer to the [output documentation](https://nf-co.re/rangeland/output). ## Credits The rangeland workflow was originally written by: - [Fabian Lehmann](https://github.com/Lehmann-Fabian) - [David Frantz](https://github.com/davidfrantz) The original workflow can be found on [github](https://github.com/CRC-FONDA/FORCE2NXF-Rangeland). Transformation to nf-core/rangeland was conducted by [Felix Kummer](https://github.com/Felix-Kummer). nf-core alignment started on the [nf-core branch of the original repository](https://github.com/CRC-FONDA/FORCE2NXF-Rangeland/tree/nf-core). We thank the following people for their extensive assistance in the development of this pipeline: - [Fabian Lehmann](https://github.com/Lehmann-Fabian) - [Katarzyna Ewa Lewinska](https://github.com/kelewinska) ## Acknowledgements This pipeline was developed and aligned with nf-core as part of the [Foundations of Workflows for Large-Scale Scientific Data Analysis (FONDA)](https://fonda.hu-berlin.de/) initiative. [![FONDA](docs/images/fonda_logo2_cropped.png)](https://fonda.hu-berlin.de/) FONDA can be cited as follows: > **The Collaborative Research Center FONDA.** > > Ulf Leser, Marcus Hilbrich, Claudia Draxl, Peter Eisert, Lars Grunske, Patrick Hostert, Dagmar Kainmller, Odej Kao, Birte Kehr, Timo Kehrer, Christoph Koch, Volker Markl, Henning Meyerhenke, Tilmann Rabl, Alexander Reinefeld, Knut Reinert, Kerstin Ritter, Bjrn Scheuermann, Florian Schintke, Nicole Schweikardt, Matthias Weidlich. > > _Datenbank Spektrum_ 2021 doi: [10.1007/s13222-021-00397-5](https://doi.org/10.1007/s13222-021-00397-5) ## Contributions and Support If you would like to contribute to this pipeline, please see the [contributing guidelines](.github/CONTRIBUTING.md). For further information or help, don't hesitate to get in touch on the [Slack `#rangeland` channel](https://nfcore.slack.com/channels/rangeland) (you can join with [this invite](https://nf-co.re/join/slack)). ## Citations If you use nf-core/rangeland for your analysis, please cite it using the following doi: [10.5281/zenodo.14679189](https://doi.org/10.5281/zenodo.14679189) An extensive list of references for the tools used by the pipeline can be found in the [`CITATIONS.md`](CITATIONS.md) file. You can cite the `nf-core` publication as follows: > **The nf-core framework for community-curated bioinformatics pipelines.** > > Philip Ewels, Alexander Peltzer, Sven Fillinger, Harshil Patel, Johannes Alneberg, Andreas Wilm, Maxime Ulysse Garcia, Paolo Di Tommaso & Sven Nahnsen. > > _Nat Biotechnol._ 2020 Feb 13. doi: [10.1038/s41587-020-0439-x](https://dx.doi.org/10.1038/s41587-020-0439-x). This pipeline is based one the publication listed below. The publication can be cited as follows: > **FORCE on Nextflow: Scalable Analysis of Earth Observation Data on Commodity Clusters** > > [Lehmann, F., Frantz, D., Becker, S., Leser, U., Hostert, P. (2021). FORCE on Nextflow: Scalable Analysis of Earth Observation Data on Commodity Clusters. In CIKM Workshops.](https://www.informatik.hu-berlin.de/de/forschung/gebiete/wbi/research/publications/2021/force_nextflow.pdf/@@download/file/force_nextflow.pdf)

Owner

  • Name: CRC-FONDA
  • Login: CRC-FONDA
  • Kind: organization

GitHub Events

Total
  • Issue comment event: 2
  • Push event: 49
  • Pull request event: 2
Last Year
  • Issue comment event: 2
  • Push event: 49
  • Pull request event: 2