bsrn 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.
- bsrn-0.1.0/LICENSE +21 -0
- bsrn-0.1.0/PKG-INFO +132 -0
- bsrn-0.1.0/README.md +89 -0
- bsrn-0.1.0/pyproject.toml +34 -0
- bsrn-0.1.0/setup.cfg +4 -0
- bsrn-0.1.0/src/bsrn/__init__.py +7 -0
- bsrn-0.1.0/src/bsrn/constants.py +181 -0
- bsrn-0.1.0/src/bsrn/io/__init__.py +1 -0
- bsrn-0.1.0/src/bsrn/io/readers.py +177 -0
- bsrn-0.1.0/src/bsrn/io/retrieval.py +321 -0
- bsrn-0.1.0/src/bsrn/io/writers.py +1 -0
- bsrn-0.1.0/src/bsrn/physics/__init__.py +1 -0
- bsrn-0.1.0/src/bsrn/physics/clearsky.py +202 -0
- bsrn-0.1.0/src/bsrn/physics/geometry.py +125 -0
- bsrn-0.1.0/src/bsrn/physics/spa.py +378 -0
- bsrn-0.1.0/src/bsrn/qc/__init__.py +1 -0
- bsrn-0.1.0/src/bsrn/qc/closure.py +107 -0
- bsrn-0.1.0/src/bsrn/qc/erl.py +150 -0
- bsrn-0.1.0/src/bsrn/qc/k_index.py +270 -0
- bsrn-0.1.0/src/bsrn/qc/ppl.py +144 -0
- bsrn-0.1.0/src/bsrn/qc/tracker.py +83 -0
- bsrn-0.1.0/src/bsrn/utils/__init__.py +1 -0
- bsrn-0.1.0/src/bsrn/utils/calculations.py +98 -0
- bsrn-0.1.0/src/bsrn/visualization/__init__.py +2 -0
- bsrn-0.1.0/src/bsrn/visualization/availability.py +163 -0
- bsrn-0.1.0/src/bsrn.egg-info/PKG-INFO +132 -0
- bsrn-0.1.0/src/bsrn.egg-info/SOURCES.txt +32 -0
- bsrn-0.1.0/src/bsrn.egg-info/dependency_links.txt +1 -0
- bsrn-0.1.0/src/bsrn.egg-info/requires.txt +3 -0
- bsrn-0.1.0/src/bsrn.egg-info/top_level.txt +1 -0
- bsrn-0.1.0/tests/test_io.py +83 -0
- bsrn-0.1.0/tests/test_physics.py +57 -0
- bsrn-0.1.0/tests/test_qc.py +0 -0
- bsrn-0.1.0/tests/test_visualization.py +51 -0
bsrn-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Dazhi Yang
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
bsrn-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: bsrn
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Python package for quality control (QC) checks on BSRN station-to-archive files.
|
|
5
|
+
Author: Dazhi Yang
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2024 Dazhi Yang
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/dazhiyang/bsrn
|
|
29
|
+
Project-URL: Bug Tracker, https://github.com/dazhiyang/bsrn/issues
|
|
30
|
+
Keywords: bsrn,solar radiation,quality control,irradiance,solar energy
|
|
31
|
+
Classifier: Programming Language :: Python :: 3
|
|
32
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
33
|
+
Classifier: Operating System :: OS Independent
|
|
34
|
+
Classifier: Intended Audience :: Science/Research
|
|
35
|
+
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
36
|
+
Requires-Python: >=3.9
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: pandas
|
|
40
|
+
Requires-Dist: numpy
|
|
41
|
+
Requires-Dist: plotnine
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
|
|
44
|
+
# bsrn: Quality Control for BSRN Files
|
|
45
|
+
|
|
46
|
+
`bsrn` is a Python package designed for automated quality control (QC) on Baseline Surface Radiation Network (BSRN) station-to-archive files (e.g., .001, .002, etc.).
|
|
47
|
+
|
|
48
|
+
## 📂 File Structure
|
|
49
|
+
|
|
50
|
+
```text
|
|
51
|
+
/Volumes/Macintosh Research/Data/bsrn/
|
|
52
|
+
├── .gitignore
|
|
53
|
+
├── README.md
|
|
54
|
+
├── .agents/
|
|
55
|
+
│ └── skills/
|
|
56
|
+
│ └── project-rules/
|
|
57
|
+
│ └── SKILL.md # Project standards & naming conventions
|
|
58
|
+
├── pyproject.toml
|
|
59
|
+
├── src/
|
|
60
|
+
│ └── bsrn/
|
|
61
|
+
│ ├── __init__.py
|
|
62
|
+
│ ├── constants.py # BSRN station database & physical constants
|
|
63
|
+
│ ├── io/
|
|
64
|
+
│ │ ├── __init__.py
|
|
65
|
+
│ │ ├── readers.py # Functions to read .001, .002 datasets
|
|
66
|
+
│ │ ├── retrieval.py # FTP automated downloads with robust retries
|
|
67
|
+
│ │ └── writers.py # Exporting results
|
|
68
|
+
│ ├── physics/
|
|
69
|
+
│ │ ├── __init__.py
|
|
70
|
+
│ │ ├── geometry.py # Solar position (Zenith, Azimuth via pvlib)
|
|
71
|
+
│ │ └── clearsky.py # Theoretical reference models
|
|
72
|
+
│ ├── qc/
|
|
73
|
+
│ │ ├── __init__.py
|
|
74
|
+
│ │ ├── ppl.py # Physically possible limits (Level 1)
|
|
75
|
+
│ │ ├── erl.py # Extremely rare limits (Level 2)
|
|
76
|
+
│ │ ├── closure.py # Internal consistency checks (Level 3)
|
|
77
|
+
│ │ ├── k_index.py # Radiometric index tests (kb, kt, k)
|
|
78
|
+
│ │ └── tracker.py # Solar tracker status detection
|
|
79
|
+
│ ├── visualization/
|
|
80
|
+
│ │ ├── __init__.py
|
|
81
|
+
│ │ └── availability.py # File coverage heatmaps
|
|
82
|
+
│ └── utils/
|
|
83
|
+
│ ├── __init__.py
|
|
84
|
+
│ └── calculations.py # Supporting math
|
|
85
|
+
├── tests/
|
|
86
|
+
│ ├── __init__.py
|
|
87
|
+
│ ├── test_io.py
|
|
88
|
+
│ └── test_qc.py
|
|
89
|
+
├── data/
|
|
90
|
+
│ ├── QIQ/ # Sample 2024 data for station QIQ
|
|
91
|
+
│ └── download_qiq.py # Script to fetch QIQ 2024 data
|
|
92
|
+
└── notebooks/ # Example usage notebooks
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## 🛠 Features
|
|
96
|
+
|
|
97
|
+
Based on the [BSRN Operations Manual (2018)](https://bsrn.awi.de/) and [Forstinger et al. (2021)](https://doi.org/10.18086/swc.2021.36):
|
|
98
|
+
|
|
99
|
+
- **Level 1 (Physically Possible):** Absolute physical bounds for $G_h, B_n, D_h$, and $L_d$.
|
|
100
|
+
- **Level 2 (Extremely Rare):** Climatological limits for specific regimes.
|
|
101
|
+
- **Level 3 (Comparison):** Consistency checks ($G_h$ vs $B_n \cos Z + D_h$) with zenith-dependent thresholds.
|
|
102
|
+
- **Radiometric Indices:** Advanced checks using clearness index ($k_t$), beam transmittance ($k_b$), and diffuse fraction ($k$).
|
|
103
|
+
- **Tracker Detection:** Identify tracking errors by comparing measured values with clear-sky benchmarks.
|
|
104
|
+
- **Robust Retrieval:** High-level API for batch FTP downloads from BSRN-AWI with exponential backoff retries.
|
|
105
|
+
|
|
106
|
+
## 🚀 Getting Started
|
|
107
|
+
|
|
108
|
+
1. **Installation:**
|
|
109
|
+
```bash
|
|
110
|
+
pip install .
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
2. **Data Retrieval:**
|
|
114
|
+
To download all 2024 data for a station (e.g., QIQ):
|
|
115
|
+
```python
|
|
116
|
+
from bsrn.io.retrieval import download_bsrn_stn
|
|
117
|
+
|
|
118
|
+
# Downloads all available files for a station
|
|
119
|
+
download_bsrn_stn("QIQ", "data/QIQ", username="your_user", password="your_password")
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
3. **QC Example:**
|
|
123
|
+
```python
|
|
124
|
+
import bsrn
|
|
125
|
+
|
|
126
|
+
# Load BSRN data (placeholder for the full runner)
|
|
127
|
+
# data = bsrn.io.read_station_file("data/QIQ/qiq0124.dat.gz")
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
## 📜 License
|
|
131
|
+
|
|
132
|
+
MIT License
|
bsrn-0.1.0/README.md
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
# bsrn: Quality Control for BSRN Files
|
|
2
|
+
|
|
3
|
+
`bsrn` is a Python package designed for automated quality control (QC) on Baseline Surface Radiation Network (BSRN) station-to-archive files (e.g., .001, .002, etc.).
|
|
4
|
+
|
|
5
|
+
## 📂 File Structure
|
|
6
|
+
|
|
7
|
+
```text
|
|
8
|
+
/Volumes/Macintosh Research/Data/bsrn/
|
|
9
|
+
├── .gitignore
|
|
10
|
+
├── README.md
|
|
11
|
+
├── .agents/
|
|
12
|
+
│ └── skills/
|
|
13
|
+
│ └── project-rules/
|
|
14
|
+
│ └── SKILL.md # Project standards & naming conventions
|
|
15
|
+
├── pyproject.toml
|
|
16
|
+
├── src/
|
|
17
|
+
│ └── bsrn/
|
|
18
|
+
│ ├── __init__.py
|
|
19
|
+
│ ├── constants.py # BSRN station database & physical constants
|
|
20
|
+
│ ├── io/
|
|
21
|
+
│ │ ├── __init__.py
|
|
22
|
+
│ │ ├── readers.py # Functions to read .001, .002 datasets
|
|
23
|
+
│ │ ├── retrieval.py # FTP automated downloads with robust retries
|
|
24
|
+
│ │ └── writers.py # Exporting results
|
|
25
|
+
│ ├── physics/
|
|
26
|
+
│ │ ├── __init__.py
|
|
27
|
+
│ │ ├── geometry.py # Solar position (Zenith, Azimuth via pvlib)
|
|
28
|
+
│ │ └── clearsky.py # Theoretical reference models
|
|
29
|
+
│ ├── qc/
|
|
30
|
+
│ │ ├── __init__.py
|
|
31
|
+
│ │ ├── ppl.py # Physically possible limits (Level 1)
|
|
32
|
+
│ │ ├── erl.py # Extremely rare limits (Level 2)
|
|
33
|
+
│ │ ├── closure.py # Internal consistency checks (Level 3)
|
|
34
|
+
│ │ ├── k_index.py # Radiometric index tests (kb, kt, k)
|
|
35
|
+
│ │ └── tracker.py # Solar tracker status detection
|
|
36
|
+
│ ├── visualization/
|
|
37
|
+
│ │ ├── __init__.py
|
|
38
|
+
│ │ └── availability.py # File coverage heatmaps
|
|
39
|
+
│ └── utils/
|
|
40
|
+
│ ├── __init__.py
|
|
41
|
+
│ └── calculations.py # Supporting math
|
|
42
|
+
├── tests/
|
|
43
|
+
│ ├── __init__.py
|
|
44
|
+
│ ├── test_io.py
|
|
45
|
+
│ └── test_qc.py
|
|
46
|
+
├── data/
|
|
47
|
+
│ ├── QIQ/ # Sample 2024 data for station QIQ
|
|
48
|
+
│ └── download_qiq.py # Script to fetch QIQ 2024 data
|
|
49
|
+
└── notebooks/ # Example usage notebooks
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## 🛠 Features
|
|
53
|
+
|
|
54
|
+
Based on the [BSRN Operations Manual (2018)](https://bsrn.awi.de/) and [Forstinger et al. (2021)](https://doi.org/10.18086/swc.2021.36):
|
|
55
|
+
|
|
56
|
+
- **Level 1 (Physically Possible):** Absolute physical bounds for $G_h, B_n, D_h$, and $L_d$.
|
|
57
|
+
- **Level 2 (Extremely Rare):** Climatological limits for specific regimes.
|
|
58
|
+
- **Level 3 (Comparison):** Consistency checks ($G_h$ vs $B_n \cos Z + D_h$) with zenith-dependent thresholds.
|
|
59
|
+
- **Radiometric Indices:** Advanced checks using clearness index ($k_t$), beam transmittance ($k_b$), and diffuse fraction ($k$).
|
|
60
|
+
- **Tracker Detection:** Identify tracking errors by comparing measured values with clear-sky benchmarks.
|
|
61
|
+
- **Robust Retrieval:** High-level API for batch FTP downloads from BSRN-AWI with exponential backoff retries.
|
|
62
|
+
|
|
63
|
+
## 🚀 Getting Started
|
|
64
|
+
|
|
65
|
+
1. **Installation:**
|
|
66
|
+
```bash
|
|
67
|
+
pip install .
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
2. **Data Retrieval:**
|
|
71
|
+
To download all 2024 data for a station (e.g., QIQ):
|
|
72
|
+
```python
|
|
73
|
+
from bsrn.io.retrieval import download_bsrn_stn
|
|
74
|
+
|
|
75
|
+
# Downloads all available files for a station
|
|
76
|
+
download_bsrn_stn("QIQ", "data/QIQ", username="your_user", password="your_password")
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
3. **QC Example:**
|
|
80
|
+
```python
|
|
81
|
+
import bsrn
|
|
82
|
+
|
|
83
|
+
# Load BSRN data (placeholder for the full runner)
|
|
84
|
+
# data = bsrn.io.read_station_file("data/QIQ/qiq0124.dat.gz")
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
## 📜 License
|
|
88
|
+
|
|
89
|
+
MIT License
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "bsrn"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="Dazhi Yang" },
|
|
10
|
+
]
|
|
11
|
+
description = "A Python package for quality control (QC) checks on BSRN station-to-archive files."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
license = {file = "LICENSE"}
|
|
14
|
+
requires-python = ">=3.9"
|
|
15
|
+
keywords = ["bsrn", "solar radiation", "quality control", "irradiance", "solar energy"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"License :: OSI Approved :: MIT License",
|
|
19
|
+
"Operating System :: OS Independent",
|
|
20
|
+
"Intended Audience :: Science/Research",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Atmospheric Science",
|
|
22
|
+
]
|
|
23
|
+
dependencies = [
|
|
24
|
+
"pandas",
|
|
25
|
+
"numpy",
|
|
26
|
+
"plotnine",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[project.urls]
|
|
30
|
+
"Homepage" = "https://github.com/dazhiyang/bsrn"
|
|
31
|
+
"Bug Tracker" = "https://github.com/dazhiyang/bsrn/issues"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.packages.find]
|
|
34
|
+
where = ["src"]
|
bsrn-0.1.0/setup.cfg
ADDED
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
"""
|
|
2
|
+
BSRN Standards and Constants.
|
|
3
|
+
Contains physical constants and station metadata.
|
|
4
|
+
BSRN 标准和常量。
|
|
5
|
+
包含物理常量和站点元数据。
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
"""
|
|
9
|
+
Citations:
|
|
10
|
+
[1] Gueymard, Christian A. "A reevaluation of the solar constant based on a 42-year total solar irradiance time
|
|
11
|
+
series and a reconciliation of spaceborne observations." Solar Energy 168 (2018): 2-9.
|
|
12
|
+
"""
|
|
13
|
+
# solar constant (SC) in W/m^2 ($E_{\text{sc}}$) / 太阳常数 (SC) W/m^2 ($E_{\text{sc}}$)
|
|
14
|
+
solar_constant = 1361.1
|
|
15
|
+
|
|
16
|
+
# BSRN Calibration Constants (if any) / BSRN 校准常数(如果有)
|
|
17
|
+
# ...
|
|
18
|
+
|
|
19
|
+
# Station Metadata: Mapping of station abbreviations to (lat, lon, elev) / 站点元数据:站点缩写到(纬度,经度,海拔)的映射
|
|
20
|
+
# Note: These are example entries. / 注意:这些是示例条目。
|
|
21
|
+
BSRN_STATIONS = {
|
|
22
|
+
"ABS": {"name": "Abashiri", "lat": 44.0178, "lon": 144.2797, "elev": 38.0, "status": "active", "kgc": "Dfb"},
|
|
23
|
+
"ALE": {"name": "Alert", "lat": 82.49, "lon": -62.42, "elev": 127.0, "status": "closed", "kgc": "ET"},
|
|
24
|
+
"ASP": {"name": "Alice Springs", "lat": -23.798, "lon": 133.888, "elev": 547.0, "status": "inactive", "kgc": "BWh"},
|
|
25
|
+
"BAR": {"name": "Barrow", "lat": 71.323, "lon": -156.607, "elev": 8.0, "status": "active", "kgc": "ET"},
|
|
26
|
+
"BER": {"name": "Bermuda", "lat": 32.3008, "lon": -64.766, "elev": 8.0, "status": "active", "kgc": "Af"},
|
|
27
|
+
"BIL": {"name": "Billings", "lat": 36.605, "lon": -97.516, "elev": 317.0, "status": "active", "kgc": "Cfa"},
|
|
28
|
+
"BON": {"name": "Bondville", "lat": 40.0667, "lon": -88.3667, "elev": 213.0, "status": "active", "kgc": "Dfa"},
|
|
29
|
+
"BOS": {"name": "Boulder (BOS)", "lat": 40.125, "lon": -105.237, "elev": 1689.0, "status": "active", "kgc": "BSk"},
|
|
30
|
+
"BOU": {"name": "Boulder (BOU)", "lat": 40.05, "lon": -105.007, "elev": 1577.0, "status": "closed", "kgc": "BSk"},
|
|
31
|
+
"BRB": {"name": "Brasilia", "lat": -15.601, "lon": -47.713, "elev": 1023.0, "status": "inactive", "kgc": "Aw"},
|
|
32
|
+
"BUD": {"name": "Budapest-Lorinc", "lat": 47.4291, "lon": 19.1822, "elev": 139.1, "status": "active", "kgc": "Dfb"},
|
|
33
|
+
"CAB": {"name": "Cabauw", "lat": 51.968, "lon": 4.928, "elev": 0.0, "status": "active", "kgc": "Cfb"},
|
|
34
|
+
"CAM": {"name": "Camborne", "lat": 50.2167, "lon": -5.3167, "elev": 88.0, "status": "inactive", "kgc": "Cfb"},
|
|
35
|
+
"CAP": {"name": "Cape Baranova", "lat": 79.27, "lon": 101.75, "elev": 25.0, "status": "closed", "kgc": "ET"},
|
|
36
|
+
"CAR": {"name": "Carpentras", "lat": 44.083, "lon": 5.059, "elev": 100.0, "status": "closed", "kgc": "Csa"},
|
|
37
|
+
"CLH": {"name": "Chesapeake Light", "lat": 36.905, "lon": -75.713, "elev": 37.0, "status": "closed", "kgc": ""},
|
|
38
|
+
"CNR": {"name": "Cener", "lat": 42.816, "lon": -1.601, "elev": 471.0, "status": "active", "kgc": "Csa"},
|
|
39
|
+
"COC": {"name": "Cocos Island", "lat": -12.193, "lon": 96.835, "elev": 6.0, "status": "active", "kgc": "Af"},
|
|
40
|
+
"DAA": {"name": "De Aar", "lat": -30.6667, "lon": 23.993, "elev": 1287.0, "status": "inactive", "kgc": "BSk"},
|
|
41
|
+
"DAR": {"name": "Darwin", "lat": -12.425, "lon": 130.891, "elev": 30.0, "status": "active", "kgc": "Aw"},
|
|
42
|
+
"DOM": {"name": "Concordia Station, Dome C", "lat": -75.1, "lon": 123.383, "elev": 3233.0, "status": "active", "kgc": "EF"},
|
|
43
|
+
"DRA": {"name": "Desert Rock", "lat": 36.626, "lon": -116.018, "elev": 1007.0, "status": "active", "kgc": "BWk"},
|
|
44
|
+
"DWN": {"name": "Darwin Met Office", "lat": -12.424, "lon": 130.8925, "elev": 32.0, "status": "inactive", "kgc": "Aw"},
|
|
45
|
+
"E13": {"name": "Southern Great Plains", "lat": 36.605, "lon": -97.485, "elev": 318.0, "status": "active", "kgc": "Cfa"},
|
|
46
|
+
"ENA": {"name": "Eastern North Atlantic", "lat": 39.0911, "lon": -28.0292, "elev": 15.2, "status": "inactive", "kgc": "Csa"},
|
|
47
|
+
"EUR": {"name": "Eureka", "lat": 79.989, "lon": -85.9404, "elev": 85.0, "status": "closed", "kgc": "ET"},
|
|
48
|
+
"FLO": {"name": "Florianopolis", "lat": -27.6047, "lon": -48.5227, "elev": 11.0, "status": "active", "kgc": "Cfa"},
|
|
49
|
+
"FPE": {"name": "Fort Peck", "lat": 48.3167, "lon": -105.1, "elev": 634.0, "status": "active", "kgc": "BSk"},
|
|
50
|
+
"FUA": {"name": "Fukuoka", "lat": 33.5822, "lon": 130.3764, "elev": 3.0, "status": "closed", "kgc": "Cfa"},
|
|
51
|
+
"GAN": {"name": "Gandhinagar", "lat": 23.1101, "lon": 72.6276, "elev": 65.0, "status": "closed", "kgc": "BSh"},
|
|
52
|
+
"GCR": {"name": "Goodwin Creek", "lat": 34.2547, "lon": -89.8729, "elev": 98.0, "status": "active", "kgc": "Cfa"},
|
|
53
|
+
"GIM": {"name": "Granite Island", "lat": 46.721, "lon": -87.411, "elev": 208.0, "status": "active", "kgc": "Dfb"},
|
|
54
|
+
"GOB": {"name": "Gobabeb", "lat": -23.5614, "lon": 15.042, "elev": 407.0, "status": "active", "kgc": "BWh"},
|
|
55
|
+
"GUR": {"name": "Gurgaon", "lat": 28.4249, "lon": 77.156, "elev": 259.0, "status": "closed", "kgc": "BSh"},
|
|
56
|
+
"GVN": {"name": "Georg von Neumayer", "lat": -70.65, "lon": -8.25, "elev": 42.0, "status": "active", "kgc": ""},
|
|
57
|
+
"HOW": {"name": "Howrah", "lat": 22.5535, "lon": 88.3064, "elev": 51.0, "status": "closed", "kgc": "Aw"},
|
|
58
|
+
"ILO": {"name": "Ilorin", "lat": 8.5333, "lon": 4.5667, "elev": 350.0, "status": "closed", "kgc": "Aw"},
|
|
59
|
+
"INO": {"name": "Marguele", "lat": 44.3439, "lon": 26.0123, "elev": 110.0, "status": "active", "kgc": "Dfa"},
|
|
60
|
+
"ISH": {"name": "Ishigakijima", "lat": 24.3367, "lon": 124.1644, "elev": 5.7, "status": "active", "kgc": "Af"},
|
|
61
|
+
"IZA": {"name": "Izaña", "lat": 28.3093, "lon": -16.4993, "elev": 2372.9, "status": "active", "kgc": "Csb"},
|
|
62
|
+
"KWA": {"name": "Kwajalein", "lat": 8.72, "lon": 167.731, "elev": 10.0, "status": "closed", "kgc": "Af"},
|
|
63
|
+
"LAU": {"name": "Lauder", "lat": -45.045, "lon": 169.689, "elev": 350.0, "status": "inactive", "kgc": "Cfb"},
|
|
64
|
+
"LER": {"name": "Lerwick", "lat": 60.1389, "lon": -1.1847, "elev": 80.0, "status": "inactive", "kgc": "Cfc"},
|
|
65
|
+
"LIN": {"name": "Lindenberg", "lat": 52.21, "lon": 14.122, "elev": 125.0, "status": "active", "kgc": "Dfb"},
|
|
66
|
+
"LMP": {"name": "Lampedusa", "lat": 35.518, "lon": 12.63, "elev": 50.0, "status": "active", "kgc": "BSh"},
|
|
67
|
+
"LRC": {"name": "Langley Research Center", "lat": 37.1038, "lon": -76.3872, "elev": 3.0, "status": "active", "kgc": "Cfa"},
|
|
68
|
+
"LYU": {"name": "Lanyu Station", "lat": 22.037, "lon": 121.5583, "elev": 324.0, "status": "active", "kgc": "Af"},
|
|
69
|
+
"MAN": {"name": "Momote", "lat": -2.058, "lon": 147.425, "elev": 6.0, "status": "closed", "kgc": "Af"},
|
|
70
|
+
"MNM": {"name": "Minamitorishima", "lat": 24.2883, "lon": 153.9833, "elev": 7.1, "status": "active", "kgc": ""},
|
|
71
|
+
"NAU": {"name": "Nauru Island", "lat": -0.521, "lon": 166.9167, "elev": 7.0, "status": "closed", "kgc": "Af"},
|
|
72
|
+
"NEW": {"name": "Newcastle", "lat": -32.8842, "lon": 151.7289, "elev": 18.5, "status": "inactive", "kgc": "Cfa"},
|
|
73
|
+
"NYA": {"name": "Ny-Ålesund", "lat": 78.9227, "lon": 11.9273, "elev": 11.0, "status": "active", "kgc": "ET"},
|
|
74
|
+
"OHY": {"name": "Observatory of Huancayo", "lat": -12.05, "lon": -75.32, "elev": 3314.0, "status": "active", "kgc": "Cwb"},
|
|
75
|
+
"PAL": {"name": "Palaiseau, SIRTA Observatory", "lat": 48.713, "lon": 2.208, "elev": 156.0, "status": "active", "kgc": "Cfb"},
|
|
76
|
+
"PAR": {"name": "Paramaribo", "lat": 5.806, "lon": -55.2146, "elev": 4.0, "status": "active", "kgc": "Af"},
|
|
77
|
+
"PAY": {"name": "Payerne", "lat": 46.8123, "lon": 6.9422, "elev": 491.0, "status": "active", "kgc": "Dfb"},
|
|
78
|
+
"PSU": {"name": "Rock Springs", "lat": 40.72, "lon": -77.9333, "elev": 376.0, "status": "active", "kgc": "Dfa"},
|
|
79
|
+
"PTR": {"name": "Petrolina", "lat": -9.069, "lon": -40.32, "elev": 387.0, "status": "inactive", "kgc": "BSh"},
|
|
80
|
+
"QIQ": {"name": "Qiqihar", "lat": 47.7957, "lon": 124.4852, "elev": 170.0, "status": "active", "kgc": "Dwa"},
|
|
81
|
+
"REG": {"name": "Regina", "lat": 50.205, "lon": -104.713, "elev": 578.0, "status": "closed", "kgc": "Dfb"},
|
|
82
|
+
"RLM": {"name": "Rolim de Moura", "lat": -11.582, "lon": -61.773, "elev": 252.0, "status": "closed", "kgc": "Aw"},
|
|
83
|
+
"RUN": {"name": "Reunion Island, University", "lat": -20.9014, "lon": 55.4836, "elev": 116.0, "status": "active", "kgc": "Am"},
|
|
84
|
+
"SEL": {"name": "Selegua", "lat": 15.784, "lon": -91.9902, "elev": 602.0, "status": "active", "kgc": "Aw"},
|
|
85
|
+
"SMS": {"name": "São Martinho da Serra", "lat": -29.4428, "lon": -53.8231, "elev": 489.0, "status": "inactive", "kgc": "Cfa"},
|
|
86
|
+
"SON": {"name": "Sonnblick", "lat": 47.054, "lon": 12.9577, "elev": 3108.9, "status": "active", "kgc": "ET"},
|
|
87
|
+
"SOV": {"name": "Solar Village", "lat": 24.91, "lon": 46.41, "elev": 650.0, "status": "closed", "kgc": "BWh"},
|
|
88
|
+
"SPO": {"name": "South Pole", "lat": -89.983, "lon": -24.799, "elev": 2800.0, "status": "active", "kgc": "EF"},
|
|
89
|
+
"SXF": {"name": "Sioux Falls", "lat": 43.73, "lon": -96.62, "elev": 473.0, "status": "active", "kgc": "Dfa"},
|
|
90
|
+
"SYO": {"name": "Syowa", "lat": -69.0053, "lon": 39.5811, "elev": 29.0, "status": "active", "kgc": "BWh"},
|
|
91
|
+
"TAM": {"name": "Tamanrasset", "lat": 22.7903, "lon": 5.5292, "elev": 1385.0, "status": "active", "kgc": "BWh"},
|
|
92
|
+
"TAT": {"name": "Tateno", "lat": 36.0581, "lon": 140.1258, "elev": 25.0, "status": "active", "kgc": "Cfa"},
|
|
93
|
+
"TIK": {"name": "Tiksi", "lat": 71.5862, "lon": 128.9188, "elev": 48.0, "status": "closed", "kgc": "ET"},
|
|
94
|
+
"TIR": {"name": "Tiruvallur", "lat": 13.0923, "lon": 79.9738, "elev": 36.0, "status": "closed", "kgc": "Aw"},
|
|
95
|
+
"TNB": {"name": "Terra Nova Bay", "lat": -74.6223, "lon": 164.2283, "elev": 28.0, "status": "candidate", "kgc": "Aw"},
|
|
96
|
+
"TOR": {"name": "Toravere", "lat": 58.2641, "lon": 26.4613, "elev": 70.0, "status": "active", "kgc": "Dfb"},
|
|
97
|
+
"XIA": {"name": "Xianghe", "lat": 39.754, "lon": 116.962, "elev": 32.0, "status": "closed", "kgc": "Dwa"},
|
|
98
|
+
"YUS": {"name": "Yushan Station", "lat": 23.4876, "lon": 120.9595, "elev": 3858.0, "status": "active", "kgc": "ET"},
|
|
99
|
+
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
# Linke Turbidity: Monthly values for BSRN stations / Linke 浑浊度:BSRN 站点的月度值
|
|
103
|
+
LINKE_TURBIDITY = {
|
|
104
|
+
"ABS": {"Jan": 3.1, "Feb": 3.4, "Mar": 4.1, "Apr": 4.3, "May": 4.0, "Jun": 3.7, "Jul": 3.7, "Aug": 3.8, "Sep": 3.7, "Oct": 3.9, "Nov": 3.5, "Dec": 3.1},
|
|
105
|
+
"ALE": {"Jan": 1.1, "Feb": 1.1, "Mar": 3.7, "Apr": 3.6, "May": 3.4, "Jun": 2.9, "Jul": 3.2, "Aug": 2.8, "Sep": 3.1, "Oct": 1.4, "Nov": 1.1, "Dec": 1.1},
|
|
106
|
+
"ASP": {"Jan": 3.5, "Feb": 3.7, "Mar": 3.7, "Apr": 3.5, "May": 3.3, "Jun": 3.2, "Jul": 3.3, "Aug": 3.3, "Sep": 3.2, "Oct": 3.3, "Nov": 3.3, "Dec": 3.4},
|
|
107
|
+
"BAR": {"Jan": 1.1, "Feb": 1.1, "Mar": 3.4, "Apr": 4.1, "May": 3.5, "Jun": 2.9, "Jul": 3.3, "Aug": 3.3, "Sep": 3.5, "Oct": 2.5, "Nov": 1.1, "Dec": 1.1},
|
|
108
|
+
"BER": {"Jan": 3.4, "Feb": 3.6, "Mar": 3.9, "Apr": 4.1, "May": 4.2, "Jun": 4.4, "Jul": 4.7, "Aug": 4.6, "Sep": 4.3, "Oct": 3.9, "Nov": 3.6, "Dec": 3.4},
|
|
109
|
+
"BIL": {"Jan": 2.7, "Feb": 2.7, "Mar": 2.8, "Apr": 3.3, "May": 3.5, "Jun": 3.9, "Jul": 4.1, "Aug": 4.1, "Sep": 3.4, "Oct": 3.1, "Nov": 2.5, "Dec": 2.5},
|
|
110
|
+
"BON": {"Jan": 3.1, "Feb": 3.3, "Mar": 3.4, "Apr": 3.8, "May": 4.1, "Jun": 4.3, "Jul": 4.6, "Aug": 5.0, "Sep": 3.9, "Oct": 3.5, "Nov": 3.3, "Dec": 2.9},
|
|
111
|
+
"BOS": {"Jan": 2.4, "Feb": 2.5, "Mar": 2.4, "Apr": 2.5, "May": 2.5, "Jun": 3.0, "Jul": 3.2, "Aug": 3.3, "Sep": 2.7, "Oct": 2.4, "Nov": 2.5, "Dec": 2.3},
|
|
112
|
+
"BOU": {"Jan": 2.4, "Feb": 2.5, "Mar": 2.4, "Apr": 2.6, "May": 2.6, "Jun": 3.1, "Jul": 3.3, "Aug": 3.4, "Sep": 2.8, "Oct": 2.5, "Nov": 2.5, "Dec": 2.4},
|
|
113
|
+
"BRB": {"Jan": 2.9, "Feb": 3.3, "Mar": 3.7, "Apr": 3.2, "May": 2.9, "Jun": 2.8, "Jul": 2.9, "Aug": 4.5, "Sep": 4.1, "Oct": 4.0, "Nov": 3.4, "Dec": 3.2},
|
|
114
|
+
"BUD": {"Jan": 3.1, "Feb": 3.3, "Mar": 3.5, "Apr": 3.8, "May": 3.6, "Jun": 3.5, "Jul": 3.5, "Aug": 3.7, "Sep": 3.3, "Oct": 3.5, "Nov": 3.5, "Dec": 2.9},
|
|
115
|
+
"CAB": {"Jan": 3.5, "Feb": 3.7, "Mar": 3.9, "Apr": 4.3, "May": 3.7, "Jun": 3.3, "Jul": 3.4, "Aug": 3.7, "Sep": 3.7, "Oct": 3.5, "Nov": 3.6, "Dec": 3.3},
|
|
116
|
+
"CAM": {"Jan": 2.9, "Feb": 3.1, "Mar": 3.4, "Apr": 3.8, "May": 3.3, "Jun": 3.1, "Jul": 3.2, "Aug": 3.4, "Sep": 3.2, "Oct": 3.0, "Nov": 2.9, "Dec": 2.7},
|
|
117
|
+
"CAP": {"Jan": 1.1, "Feb": 1.1, "Mar": 3.2, "Apr": 3.3, "May": 3.3, "Jun": 2.9, "Jul": 2.9, "Aug": 2.9, "Sep": 2.7, "Oct": 1.8, "Nov": 1.1, "Dec": 1.1},
|
|
118
|
+
"CAR": {"Jan": 2.8, "Feb": 3.6, "Mar": 4.3, "Apr": 4.0, "May": 3.7, "Jun": 3.8, "Jul": 4.2, "Aug": 4.1, "Sep": 3.9, "Oct": 3.3, "Nov": 3.4, "Dec": 3.0},
|
|
119
|
+
"CLH": {"Jan": 3.4, "Feb": 3.6, "Mar": 3.9, "Apr": 4.3, "May": 4.7, "Jun": 4.8, "Jul": 5.1, "Aug": 5.1, "Sep": 4.3, "Oct": 3.8, "Nov": 3.6, "Dec": 3.4},
|
|
120
|
+
"CNR": {"Jan": 2.0, "Feb": 2.9, "Mar": 3.3, "Apr": 3.1, "May": 3.1, "Jun": 3.1, "Jul": 3.5, "Aug": 3.1, "Sep": 2.7, "Oct": 2.7, "Nov": 2.7, "Dec": 2.5},
|
|
121
|
+
"COC": {"Jan": 3.6, "Feb": 3.6, "Mar": 3.7, "Apr": 3.6, "May": 3.6, "Jun": 3.4, "Jul": 3.7, "Aug": 3.7, "Sep": 3.3, "Oct": 3.4, "Nov": 3.5, "Dec": 3.7},
|
|
122
|
+
"DAA": {"Jan": 3.3, "Feb": 3.4, "Mar": 3.4, "Apr": 3.4, "May": 3.3, "Jun": 3.3, "Jul": 3.3, "Aug": 3.3, "Sep": 3.3, "Oct": 3.3, "Nov": 3.4, "Dec": 3.4},
|
|
123
|
+
"DAR": {"Jan": 5.0, "Feb": 5.7, "Mar": 5.1, "Apr": 5.7, "May": 6.8, "Jun": 5.9, "Jul": 5.2, "Aug": 5.3, "Sep": 3.4, "Oct": 3.7, "Nov": 4.3, "Dec": 4.7},
|
|
124
|
+
"DOM": {"Jan": 1.0, "Feb": 1.0, "Mar": 1.0, "Apr": 1.0, "May": 1.0, "Jun": 1.0, "Jul": 1.0, "Aug": 1.0, "Sep": 1.0, "Oct": 1.0, "Nov": 1.0, "Dec": 1.0},
|
|
125
|
+
"DRA": {"Jan": 2.7, "Feb": 2.9, "Mar": 3.0, "Apr": 3.4, "May": 4.3, "Jun": 3.4, "Jul": 4.5, "Aug": 4.3, "Sep": 3.3, "Oct": 3.0, "Nov": 2.7, "Dec": 2.7},
|
|
126
|
+
"DWN": {"Jan": 5.1, "Feb": 5.7, "Mar": 5.1, "Apr": 5.7, "May": 6.8, "Jun": 5.9, "Jul": 5.2, "Aug": 5.3, "Sep": 3.4, "Oct": 3.7, "Nov": 4.3, "Dec": 4.7},
|
|
127
|
+
"E13": {"Jan": 2.7, "Feb": 2.7, "Mar": 2.8, "Apr": 3.3, "May": 3.5, "Jun": 3.9, "Jul": 4.1, "Aug": 4.1, "Sep": 3.4, "Oct": 3.1, "Nov": 2.5, "Dec": 2.5},
|
|
128
|
+
"ENA": {"Jan": 3.0, "Feb": 3.2, "Mar": 3.4, "Apr": 3.7, "May": 3.4, "Jun": 3.2, "Jul": 3.5, "Aug": 3.6, "Sep": 3.5, "Oct": 3.2, "Nov": 3.2, "Dec": 3.0},
|
|
129
|
+
"EUR": {"Jan": 1.1, "Feb": 1.1, "Mar": 3.4, "Apr": 3.5, "May": 3.3, "Jun": 2.9, "Jul": 2.9, "Aug": 2.9, "Sep": 3.1, "Oct": 1.5, "Nov": 1.1, "Dec": 1.1},
|
|
130
|
+
"FLO": {"Jan": 3.3, "Feb": 3.2, "Mar": 3.1, "Apr": 3.0, "May": 2.8, "Jun": 2.9, "Jul": 2.9, "Aug": 3.1, "Sep": 3.5, "Oct": 3.3, "Nov": 3.3, "Dec": 3.4},
|
|
131
|
+
"FPE": {"Jan": 3.0, "Feb": 3.3, "Mar": 3.5, "Apr": 4.1, "May": 4.2, "Jun": 3.3, "Jul": 3.3, "Aug": 3.9, "Sep": 3.5, "Oct": 2.9, "Nov": 2.7, "Dec": 3.2},
|
|
132
|
+
"FUA": {"Jan": 3.9, "Feb": 4.7, "Mar": 5.0, "Apr": 5.6, "May": 5.4, "Jun": 6.2, "Jul": 5.0, "Aug": 4.4, "Sep": 3.8, "Oct": 3.1, "Nov": 3.1, "Dec": 3.6},
|
|
133
|
+
"GAN": {"Jan": 4.5, "Feb": 4.7, "Mar": 5.2, "Apr": 5.8, "May": 6.7, "Jun": 7.1, "Jul": 8.7, "Aug": 6.6, "Sep": 6.1, "Oct": 4.9, "Nov": 4.8, "Dec": 4.3},
|
|
134
|
+
"GCR": {"Jan": 2.7, "Feb": 2.9, "Mar": 3.1, "Apr": 3.4, "May": 3.6, "Jun": 3.8, "Jul": 4.3, "Aug": 4.3, "Sep": 3.4, "Oct": 3.2, "Nov": 2.7, "Dec": 2.7},
|
|
135
|
+
"GIM": {"Jan": 3.2, "Feb": 3.1, "Mar": 3.3, "Apr": 3.5, "May": 3.8, "Jun": 3.5, "Jul": 3.5, "Aug": 3.3, "Sep": 3.7, "Oct": 3.1, "Nov": 3.0, "Dec": 2.6},
|
|
136
|
+
"GOB": {"Jan": 3.9, "Feb": 4.2, "Mar": 3.9, "Apr": 3.9, "May": 4.0, "Jun": 4.2, "Jul": 5.3, "Aug": 3.7, "Sep": 3.9, "Oct": 4.0, "Nov": 3.9, "Dec": 3.5},
|
|
137
|
+
"GUR": {"Jan": 5.8, "Feb": 5.4, "Mar": 5.7, "Apr": 7.6, "May": 9.8, "Jun": 9.8, "Jul": 9.8, "Aug": 9.0, "Sep": 6.5, "Oct": 7.4, "Nov": 6.5, "Dec": 5.9},
|
|
138
|
+
"GVN": {"Jan": 2.6, "Feb": 2.7, "Mar": 3.1, "Apr": 2.1, "May": 1.1, "Jun": 1.1, "Jul": 1.1, "Aug": 1.1, "Sep": 3.8, "Oct": 3.6, "Nov": 3.1, "Dec": 2.8},
|
|
139
|
+
"HOW": {"Jan": 7.5, "Feb": 7.2, "Mar": 6.7, "Apr": 7.8, "May": 9.3, "Jun": 8.9, "Jul": 7.3, "Aug": 7.6, "Sep": 6.5, "Oct": 5.5, "Nov": 6.4, "Dec": 7.0},
|
|
140
|
+
"ILO": {"Jan": 7.8, "Feb": 8.7, "Mar": 8.5, "Apr": 8.2, "May": 6.9, "Jun": 6.9, "Jul": 5.8, "Aug": 5.0, "Sep": 5.5, "Oct": 6.4, "Nov": 7.0, "Dec": 7.1},
|
|
141
|
+
"INO": {"Jan": 2.8, "Feb": 3.4, "Mar": 3.2, "Apr": 4.1, "May": 3.8, "Jun": 3.6, "Jul": 3.9, "Aug": 4.4, "Sep": 3.9, "Oct": 3.3, "Nov": 3.5, "Dec": 2.9},
|
|
142
|
+
"ISH": {"Jan": 4.3, "Feb": 4.3, "Mar": 5.2, "Apr": 5.4, "May": 4.8, "Jun": 4.2, "Jul": 3.9, "Aug": 4.0, "Sep": 4.3, "Oct": 4.2, "Nov": 4.2, "Dec": 4.1},
|
|
143
|
+
"IZA": {"Jan": 2.8, "Feb": 2.9, "Mar": 2.9, "Apr": 3.1, "May": 3.0, "Jun": 3.1, "Jul": 4.4, "Aug": 4.0, "Sep": 3.6, "Oct": 3.0, "Nov": 3.1, "Dec": 2.7},
|
|
144
|
+
"KWA": {"Jan": 4.4, "Feb": 4.3, "Mar": 4.4, "Apr": 4.5, "May": 4.3, "Jun": 4.2, "Jul": 3.7, "Aug": 3.7, "Sep": 3.7, "Oct": 3.6, "Nov": 3.9, "Dec": 4.3},
|
|
145
|
+
"LAU": {"Jan": 3.4, "Feb": 3.1, "Mar": 3.0, "Apr": 2.8, "May": 2.7, "Jun": 2.8, "Jul": 2.8, "Aug": 2.9, "Sep": 3.0, "Oct": 3.1, "Nov": 3.3, "Dec": 3.4},
|
|
146
|
+
"LER": {"Jan": 3.0, "Feb": 3.4, "Mar": 3.7, "Apr": 4.1, "May": 3.7, "Jun": 3.4, "Jul": 3.4, "Aug": 3.7, "Sep": 3.7, "Oct": 3.4, "Nov": 3.5, "Dec": 1.7},
|
|
147
|
+
"LIN": {"Jan": 2.9, "Feb": 2.7, "Mar": 3.5, "Apr": 3.7, "May": 3.4, "Jun": 3.3, "Jul": 3.4, "Aug": 3.8, "Sep": 3.3, "Oct": 3.5, "Nov": 3.4, "Dec": 2.9},
|
|
148
|
+
"LMP": {"Jan": 3.2, "Feb": 3.7, "Mar": 5.9, "Apr": 3.6, "May": 4.3, "Jun": 4.5, "Jul": 5.9, "Aug": 4.6, "Sep": 5.1, "Oct": 5.1, "Nov": 3.6, "Dec": 3.3},
|
|
149
|
+
"LRC": {"Jan": 2.4, "Feb": 2.6, "Mar": 2.8, "Apr": 3.4, "May": 3.8, "Jun": 4.2, "Jul": 4.5, "Aug": 4.6, "Sep": 3.2, "Oct": 2.7, "Nov": 2.5, "Dec": 2.4},
|
|
150
|
+
"LYU": {"Jan": 4.3, "Feb": 4.4, "Mar": 5.6, "Apr": 5.3, "May": 4.5, "Jun": 4.0, "Jul": 3.9, "Aug": 4.0, "Sep": 4.5, "Oct": 4.5, "Nov": 4.3, "Dec": 4.3},
|
|
151
|
+
"MAN": {"Jan": 3.7, "Feb": 3.7, "Mar": 3.7, "Apr": 3.5, "May": 3.4, "Jun": 3.6, "Jul": 3.7, "Aug": 3.8, "Sep": 3.7, "Oct": 3.8, "Nov": 3.5, "Dec": 3.6},
|
|
152
|
+
"MNM": {"Jan": 4.1, "Feb": 3.9, "Mar": 4.2, "Apr": 4.5, "May": 4.1, "Jun": 3.7, "Jul": 3.8, "Aug": 3.9, "Sep": 3.7, "Oct": 3.7, "Nov": 3.9, "Dec": 4.0},
|
|
153
|
+
"NAU": {"Jan": 3.9, "Feb": 3.9, "Mar": 4.0, "Apr": 3.6, "May": 3.6, "Jun": 3.4, "Jul": 3.7, "Aug": 3.7, "Sep": 3.4, "Oct": 3.4, "Nov": 3.5, "Dec": 3.7},
|
|
154
|
+
"NEW": {"Jan": 3.7, "Feb": 3.4, "Mar": 3.1, "Apr": 2.9, "May": 2.6, "Jun": 2.6, "Jul": 2.5, "Aug": 2.7, "Sep": 2.8, "Oct": 3.0, "Nov": 3.2, "Dec": 3.3},
|
|
155
|
+
"NYA": {"Jan": 1.1, "Feb": 1.1, "Mar": 3.3, "Apr": 3.5, "May": 3.3, "Jun": 2.9, "Jul": 2.9, "Aug": 2.9, "Sep": 2.8, "Oct": 1.9, "Nov": 1.1, "Dec": 1.1},
|
|
156
|
+
"OHY": {"Jan": 4.0, "Feb": 4.3, "Mar": 4.9, "Apr": 3.5, "May": 3.3, "Jun": 3.1, "Jul": 3.2, "Aug": 3.4, "Sep": 3.9, "Oct": 4.2, "Nov": 3.8, "Dec": 4.0},
|
|
157
|
+
"PAL": {"Jan": 3.9, "Feb": 4.7, "Mar": 4.2, "Apr": 3.9, "May": 3.9, "Jun": 3.9, "Jul": 3.7, "Aug": 4.1, "Sep": 3.4, "Oct": 3.7, "Nov": 3.8, "Dec": 4.5},
|
|
158
|
+
"PAR": {"Jan": 4.9, "Feb": 5.8, "Mar": 5.8, "Apr": 6.2, "May": 5.7, "Jun": 3.4, "Jul": 3.6, "Aug": 3.4, "Sep": 3.7, "Oct": 4.0, "Nov": 4.1, "Dec": 4.7},
|
|
159
|
+
"PAY": {"Jan": 2.0, "Feb": 3.6, "Mar": 3.7, "Apr": 3.4, "May": 3.2, "Jun": 3.3, "Jul": 3.2, "Aug": 3.2, "Sep": 3.0, "Oct": 3.0, "Nov": 2.8, "Dec": 2.7},
|
|
160
|
+
"PSU": {"Jan": 2.6, "Feb": 2.7, "Mar": 2.7, "Apr": 2.9, "May": 3.0, "Jun": 3.7, "Jul": 3.8, "Aug": 3.9, "Sep": 2.9, "Oct": 2.7, "Nov": 2.5, "Dec": 2.5},
|
|
161
|
+
"PTR": {"Jan": 3.2, "Feb": 3.1, "Mar": 3.1, "Apr": 3.0, "May": 2.9, "Jun": 2.8, "Jul": 2.8, "Aug": 2.9, "Sep": 3.0, "Oct": 3.2, "Nov": 3.3, "Dec": 3.5},
|
|
162
|
+
"QIQ": {"Jan": 3.8, "Feb": 4.3, "Mar": 3.3, "Apr": 3.6, "May": 4.1, "Jun": 3.9, "Jul": 3.9, "Aug": 3.3, "Sep": 3.4, "Oct": 3.2, "Nov": 2.9, "Dec": 3.3},
|
|
163
|
+
"REG": {"Jan": 2.9, "Feb": 4.7, "Mar": 3.1, "Apr": 3.3, "May": 3.4, "Jun": 3.0, "Jul": 2.9, "Aug": 3.2, "Sep": 3.0, "Oct": 2.6, "Nov": 2.5, "Dec": 2.6},
|
|
164
|
+
"RLM": {"Jan": 4.5, "Feb": 2.6, "Mar": 4.0, "Apr": 3.5, "May": 3.2, "Jun": 3.3, "Jul": 3.5, "Aug": 5.1, "Sep": 7.1, "Oct": 6.5, "Nov": 5.1, "Dec": 4.0},
|
|
165
|
+
"RUN": {"Jan": 3.9, "Feb": 4.0, "Mar": 3.7, "Apr": 3.6, "May": 3.7, "Jun": 3.6, "Jul": 3.6, "Aug": 3.6, "Sep": 3.7, "Oct": 3.9, "Nov": 3.9, "Dec": 3.9},
|
|
166
|
+
"SEL": {"Jan": 3.6, "Feb": 3.7, "Mar": 4.1, "Apr": 5.2, "May": 6.2, "Jun": 4.6, "Jul": 4.6, "Aug": 4.6, "Sep": 4.9, "Oct": 4.5, "Nov": 4.0, "Dec": 3.7},
|
|
167
|
+
"SMS": {"Jan": 2.9, "Feb": 2.9, "Mar": 2.9, "Apr": 2.7, "May": 2.7, "Jun": 2.8, "Jul": 2.7, "Aug": 3.0, "Sep": 3.7, "Oct": 3.1, "Nov": 3.1, "Dec": 2.9},
|
|
168
|
+
"SON": {"Jan": 2.3, "Feb": 2.9, "Mar": 2.8, "Apr": 2.7, "May": 2.8, "Jun": 2.7, "Jul": 2.5, "Aug": 2.6, "Sep": 2.2, "Oct": 2.2, "Nov": 2.2, "Dec": 2.1},
|
|
169
|
+
"SOV": {"Jan": 3.8, "Feb": 5.0, "Mar": 5.1, "Apr": 6.5, "May": 7.7, "Jun": 6.1, "Jul": 6.2, "Aug": 6.0, "Sep": 5.2, "Oct": 4.4, "Nov": 4.4, "Dec": 4.2},
|
|
170
|
+
"SPO": {"Jan": 1.0, "Feb": 1.0, "Mar": 1.0, "Apr": 1.0, "May": 1.0, "Jun": 1.0, "Jul": 1.0, "Aug": 1.0, "Sep": 1.0, "Oct": 1.0, "Nov": 1.0, "Dec": 1.0},
|
|
171
|
+
"SXF": {"Jan": 2.9, "Feb": 3.1, "Mar": 3.0, "Apr": 3.3, "May": 3.0, "Jun": 3.2, "Jul": 3.4, "Aug": 3.3, "Sep": 3.1, "Oct": 2.7, "Nov": 2.8, "Dec": 2.7},
|
|
172
|
+
"SYO": {"Jan": 2.5, "Feb": 2.7, "Mar": 2.6, "Apr": 3.0, "May": 1.1, "Jun": 1.1, "Jul": 1.1, "Aug": 1.1, "Sep": 3.9, "Oct": 3.7, "Nov": 2.6, "Dec": 2.5},
|
|
173
|
+
"TAM": {"Jan": 2.9, "Feb": 3.0, "Mar": 3.8, "Apr": 4.8, "May": 5.0, "Jun": 5.5, "Jul": 4.7, "Aug": 4.5, "Sep": 4.8, "Oct": 4.0, "Nov": 3.3, "Dec": 3.1},
|
|
174
|
+
"TAT": {"Jan": 3.3, "Feb": 3.6, "Mar": 4.6, "Apr": 5.5, "May": 5.7, "Jun": 5.2, "Jul": 5.5, "Aug": 5.2, "Sep": 4.1, "Oct": 3.9, "Nov": 3.4, "Dec": 3.1},
|
|
175
|
+
"TIK": {"Jan": 1.1, "Feb": 3.3, "Mar": 3.5, "Apr": 3.2, "May": 3.7, "Jun": 3.2, "Jul": 3.4, "Aug": 3.2, "Sep": 2.8, "Oct": 3.4, "Nov": 1.1, "Dec": 1.1},
|
|
176
|
+
"TIR": {"Jan": 4.4, "Feb": 4.2, "Mar": 5.1, "Apr": 5.3, "May": 6.2, "Jun": 6.5, "Jul": 6.5, "Aug": 5.8, "Sep": 5.3, "Oct": 5.3, "Nov": 4.8, "Dec": 4.5},
|
|
177
|
+
"TNB": {"Jan": 2.5, "Feb": 2.9, "Mar": 3.1, "Apr": 1.0, "May": 1.0, "Jun": 1.0, "Jul": 1.0, "Aug": 1.0, "Sep": 3.4, "Oct": 3.6, "Nov": 3.0, "Dec": 2.5},
|
|
178
|
+
"TOR": {"Jan": 3.6, "Feb": 3.9, "Mar": 3.3, "Apr": 3.4, "May": 3.1, "Jun": 2.9, "Jul": 3.2, "Aug": 3.3, "Sep": 3.3, "Oct": 2.6, "Nov": 2.4, "Dec": 3.4},
|
|
179
|
+
"XIA": {"Jan": 4.8, "Feb": 4.8, "Mar": 5.1, "Apr": 7.2, "May": 7.9, "Jun": 8.5, "Jul": 7.8, "Aug": 6.2, "Sep": 6.5, "Oct": 6.3, "Nov": 4.8, "Dec": 4.5},
|
|
180
|
+
"YUS": {"Jan": 2.7, "Feb": 2.8, "Mar": 3.4, "Apr": 3.3, "May": 3.1, "Jun": 2.7, "Jul": 2.4, "Aug": 2.6, "Sep": 2.9, "Oct": 3.0, "Nov": 2.7, "Dec": 2.5},
|
|
181
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from . import readers, writers, retrieval
|