forked from os-climate/hazard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_onboarding.py
408 lines (341 loc) · 15.5 KB
/
test_onboarding.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
import logging
import os
import sys
from pathlib import Path, PurePath, PurePosixPath
import fsspec.implementations.local as local # type: ignore
import pytest
import s3fs
import zarr
import zarr.convenience
from hazard.docs_store import DocStore
from hazard.onboard.flopros_flood import (
FLOPROSFloodStandardOfProtection,
FLOPROSFloodStandardOfProtectionSource,
)
from hazard.onboard.rain_european_winter_storm import RAINEuropeanWinterStorm
from hazard.models.water_temp import FutureStreamsSource, WaterTemperatureAboveIndicator
from hazard.models.wet_bulb_globe_temp import WetBulbGlobeTemperatureAboveIndicator
from hazard.onboard.csm_subsidence import DavydzenkaEtAlLandSubsidence
from hazard.onboard.ethz_litpop import ETHZurichLitPop
from hazard.onboard.iris_wind import IRISIndicator # type: ignore
from hazard.onboard.jrc_landslides import JRCLandslides
from hazard.onboard.jrc_subsidence import JRCSubsidence
from hazard.onboard.jupiter import (
Jupiter, # type: ignore
JupiterOscFileSource,
)
from hazard.onboard.tudelft_flood import TUDelftCoastalFlood, TUDelftRiverFlood
from hazard.onboard.tudelft_wildfire import TUDelftFire
from hazard.onboard.tudelft_wind import TUDelftConvectiveWindstorm
from hazard.onboard.wisc_european_winter_storm import (
WISCEuropeanWinterStorm,
)
from hazard.onboard.wri_aqueduct_flood import WRIAqueductFlood # type: ignore
from hazard.onboard.wri_aqueduct_water_risk import (
WRIAqueductWaterRisk,
WRIAqueductWaterRiskSource,
WRIAqueductWaterSupplyDemandBaselineSource,
)
from hazard.onboarder import Onboarder
from hazard.sources.nex_gddp_cmip6 import NexGddpCmip6
from hazard.sources.osc_zarr import OscZarr
from hazard.utilities import s3_utilities, zarr_utilities
@pytest.fixture
def s3_credentials():
zarr_utilities.set_credential_env_variables()
yield "s3_credentials"
@pytest.fixture
def log_to_stdout():
logging.basicConfig(
level=logging.INFO,
format="[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s",
handlers=[logging.StreamHandler(sys.stdout)],
)
yield "log_to_stdout"
@pytest.fixture
def test_output_dir():
"""Provides directory for (for example) testing (file-based) storage of datasets."""
output_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_output")
yield output_dir
class TestOnboarder(Onboarder):
def onboard(self, target):
pass
def inventory(self):
return []
def prepare(self, working_dir, force_download=False):
pass
def source_dir_from_base(self, source_dir_base: PurePath):
return source_dir_base / "test_onboarder"
def test_onboarder(test_output_dir):
# check TestOnboarder can be instantiated with empty path (e.g. for generating inventory entries only)
onboarder_no_path = TestOnboarder()
assert onboarder_no_path
# check TestOnboarder is_source_dir_populated
onboarder = TestOnboarder(Path(test_output_dir))
test_path = Path(test_output_dir) / "test_onboarder"
assert str(onboarder.source_dir) == str(test_path)
assert not onboarder.is_source_dir_populated()
test_file = test_path / "test.txt"
test_file.parent.mkdir(exist_ok=True, parents=True)
test_file.write_text("TEST")
assert onboarder.is_source_dir_populated()
test_file.unlink()
@pytest.mark.skip(reason="on-boarding script")
def test_wri_aqueduct(test_output_dir, s3_credentials, log_to_stdout):
model = WRIAqueductFlood()
items = model.batch_items()
print(items)
# source = WRIAqueductSource()
target = OscZarr()
# target = OscZarr(store=zarr.DirectoryStore(os.path.join(test_output_dir, 'hazard', 'hazard.zarr')))
s3 = s3fs.S3FileSystem(
key=os.environ.get("OSC_S3_ACCESS_KEY", None),
secret=os.environ.get("OSC_S3_SECRET_KEY", None),
)
target = OscZarr(bucket=os.environ["OSC_S3_BUCKET"], s3=s3)
for item in items:
map_path = item.resource.map.path.format(scenario=item.scenario, year=item.year)
if map_path != (item.path + "_map"):
raise ValueError(f"unexpected map path {map_path}")
# model.run_single(item, source, target, None)
model.generate_tiles_single(item, target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_iris(test_output_dir, s3_credentials):
# upload IRIS
# copy_iris_files(s3_credentials)
# promote_iris(s3_credentials)
model = IRISIndicator(test_output_dir)
# s3 = s3fs.S3FileSystem(anon=False, key=os.environ["OSC_S3_ACCESS_KEY_DEV"],
# secret=os.environ["OSC_S3_SECRET_KEY_DEV"])
target = OscZarr(
store=zarr.DirectoryStore(
os.path.join(test_output_dir, "hazard", "hazard.zarr")
)
) # save locally
# target = OscZarr() # default dev bucket
for item in model.batch_items():
model.generate_single_map(item, target, target)
# model.run_all(None, target, debug_mode=True)
# create_tile_set(source, source_path, target, target_path, nodata=-9999.0, nodata_as_zero=True)
def promote_iris(s3_credentials):
for name in ["max_speed_ssp585_2050_map"]:
prefix = "hazard/hazard.zarr/wind/iris/v1/" + name
s3_utilities.remove_from_prod(prefix, dry_run=False)
s3_utilities.copy_dev_to_prod(
"hazard/hazard.zarr/wind/iris/v1/" + name, dry_run=True
)
def copy_iris_files(s3_credentials):
bucket = os.environ["OSC_S3_BUCKET_DEV"] # physrisk-hazard-indicators-dev01
s3 = s3fs.S3FileSystem(
key=os.environ.get("OSC_S3_ACCESS_KEY_DEV", None),
secret=os.environ.get("OSC_S3_SECRET_KEY_DEV", None),
)
files = [
"/wind/IRIS/return_value_maps/IRIS_return_value_map_README.txt",
"/wind/IRIS/return_value_maps/IRIS_vmax_maps_2050-SSP1_tenthdeg.nc",
"/wind/IRIS/return_value_maps/IRIS_vmax_maps_2050-SSP2_tenthdeg.nc",
"/wind/IRIS/return_value_maps/IRIS_vmax_maps_2050-SSP5_tenthdeg.nc",
"/wind/IRIS/return_value_maps/IRIS_vmax_maps_PRESENT_tenthdeg.nc",
]
for file in files:
parts = file.strip("/").split("/")
filepath = os.path.join(test_output_dir, *parts)
s3_path = str(PurePosixPath(bucket, "inputs", *parts))
s3.put(filepath, s3_path, recursive=True)
@pytest.mark.skip(reason="on-boarding script")
def test_jupiter(test_output_dir, s3_credentials):
# we need Jupiter OSC_Distribution to be in test_output, e.g.:
# hazard/src/test/test_output/OSC_Distribution/OS-C-DATA/OS-C Tables/etlfire.csv
local_fs = local.LocalFileSystem()
source = JupiterOscFileSource(test_output_dir, local_fs)
# target = OscZarr(prefix='hazard') # hazard_test
# docs_store = DocStore(prefix="hazard")
target = OscZarr(
store=zarr.DirectoryStore(
os.path.join(test_output_dir, "hazard", "hazard.zarr")
)
)
docs_store = DocStore(bucket=test_output_dir, fs=local_fs, prefix="hazard")
jupiter = Jupiter()
docs_store.update_inventory(jupiter.inventory(), remove_existing=True)
jupiter.run_all(source, target, debug_mode=True)
@pytest.mark.skip(reason="example")
def test_check_result(test_output_dir):
"""Example for viewing S3 directory structure."""
zarr_utilities.set_credential_env_variables()
import s3fs # type: ignore
s3 = s3fs.S3FileSystem(
key=os.environ.get("OSC_S3_ACCESS_KEY", None),
secret=os.environ.get("OSC_S3_SECRET_KEY", None),
)
path = os.path.join(
"redhat-osc-physical-landing-647521352890",
"hazard_test",
"hazard.zarr",
"ChronicHeat",
"v1",
)
check = s3.ls(path)
assert check is not None
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_tudelft(s3_credentials, test_output_dir):
source_path = os.path.join(test_output_dir, "tudelft", "tudelft_river")
model = TUDelftRiverFlood(source_path)
model.prepare()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model.run_all(None, target)
# batch_items = model.batch_items()
# model.run_single(batch_items[4], None, target, None)
model.create_maps(target, target)
# path = "inundation/river_tudelft/v2/flood_depth_historical_1971"
# map_path = "maps/inundation/river_tudelft/v2/flood_depth_historical_1971_map"
# create_tile_set(target, path, target, map_path, max_zoom=10)
# "flood_depth_historical_1971",
# files = ["flood_depth_rcp8p5_2035", "flood_depth_rcp8p5_2085",
# "flood_depth_rcp4p5_2035", "flood_depth_rcp4p5_2085"]
# s3_utilities.copy_dev_to_prod("hazard/hazard.zarr/" + "inundation/river_tudelft/v2", False)
# s3_utilities.copy_dev_to_prod("hazard/hazard.zarr/" + "maps/inundation/river_tudelft/v2", False)
# for file in files:
# s3_utilities.copy_local_to_dev(
# str(pathlib.Path(test_output_dir, "hazard/hazard.zarr")),
# f"inundation/river_tudelft/v2/{file}",
# )
# for i in range(10, 0, -1):
# s3_utilities.copy_local_to_dev(
# str(pathlib.Path(test_output_dir, "hazard/hazard.zarr")),
# f"maps/inundation/river_tudelft/v2/{file}_map/{i}",
# )
@pytest.mark.skip(reason="on-boarding script")
def test_wri_aqueduct_water_risk(test_output_dir):
source_dir = os.path.join(test_output_dir, "wri_aqueduct_water_risk")
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = WRIAqueductWaterRisk()
source = WRIAqueductWaterRiskSource(
source_dir=source_dir, fs=local.LocalFileSystem()
)
model.run_all(source, target)
source = WRIAqueductWaterSupplyDemandBaselineSource(
source_dir=source_dir, fs=local.LocalFileSystem()
)
model.run_all(source, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_water_temp(test_output_dir):
working_dir = os.path.join(test_output_dir, "water_temp")
source = FutureStreamsSource(working_dir=working_dir)
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = WaterTemperatureAboveIndicator()
model.run_all(source, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_wet_bulb_globe_temp(test_output_dir):
source = NexGddpCmip6(
root=os.path.join(test_output_dir, NexGddpCmip6.bucket),
fs=local.LocalFileSystem(),
)
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = WetBulbGlobeTemperatureAboveIndicator()
model.run_all(source, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_landslides_jrc(test_output_dir):
source_path = os.path.join(test_output_dir, "jrc", "jrc_landslides")
model = JRCLandslides(source_path)
batch_items = model.batch_items()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
for batch_item in batch_items:
model.run_single(batch_item, None, target, None)
# model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_subsidence_jrc(test_output_dir):
source_path = os.path.join(test_output_dir, "jrc", "jrc_subsidence")
model = JRCSubsidence(source_path)
batch_items = model.batch_items()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
for batch_item in batch_items:
model.run_single(batch_item, None, target, None)
# model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_fire_tudelft(test_output_dir):
source_path = os.path.join(test_output_dir, "tudelft", "tudelft_fire")
model = TUDelftFire(source_path)
batch_items = model.batch_items()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
for batch_item in batch_items:
model.prepare(batch_item)
model.run_single(batch_item, None, target, None)
# model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_conv_wind_tudelft(test_output_dir):
source_path = os.path.join(test_output_dir, "tudelft", "tudelft_conv_wind")
model = TUDelftConvectiveWindstorm(source_path)
batch_items = model.batch_items()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
for batch_item in batch_items:
model.prepare(batch_item)
model.run_single(batch_item, None, target, None)
# model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_coastalflood_tudelft(test_output_dir):
source_path = os.path.join(test_output_dir, "tudelft", "tudelft_coastal")
model = TUDelftCoastalFlood(source_path)
model.prepare()
batch_items = model.batch_items()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
for batch_item in batch_items:
model.run_single(batch_item, None, target, None)
# model.create_maps(target, target)
# def test_promote(s3_credentials):
# s3_utilities.copy_dev_to_prod("hazard/hazard.zarr/" + "maps/inundation/flopros_coastal/v1/flood_sop", dry_run=False, sync=False)
# s3_utilities.copy_dev_to_prod("hazard/hazard.zarr/" + "inundation/flopros_coastal/v1/flood_sop", dry_run=False, sync=False)
@pytest.mark.skip(reason="on-boarding script")
def test_onboard_flopros(test_output_dir):
source_path = os.path.join(test_output_dir, "flopros")
source = FLOPROSFloodStandardOfProtectionSource(source_path)
model = FLOPROSFloodStandardOfProtection()
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store, write_xarray_compatible_zarr=True)
model.run_all(source, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_litpop(test_output_dir):
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = ETHZurichLitPop(source_dir=test_output_dir)
model.run_all(None, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_csm_subsidence(test_output_dir):
working_dir = os.path.join(test_output_dir, "csm_subsidence")
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = DavydzenkaEtAlLandSubsidence(working_dir)
model.run_all(None, target)
model.create_maps(target, target)
@pytest.mark.skip(reason="on-boarding script")
def test_rain_european_storm(test_output_dir):
working_dir = os.path.join(test_output_dir, "rain_european_storm")
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
model = RAINEuropeanWinterStorm(working_dir)
model.prepare(working_dir)
model.run_all(target)
@pytest.mark.skip(reason="on-boarding script")
def test_wisc_european_storm(test_output_dir):
source_dir = test_output_dir
# working_dir = os.path.join(test_output_dir, "wisc")
store = zarr.DirectoryStore(os.path.join(test_output_dir, "hazard", "hazard.zarr"))
target = OscZarr(store=store)
onboarder = WISCEuropeanWinterStorm(source_dir)
# onboarder.prepare(working_dir)
onboarder.onboard(target)
# model.create_maps(target, target)