eoio 0.0__tar.gz
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.
- eoio-0.0/MANIFEST.in +2 -0
- eoio-0.0/PKG-INFO +66 -0
- eoio-0.0/README.rst +51 -0
- eoio-0.0/eoio/__init__.py +9 -0
- eoio-0.0/eoio/_version.py +21 -0
- eoio-0.0/eoio/readers/example_reader_structure.py +666 -0
- eoio-0.0/eoio/readers/netcdf_reader_test.py +35 -0
- eoio-0.0/eoio/readers/tests3reader.py +37 -0
- eoio-0.0/eoio/submodule_template/__init__.py +0 -0
- eoio-0.0/eoio/submodule_template/class_template.py +29 -0
- eoio-0.0/eoio/submodule_template/tests/__init__.py +0 -0
- eoio-0.0/eoio/submodule_template/tests/test_class_template.py +26 -0
- eoio-0.0/eoio.egg-info/PKG-INFO +66 -0
- eoio-0.0/eoio.egg-info/SOURCES.txt +20 -0
- eoio-0.0/eoio.egg-info/dependency_links.txt +1 -0
- eoio-0.0/eoio.egg-info/requires.txt +6 -0
- eoio-0.0/eoio.egg-info/top_level.txt +1 -0
- eoio-0.0/setup.cfg +30 -0
- eoio-0.0/setup.py +37 -0
- eoio-0.0/tests/test_sample.py +13 -0
- eoio-0.0/versioneer.py +1885 -0
eoio-0.0/MANIFEST.in
ADDED
eoio-0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: eoio
|
|
3
|
+
Version: 0.0
|
|
4
|
+
Summary: Data readers and preprocessing for satellite data
|
|
5
|
+
Home-page: https://gitlab.npl.co.uk/eco/tools/eoio
|
|
6
|
+
Author: Mattea Goalen
|
|
7
|
+
Author-email: mattea.goalen@npl.co.uk
|
|
8
|
+
License: None
|
|
9
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
10
|
+
Classifier: Programming Language :: Python
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.6
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Provides-Extra: dev
|
|
15
|
+
|
|
16
|
+
eoio
|
|
17
|
+
====
|
|
18
|
+
|
|
19
|
+
Data readers and preprocessing for satellite data
|
|
20
|
+
|
|
21
|
+
Usage
|
|
22
|
+
=====
|
|
23
|
+
|
|
24
|
+
Virtual environment
|
|
25
|
+
-------------------
|
|
26
|
+
|
|
27
|
+
It's always recommended to make a virtual environment for each of your python
|
|
28
|
+
projects. Use your preferred virtual environment manager if you want and
|
|
29
|
+
activate it for the rest of these commands. If you're unfamiliar, read
|
|
30
|
+
https://realpython.com/python-virtual-environments-a-primer/. You can set one up
|
|
31
|
+
using::
|
|
32
|
+
|
|
33
|
+
python -m venv venv
|
|
34
|
+
|
|
35
|
+
and then activate it on Windows by using ``venv/Scripts/activate``.
|
|
36
|
+
|
|
37
|
+
Installation
|
|
38
|
+
------------
|
|
39
|
+
|
|
40
|
+
Install your package and its dependancies by using::
|
|
41
|
+
|
|
42
|
+
pip install -e .
|
|
43
|
+
|
|
44
|
+
Development
|
|
45
|
+
-----------
|
|
46
|
+
|
|
47
|
+
For developing the package, you'll want to install the pre-commit hooks as well. Type::
|
|
48
|
+
|
|
49
|
+
pre-commit install
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
Note that from now on when you commit, `black` will check your code for styling
|
|
53
|
+
errors. If it finds any it will correct them, but the commit will be aborted.
|
|
54
|
+
This is so that you can check its work before you continue. If you're happy,
|
|
55
|
+
just commit again.
|
|
56
|
+
|
|
57
|
+
Compatibility
|
|
58
|
+
-------------
|
|
59
|
+
|
|
60
|
+
Licence
|
|
61
|
+
-------
|
|
62
|
+
|
|
63
|
+
Authors
|
|
64
|
+
-------
|
|
65
|
+
|
|
66
|
+
`eoio` was written by `Mattea Goalen <mattea.goalen@npl.co.uk>`_.
|
eoio-0.0/README.rst
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
eoio
|
|
2
|
+
====
|
|
3
|
+
|
|
4
|
+
Data readers and preprocessing for satellite data
|
|
5
|
+
|
|
6
|
+
Usage
|
|
7
|
+
=====
|
|
8
|
+
|
|
9
|
+
Virtual environment
|
|
10
|
+
-------------------
|
|
11
|
+
|
|
12
|
+
It's always recommended to make a virtual environment for each of your python
|
|
13
|
+
projects. Use your preferred virtual environment manager if you want and
|
|
14
|
+
activate it for the rest of these commands. If you're unfamiliar, read
|
|
15
|
+
https://realpython.com/python-virtual-environments-a-primer/. You can set one up
|
|
16
|
+
using::
|
|
17
|
+
|
|
18
|
+
python -m venv venv
|
|
19
|
+
|
|
20
|
+
and then activate it on Windows by using ``venv/Scripts/activate``.
|
|
21
|
+
|
|
22
|
+
Installation
|
|
23
|
+
------------
|
|
24
|
+
|
|
25
|
+
Install your package and its dependancies by using::
|
|
26
|
+
|
|
27
|
+
pip install -e .
|
|
28
|
+
|
|
29
|
+
Development
|
|
30
|
+
-----------
|
|
31
|
+
|
|
32
|
+
For developing the package, you'll want to install the pre-commit hooks as well. Type::
|
|
33
|
+
|
|
34
|
+
pre-commit install
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
Note that from now on when you commit, `black` will check your code for styling
|
|
38
|
+
errors. If it finds any it will correct them, but the commit will be aborted.
|
|
39
|
+
This is so that you can check its work before you continue. If you're happy,
|
|
40
|
+
just commit again.
|
|
41
|
+
|
|
42
|
+
Compatibility
|
|
43
|
+
-------------
|
|
44
|
+
|
|
45
|
+
Licence
|
|
46
|
+
-------
|
|
47
|
+
|
|
48
|
+
Authors
|
|
49
|
+
-------
|
|
50
|
+
|
|
51
|
+
`eoio` was written by `Mattea Goalen <mattea.goalen@npl.co.uk>`_.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
|
|
2
|
+
# This file was generated by 'versioneer.py' (0.18) from
|
|
3
|
+
# revision-control system data, or from the parent directory name of an
|
|
4
|
+
# unpacked source archive. Distribution tarballs contain a pre-generated copy
|
|
5
|
+
# of this file.
|
|
6
|
+
|
|
7
|
+
import json
|
|
8
|
+
|
|
9
|
+
version_json = '''
|
|
10
|
+
{
|
|
11
|
+
"date": "2022-12-05T11:27:45+0000",
|
|
12
|
+
"dirty": false,
|
|
13
|
+
"error": null,
|
|
14
|
+
"full-revisionid": "4d9a04164a9e4ec6cbc1ac15a03e8ccb30ec32da",
|
|
15
|
+
"version": "v0.0"
|
|
16
|
+
}
|
|
17
|
+
''' # END VERSION_JSON
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def get_versions():
|
|
21
|
+
return json.loads(version_json)
|