#geospatial #metadata #geo

stac

Rust library for the SpatioTemporal Asset Catalog (STAC) specification

29 releases (11 breaking)

0.11.1 Jan 2, 2025
0.11.0 Nov 12, 2024
0.10.2 Oct 19, 2024
0.7.2 Jul 24, 2024
0.0.4 Mar 9, 2022

#34 in Science

Download history 184/week @ 2024-09-21 210/week @ 2024-09-28 159/week @ 2024-10-05 55/week @ 2024-10-12 264/week @ 2024-10-19 113/week @ 2024-10-26 112/week @ 2024-11-02 214/week @ 2024-11-09 294/week @ 2024-11-16 185/week @ 2024-11-23 279/week @ 2024-11-30 522/week @ 2024-12-07 231/week @ 2024-12-14 160/week @ 2024-12-21 216/week @ 2024-12-28 150/week @ 2025-01-04

792 downloads per month
Used in 8 crates

MIT/Apache

1.5MB
5K SLoC

stac

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

Rust implementation of the SpatioTemporal Asset Catalog (STAC) specification.

Usage

To use the library in your project:

[dependencies]
stac = "0.11"

Examples

use stac::Item;

// Creates an item from scratch.
let item = Item::new("an-id");

// Reads an item from the filesystem.
let item: Item = stac::read("examples/simple-item.json").unwrap();

Please see the documentation for more usage examples.

Other info

This crate is part of the stac-rs monorepo, see its README for contributing and license information.

Dependencies

~5–25MB
~382K SLoC