A python 3 client to access the RESTfull API of the SOLARNET Virtual Observatory
Project description
SOLARNET Virtual Observatory (SVO)
The SVO is a service first supported by the SOLARNET project, funded by the European Commission’s FP7 Capacities Programme under the Grant Agreement 312495. Then made operational thanks to the SOLARNET2 project, funded by the the European Union's Horizon 2020 Research and Innovation Programme under Grant Agreement 824135.
It's purpose is to collect metadata from as many solar observations as possible, especially those made thanks to the SOLARNET projects, in a common catalog and make them available to the scientific community.
A first prototype version was released in February 2016, and the operational version is available now at https://solarnet2.oma.be
The SVO code is split in several parts:
SOLARNET API python client
This package can be used as a client or as an example how to work with the API using Python 3
Example usage
from SOLARNET import datasets
# See all available datasets
for dataset in datasets:
print(dataset)
# Get a specific dataset
aia_lev1 = datasets['AIA level 1']
# Filter the record in that dataset for June 2012 the 6th with a wavelength of 171A
filtered_aia_lev1 = aia_lev1.filter('DATE-OBS', '2012 June 6', WAVELNTH = 171)
# Display the date of observation and the wavelength in that filtered dataset
for record in filtered_aia_lev1:
print(record.metadata['DATE-OBS'], record.metadata['WAVELNTH'])
# Download the data from a record
record = filtered_aia_lev1[0]
record.download('/tmp')
# Get the data as a BytesIO [1] without saving to disk
data = record.data()
# Open the data as a fits file (see astropy.io.fits [2])
hdus = record.HDUs()
[1] BytesIO [2] astropy.io.fits
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
File details
Details for the file SOLARNET-2.2.tar.gz
.
File metadata
- Download URL: SOLARNET-2.2.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.8.0 tqdm/4.37.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b2b26704c427f1d9cfc55e324ae6f9ce3b2fad829f64f04fed4c25381444d79 |
|
MD5 | 2a1ab350e1315bc9964e26af0338d581 |
|
BLAKE2b-256 | f4566c8cefeb9b292f40c987a56f8227f4faf08fd0bbd8f7be9b5478e4a531d5 |
File details
Details for the file SOLARNET-2.2-py2.py3-none-any.whl
.
File metadata
- Download URL: SOLARNET-2.2-py2.py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.8.0 tqdm/4.37.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a699d0491932b5027e509077c916d003dc5fe9024bec971c01b69b4d155b3dd |
|
MD5 | 14ffe735692962b3f83074988216e18d |
|
BLAKE2b-256 | 85cdb79b91bd5e29e56800501ddce854a96eb1da71067838435251985694e09e |