stac-validate

GitHub Workflow Status docs.rs Crates.io Crates.io Contributor Covenant

Validate STAC with jsonschema.

Usage

To use the library in your project:

toml [dependencies] stac = "0.5" stac-validate = "0.1"

Examples

rust use stac_validate::Validate; let item: stac::Item = stac::read("data/simple-item.json").unwrap(); item.validate().unwrap();

Please see the documentation for more usage examples.