https://github.com/cedadev/datapoint
https://github.com/cedadev/datapoint
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cedadev/datapoint
- Owner: cedadev
- License: other
- Created: 2024-08-19T08:01:43.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T09:32:34.000Z (over 1 year ago)
- Last Synced: 2025-03-26T05:51:07.795Z (about 1 year ago)
- Language: Python
- Size: 5.7 MB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DataPoint package
[](https://pypi.python.org/pypi/ceda-datapoint/)
**ceda-datapoint** is a Python package which provides Python-based search/access tools for using data primarily from the CEDA Archive. For some time we've been generating so-called
Cloud Formats which act as representations, references or mappers to data stored in the CEDA Archive. Most of our data is in archival formats like NetCDF/HDF which makes them great for use with the HPC architecture on which the archive resides (see the [JASMIN homepage](https://jasmin.ac.uk/) for more details), but not so good for open access outside of JASMIN.
See the documentation at https://cedadev.github.io/datapoint for more information.
## Installation
The DataPoint module is now an installable module with pip!
```
pip install ceda-datapoint
```
## Basic usage
See the documentation for a more in-depth description of how to run a search query and access data.
```
from ceda_datapoint import DataPointClient
client = DataPointClient(org='CEDA)
# Continue to perform searches and access data
```