[package]
name = "spatialarray"
version = "0.2.0"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
description = "SpatialArray: labeled n-dimensional arrays with spatial-aware helpers for geospatial and scientific workflows."
authors = ["Ben Smith <benjamin@bnjam.dev>"]
readme = "README.md"
repository = "https://github.com/Wayfinder-Foundry/spatialarray"
homepage = "https://wayfinder-foundry.org"
documentation = "https://docs.rs/spatialarray"
exclude = ["examples/data/*"]
include = [
"README.md",
"LICENSE",
"Cargo.toml",
"src/**"
]
keywords = ["spatial", "ndarray", "geospatial", "scientific-computing", "array"]
[dev-dependencies]
csv = "1.1"
[dependencies]
ndarray = "0.15"
[features]
default = ["parallel"]
parallel = ["ndarray/rayon"]
[package.metadata.docs.rs]
features = ["default"]
categories = ["science", "data-structures", "geospatial"]