Metadata-Version: 2.1
Name: pystdatm
Version: 0.0.1
Summary: Python Package for Standard Atmosphere
Home-page: https://github.com/Xero64/pystdatm
Author: Xero64
Author-email: xero64@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# pystdatm

## Python Package for Standard Atmosphere

The set of functions follow International Standard Atmosphere model.

*Note*: Currently only Troposphere supported and SI units.

Sample Code:
``` python
from pystdatm import density, pressure

alt = 1000.0 # metres above sea level

rho = density(alt)
print(f'rho = {rho:.3f} kg/m**3')

p = pressure(alt)
print(f'p = {p:.0f} Pa')

```

Sample Output:
```
rho = 1.112 kg/m**3
p = 89936 Pa
```


