A package for reading NASA PACE data files.
Project description
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 sh Install.sh script (ensure to specify the correct version).
Example Usage:
Here is a simple example of how to use the package:
from nasa_pace_data_reader import L1
# Location of the file
fileName = '/Users/aputhukkudy/Downloads/PACE_HARP2.20220321T101844.L1C.5.2KM.V03.SIM2.1_.nc'
# Read the file
l1c = L1.L1C()
l1c_dict = l1c.read(fileName)
# Print the keys and the shape of the data
[print('{:>24}: {}'.format(key, l1c_dict[key].shape)) for key in l1c_dict.keys()][0]
pixel = [250,300]
# Load the plot class
plt_ = plot.Plot(l1c_dict)
# Set the dpi
plt_.setDPI(256)
# set which band to plot
band = 'NIR'
plt_.setBand(band)
# Plot the pixel
plt_.plotPixel(pixel[0], pixel[1])
# define the wavelengths and variables to plot
plt_.setInstrument()
# plot all vars and bands
plt_.plotPixelVars(pixel[0], pixel[1])
# plot only specific bands and vars
plt_.vars2plot = ['i', 'q', 'u'] # Order in the list is the order of plotting
plt_.bands2plot = ['NIR', 'blue'] # Order in the list is the order of plotting
# plot
plt_.plotPixelVars(pixel[0], pixel[1], bands= plt_.bands2plot, alpha=0.5, linewidth=0.5) # you can pass any other arguments to the plot function
Change Log:
Key Improvements:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nasa_pace_data_reader-0.0.3.13.tar.gz.
File metadata
- Download URL: nasa_pace_data_reader-0.0.3.13.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77782ee3040c05f2af76cb10d8bc7da225a96ae85faa069cad9e5c0649a2ee3d
|
|
| MD5 |
1a2b4bcf896f5d64e1552f2bf9a80503
|
|
| BLAKE2b-256 |
da2e2837efea487528cbb215131ae164e5a3c1e2c5eb227ea0447a78d5eefb64
|
File details
Details for the file nasa_pace_data_reader-0.0.3.13-py3-none-any.whl.
File metadata
- Download URL: nasa_pace_data_reader-0.0.3.13-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7403222f8ddbb49e1b356c47947169191ee1af9bf05da208c4f7dd360fb09878
|
|
| MD5 |
166d1ba8c841c319d28c1d367b860356
|
|
| BLAKE2b-256 |
2c20ab29f4a8dd4b31a4646eb6f8d2e9ff6ad7e5b47d0933081196bdd99b5cbd
|