rc-qlc 0.3.20__cp310-cp310-macosx_11_0_arm64.whl → 0.3.24__cp310-cp310-macosx_11_0_arm64.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.
- qlc/doc/CONTRIBUTING.md +8 -8
- qlc/doc/README.md +14 -14
- qlc/doc/USAGE.md +8 -8
- qlc/install.py +7 -2
- qlc/py/__main__.cpython-310-darwin.so +0 -0
- qlc/py/averaging.cpython-310-darwin.so +0 -0
- qlc/py/bias_plots.cpython-310-darwin.so +0 -0
- qlc/py/control.cpython-310-darwin.so +0 -0
- qlc/py/io.cpython-310-darwin.so +0 -0
- qlc/py/loadmod.cpython-310-darwin.so +0 -0
- qlc/py/loadobs.cpython-310-darwin.so +0 -0
- qlc/py/logging_utils.cpython-310-darwin.so +0 -0
- qlc/py/map_plots.cpython-310-darwin.so +0 -0
- qlc/py/matched.cpython-310-darwin.so +0 -0
- qlc/py/plot_config.cpython-310-darwin.so +0 -0
- qlc/py/plotting.cpython-310-darwin.so +0 -0
- qlc/py/plugin_loader.cpython-310-darwin.so +0 -0
- qlc/py/processing.cpython-310-darwin.so +0 -0
- qlc/py/scatter_plots.cpython-310-darwin.so +0 -0
- qlc/py/stations.cpython-310-darwin.so +0 -0
- qlc/py/statistics.cpython-310-darwin.so +0 -0
- qlc/py/style.cpython-310-darwin.so +0 -0
- qlc/py/timeseries_plots.cpython-310-darwin.so +0 -0
- qlc/py/utils.cpython-310-darwin.so +0 -0
- qlc/py/version.cpython-310-darwin.so +0 -0
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/METADATA +14 -14
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/RECORD +113 -113
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/WHEEL +0 -0
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/entry_points.txt +0 -0
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/licenses/LICENSE +0 -0
- {rc_qlc-0.3.20.dist-info → rc_qlc-0.3.24.dist-info}/top_level.txt +0 -0
qlc/doc/CONTRIBUTING.md
CHANGED
@@ -6,7 +6,7 @@ This project supports structured comparisons between model and observation datas
|
|
6
6
|
|
7
7
|
---
|
8
8
|
|
9
|
-
##
|
9
|
+
## Package Layout
|
10
10
|
|
11
11
|
- `qlc/`: Main package directory.
|
12
12
|
- `cli/`: Command-line entry point logic.
|
@@ -18,7 +18,7 @@ This project supports structured comparisons between model and observation datas
|
|
18
18
|
|
19
19
|
---
|
20
20
|
|
21
|
-
##
|
21
|
+
## CLI Tools
|
22
22
|
|
23
23
|
After installation, the following entry points are available:
|
24
24
|
|
@@ -28,7 +28,7 @@ After installation, the following entry points are available:
|
|
28
28
|
|
29
29
|
---
|
30
30
|
|
31
|
-
##
|
31
|
+
## Plugin Support
|
32
32
|
|
33
33
|
Plugins may be placed in:
|
34
34
|
|
@@ -40,7 +40,7 @@ These are loaded dynamically via `plugin_loader.py` if found.
|
|
40
40
|
|
41
41
|
---
|
42
42
|
|
43
|
-
##
|
43
|
+
## Development Setup
|
44
44
|
|
45
45
|
To contribute to `qlc`, you should set up a local development environment. This allows you to edit the code and test your changes live.
|
46
46
|
|
@@ -64,7 +64,7 @@ To contribute to `qlc`, you should set up a local development environment. This
|
|
64
64
|
|
65
65
|
---
|
66
66
|
|
67
|
-
##
|
67
|
+
## Building Wheels for Distribution
|
68
68
|
|
69
69
|
To build the platform-specific wheels for distribution on PyPI, use the provided build script. It handles the complexities of cross-platform compilation.
|
70
70
|
|
@@ -77,7 +77,7 @@ The final wheels will be located in the `dist/` directory.
|
|
77
77
|
|
78
78
|
---
|
79
79
|
|
80
|
-
##
|
80
|
+
## Testing
|
81
81
|
|
82
82
|
Unit tests (to be added) will be collected under `tests/`.
|
83
83
|
|
@@ -88,7 +88,7 @@ Unit tests (to be added) will be collected under `tests/`.
|
|
88
88
|
|
89
89
|
---
|
90
90
|
|
91
|
-
##
|
91
|
+
## Style Guide
|
92
92
|
|
93
93
|
- Follow [PEP8](https://www.python.org/dev/peps/pep-0008/)
|
94
94
|
- Use docstrings in PEP257 format and keep things simple (KISS principle)
|
@@ -96,7 +96,7 @@ Unit tests (to be added) will be collected under `tests/`.
|
|
96
96
|
|
97
97
|
---
|
98
98
|
|
99
|
-
##
|
99
|
+
## License
|
100
100
|
|
101
101
|
This project uses the MIT License. By contributing, you agree your code may be distributed under the same license.
|
102
102
|
|
qlc/doc/README.md
CHANGED
@@ -5,14 +5,14 @@ designed to support climate and air quality monitoring and specifically adapted
|
|
5
5
|
|
6
6
|
| Package | Status |
|
7
7
|
|---------|--------|
|
8
|
-
| [qlc on PyPI](https://pypi.org/project/qlc/) |  |
|
8
|
+
| [rc-qlc on PyPI](https://pypi.org/project/rc-qlc/) |  |
|
9
9
|
|
10
10
|
---
|
11
11
|
|
12
|
-
##
|
12
|
+
## Features
|
13
13
|
|
14
14
|
- Side-by-side evaluation of observational and modelled data
|
15
|
-
- Fully scriptable and automated post-processing chain
|
15
|
+
- Fully scriptable and automated post-processing chain
|
16
16
|
- Modular structure using shell + Python + Cython
|
17
17
|
- Generates publication-ready figures and LaTeX integration
|
18
18
|
- Supports NetCDF and CSV time series formats
|
@@ -20,24 +20,24 @@ designed to support climate and air quality monitoring and specifically adapted
|
|
20
20
|
|
21
21
|
---
|
22
22
|
|
23
|
-
##
|
23
|
+
## User Installation
|
24
24
|
|
25
25
|
Use one of the following install modes:
|
26
26
|
|
27
27
|
```bash
|
28
28
|
# Option 1: CAMS (default data links + config)
|
29
|
-
pip install qlc && qlc-install --cams
|
29
|
+
pip install rc-qlc && qlc-install --cams
|
30
30
|
|
31
31
|
# Option 2: Local test mode with embedded examples
|
32
|
-
pip install qlc && qlc-install --test
|
32
|
+
pip install rc-qlc && qlc-install --test
|
33
33
|
|
34
34
|
# Option 3: Custom interactive mode
|
35
|
-
pip install qlc && qlc-install --interactive="./path/to/qlc_user.conf"
|
35
|
+
pip install rc-qlc && qlc-install --interactive="./path/to/qlc_user.conf"
|
36
36
|
```
|
37
37
|
|
38
38
|
---
|
39
39
|
|
40
|
-
##
|
40
|
+
## Example Use Cases
|
41
41
|
|
42
42
|
### Run the full shell pipeline (retrieval, processing, plotting):
|
43
43
|
```bash
|
@@ -54,7 +54,7 @@ qlc-py
|
|
54
54
|
sqlc
|
55
55
|
```
|
56
56
|
|
57
|
-
##
|
57
|
+
## Developer Setup
|
58
58
|
|
59
59
|
To work on the `qlc` source code, clone the repository and install it in "editable" mode. This will install all dependencies and link the `qlc` command to your source tree.
|
60
60
|
|
@@ -73,7 +73,7 @@ pip install -e .
|
|
73
73
|
|
74
74
|
---
|
75
75
|
|
76
|
-
##
|
76
|
+
## Configuration Structure
|
77
77
|
|
78
78
|
The installer script creates the following structure in your home directory:
|
79
79
|
```
|
@@ -91,7 +91,7 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
91
91
|
|
92
92
|
---
|
93
93
|
|
94
|
-
##
|
94
|
+
## Documentation
|
95
95
|
|
96
96
|
- All core logic is contained in the `qlc` package.
|
97
97
|
- Shell scripts for driving the pipeline are in `qlc/sh/`.
|
@@ -99,7 +99,7 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
99
99
|
|
100
100
|
---
|
101
101
|
|
102
|
-
##
|
102
|
+
## Developer Notes
|
103
103
|
|
104
104
|
- Python source files (`.py`) are compiled to binary modules (`.so`) using Cython at install time.
|
105
105
|
- The package version is managed in `pyproject.toml`.
|
@@ -107,10 +107,10 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
107
107
|
|
108
108
|
---
|
109
109
|
|
110
|
-
##
|
110
|
+
## License
|
111
111
|
|
112
112
|
© ResearchConcepts io GmbH
|
113
113
|
Contact: [contact@researchconcepts.io](mailto:contact@researchconcepts.io)
|
114
114
|
MIT-compatible, source-restricted under private release until publication.
|
115
115
|
|
116
|
-
---
|
116
|
+
---
|
qlc/doc/USAGE.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# QLC Usage Guide
|
2
2
|
|
3
|
-
##
|
3
|
+
## Installed CLI Tools
|
4
4
|
|
5
5
|
Once installed, QLC provides the following command-line entry points:
|
6
6
|
|
@@ -15,37 +15,37 @@ Submits a QLC run as a batch job (e.g., SLURM, LSF).
|
|
15
15
|
|
16
16
|
---
|
17
17
|
|
18
|
-
##
|
18
|
+
## PyPI Installation
|
19
19
|
|
20
|
-
To install `qlc` from PyPI and set up the local environment, use the following two-step command.
|
20
|
+
To install `rc-qlc` from PyPI and set up the local environment, use the following two-step command.
|
21
21
|
|
22
22
|
### CAMS Mode
|
23
23
|
For users connected to the CAMS data infrastructure.
|
24
24
|
```bash
|
25
|
-
pip install qlc && qlc-install --cams
|
25
|
+
pip install rc-qlc && qlc-install --cams
|
26
26
|
```
|
27
27
|
|
28
28
|
### Test Mode
|
29
29
|
For a standalone test using the bundled example data.
|
30
30
|
```bash
|
31
|
-
pip install qlc && qlc-install --test
|
31
|
+
pip install rc-qlc && qlc-install --test
|
32
32
|
```
|
33
33
|
|
34
34
|
---
|
35
35
|
|
36
|
-
##
|
36
|
+
## Local Wheel Installation
|
37
37
|
|
38
38
|
If you have a wheel file (`.whl`), you can install it directly.
|
39
39
|
|
40
40
|
```bash
|
41
41
|
# Example for a local wheel file
|
42
|
-
pip install ./path/to/your/qlc-0.3.
|
42
|
+
pip install ./path/to/your/rc-qlc-0.3.21-....whl
|
43
43
|
qlc-install --test
|
44
44
|
```
|
45
45
|
|
46
46
|
---
|
47
47
|
|
48
|
-
##
|
48
|
+
## Running QLC in Test Mode
|
49
49
|
|
50
50
|
After installing in test mode, you can immediately run the main drivers:
|
51
51
|
```bash
|
qlc/install.py
CHANGED
@@ -249,8 +249,13 @@ def setup(mode, config_file=None, version="latest"):
|
|
249
249
|
"config": selected_conf.name
|
250
250
|
}
|
251
251
|
|
252
|
-
|
253
|
-
|
252
|
+
# Preemptively remove 'qlc_latest' symlink to ensure clean update, mimicking `ln -sf`.
|
253
|
+
qlc_latest_link = Path.home() / "qlc_latest"
|
254
|
+
if qlc_latest_link.is_symlink():
|
255
|
+
qlc_latest_link.unlink()
|
256
|
+
|
257
|
+
safe_move_and_link(root, qlc_latest_link)
|
258
|
+
safe_move_and_link(qlc_latest_link, Path.home() / "qlc")
|
254
259
|
|
255
260
|
(root / "VERSION.json").write_text(json.dumps(info, indent=2))
|
256
261
|
print(f"[WRITE] VERSION.json at {root}")
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
qlc/py/io.cpython-310-darwin.so
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: rc-qlc
|
3
|
-
Version: 0.3.
|
3
|
+
Version: 0.3.24
|
4
4
|
Summary: Quick Look Content (QLC): Model–Observation Comparison Suite for Use with CAMS
|
5
5
|
Home-page: https://pypi.org/project/qlc/
|
6
6
|
Author-email: ResearchConcepts io GmbH <contact@researchconcepts.io>
|
@@ -31,14 +31,14 @@ designed to support climate and air quality monitoring and specifically adapted
|
|
31
31
|
|
32
32
|
| Package | Status |
|
33
33
|
|---------|--------|
|
34
|
-
| [qlc on PyPI](https://pypi.org/project/qlc/) |  |
|
34
|
+
| [rc-qlc on PyPI](https://pypi.org/project/rc-qlc/) |  |
|
35
35
|
|
36
36
|
---
|
37
37
|
|
38
|
-
##
|
38
|
+
## Features
|
39
39
|
|
40
40
|
- Side-by-side evaluation of observational and modelled data
|
41
|
-
- Fully scriptable and automated post-processing chain
|
41
|
+
- Fully scriptable and automated post-processing chain
|
42
42
|
- Modular structure using shell + Python + Cython
|
43
43
|
- Generates publication-ready figures and LaTeX integration
|
44
44
|
- Supports NetCDF and CSV time series formats
|
@@ -46,24 +46,24 @@ designed to support climate and air quality monitoring and specifically adapted
|
|
46
46
|
|
47
47
|
---
|
48
48
|
|
49
|
-
##
|
49
|
+
## User Installation
|
50
50
|
|
51
51
|
Use one of the following install modes:
|
52
52
|
|
53
53
|
```bash
|
54
54
|
# Option 1: CAMS (default data links + config)
|
55
|
-
pip install qlc && qlc-install --cams
|
55
|
+
pip install rc-qlc && qlc-install --cams
|
56
56
|
|
57
57
|
# Option 2: Local test mode with embedded examples
|
58
|
-
pip install qlc && qlc-install --test
|
58
|
+
pip install rc-qlc && qlc-install --test
|
59
59
|
|
60
60
|
# Option 3: Custom interactive mode
|
61
|
-
pip install qlc && qlc-install --interactive="./path/to/qlc_user.conf"
|
61
|
+
pip install rc-qlc && qlc-install --interactive="./path/to/qlc_user.conf"
|
62
62
|
```
|
63
63
|
|
64
64
|
---
|
65
65
|
|
66
|
-
##
|
66
|
+
## Example Use Cases
|
67
67
|
|
68
68
|
### Run the full shell pipeline (retrieval, processing, plotting):
|
69
69
|
```bash
|
@@ -80,7 +80,7 @@ qlc-py
|
|
80
80
|
sqlc
|
81
81
|
```
|
82
82
|
|
83
|
-
##
|
83
|
+
## Developer Setup
|
84
84
|
|
85
85
|
To work on the `qlc` source code, clone the repository and install it in "editable" mode. This will install all dependencies and link the `qlc` command to your source tree.
|
86
86
|
|
@@ -99,7 +99,7 @@ pip install -e .
|
|
99
99
|
|
100
100
|
---
|
101
101
|
|
102
|
-
##
|
102
|
+
## Configuration Structure
|
103
103
|
|
104
104
|
The installer script creates the following structure in your home directory:
|
105
105
|
```
|
@@ -117,7 +117,7 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
117
117
|
|
118
118
|
---
|
119
119
|
|
120
|
-
##
|
120
|
+
## Documentation
|
121
121
|
|
122
122
|
- All core logic is contained in the `qlc` package.
|
123
123
|
- Shell scripts for driving the pipeline are in `qlc/sh/`.
|
@@ -125,7 +125,7 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
125
125
|
|
126
126
|
---
|
127
127
|
|
128
|
-
##
|
128
|
+
## Developer Notes
|
129
129
|
|
130
130
|
- Python source files (`.py`) are compiled to binary modules (`.so`) using Cython at install time.
|
131
131
|
- The package version is managed in `pyproject.toml`.
|
@@ -133,7 +133,7 @@ A symlink `$HOME/qlc` is also created to point to the active installation. You c
|
|
133
133
|
|
134
134
|
---
|
135
135
|
|
136
|
-
##
|
136
|
+
## License
|
137
137
|
|
138
138
|
© ResearchConcepts io GmbH
|
139
139
|
Contact: [contact@researchconcepts.io](mailto:contact@researchconcepts.io)
|
@@ -1,113 +1,113 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
qlc/
|
8
|
-
qlc/
|
9
|
-
qlc/
|
10
|
-
qlc/
|
11
|
-
qlc/
|
12
|
-
qlc/
|
13
|
-
qlc/
|
14
|
-
qlc/
|
15
|
-
qlc/
|
16
|
-
qlc/
|
17
|
-
qlc/
|
18
|
-
qlc/
|
19
|
-
qlc/
|
20
|
-
qlc/
|
21
|
-
qlc/
|
22
|
-
qlc/
|
23
|
-
qlc/
|
24
|
-
qlc/
|
25
|
-
qlc/
|
26
|
-
qlc/
|
27
|
-
qlc/
|
28
|
-
qlc/
|
29
|
-
qlc/
|
30
|
-
qlc/config/
|
31
|
-
qlc/config/
|
32
|
-
qlc/config/
|
33
|
-
qlc/config/nml/
|
34
|
-
qlc/config/nml/
|
35
|
-
qlc/
|
36
|
-
qlc/
|
37
|
-
qlc/
|
38
|
-
qlc/
|
39
|
-
qlc/
|
40
|
-
qlc/
|
41
|
-
qlc/
|
42
|
-
qlc/
|
43
|
-
qlc/
|
44
|
-
qlc/
|
45
|
-
qlc/
|
46
|
-
qlc/
|
47
|
-
qlc/
|
48
|
-
qlc/
|
49
|
-
qlc/
|
50
|
-
qlc/
|
51
|
-
qlc/
|
52
|
-
qlc/
|
53
|
-
qlc/
|
54
|
-
qlc/
|
55
|
-
qlc/
|
56
|
-
qlc/
|
57
|
-
qlc/
|
58
|
-
qlc/
|
59
|
-
qlc/
|
60
|
-
qlc/
|
61
|
-
qlc/
|
62
|
-
qlc/
|
63
|
-
qlc/
|
64
|
-
qlc/
|
65
|
-
qlc/
|
66
|
-
qlc/
|
67
|
-
qlc/
|
68
|
-
qlc/
|
69
|
-
qlc/
|
70
|
-
qlc/
|
71
|
-
qlc/
|
72
|
-
qlc/examples/cams_case_1/
|
73
|
-
qlc/examples/cams_case_1/
|
74
|
-
qlc/examples/cams_case_1/
|
75
|
-
qlc/examples/cams_case_1/
|
76
|
-
qlc/examples/cams_case_1/
|
77
|
-
qlc/
|
78
|
-
qlc/
|
79
|
-
qlc/
|
80
|
-
qlc/
|
81
|
-
qlc/
|
82
|
-
qlc/
|
83
|
-
qlc/
|
84
|
-
qlc/
|
85
|
-
qlc/
|
86
|
-
qlc/
|
87
|
-
qlc/
|
88
|
-
qlc/
|
89
|
-
qlc/
|
90
|
-
qlc/
|
91
|
-
qlc/
|
92
|
-
qlc/
|
93
|
-
qlc/
|
94
|
-
qlc/
|
95
|
-
qlc/
|
96
|
-
qlc/
|
97
|
-
qlc/
|
98
|
-
qlc/
|
99
|
-
qlc/
|
100
|
-
qlc/
|
101
|
-
qlc/
|
102
|
-
qlc/
|
103
|
-
qlc/
|
104
|
-
qlc/
|
105
|
-
qlc/
|
106
|
-
qlc/
|
107
|
-
qlc/
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
1
|
+
rc_qlc-0.3.24.dist-info/RECORD,,
|
2
|
+
rc_qlc-0.3.24.dist-info/WHEEL,sha256=wyHf6UDzyHyUK-aDYscyyyExpYI7SeEZ9xjyEiU4cnw,109
|
3
|
+
rc_qlc-0.3.24.dist-info/entry_points.txt,sha256=haCqahVrnFhVkfBt0HoOuVpKGV1KJOKpC1v75lOBl_s,191
|
4
|
+
rc_qlc-0.3.24.dist-info/top_level.txt,sha256=Czv4KZhpli6RXvgvtCB1g87eRNEM2R-8iHplel1Qp5Q,4
|
5
|
+
rc_qlc-0.3.24.dist-info/METADATA,sha256=BGsnqbpFJtHnSYNGJRLfkchn2Dt5lR4sdI3Q6qkC5BI,4190
|
6
|
+
rc_qlc-0.3.24.dist-info/licenses/LICENSE,sha256=1pYHFCPjSx9_0weOUVJ-SpSin1dm6nSMzeO8Jj_qKuo,1081
|
7
|
+
qlc/__init__.py,sha256=cmqybybgtiIwlVJIUfWOtP65yM1WzykLc1QRgdLANtI,208
|
8
|
+
qlc/install.py,sha256=PpgLMiAbyBuIXt1sGCr8jZuWTKBtllsDi0QpB88K060,10985
|
9
|
+
qlc/py/bias_plots.cpython-310-darwin.so,sha256=-uSk_2CxROczsKfg6riLoLnCoujCwXUUZxqauiekOLc,107024
|
10
|
+
qlc/py/control.cpython-310-darwin.so,sha256=F8oQk6AteHAOPnrFUnVS4fHcd92zoSH-HH1bkN5EOmU,233232
|
11
|
+
qlc/py/__main__.cpython-310-darwin.so,sha256=3yxmHbaNvnKecGXpkvKAMtNbsVCsjtFaLNcXLnEOWaU,80448
|
12
|
+
qlc/py/processing.cpython-310-darwin.so,sha256=CDsTrL_6HX1fmn-JRZW76AGJQVwKqKNtrUpub3gwup0,123360
|
13
|
+
qlc/py/loadobs.cpython-310-darwin.so,sha256=yd2Ns0RCJFUzq2bCBTOeWH81DKpoaKeoKYA_ACGRi6Y,181232
|
14
|
+
qlc/py/stations.cpython-310-darwin.so,sha256=r0RRfLOfLGvxpiQrAYb_j7ekaWmC9g47j_lLQ-osHsA,622832
|
15
|
+
qlc/py/averaging.cpython-310-darwin.so,sha256=xOFa5allTrb3ffxsACdS3GoDTbj9lLISoSDBheN-KPE,83072
|
16
|
+
qlc/py/style.cpython-310-darwin.so,sha256=21rHbWgUgclxK0dSPwoNuqM0TN_DII5kEnUvRz_QbuY,299528
|
17
|
+
qlc/py/plot_config.cpython-310-darwin.so,sha256=V3O1RkUdZWaFCCbRmNkFzrOPk8Ym7JAYHdNh_gbs3zg,79760
|
18
|
+
qlc/py/plotting.cpython-310-darwin.so,sha256=u-SdNDqr0GyY3jx4fAg8XF1iUbRD00Wnil-1Q2CkLMg,179280
|
19
|
+
qlc/py/loadmod.cpython-310-darwin.so,sha256=epK0T9SyDKWoVh7kos-BVVRKQnFtpbsWnoFeodMRy40,198560
|
20
|
+
qlc/py/timeseries_plots.cpython-310-darwin.so,sha256=Ta_wAgdgRwW0Di4D2wPGPeXMRHBI8_PIflD3RMm2wnM,604248
|
21
|
+
qlc/py/io.cpython-310-darwin.so,sha256=Q58xYEDh902dXQshabEZICIJa6H0fCZ5v6iNPq-EhMI,143416
|
22
|
+
qlc/py/scatter_plots.cpython-310-darwin.so,sha256=FS2qADdNedPtT6PyeNA9F0IUBZlnVwiWxQbP56VA4E8,106128
|
23
|
+
qlc/py/version.cpython-310-darwin.so,sha256=QA--fbJw8owTwSSB4FXR-5zXFquqRjHvgT1oPdfCld8,54272
|
24
|
+
qlc/py/utils.cpython-310-darwin.so,sha256=390WcNWtmydug3f3OOwf5AzZfkEwQKc_d26OITBlx48,521016
|
25
|
+
qlc/py/logging_utils.cpython-310-darwin.so,sha256=jCZPUmxIlXn_JzaF7LQLxifqsIs8TMwogndvGBv_oM0,82496
|
26
|
+
qlc/py/matched.cpython-310-darwin.so,sha256=zQv_R_1_vJSZ4u4CmIxYDrLz5LIP2uTlr3PLpiC-SOM,100848
|
27
|
+
qlc/py/map_plots.cpython-310-darwin.so,sha256=hE4aKGx39tuBMZHIs31R-XyFpoQNCc2h7MJOseQCbIA,205600
|
28
|
+
qlc/py/plugin_loader.cpython-310-darwin.so,sha256=nnYh1gnG4c1nKDMtu5cENLbQGl3A35zE1Fvw8hxob1Q,83136
|
29
|
+
qlc/py/statistics.cpython-310-darwin.so,sha256=P9g14_P-x31UmV5ZHK5BH3tkATUfvDTKPloG5JOVfTs,251376
|
30
|
+
qlc/config/qlc_tex.conf,sha256=O76Y4d1HkVmV7e75sKjlThGOIvTHoH4Tb4O7yC1NH0Q,5144
|
31
|
+
qlc/config/qlc_cams.conf,sha256=c7dePIqdN26750KGsm031HnAlXLb8EKFcRevyz8eFnw,1170
|
32
|
+
qlc/config/qlc_test.conf,sha256=9SQ2F0Bj1VXHT-e5RDdbTgKtWaz_wqBxYJDW3KMNrfg,1176
|
33
|
+
qlc/config/nml/mars_A2_sfc.nml,sha256=83Gkdr8vmlzif41EClWdjiJopZHDk9p-80-_l3fkeDE,638
|
34
|
+
qlc/config/nml/mars_B1_pl.nml,sha256=ii3fcR_LJTY9aODeTpqEhtofJPe85gqHQeWt3_Tgq2A,669
|
35
|
+
qlc/config/nml/mars_C1_pl.nml,sha256=gAkIFG3wOwz7jUpzNmiVoePnmDDTEWuPZk0Ov1egYp8,657
|
36
|
+
qlc/config/nml/mars_A3_sfc.nml,sha256=CFVxn_0frDrgY4HeINnaulGUasNY2hMZVLRPiVuRN_M,543
|
37
|
+
qlc/config/nml/mars_A1_sfc.nml,sha256=E5kG6rqVy4qvdvwpJ_sXfKzP2zwTq6wBAZcxuhUDZyQ,613
|
38
|
+
qlc/config/nml/mars_D.nml,sha256=DYtFEnAF1Nb7jwg3Gjf1SQIEtZbG_yvcV7W0ZMtoygI,565
|
39
|
+
qlc/config/nml/mars_C2_pl.nml,sha256=z3m0V33HjNS1kKZ_gtmbAnqDqWrAqUJzJwYGO6XfJC0,689
|
40
|
+
qlc/config/nml/mars_E.nml,sha256=F6qlw9WpKa6s2kXJCa90_JtajvHCihpTu24liMiLhHc,580
|
41
|
+
qlc/config/nml/mars_C3_ml.nml,sha256=IEdmbPOmJu_DSv8p5r6k--hj2xZFoYibCG8ogwxVXaI,654
|
42
|
+
qlc/config/nml/mars_G.nml,sha256=XK2kEVO02jX0MlopUUALBpMti4X_zJRrH3wBZURFd9w,535
|
43
|
+
qlc/config/nml/mars_F.nml,sha256=rIShFyYxx0ZIL_Kmd9yAtF0fGrh-hEbKmfGMhg56b9g,535
|
44
|
+
qlc/config/nml/mars_B2_pl.nml,sha256=_G2JFmvm6G6CvEZkb0zG8UKBqiiF1OwEgAkpNuFJapE,704
|
45
|
+
qlc/config/json/qlc_config_example_3a-us_obs.json,sha256=JtlLYpKN2ToVU_duUqbG6L8NZuRD2ehv8S94P-TC_So,2559
|
46
|
+
qlc/config/json/qlc_config_example_1b_all-mod.json,sha256=pmsuYHM2dYEcaoNVZqBzLUIsxdkWH6fzIVJnpu7B8kU,10887
|
47
|
+
qlc/config/json/qlc_config_example_2b_all-mod.json,sha256=-gQTvmquAoRh71nKJJYF4EsUQRFtKTkdPD9-PxZXdio,10887
|
48
|
+
qlc/config/json/qlc_config_example_2c_all-coll.json,sha256=wro2TX_jtrlgKPQb5ZIDWT5PtG-CJWESklna4d25RUU,8483
|
49
|
+
qlc/config/json/qlc_config_example_3b-us_mod.json,sha256=aWeBfpSX4ztdQL8MamG8bJ6znE0ftw_9lMv5NpsWWks,3729
|
50
|
+
qlc/config/json/qlc_config_example_1c_all-coll.json,sha256=nuo-2EZF3N9DGgfTguUURcNvYLNgrBgXEFVfjV52yjg,8488
|
51
|
+
qlc/config/json/qlc_config_example_1a_all-obs.json,sha256=YedsRXqi2ZezT5M5SGtVUzLGABHXMYjMJvJrmqYHs4E,7554
|
52
|
+
qlc/config/json/qlc_config_example_3c-us_coll.json,sha256=3lXZSxOUIRqiD5m6cQmMctJx9dn_JoyuGUUxXEqrVYQ,1449
|
53
|
+
qlc/config/json/qlc_config_example_4c_eu-coll.json,sha256=PnjdaP_KoUEpaMdybA8atmOfoACFPvF_cH83w8cQbVA,1423
|
54
|
+
qlc/config/json/qlc_config_example_2a_all-obs.json,sha256=t9yqtMFKendTF9c2DyA2udxWBcECBbe6b_26vmJAAQA,7596
|
55
|
+
qlc/config/json/qlc_config_example_4b_eu-mod.json,sha256=D2gLRwUjKZ97zlZdq8PNHcu9rSV8MjRMQ2IWZ4tHQmU,3717
|
56
|
+
qlc/config/json/qlc_config_example_4a_eu-obs.json,sha256=zSkChYknqQhJV-dWoDqPtY-2tCJHtIybJ60DOlCNDHs,1288
|
57
|
+
qlc/config/json/qlc_config.json,sha256=vOxUiBSVwg8pFuPnIaPz3M80aMata23HtldnB46bsTo,1327
|
58
|
+
qlc/cli/qlc_main.py,sha256=fZ4CgPDzc3LC865JL6tBeP7dHzanqSR6QIg33h9qFtI,7663
|
59
|
+
qlc/cli/__init__.py,sha256=JIJ_XEqrtN0kvnkBupk1ShKqAfjnpk1vg0L-EIF3uGY,771
|
60
|
+
qlc/cli/installer.py,sha256=ur6Ay7qKHt-8i7_TplEdlEpE23Qh0GAO15kVOAuphEQ,550
|
61
|
+
qlc/cli/qlc_py_main.py,sha256=6soHJyNTfu1DT9LtzSBsFmHntBRMzTKS6Y6BZ8fctX4,2503
|
62
|
+
qlc/sh/qlc_B1a.sh,sha256=fifFOWRbV1M4lJeoUwKpaejmYOToXQtZISoN5q0m3Dc,3741
|
63
|
+
qlc/sh/qlc_D1.sh,sha256=GU0xtF1ys5yB6gZi3T06DF7OagRMYyCs2reB3bTojBw,3639
|
64
|
+
qlc/sh/qlc_A1.sh,sha256=ALll_tcuOwK-TWuQg897jGvYr0DLG-RKbIG_A58PgJE,4563
|
65
|
+
qlc/sh/qlc_common_functions.sh,sha256=_Y0U7nF1mHxQsbrUS_YQR1l6G9HDK4mt_gRiEuSucbg,5698
|
66
|
+
qlc/sh/qlc_C5.sh,sha256=zC-wcm4MWpVflhJO1sLdki3PfclOMljh3ZAmScoSVvg,36427
|
67
|
+
qlc/sh/qlc_start_batch.sh,sha256=vwtoXV8sAF1OCzs2KfylOCy8_M2cFmV0HgdfxwJLLkA,2032
|
68
|
+
qlc/sh/qlc_main.sh,sha256=yyNs5r_xO0LmDba2GwcCyiLoSvn-g77aXwAVbmi_UV4,4253
|
69
|
+
qlc/sh/qlc_start.sh,sha256=FL37u3s29xTBN24dotWqXxGcY41rAhmEB1XLcG01uwE,1290
|
70
|
+
qlc/sh/qlc_Z1.sh,sha256=R9ulrb5tDjOuOAKd6a8FsDiCvIL1B8hcrCD25EM2T9o,5461
|
71
|
+
qlc/sh/qlc_B2.sh,sha256=xlNIJhQ1f_JSvysDIeWX1ZpflTCLfdgNzd05ufFJA0Q,10993
|
72
|
+
qlc/examples/cams_case_1/config/qlc_cams.conf,sha256=tmhy0u4EP0-Plh6ByNrnKwJqmBr1lzg4EHUms3qeRBk,5719
|
73
|
+
qlc/examples/cams_case_1/config/nml/mars_B1_pl.nml,sha256=ii3fcR_LJTY9aODeTpqEhtofJPe85gqHQeWt3_Tgq2A,669
|
74
|
+
qlc/examples/cams_case_1/config/nml/mars_C1_pl.nml,sha256=gAkIFG3wOwz7jUpzNmiVoePnmDDTEWuPZk0Ov1egYp8,657
|
75
|
+
qlc/examples/cams_case_1/config/nml/mars_A3_sfc.nml,sha256=CFVxn_0frDrgY4HeINnaulGUasNY2hMZVLRPiVuRN_M,543
|
76
|
+
qlc/examples/cams_case_1/config/json/qlc_config.json,sha256=vOxUiBSVwg8pFuPnIaPz3M80aMata23HtldnB46bsTo,1327
|
77
|
+
qlc/examples/cams_case_1/obs/ebas_station-locations.csv,sha256=v4LIThJ4gDmgJyDsXozwUm3k8lUvPhYKhrXjxp-YI3g,1743
|
78
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181220.nc,sha256=44wohtBt2B3OyS94588_nMomdDAgWmorWe0tNNt-lKs,145331
|
79
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181214.nc,sha256=etpmhAaUHVOABoOa9QDOF1hVvOhpytKXQhp6LFzyzco,145358
|
80
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181204.nc,sha256=sK092bbJTA5SKVMtbQZxiLu2foErxRws06soyavemVU,145171
|
81
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181230.nc,sha256=H2EsyIFva38W8K8APOo3nbYOv_5xb0kUcGSNXQGp7RQ,145680
|
82
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181210.nc,sha256=YSarGOGHuv0bBBTHogTiT3ia3Ba0WJZgSgC6V5Sgx28,145052
|
83
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181224.nc,sha256=Ao6XGhwlCJOCk2B2dvdq8W5wk3LxspzsbMSH3gEKF70,145547
|
84
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181211.nc,sha256=rj7-gnA7bSM45iz68Fjbvzt9jlCKRq_eW8J3PujWfYs,145445
|
85
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181225.nc,sha256=NX_-ApK44vVUl1MlL34Kp1_saqe4f1hHWjXHYMe3lrE,148101
|
86
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181201.nc,sha256=p0mRXcTHVkCmBZhzYl-LG-2pkd20U84ubiXWOsdWlpo,147934
|
87
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181221.nc,sha256=2aUMTPqiZm9h-9y26jOb3cWmeMNugK7V-8e5ItAWNu0,147848
|
88
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181215.nc,sha256=u93WDDRwrKMuKG2dfXqqz-7ZglSgvNrgSfZYRaSJO8A,145335
|
89
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181205.nc,sha256=eekGhiONUCCvijstVtBOa8RnjTpRa1iaA5AUY-d4WCY,147730
|
90
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181231.nc,sha256=aTAAzE3uXeeUIfVwn2Y_yDBM2oUe3HnFMyA7blD_8io,145563
|
91
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181212.nc,sha256=YfHgucNBIhppHx2ZvuZDS51LLUZ0cjaMAv0HmPyZABg,145270
|
92
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181226.nc,sha256=QaXOShPz7dp-GpLXwOGIPD52fvDMJz_ZwCfjFFTPzuc,137630
|
93
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181202.nc,sha256=b2GnqKha9ApadqT1PsfzOdGLyeTX2iRFZWHAe4m_6hw,147754
|
94
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181222.nc,sha256=70D7mC9tmaXLRCl_7LWIAJrmJL-lfxf8-SCFLgVNrXU,145581
|
95
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181216.nc,sha256=XITSvxE_H-mAbl8mTChGlmfjdUChLcbmIfGwJ3Lpnrs,145312
|
96
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181206.nc,sha256=bmrFOUT7I1vPSZxbrhnZ7ABMf72jw0iyCg6wgzgdhm8,145280
|
97
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181223.nc,sha256=Z3d0_SuxBr3g8-8Apk79Rkgo8ZqIv5eVSGOl9sIqPWo,145434
|
98
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181217.nc,sha256=imrxXStn8JHDE3cq9mm6ApUedx9s7-vrsRUVmrMS7Ds,147776
|
99
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181207.nc,sha256=mJ-BmPag7fdMA3U8B7nDceT4jsYrdwCWzmAVa93vy50,145312
|
100
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181213.nc,sha256=Qtf0i0y2dKqrWOWunALxuM604bJYt1_GsCJ-yD3wJcA,147719
|
101
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181227.nc,sha256=VIIwMqy8-3Oh_DUxL6TrAW3TQkE_PuuQy-UL4kPY01I,140117
|
102
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181203.nc,sha256=z1WS6bCfhAQHXNZzL90fGX1FsHW4AA4Es7DjeCVPPkg,145381
|
103
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181218.nc,sha256=BSWuq-opl7pWnfkp5fi6bL0xMRPdqupIeWANrea7Whc,137423
|
104
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181208.nc,sha256=og4cK4x-vE-qAAROyw6yHjVJKZeFsAtQhfOyKwhat0c,145388
|
105
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181228.nc,sha256=lRFdN3EMNT-_1i7OqJ0ASFTEbvdVVon-YkexmIz3Buk,145655
|
106
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181229.nc,sha256=TtdledzM8v9fKWMy07j0m2tXZcFVR2LOJCFhka9Ancg,148217
|
107
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181219.nc,sha256=oHRQoHzIPuqLHCSbUSB2-7jf0POFHkajB7NmD7JhElU,139924
|
108
|
+
qlc/examples/cams_case_1/obs/ebas_daily/v_20240216/201812/ebas_20181209.nc,sha256=LrPL3ivckNa5ea-E4njIIoY7syTou25PkuZTyK5mZi8,142958
|
109
|
+
qlc/examples/cams_case_1/mod/iqi9/2018/iqi9_20181215-20181231_A3_sfc.grb,sha256=WaQI398klK1LmGMqJTT8ghuNY1tGYJFdA3QP1RV6x4M,10341960
|
110
|
+
qlc/examples/cams_case_1/mod/b2ro/2018/b2ro_20181215-20181231_A3_sfc.grb,sha256=G3z7XhuYn0r6Rs7pcIHHrYrShBuNXXhLO6YXmfYGr_g,10341600
|
111
|
+
qlc/doc/USAGE.md,sha256=hUMiv3xj5qn2P8HiOz34A9uyE-P1_mQp1-tIBiU9_Nk,1145
|
112
|
+
qlc/doc/README.md,sha256=3CfnL7_xzHoH3RmHS4g1D_R6qZVMLgDBk7mEYXZORas,3478
|
113
|
+
qlc/doc/CONTRIBUTING.md,sha256=IXYwAIdAfiQUQOVJcP0RTVpWL9Q-dW2ljG6hs4WkHTY,2607
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|