IMAP SDC Data Access
Project description
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 production server https://api.imap-mission.com.
Use with API Keys
The default for the CLI is to use the public endpoints. To access some unreleased data products and quicklooks, you may need elevated permissions. To get that, you need an API Key, which can be requested from the SDC team.
There are two ways to provide your API Key:
- Environment variable: Set the
IMAP_API_KEYenvironment variable
IMAP_API_KEY=<your-api-key> imap-data-access ...
- Command line flag: Use the
--api-keyflag
imap-data-access --api-key <your-api-key> ...
The command line flag will override the environment variable if both are set.
[!NOTE] When using an API key, requests are automatically routed to
api.imap-mission.com/api-keyendpoints for authentication.
Automated use with Access token (for software)
An alternative to using an API key to access protected data is using an access token provided by LASP's authentication server. LASP's authentication uses keycloak authentication.
To use an access token with imap-data-access you can set the following environment variable:
IMAP_ACCESS_TOKEN={{Access token from LASP auth server}}
Any queries or downloads made with imap-data-access will now use these credentials.
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!
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 imap_data_access-0.37.2.tar.gz.
File metadata
- Download URL: imap_data_access-0.37.2.tar.gz
- Upload date:
- Size: 50.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3498501077770e197a01aef8703236a500997fc25a691d3ce6e6694d57620917
|
|
| MD5 |
b620b87b41b4133d3ed29270184f34ad
|
|
| BLAKE2b-256 |
060a0c156e35295cd43f76f38075bc7370f07acdaaa2c998c634e30b1c278a77
|
Provenance
The following attestation bundles were made for imap_data_access-0.37.2.tar.gz:
Publisher:
release.yml on IMAP-Science-Operations-Center/imap-data-access
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
imap_data_access-0.37.2.tar.gz -
Subject digest:
3498501077770e197a01aef8703236a500997fc25a691d3ce6e6694d57620917 - Sigstore transparency entry: 931768116
- Sigstore integration time:
-
Permalink:
IMAP-Science-Operations-Center/imap-data-access@07b86f43eed4753d9f8cada5822c0adcd42a71c1 -
Branch / Tag:
refs/tags/v0.37.2 - Owner: https://github.com/IMAP-Science-Operations-Center
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@07b86f43eed4753d9f8cada5822c0adcd42a71c1 -
Trigger Event:
release
-
Statement type:
File details
Details for the file imap_data_access-0.37.2-py3-none-any.whl.
File metadata
- Download URL: imap_data_access-0.37.2-py3-none-any.whl
- Upload date:
- Size: 36.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
24db259b6995fd4c1cf54b4c88000407dbe528325f32b84b4ff573a63a5d927f
|
|
| MD5 |
03c525bf4fe1adddf383b04633292913
|
|
| BLAKE2b-256 |
e9dfedaa4dfaf5c9b75cebf358c6a8f1637e3abd6a09a145574c0f3adbdaa370
|
Provenance
The following attestation bundles were made for imap_data_access-0.37.2-py3-none-any.whl:
Publisher:
release.yml on IMAP-Science-Operations-Center/imap-data-access
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
imap_data_access-0.37.2-py3-none-any.whl -
Subject digest:
24db259b6995fd4c1cf54b4c88000407dbe528325f32b84b4ff573a63a5d927f - Sigstore transparency entry: 931768171
- Sigstore integration time:
-
Permalink:
IMAP-Science-Operations-Center/imap-data-access@07b86f43eed4753d9f8cada5822c0adcd42a71c1 -
Branch / Tag:
refs/tags/v0.37.2 - Owner: https://github.com/IMAP-Science-Operations-Center
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@07b86f43eed4753d9f8cada5822c0adcd42a71c1 -
Trigger Event:
release
-
Statement type: