finam-netcdf 0.1.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.
- finam_netcdf-0.1.0/.gitignore +131 -0
- finam_netcdf-0.1.0/AUTHORS.md +20 -0
- finam_netcdf-0.1.0/COPYING +674 -0
- finam_netcdf-0.1.0/COPYING.LESSER +165 -0
- finam_netcdf-0.1.0/LICENSE.md +48 -0
- finam_netcdf-0.1.0/PKG-INFO +57 -0
- finam_netcdf-0.1.0/README.md +9 -0
- finam_netcdf-0.1.0/pyproject.toml +135 -0
- finam_netcdf-0.1.0/src/finam_netcdf/__init__.py +54 -0
- finam_netcdf-0.1.0/src/finam_netcdf/_version.py +1 -0
- finam_netcdf-0.1.0/src/finam_netcdf/reader.py +258 -0
- finam_netcdf-0.1.0/src/finam_netcdf/tools.py +774 -0
- finam_netcdf-0.1.0/src/finam_netcdf/writer.py +312 -0
- finam_netcdf-0.1.0/tests/data/header.txt +7 -0
- finam_netcdf-0.1.0/tests/data/lai.nc +0 -0
- finam_netcdf-0.1.0/tests/data/temp.nc +0 -0
- finam_netcdf-0.1.0/tests/test_chain.py +73 -0
- finam_netcdf-0.1.0/tests/test_reader.py +157 -0
- finam_netcdf-0.1.0/tests/test_tools.py +64 -0
- finam_netcdf-0.1.0/tests/test_writer.py +157 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
env/
|
|
12
|
+
build/
|
|
13
|
+
develop-eggs/
|
|
14
|
+
dist/
|
|
15
|
+
downloads/
|
|
16
|
+
eggs/
|
|
17
|
+
.eggs/
|
|
18
|
+
lib/
|
|
19
|
+
lib64/
|
|
20
|
+
parts/
|
|
21
|
+
sdist/
|
|
22
|
+
var/
|
|
23
|
+
wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
|
|
28
|
+
# PyInstaller
|
|
29
|
+
# Usually these files are written by a python script from a template
|
|
30
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
31
|
+
*.manifest
|
|
32
|
+
*.spec
|
|
33
|
+
|
|
34
|
+
# Installer logs
|
|
35
|
+
pip-log.txt
|
|
36
|
+
pip-delete-this-directory.txt
|
|
37
|
+
|
|
38
|
+
# Unit test / coverage reports
|
|
39
|
+
htmlcov/
|
|
40
|
+
.tox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
cov.xml
|
|
47
|
+
*.cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
|
|
50
|
+
# Translations
|
|
51
|
+
*.mo
|
|
52
|
+
*.pot
|
|
53
|
+
|
|
54
|
+
# Django stuff:
|
|
55
|
+
*.log
|
|
56
|
+
local_settings.py
|
|
57
|
+
|
|
58
|
+
# Flask stuff:
|
|
59
|
+
instance/
|
|
60
|
+
.webassets-cache
|
|
61
|
+
|
|
62
|
+
# Scrapy stuff:
|
|
63
|
+
.scrapy
|
|
64
|
+
|
|
65
|
+
# Sphinx documentation
|
|
66
|
+
docs/_build/
|
|
67
|
+
docs/source/api/generated
|
|
68
|
+
docs/output.txt
|
|
69
|
+
|
|
70
|
+
# PyBuilder
|
|
71
|
+
target/
|
|
72
|
+
|
|
73
|
+
# Jupyter Notebook
|
|
74
|
+
.ipynb_checkpoints
|
|
75
|
+
|
|
76
|
+
# pyenv
|
|
77
|
+
.python-version
|
|
78
|
+
|
|
79
|
+
# celery beat schedule file
|
|
80
|
+
celerybeat-schedule
|
|
81
|
+
|
|
82
|
+
# SageMath parsed files
|
|
83
|
+
*.sage.py
|
|
84
|
+
|
|
85
|
+
# dotenv
|
|
86
|
+
.env
|
|
87
|
+
|
|
88
|
+
# virtualenv
|
|
89
|
+
.venv
|
|
90
|
+
venv/
|
|
91
|
+
ENV/
|
|
92
|
+
|
|
93
|
+
# Spyder project settings
|
|
94
|
+
.spyderproject
|
|
95
|
+
.spyproject
|
|
96
|
+
|
|
97
|
+
# Rope project settings
|
|
98
|
+
.ropeproject
|
|
99
|
+
|
|
100
|
+
# mkdocs documentation
|
|
101
|
+
/site
|
|
102
|
+
|
|
103
|
+
# mypy
|
|
104
|
+
.mypy_cache/
|
|
105
|
+
|
|
106
|
+
tags
|
|
107
|
+
/test_*
|
|
108
|
+
|
|
109
|
+
# own stuff
|
|
110
|
+
info/
|
|
111
|
+
.vscode/
|
|
112
|
+
|
|
113
|
+
# Cython generated C code
|
|
114
|
+
*.c
|
|
115
|
+
*.cpp
|
|
116
|
+
|
|
117
|
+
# generated version file
|
|
118
|
+
src/finam_netcdf/_version.py
|
|
119
|
+
|
|
120
|
+
# generated docs
|
|
121
|
+
docs/source/examples/
|
|
122
|
+
docs/source/generated/
|
|
123
|
+
|
|
124
|
+
/docs/build/
|
|
125
|
+
/docs/finam_netcdf.*
|
|
126
|
+
/docs/modules.rst
|
|
127
|
+
*.csv
|
|
128
|
+
|
|
129
|
+
*.DS_Store
|
|
130
|
+
|
|
131
|
+
*.zip
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# FINAM developers
|
|
2
|
+
|
|
3
|
+
The FINAM project was created by the following people.
|
|
4
|
+
|
|
5
|
+
## Core developers
|
|
6
|
+
|
|
7
|
+
- Martin Lange (E-mail: <martin.lange@ufz.de>)
|
|
8
|
+
- Sebastian Müller (E-mail: <sebastian.mueller@ufz.de>)
|
|
9
|
+
|
|
10
|
+
## Working Group members
|
|
11
|
+
|
|
12
|
+
- Thomas Fischer (E-mail: <thomas.fischer@ufz.de>)
|
|
13
|
+
- Sara König (E-mail: <sara.koenig@ufz.de>)
|
|
14
|
+
- Jeisson Javier Leal Rojas (E-mail: <jeisson-javier.leal-rojas@ufz.de>)
|
|
15
|
+
- Matthias Kelbling (E-mail: <matthias.kelbling@ufz.de>)
|
|
16
|
+
|
|
17
|
+
## Supervisors
|
|
18
|
+
|
|
19
|
+
- Stephan Thober (E-mail: <stephan.thober@ufz.de>)
|
|
20
|
+
- Sabine Attinger (E-mail: <sabine.attinger@ufz.de>)
|