Metadata-Version: 2.1
Name: nasa_pace_data_reader
Version: 0.0.3.10
Summary: A package for reading NASA PACE data files.
Author-email: Anin Puthukkudy <aputhukkudy@umbc.edu>
Project-URL: Homepage, https://github.com/aninramesh/nasa-pace-data-reader
Project-URL: Issues, https://github.com/aninramesh/nasa-pace-data-reader/issues
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
Requires-Dist: matplotlib>=3.6
Requires-Dist: basemap>=1.3.0
Requires-Dist: numpy>=1.21.2
Requires-Dist: netCDF4>=1.5.7
Requires-Dist: basemap-data-hires>=1.2.1
Requires-Dist: Bottleneck>=1.3.2
Requires-Dist: scipy>=1.7.1
Requires-Dist: notebook>=6.4.3
Requires-Dist: statsmodels>=0.12.2

# NASA-PACE-Data-Reader

This repository hosts a Python package designed to read L1C files from NASA PACE instruments, including HARP2, SPEXone, and OCI. Future development plans include the addition of readers for L2 aerosol and surface products.

## Building and Uploading the Package:

To build and upload the package, you can either run the `Install.sh` script (ensure to specify the correct version), or follow the steps outlined below:

**Build:** Use the same command as before, which is `python3 -m build`.

**Upload:** Use the command `python3 -m twine upload --repository testpypi dist/*`.

**Install:** Use the command `python3 -m pip install -i https://test.pypi.org/simple/ nasa-pace-data-reader`.

**Uninstall:** Use the command `python3 -m pip uninstall nasa_pace_data_reader`.

---

## Example Usage:

Here is a simple example of how to use the package:

```Python
from nasa_pace_data_reader import L1

calc = L1.L1C()
result = calc.add(5, 3)
print(result)  # This will output: 8
```

---

## Change Log:

---

## Key Improvements:

