[package]
edition = "2021"
rust-version = "1.89"
name = "oxiproj-transformations"
version = "0.1.2"
authors = ["COOLJAPAN OU (Team Kitasan)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Datum transformations and coordinate conversions for OxiProj."
readme = "README.md"
keywords = [
"cooljapan",
"oxiproj",
"proj",
"geodesy",
"coordinate",
]
categories = [
"science::geo",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/oxiproj"
[package.metadata.docs.rs]
features = [
"simd",
"blas",
]
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
blas = ["dep:oxiblas"]
default = []
gpu = ["oxiproj-core/gpu"]
network = ["oxiproj-grids/network"]
no_std = ["dep:libm"]
simd = ["dep:wide"]
[lib]
name = "oxiproj_transformations"
path = "src/lib.rs"
[[test]]
name = "deformation_parity"
path = "tests/deformation_parity.rs"
[[test]]
name = "grid_name_resolution_offline"
path = "tests/grid_name_resolution_offline.rs"
[[test]]
name = "gridshift_generic_parity"
path = "tests/gridshift_generic_parity.rs"
[[test]]
name = "hgridshift_geotiff_parity"
path = "tests/hgridshift_geotiff_parity.rs"
[[test]]
name = "hgridshift_multi_ifd_childgrid"
path = "tests/hgridshift_multi_ifd_childgrid.rs"
[[test]]
name = "multi_grid_per_point_selection"
path = "tests/multi_grid_per_point_selection.rs"
[[test]]
name = "proptest_transformations"
path = "tests/proptest_transformations.rs"
[[test]]
name = "vgridshift_geotiff_parity"
path = "tests/vgridshift_geotiff_parity.rs"
[[test]]
name = "xyzgridshift_parity"
path = "tests/xyzgridshift_parity.rs"
[dependencies.libm]
version = "0.2"
optional = true
[dependencies.oxiblas]
version = "0.2"
optional = true
default-features = false
[dependencies.oxiproj-core]
version = "0.1.2"
[dependencies.oxiproj-grids]
version = "0.1.2"
features = [
"geotiff-deflate",
"geotiff-lzw",
]
[dependencies.wide]
version = "1"
optional = true
[dev-dependencies.proptest]
version = "1.11"