envlib 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- envlib/__init__.py +9 -0
- envlib/catalogue.py +970 -0
- envlib/metadata.py +572 -0
- envlib/vocabularies/__init__.py +336 -0
- envlib/vocabularies/aggregation_statistic.json +20 -0
- envlib/vocabularies/feature.json +19 -0
- envlib/vocabularies/frequency_interval.json +21 -0
- envlib/vocabularies/license.json +63 -0
- envlib/vocabularies/method.json +37 -0
- envlib/vocabularies/processing_level.json +21 -0
- envlib/vocabularies/standard_name.json +5683 -0
- envlib/vocabularies/variable.json +4391 -0
- envlib-0.1.0.dist-info/METADATA +75 -0
- envlib-0.1.0.dist-info/RECORD +16 -0
- envlib-0.1.0.dist-info/WHEEL +4 -0
- envlib-0.1.0.dist-info/licenses/LICENSE +16 -0
envlib/__init__.py
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""envlib: a distributed database and catalogue for environmental data."""
|
|
2
|
+
|
|
3
|
+
from envlib import vocabularies
|
|
4
|
+
from envlib.catalogue import Catalogue, DatasetRef
|
|
5
|
+
from envlib.metadata import Metadata, ValidationError, compute_station_id
|
|
6
|
+
|
|
7
|
+
__version__ = '0.1.0'
|
|
8
|
+
|
|
9
|
+
__all__ = ['Catalogue', 'DatasetRef', 'Metadata', 'ValidationError', 'compute_station_id', 'vocabularies']
|