use-earth-constants 0.1.0

Reusable Earth and WGS84 constants for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# use-earth-constants

Reusable Earth, WGS84, geodesy-adjacent, and standard-environment constants for RustUse.

This crate provides plain exported constants for Earth size, Earth mass, standard gravity,
standard sea-level pressure, and WGS84 reference ellipsoid values.

It does not include geodesy algorithms, coordinate transforms, or unit conversion logic.

## Usage

```rust
use use_earth_constants::{EARTH_RADIUS_MEAN, STANDARD_GRAVITY, WGS84_A};

assert!(EARTH_RADIUS_MEAN > 0.0);
assert!(STANDARD_GRAVITY > 9.8);
assert_eq!(WGS84_A, 6_378_137.0);
```