imap-data-access 0.9.0

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

imapdataaccess 0.9.0

IMAP Data Access Package



This lightweight Python package allows users to download, query, and upload data from the IMAP Science Data Center (SDC).
For more information see the detailed instructions.
Command Line Utility
To install
pip install imap-data-access
imap-data-access -h

Base Command Arguments
$ imap-data-access query # or
$ imap-data-access download # or
$ imap-data-access upload

Add the '-h' help flag with any base command for more information
Query / Search for data
Find all files from the SWE instrument
$ imap-data-access query --instrument swe
Found [3] matching files
|-----------------------------------------------------------------------------------------------------------------------------------|
| Instrument | Data Level | Descriptor | Start Date | Repointing | Version | Filename |
|-----------------------------------------------------------------------------------------------------------------------------------|
| swe | l0 | raw | 20240510 | | v022 | imap_swe_l0_raw_20240510_v022.pkts |
| swe | l1a | sci | 20240510 | | v022 | imap_swe_l1a_sci_20240510_v022.cdf |
| swe | l1b | sci | 20240510 | | v022 | imap_swe_l1b_sci_20240510_v022.cdf |
|-----------------------------------------------------------------------------------------------------------------------------------|

Find all files during the year 2024 and return the response as raw json
$ imap-data-access query --start-date 20240101 --end-date 20241231 --output-format json
[{'file_path': 'imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts', 'instrument': 'swe', 'data_level': 'l0', 'descriptor': 'sci', 'start_date': '20240105', 'version': 'v001', 'extension': 'pkts'}, {'file_path': 'imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts', 'instrument': 'swe', 'data_level': 'l0', 'descriptor': 'sci', 'start_date': '20240105', 'version': 'v001', 'extension': 'pkts'}]

Download a file
Download a level 0 SWE file on 2024/01/05

[!NOTE]
Make sure the directory configuration is correct, see the Data Directory section for more information.

$ imap-data-access download imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts
Successfully downloaded the file to: <IMAP_DATA_DIR>/imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts

Upload a file
Upload a l1a file after decoding the l0 CCSDS ".pkts" file
$ imap-data-access upload /imap/swe/l1a/2024/01/imap_swe_l1a_sci_20240105_v001.cdf
Successfully uploaded the file to the IMAP SDC

Importing as a package
import imap_data_access

# Search for files
results = imap_data_access.query(instrument="mag", data_level="l0")
# results is a list of dictionaries
# [{'file_path': 'imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts', 'instrument': 'swe', 'data_level': 'l0', 'descriptor': 'sci', 'start_date': '20240105','version': 'v001', 'extension': 'pkts'}, {'file_path': 'imap/swe/l0/2024/01/imap_swe_l0_sci_20240105_v001.pkts', 'instrument': 'swe', 'data_level': 'l0', 'descriptor': 'sci', 'start_date': '20240105', 'version': 'v001', 'extension': 'pkts'}]

# Download a file that was returned from the search
imap_data_access.download("imap/mag/l0/2024/01/imap_mag_l0_raw_202040101_v001.pkts")

# Upload a calibration file that exists locally
imap_data_access.upload("imap/swe/l1a/2024/01/imap_swe_l1a_sci_20240105_v001.cdf")

Configuration
Data directory
The folder structure for data files within the IMAP SDC is rigidly
defined, so the data access will mimic that structure to make sure
all data is stored in the same heirarchical structure as the SDC.
This will enable seamless transition between a user's local system
and the SDC. This is only used for downloads.
A user's root data location can be specified as an environment
variable IMAP_DATA_DIR or through a configuration dictionary
within the package itself imap_data_access.config["DATA_DIR"].
If the IMAP_DATA_DIR variable is not set, the program defaults
to the user's current working directory + data/.
The following is the directory structure the IMAP SDC uses.
<IMAP_DATA_DIR>/
imap/
<instrument>/
<data_level>/
<year>/
<month>/
<filename>

for example, with IMAP_DATA_DIR=/data:
/data/
imap/
swe/
l0/
2024/
01/
imap_swe_l0_sci_20240105_v001.pkts

Data Access URL
To change the default URL that the package accesses, you can set
the environment variable IMAP_DATA_ACCESS_URL or within the
package imap_data_access.config["DATA_ACCESS_URL"]. The default
is the development server https://api.dev.imap-mission.com.
Troubleshooting
Network issues
SSL
If you encounter SSL errors similar to the following:
urllib.error.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:997)>

That generally means the Python environment you're using is not finding your system's root
certificates properly. This means you need to tell Python how to find those certificates
with the following potential solutions.


Upgrade the certifi package
pip install --upgrade certifi



Install system certificates
Depending on the Python version you installed the program with the command will look something like this:
/Applications/Python\ 3.10/Install\ Certificates.command



HTTP Error 502: Bad Gateway
This could mean that the service is temporarily down. If you
continue to encounter this, reach out to the IMAP SDC at
imap-sdc@lasp.colorado.edu.
FileNotFoundError
This could mean that the local data directory is not set
up with the same paths as the SDC. See the data directory
section for an example of how to set this up.
File Validation
This package validates filenames and paths to check they follow our standards, as defined by the filename conventions. There is also a class available for
use by other packages to create filepaths and filenames that follow the IMAP SDC conventions.
To use this class, use imap_data_access.ScienceFilePath.
Usage:
science_file = imap_data_access.ScienceFilePath("imap_swe_l0_sci_20240101_v001.pkts")

# Filepath = /imap/swe/l0/2024/01/imap_swe_l0_sci_20240101_v001.pkts
filepath = science_file.construct_path()

Contributors ✨
Thanks goes to these wonderful people (emoji key):






Greg Lucas💻
Matthew Bourque💻
Maxine Hartnett💻
Michele Facchinelli💻
anamanica📖
Daralynn Rhode📖 💻






This project follows the all-contributors specification. Contributions of any kind welcome!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.