ocf-data-sampler 0.0.51__py3-none-any.whl → 0.0.52__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.
- ocf_data_sampler/constants.py +48 -0
- {ocf_data_sampler-0.0.51.dist-info → ocf_data_sampler-0.0.52.dist-info}/METADATA +3 -2
- {ocf_data_sampler-0.0.51.dist-info → ocf_data_sampler-0.0.52.dist-info}/RECORD +6 -6
- {ocf_data_sampler-0.0.51.dist-info → ocf_data_sampler-0.0.52.dist-info}/LICENSE +0 -0
- {ocf_data_sampler-0.0.51.dist-info → ocf_data_sampler-0.0.52.dist-info}/WHEEL +0 -0
- {ocf_data_sampler-0.0.51.dist-info → ocf_data_sampler-0.0.52.dist-info}/top_level.txt +0 -0
ocf_data_sampler/constants.py
CHANGED
|
@@ -5,6 +5,7 @@ import numpy as np
|
|
|
5
5
|
NWP_PROVIDERS = [
|
|
6
6
|
"ukv",
|
|
7
7
|
"ecmwf",
|
|
8
|
+
"gfs"
|
|
8
9
|
]
|
|
9
10
|
|
|
10
11
|
|
|
@@ -127,13 +128,60 @@ ECMWF_MEAN = {
|
|
|
127
128
|
ECMWF_STD = _to_data_array(ECMWF_STD)
|
|
128
129
|
ECMWF_MEAN = _to_data_array(ECMWF_MEAN)
|
|
129
130
|
|
|
131
|
+
# ------ GFS
|
|
132
|
+
GFS_STD = {
|
|
133
|
+
"dlwrf": 96.305916,
|
|
134
|
+
"dswrf": 246.18533,
|
|
135
|
+
"hcc": 42.525383,
|
|
136
|
+
"lcc": 44.3732,
|
|
137
|
+
"mcc": 43.150745,
|
|
138
|
+
"prate": 0.00010159573,
|
|
139
|
+
"r": 25.440672,
|
|
140
|
+
"sde": 0.43345627,
|
|
141
|
+
"t": 22.825893,
|
|
142
|
+
"tcc": 41.030598,
|
|
143
|
+
"u10": 5.470838,
|
|
144
|
+
"u100": 6.8899174,
|
|
145
|
+
"v10": 4.7401133,
|
|
146
|
+
"v100": 6.076132,
|
|
147
|
+
"vis": 8294.022,
|
|
148
|
+
"u": 10.614556,
|
|
149
|
+
"v": 7.176398,
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
GFS_MEAN = {
|
|
153
|
+
"dlwrf": 298.342,
|
|
154
|
+
"dswrf": 168.12321,
|
|
155
|
+
"hcc": 35.272,
|
|
156
|
+
"lcc": 43.578342,
|
|
157
|
+
"mcc": 33.738823,
|
|
158
|
+
"prate": 2.8190969e-05,
|
|
159
|
+
"r": 18.359747,
|
|
160
|
+
"sde": 0.36937004,
|
|
161
|
+
"t": 278.5223,
|
|
162
|
+
"tcc": 66.841606,
|
|
163
|
+
"u10": -0.0022310058,
|
|
164
|
+
"u100": 0.0823025,
|
|
165
|
+
"v10": 0.06219831,
|
|
166
|
+
"v100": 0.0797807,
|
|
167
|
+
"vis": 19628.32,
|
|
168
|
+
"u": 11.645444,
|
|
169
|
+
"v": 0.12330122,
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
GFS_STD = _to_data_array(GFS_STD)
|
|
173
|
+
GFS_MEAN = _to_data_array(GFS_MEAN)
|
|
174
|
+
|
|
175
|
+
|
|
130
176
|
NWP_STDS = NWPStatDict(
|
|
131
177
|
ukv=UKV_STD,
|
|
132
178
|
ecmwf=ECMWF_STD,
|
|
179
|
+
gfs=GFS_STD
|
|
133
180
|
)
|
|
134
181
|
NWP_MEANS = NWPStatDict(
|
|
135
182
|
ukv=UKV_MEAN,
|
|
136
183
|
ecmwf=ECMWF_MEAN,
|
|
184
|
+
gfs=GFS_MEAN
|
|
137
185
|
)
|
|
138
186
|
|
|
139
187
|
# ------ Satellite
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: ocf_data_sampler
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.52
|
|
4
4
|
Summary: Sample from weather data for renewable energy prediction
|
|
5
5
|
Author: James Fulton, Peter Dudfield, and the Open Climate Fix team
|
|
6
6
|
Author-email: info@openclimatefix.org
|
|
@@ -56,7 +56,7 @@ Requires-Dist: mkdocs-material>=8.0; extra == "docs"
|
|
|
56
56
|
# ocf-data-sampler
|
|
57
57
|
|
|
58
58
|
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
|
|
59
|
-
[](#contributors-)
|
|
60
60
|
<!-- ALL-CONTRIBUTORS-BADGE:END -->
|
|
61
61
|
|
|
62
62
|
[](https://github.com/openclimatefix/ocf-data-sampler/tags)
|
|
@@ -136,6 +136,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
136
136
|
<td align="center" valign="top" width="14.28%"><a href="https://timothyajaniportfolio-b6v3zq29k-timthegreat.vercel.app/"><img src="https://avatars.githubusercontent.com/u/60073728?v=4?s=100" width="100px;" alt="Ajani Timothy"/><br /><sub><b>Ajani Timothy</b></sub></a><br /><a href="https://github.com/openclimatefix/ocf-data-sampler/commits?author=Tim1119" title="Code">💻</a></td>
|
|
137
137
|
<td align="center" valign="top" width="14.28%"><a href="https://rupeshmangalam.vercel.app/"><img src="https://avatars.githubusercontent.com/u/91172425?v=4?s=100" width="100px;" alt="Rupesh Mangalam"/><br /><sub><b>Rupesh Mangalam</b></sub></a><br /><a href="https://github.com/openclimatefix/ocf-data-sampler/commits?author=RupeshMangalam21" title="Code">💻</a></td>
|
|
138
138
|
<td align="center" valign="top" width="14.28%"><a href="http://siddharth7113.github.io"><img src="https://avatars.githubusercontent.com/u/114160268?v=4?s=100" width="100px;" alt="Siddharth"/><br /><sub><b>Siddharth</b></sub></a><br /><a href="https://github.com/openclimatefix/ocf-data-sampler/commits?author=siddharth7113" title="Code">💻</a></td>
|
|
139
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Sachin-G13"><img src="https://avatars.githubusercontent.com/u/190184500?v=4?s=100" width="100px;" alt="Sachin-G13"/><br /><sub><b>Sachin-G13</b></sub></a><br /><a href="https://github.com/openclimatefix/ocf-data-sampler/commits?author=Sachin-G13" title="Code">💻</a></td>
|
|
139
140
|
</tr>
|
|
140
141
|
</tbody>
|
|
141
142
|
</table>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
ocf_data_sampler/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
2
|
-
ocf_data_sampler/constants.py,sha256=
|
|
2
|
+
ocf_data_sampler/constants.py,sha256=S4-pkGdKj9HxQcMpI0iL90Ob_37Dloejn3c-niqdar0,5063
|
|
3
3
|
ocf_data_sampler/utils.py,sha256=rKA0BHAyAG4f90zEcgxp25EEYrXS-aOVNzttZ6Mzv2k,250
|
|
4
4
|
ocf_data_sampler/config/__init__.py,sha256=YXnAkgHViHB26hSsjiv32b6EbpG-A1kKTkARJf0_RkY,212
|
|
5
5
|
ocf_data_sampler/config/load.py,sha256=4f7vPHAIAmd-55tPxoIzn7F_TI_ue4NxkDcLPoVWl0g,943
|
|
@@ -66,8 +66,8 @@ tests/torch_datasets/conftest.py,sha256=eRCzHE7cxS4AoskExkCGFDBeqItktAYNAdkfpMoF
|
|
|
66
66
|
tests/torch_datasets/test_merge_and_fill_utils.py,sha256=ueA0A7gZaWEgNdsU8p3CnKuvSnlleTUjEhSw2HUUROM,1229
|
|
67
67
|
tests/torch_datasets/test_pvnet_uk_regional.py,sha256=FCiFueeFqrsXe7gWguSjBz5ZeUrvyhGbGw81gaVvkHM,5087
|
|
68
68
|
tests/torch_datasets/test_site.py,sha256=0gT_7k086BBnxqbvOayiUeI-vzJsYXlx3KvACC0c6lk,6114
|
|
69
|
-
ocf_data_sampler-0.0.
|
|
70
|
-
ocf_data_sampler-0.0.
|
|
71
|
-
ocf_data_sampler-0.0.
|
|
72
|
-
ocf_data_sampler-0.0.
|
|
73
|
-
ocf_data_sampler-0.0.
|
|
69
|
+
ocf_data_sampler-0.0.52.dist-info/LICENSE,sha256=F-Q3UFCR-BECSocV55BFDpn4YKxve9PKrm-lTt6o_Tg,1073
|
|
70
|
+
ocf_data_sampler-0.0.52.dist-info/METADATA,sha256=lUeJfMdOioAdIfntynW_Ql5Azncfd32jMGKW9DPgkFc,12143
|
|
71
|
+
ocf_data_sampler-0.0.52.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
72
|
+
ocf_data_sampler-0.0.52.dist-info/top_level.txt,sha256=Faob6N6cFdPc5eUpCTYcXgCaNhi4XLLteUL5W5ayYmg,31
|
|
73
|
+
ocf_data_sampler-0.0.52.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|