Socket
Socket
Sign inDemoInstall

rlcms

Package Overview
Dependencies
4
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rlcms

workflows for regional land cover mapping, built in Google Earth Engine


Maintainers
1

Readme

Regional Land Cover Monitoring System

Installation

Install with pip:

pip install rlcms

Test that earthengine-api is setup and authenticated by checking the folder contents within one of your cloud projects.

  • In your shell, run:
earthengine set_project <project-name>
earthengine ls projects/project-name/assets

If you do not get an error and it returns a list of folders and assets similar to this then you are good to go! :tada:

Features

  • stratified sampling for use in Collect Earth Online
  • Training and validation data extraction, from points or polygon references
  • Land cover modeling using Primitive ensembles, complete with model metrics for iterative improvements

Quick Start

from rlcms.composites import Composite
# Create an annual Sentinel-1 Composite
c = Composite(dataset='Sentinel1',
        region=aoi,
        start_date='2020-01-01',
        end_date='2021-12-31',
        composite_mode='annual',
        reducer='median')

# look at the Composite object
print(c.__dict__)

# retrieve band names
print(f"Composite bands:{c.bands}")

# retrieve ee.Image from Composite object 
image = c.image

Contributing

We welcome contributions from the community. If there are issues are improvements, please submit an issue on Github: https://github.com/sig-gis/rlcms

License

This project is licensed under the GPL-3 License - see the LICENSE file for details.

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc