anemoi-datasets 0.5.7__py3-none-any.whl → 0.5.11__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.
Files changed (124) hide show
  1. anemoi/datasets/__init__.py +11 -3
  2. anemoi/datasets/__main__.py +2 -3
  3. anemoi/datasets/_version.py +2 -2
  4. anemoi/datasets/commands/__init__.py +2 -3
  5. anemoi/datasets/commands/cleanup.py +9 -0
  6. anemoi/datasets/commands/compare.py +3 -3
  7. anemoi/datasets/commands/copy.py +38 -68
  8. anemoi/datasets/commands/create.py +20 -5
  9. anemoi/datasets/commands/finalise-additions.py +9 -0
  10. anemoi/datasets/commands/finalise.py +9 -0
  11. anemoi/datasets/commands/init-additions.py +9 -0
  12. anemoi/datasets/commands/init.py +9 -0
  13. anemoi/datasets/commands/inspect.py +3 -1
  14. anemoi/datasets/commands/load-additions.py +9 -0
  15. anemoi/datasets/commands/load.py +9 -0
  16. anemoi/datasets/commands/patch.py +9 -0
  17. anemoi/datasets/commands/publish.py +9 -0
  18. anemoi/datasets/commands/scan.py +9 -0
  19. anemoi/datasets/compute/__init__.py +8 -0
  20. anemoi/datasets/compute/recentre.py +3 -2
  21. anemoi/datasets/create/__init__.py +62 -12
  22. anemoi/datasets/create/check.py +4 -3
  23. anemoi/datasets/create/chunks.py +3 -2
  24. anemoi/datasets/create/config.py +5 -5
  25. anemoi/datasets/create/functions/__init__.py +22 -7
  26. anemoi/datasets/create/functions/filters/__init__.py +2 -1
  27. anemoi/datasets/create/functions/filters/empty.py +3 -2
  28. anemoi/datasets/create/functions/filters/noop.py +2 -2
  29. anemoi/datasets/create/functions/filters/pressure_level_relative_humidity_to_specific_humidity.py +3 -2
  30. anemoi/datasets/create/functions/filters/pressure_level_specific_humidity_to_relative_humidity.py +3 -2
  31. anemoi/datasets/create/functions/filters/rename.py +16 -11
  32. anemoi/datasets/create/functions/filters/rotate_winds.py +3 -2
  33. anemoi/datasets/create/functions/filters/single_level_dewpoint_to_relative_humidity.py +3 -2
  34. anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_dewpoint.py +3 -2
  35. anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_specific_humidity.py +2 -2
  36. anemoi/datasets/create/functions/filters/single_level_specific_humidity_to_relative_humidity.py +2 -2
  37. anemoi/datasets/create/functions/filters/speeddir_to_uv.py +3 -2
  38. anemoi/datasets/create/functions/filters/unrotate_winds.py +3 -2
  39. anemoi/datasets/create/functions/filters/uv_to_speeddir.py +3 -2
  40. anemoi/datasets/create/functions/sources/__init__.py +2 -2
  41. anemoi/datasets/create/functions/sources/accumulations.py +10 -4
  42. anemoi/datasets/create/functions/sources/constants.py +3 -2
  43. anemoi/datasets/create/functions/sources/empty.py +3 -2
  44. anemoi/datasets/create/functions/sources/forcings.py +3 -2
  45. anemoi/datasets/create/functions/sources/grib.py +8 -2
  46. anemoi/datasets/create/functions/sources/hindcasts.py +3 -2
  47. anemoi/datasets/create/functions/sources/mars.py +97 -17
  48. anemoi/datasets/create/functions/sources/netcdf.py +3 -2
  49. anemoi/datasets/create/functions/sources/opendap.py +2 -2
  50. anemoi/datasets/create/functions/sources/recentre.py +3 -2
  51. anemoi/datasets/create/functions/sources/source.py +3 -2
  52. anemoi/datasets/create/functions/sources/tendencies.py +3 -2
  53. anemoi/datasets/create/functions/sources/xarray/__init__.py +8 -3
  54. anemoi/datasets/create/functions/sources/xarray/coordinates.py +3 -2
  55. anemoi/datasets/create/functions/sources/xarray/field.py +6 -5
  56. anemoi/datasets/create/functions/sources/xarray/fieldlist.py +12 -4
  57. anemoi/datasets/create/functions/sources/xarray/flavour.py +2 -2
  58. anemoi/datasets/create/functions/sources/xarray/grid.py +2 -2
  59. anemoi/datasets/create/functions/sources/xarray/metadata.py +3 -2
  60. anemoi/datasets/create/functions/sources/xarray/time.py +2 -2
  61. anemoi/datasets/create/functions/sources/xarray/variable.py +6 -9
  62. anemoi/datasets/create/functions/sources/xarray_kerchunk.py +2 -2
  63. anemoi/datasets/create/functions/sources/xarray_zarr.py +2 -2
  64. anemoi/datasets/create/functions/sources/zenodo.py +2 -2
  65. anemoi/datasets/create/input/__init__.py +3 -17
  66. anemoi/datasets/create/input/action.py +3 -8
  67. anemoi/datasets/create/input/concat.py +3 -2
  68. anemoi/datasets/create/input/context.py +3 -8
  69. anemoi/datasets/create/input/data_sources.py +3 -9
  70. anemoi/datasets/create/input/empty.py +3 -9
  71. anemoi/datasets/create/input/filter.py +3 -9
  72. anemoi/datasets/create/input/function.py +3 -9
  73. anemoi/datasets/create/input/join.py +3 -2
  74. anemoi/datasets/create/input/misc.py +3 -8
  75. anemoi/datasets/create/input/pipe.py +9 -3
  76. anemoi/datasets/create/input/repeated_dates.py +14 -8
  77. anemoi/datasets/create/input/result.py +154 -12
  78. anemoi/datasets/create/input/step.py +4 -9
  79. anemoi/datasets/create/input/template.py +3 -2
  80. anemoi/datasets/create/input/trace.py +3 -2
  81. anemoi/datasets/create/patch.py +9 -1
  82. anemoi/datasets/create/persistent.py +3 -2
  83. anemoi/datasets/create/size.py +3 -2
  84. anemoi/datasets/create/statistics/__init__.py +3 -2
  85. anemoi/datasets/create/statistics/summary.py +3 -2
  86. anemoi/datasets/create/utils.py +15 -2
  87. anemoi/datasets/create/writer.py +3 -2
  88. anemoi/datasets/create/zarr.py +3 -2
  89. anemoi/datasets/data/__init__.py +27 -1
  90. anemoi/datasets/data/concat.py +5 -1
  91. anemoi/datasets/data/dataset.py +216 -37
  92. anemoi/datasets/data/debug.py +4 -1
  93. anemoi/datasets/data/ensemble.py +4 -1
  94. anemoi/datasets/data/fill_missing.py +165 -0
  95. anemoi/datasets/data/forwards.py +23 -1
  96. anemoi/datasets/data/grids.py +236 -58
  97. anemoi/datasets/data/indexing.py +4 -1
  98. anemoi/datasets/data/interpolate.py +4 -1
  99. anemoi/datasets/data/join.py +12 -9
  100. anemoi/datasets/data/masked.py +36 -10
  101. anemoi/datasets/data/merge.py +180 -0
  102. anemoi/datasets/data/misc.py +18 -3
  103. anemoi/datasets/data/missing.py +4 -1
  104. anemoi/datasets/data/rescale.py +4 -1
  105. anemoi/datasets/data/select.py +4 -1
  106. anemoi/datasets/data/statistics.py +4 -1
  107. anemoi/datasets/data/stores.py +66 -3
  108. anemoi/datasets/data/subset.py +6 -1
  109. anemoi/datasets/data/unchecked.py +4 -1
  110. anemoi/datasets/data/xy.py +20 -5
  111. anemoi/datasets/dates/__init__.py +9 -7
  112. anemoi/datasets/dates/groups.py +4 -2
  113. anemoi/datasets/grids.py +86 -2
  114. anemoi/datasets/testing.py +3 -2
  115. anemoi/datasets/utils/__init__.py +8 -0
  116. anemoi/datasets/utils/fields.py +2 -2
  117. {anemoi_datasets-0.5.7.dist-info → anemoi_datasets-0.5.11.dist-info}/METADATA +11 -29
  118. anemoi_datasets-0.5.11.dist-info/RECORD +123 -0
  119. {anemoi_datasets-0.5.7.dist-info → anemoi_datasets-0.5.11.dist-info}/WHEEL +1 -1
  120. anemoi/datasets/fields.py +0 -66
  121. anemoi_datasets-0.5.7.dist-info/RECORD +0 -122
  122. {anemoi_datasets-0.5.7.dist-info → anemoi_datasets-0.5.11.dist-info}/LICENSE +0 -0
  123. {anemoi_datasets-0.5.7.dist-info → anemoi_datasets-0.5.11.dist-info}/entry_points.txt +0 -0
  124. {anemoi_datasets-0.5.7.dist-info → anemoi_datasets-0.5.11.dist-info}/top_level.txt +0 -0
anemoi/datasets/grids.py CHANGED
@@ -1,12 +1,14 @@
1
- # (C) Copyright 2024 ECMWF.
1
+ # (C) Copyright 2024 Anemoi contributors.
2
2
  #
3
3
  # This software is licensed under the terms of the Apache Licence Version 2.0
4
4
  # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5
+ #
5
6
  # In applying this licence, ECMWF does not waive the privileges and immunities
6
7
  # granted to it by virtue of its status as an intergovernmental organisation
7
8
  # nor does it submit to any jurisdiction.
8
- #
9
9
 
10
+
11
+ import base64
10
12
  import logging
11
13
 
12
14
  import numpy as np
@@ -295,6 +297,88 @@ def thinning_mask(
295
297
  return np.array([i for i in indices])
296
298
 
297
299
 
300
+ def outline(lats, lons, neighbours=5):
301
+ from scipy.spatial import KDTree
302
+
303
+ xyx = latlon_to_xyz(lats, lons)
304
+ grid_points = np.array(xyx).transpose()
305
+
306
+ # Use a KDTree to find the nearest points
307
+ _, indices = KDTree(grid_points).query(grid_points, k=neighbours)
308
+
309
+ # Centre of the Earth
310
+ zero = np.array([0.0, 0.0, 0.0])
311
+
312
+ outside = []
313
+
314
+ for i, (point, index) in enumerate(zip(grid_points, indices)):
315
+ inside = False
316
+ for j in range(1, neighbours):
317
+ t = Triangle3D(
318
+ grid_points[index[j]],
319
+ grid_points[index[(j + 1) % neighbours]],
320
+ grid_points[index[(j + 2) % neighbours]],
321
+ )
322
+ inside = t.intersect(zero, point)
323
+ if inside:
324
+ break
325
+
326
+ if not inside:
327
+ outside.append(i)
328
+
329
+ return outside
330
+
331
+
332
+ def deserialise_mask(encoded):
333
+ import pickle
334
+ import zlib
335
+
336
+ packed = pickle.loads(zlib.decompress(base64.b64decode(encoded)))
337
+
338
+ mask = []
339
+ value = False
340
+ for count in packed:
341
+ mask.extend([value] * count)
342
+ value = not value
343
+ return np.array(mask, dtype=bool)
344
+
345
+
346
+ def _serialise_mask(mask):
347
+ import pickle
348
+ import zlib
349
+
350
+ assert len(mask.shape) == 1
351
+ assert len(mask)
352
+
353
+ packed = []
354
+ last = mask[0]
355
+ count = 1
356
+
357
+ for value in mask[1:]:
358
+ if value == last:
359
+ count += 1
360
+ else:
361
+ packed.append(count)
362
+ last = value
363
+ count = 1
364
+
365
+ packed.append(count)
366
+
367
+ # We always start with an 'off' value
368
+ # So if the first value is 'on', we need to add a zero
369
+ if mask[0]:
370
+ packed.insert(0, 0)
371
+
372
+ return base64.b64encode(zlib.compress(pickle.dumps(packed))).decode("utf-8")
373
+
374
+
375
+ def serialise_mask(mask):
376
+ result = _serialise_mask(mask)
377
+ # Make sure we can deserialise it
378
+ assert np.all(mask == deserialise_mask(result))
379
+ return result
380
+
381
+
298
382
  if __name__ == "__main__":
299
383
  global_lats, global_lons = np.meshgrid(
300
384
  np.linspace(90, -90, 90),
@@ -1,11 +1,12 @@
1
- # (C) Copyright 2024 ECMWF.
1
+ # (C) Copyright 2024 Anemoi contributors.
2
2
  #
3
3
  # This software is licensed under the terms of the Apache Licence Version 2.0
4
4
  # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5
+ #
5
6
  # In applying this licence, ECMWF does not waive the privileges and immunities
6
7
  # granted to it by virtue of its status as an intergovernmental organisation
7
8
  # nor does it submit to any jurisdiction.
8
- #
9
+
9
10
 
10
11
  # A collection of functions to support pytest testing
11
12
 
@@ -0,0 +1,8 @@
1
+ # (C) Copyright 2024 Anemoi contributors.
2
+ #
3
+ # This software is licensed under the terms of the Apache Licence Version 2.0
4
+ # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5
+ #
6
+ # In applying this licence, ECMWF does not waive the privileges and immunities
7
+ # granted to it by virtue of its status as an intergovernmental organisation
8
+ # nor does it submit to any jurisdiction.
@@ -1,11 +1,11 @@
1
- # (C) Copyright 2024 ECMWF.
1
+ # (C) Copyright 2024 Anemoi contributors.
2
2
  #
3
3
  # This software is licensed under the terms of the Apache Licence Version 2.0
4
4
  # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
5
+ #
5
6
  # In applying this licence, ECMWF does not waive the privileges and immunities
6
7
  # granted to it by virtue of its status as an intergovernmental organisation
7
8
  # nor does it submit to any jurisdiction.
8
- #
9
9
 
10
10
 
11
11
  class WrappedField:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anemoi-datasets
3
- Version: 0.5.7
3
+ Version: 0.5.11
4
4
  Summary: A package to hold various functions to support training of ML models on ECMWF data.
5
5
  Author-email: "European Centre for Medium-Range Weather Forecasts (ECMWF)" <software.support@ecmwf.int>
6
6
  License: Apache License
@@ -219,11 +219,13 @@ Classifier: Programming Language :: Python :: 3.9
219
219
  Classifier: Programming Language :: Python :: 3.10
220
220
  Classifier: Programming Language :: Python :: 3.11
221
221
  Classifier: Programming Language :: Python :: 3.12
222
+ Classifier: Programming Language :: Python :: 3.13
222
223
  Classifier: Programming Language :: Python :: Implementation :: CPython
223
224
  Classifier: Programming Language :: Python :: Implementation :: PyPy
224
225
  Requires-Python: >=3.9
225
226
  License-File: LICENSE
226
- Requires-Dist: anemoi-utils[provenance] >=0.3.15
227
+ Requires-Dist: anemoi-transform >=0.1
228
+ Requires-Dist: anemoi-utils[provenance] >=0.4.9
227
229
  Requires-Dist: cfunits
228
230
  Requires-Dist: numpy
229
231
  Requires-Dist: pyyaml
@@ -231,39 +233,16 @@ Requires-Dist: semantic-version
231
233
  Requires-Dist: tqdm
232
234
  Requires-Dist: zarr <=2.17
233
235
  Provides-Extra: all
234
- Requires-Dist: boto3 ; extra == 'all'
235
- Requires-Dist: earthkit-data[mars] >=0.9 ; extra == 'all'
236
- Requires-Dist: earthkit-geo >=0.2 ; extra == 'all'
237
- Requires-Dist: earthkit-meteo ; extra == 'all'
238
- Requires-Dist: ecmwflibs >=0.6.3 ; extra == 'all'
239
- Requires-Dist: entrypoints ; extra == 'all'
240
- Requires-Dist: gcsfs ; extra == 'all'
241
- Requires-Dist: kerchunk ; extra == 'all'
242
- Requires-Dist: pyproj ; extra == 'all'
243
- Requires-Dist: requests ; extra == 'all'
236
+ Requires-Dist: anemoi-datasets[create,remote,xarray] ; extra == 'all'
244
237
  Provides-Extra: create
245
- Requires-Dist: earthkit-data[mars] >=0.9 ; extra == 'create'
238
+ Requires-Dist: earthkit-data[mars] >=0.10.7 ; extra == 'create'
246
239
  Requires-Dist: earthkit-geo >=0.2 ; extra == 'create'
247
240
  Requires-Dist: earthkit-meteo ; extra == 'create'
248
- Requires-Dist: ecmwflibs >=0.6.3 ; extra == 'create'
241
+ Requires-Dist: eccodes >=2.38.1 ; extra == 'create'
249
242
  Requires-Dist: entrypoints ; extra == 'create'
250
243
  Requires-Dist: pyproj ; extra == 'create'
251
244
  Provides-Extra: dev
252
- Requires-Dist: boto3 ; extra == 'dev'
253
- Requires-Dist: earthkit-data[mars] >=0.9 ; extra == 'dev'
254
- Requires-Dist: earthkit-geo >=0.2 ; extra == 'dev'
255
- Requires-Dist: earthkit-meteo ; extra == 'dev'
256
- Requires-Dist: ecmwflibs >=0.6.3 ; extra == 'dev'
257
- Requires-Dist: entrypoints ; extra == 'dev'
258
- Requires-Dist: gcsfs ; extra == 'dev'
259
- Requires-Dist: kerchunk ; extra == 'dev'
260
- Requires-Dist: nbsphinx ; extra == 'dev'
261
- Requires-Dist: pandoc ; extra == 'dev'
262
- Requires-Dist: pyproj ; extra == 'dev'
263
- Requires-Dist: pytest ; extra == 'dev'
264
- Requires-Dist: requests ; extra == 'dev'
265
- Requires-Dist: sphinx ; extra == 'dev'
266
- Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
245
+ Requires-Dist: anemoi-datasets[all,docs,tests] ; extra == 'dev'
267
246
  Provides-Extra: docs
268
247
  Requires-Dist: nbsphinx ; extra == 'docs'
269
248
  Requires-Dist: pandoc ; extra == 'docs'
@@ -278,4 +257,7 @@ Requires-Dist: pytest ; extra == 'tests'
278
257
  Provides-Extra: xarray
279
258
  Requires-Dist: gcsfs ; extra == 'xarray'
280
259
  Requires-Dist: kerchunk ; extra == 'xarray'
260
+ Requires-Dist: pandas ; extra == 'xarray'
261
+ Requires-Dist: planetary-computer ; extra == 'xarray'
262
+ Requires-Dist: pystac-client ; extra == 'xarray'
281
263
 
@@ -0,0 +1,123 @@
1
+ anemoi/datasets/__init__.py,sha256=0GOHATiKgkUqLRgAVQhNP1aPO7ULfSr8DqUf2ANPEv8,1010
2
+ anemoi/datasets/__main__.py,sha256=5NW2A3OgTimB4ptwYThivIRSeCrvabMuvnr8mmnVx0E,715
3
+ anemoi/datasets/_version.py,sha256=9QMo8Qn8JXkug8VyV8nVyp5woiC_5GOBRXHVqZu_cf4,413
4
+ anemoi/datasets/grids.py,sha256=bq7pB_6uswILT3t8C8SeUpUrBww31dw5au_USrped6c,10919
5
+ anemoi/datasets/testing.py,sha256=7HGOz5_V9MbkHTDJ4KbklGRndBMrFfVrBBu6a9k0_qY,1825
6
+ anemoi/datasets/commands/__init__.py,sha256=O5W3yHZywRoAqmRUioAr3zMCh0hGVV18wZYGvc00ioM,698
7
+ anemoi/datasets/commands/cleanup.py,sha256=2rD34bHtfOCLwQh7yXa02IJmmOYMOma4YDj0PM-2-Jc,1456
8
+ anemoi/datasets/commands/compare.py,sha256=8YOlFi9Ydw81qNx4kmI35gvoldUAjYae1enBhxqLrvQ,3256
9
+ anemoi/datasets/commands/copy.py,sha256=2owwwcih6mzrmgxrKNmm1B9ngjxZ6q3ZVo3S7grrGWQ,11305
10
+ anemoi/datasets/commands/create.py,sha256=SRHQdMPwBmbjfi2JDYmF3uC7R6dIrcrOOBs0aaVSQmQ,5505
11
+ anemoi/datasets/commands/finalise-additions.py,sha256=ZCUa5CbScR_tEImcJe9AhhGryyrsq1bYhM-dtjaIw7M,1552
12
+ anemoi/datasets/commands/finalise.py,sha256=glFj3lhPwf5niybx8u053zMItNjIxYebt3r6E6W2D9Y,1307
13
+ anemoi/datasets/commands/init-additions.py,sha256=JFTPu5cGNsmojbkb5DRhKF0rSku0S_2O6wRf7EvjEnM,1540
14
+ anemoi/datasets/commands/init.py,sha256=GEPWfBv95DbY7Ssd4wwEHx_4suJ2Dk2S0e3ILrpcoBY,2427
15
+ anemoi/datasets/commands/inspect.py,sha256=r6MN59ndyRi9x8yah0xRN__663FKBPU_5rl-eUgPtuM,18795
16
+ anemoi/datasets/commands/load-additions.py,sha256=7jmeSKjRzWRpgT0P5Sp9TwUvw7Bo2KbGO645qmIZFDE,1628
17
+ anemoi/datasets/commands/load.py,sha256=IAw3zGZ_tY127ziExz62snPhyYM8qgNmLRZY0lX0aPE,1698
18
+ anemoi/datasets/commands/patch.py,sha256=UBIO-vhytfuwTzTqlwkpTg-ziRSdoq7GCgpZiO54VDk,1235
19
+ anemoi/datasets/commands/publish.py,sha256=z1MV9_1BsEnw81Y_17fHkKGYe8_ZJo9eeQ1kGP5RAsg,1080
20
+ anemoi/datasets/commands/scan.py,sha256=mXzYEcYsncxC7ItyL_TlVRiWji6OFYfVxO5OMD9mbEI,3304
21
+ anemoi/datasets/compute/__init__.py,sha256=hCW0QcLHJmE-C1r38P27_ZOvCLNewex5iQEtZqx2ckI,393
22
+ anemoi/datasets/compute/recentre.py,sha256=tKs-YZLhqsMRBNEUF41hcuMmyvbRuFX07xJq-Cqg2_w,4954
23
+ anemoi/datasets/create/__init__.py,sha256=q8JIS6mcfJhMD8-uJN-EMkaG4DwKNTIJy53iGKHhiXw,36259
24
+ anemoi/datasets/create/check.py,sha256=1fT1au1LmSGKTQYhnmMK9ImSZnLLevkKX1a0jUtEuVc,6148
25
+ anemoi/datasets/create/chunks.py,sha256=c7ufk-EamAGqxOI4ScTFlBzdEiH6V1R0f0SPavtZ2Xw,2457
26
+ anemoi/datasets/create/config.py,sha256=Tq9kJ-bKhYSTWCXNa8lZIJpO3RteZfCr5hQVM12IgD0,8892
27
+ anemoi/datasets/create/patch.py,sha256=YkDiFGV0DDg4WShVrIHhtRaAp9c82mANnR93YTVl36o,4171
28
+ anemoi/datasets/create/persistent.py,sha256=V3agRYKbmYqAyhsznsgC3PLSoFbFCSCXqcQZvvJfVTw,4381
29
+ anemoi/datasets/create/size.py,sha256=5fIF0yo63dTowojfeG9-MNkgypP5SA94WralxTZwxw4,1055
30
+ anemoi/datasets/create/utils.py,sha256=jwbGQ_o-4U8n-lgrrs2Oia1WrGonEHfxaCg8dUlA6S0,3088
31
+ anemoi/datasets/create/writer.py,sha256=6XSIgNwKkjrkdnSvr69mXD8McjT3iYJ0d1rOnxaGuCQ,1394
32
+ anemoi/datasets/create/zarr.py,sha256=0DkHwKaBpvTOrU1KmScLEfff_KfT1Rw5DXiRMD2d3Ws,5506
33
+ anemoi/datasets/create/functions/__init__.py,sha256=e361XrjNV_4LCBmxVMluZ3KczFn9bwLSk5vcwy0zzkg,1382
34
+ anemoi/datasets/create/functions/filters/__init__.py,sha256=SP6ReV1WYIf2Typf1FUaRHhphFGpU9kBoYtI-bYdu5U,395
35
+ anemoi/datasets/create/functions/filters/empty.py,sha256=EGLufFcNFoqIXTZj7jQFjtFahMfgCVWj6W5j--u5Q-Q,636
36
+ anemoi/datasets/create/functions/filters/noop.py,sha256=5YqumPxlGDOZOrYWayLr8PTycVWG2X_0PmoFi3Hj584,458
37
+ anemoi/datasets/create/functions/filters/pressure_level_relative_humidity_to_specific_humidity.py,sha256=jjmocA4WDKCAL49QUFk_3S0JRiPMmeVM7Wlxmfr1v6c,1857
38
+ anemoi/datasets/create/functions/filters/pressure_level_specific_humidity_to_relative_humidity.py,sha256=e8LvXUq-qNKJrcjb1DSUXaPeFfxcWxFjGAkm47cOnE8,1855
39
+ anemoi/datasets/create/functions/filters/rename.py,sha256=cDF3xmdhwzIZn_nwaO3hxG4fb2vpKtJtmy0ZdLGXyHI,2481
40
+ anemoi/datasets/create/functions/filters/rotate_winds.py,sha256=GZq8DFbwOxeROvPS5qVKlYuXq8xKbCAwlZprS6I04Hc,2429
41
+ anemoi/datasets/create/functions/filters/single_level_dewpoint_to_relative_humidity.py,sha256=X5HbuMHFQoC2v_SYH4S7ocWFqV4JQUUGybvtyP-twaA,1719
42
+ anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_dewpoint.py,sha256=pTM5Hwsi9yeuBmz66m3Zlmr554USoLzgzMMGSMh4BmM,1908
43
+ anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_specific_humidity.py,sha256=BnuLrIFcOh_qJBmxwdJqjGqoH0ca5zyKdZgF6QPmJY8,4090
44
+ anemoi/datasets/create/functions/filters/single_level_specific_humidity_to_relative_humidity.py,sha256=xqfklEwCqrQlhU6NV8vlVEZdY-hN3SpPpcNny2geVUI,12686
45
+ anemoi/datasets/create/functions/filters/speeddir_to_uv.py,sha256=d5t78GToTTXCb1S3HyhTJ2tuwZDnk7UBsHPV4Wn4M_w,2249
46
+ anemoi/datasets/create/functions/filters/unrotate_winds.py,sha256=tDFXUSF2flD83W7GgwP1RoVXBUO0445DvQdImulzDzA,2429
47
+ anemoi/datasets/create/functions/filters/uv_to_speeddir.py,sha256=niNuTSmyxLn4MGeNL1lowl5M0dH7har-flXy3ZtmKPM,1762
48
+ anemoi/datasets/create/functions/sources/__init__.py,sha256=TMm8LerGY7--b0AMUqnz07ZGo-F7I9FF0DGlozcTtSg,1364
49
+ anemoi/datasets/create/functions/sources/accumulations.py,sha256=tI5Aga1aLDp8DqfYbU_9AI1VIqDZzhMlZUAR4ik-CUI,12316
50
+ anemoi/datasets/create/functions/sources/constants.py,sha256=GaiUpJPYupiLWl8O9GEZ9KmlD88pH6dlBiUVrhNl_uA,918
51
+ anemoi/datasets/create/functions/sources/empty.py,sha256=YTpOJ3rcb_eS9CbnpwPWBR9r1APIAaG6a_N803YFZFE,500
52
+ anemoi/datasets/create/functions/sources/forcings.py,sha256=p442lCOXm8TJFRlP0mgwZujveo9gCtdAGLS4KSIqYfk,661
53
+ anemoi/datasets/create/functions/sources/grib.py,sha256=BSieYEnoG92-8lPlrK7CIaGX7qozpkixqHarucDZtLk,4543
54
+ anemoi/datasets/create/functions/sources/hindcasts.py,sha256=AWtSW_VoeWIjwjojyAL8FskKMq9fTUfnQ1OI30_J2qA,1677
55
+ anemoi/datasets/create/functions/sources/mars.py,sha256=_QDAhb1onZRBcH21jMdlhw8gp1taiQyt3bpkbQpGWRY,8736
56
+ anemoi/datasets/create/functions/sources/netcdf.py,sha256=GZvd8-d9lQFQ6sJL1usJPtnVqRz2UWqJOX3Fup1CAcI,547
57
+ anemoi/datasets/create/functions/sources/opendap.py,sha256=vkbk14-1PFwN9o1wlGROLoF3P-t9WtUVSum6aW_2JoM,545
58
+ anemoi/datasets/create/functions/sources/recentre.py,sha256=cCA4TIdRp5r7PaGe7skOuwB1Np9-FcuRX1JXIpUSuyc,1825
59
+ anemoi/datasets/create/functions/sources/source.py,sha256=aJHT0USXm52X_Kk_ObXlRJ_xc_1H7g3BG0I2Iumz6h8,1437
60
+ anemoi/datasets/create/functions/sources/tendencies.py,sha256=z8iDelu0vvDE8S-Rus6nqg3FIsZNJhojW17ALwkRPxc,4123
61
+ anemoi/datasets/create/functions/sources/xarray_kerchunk.py,sha256=8evD6Sype3ffCbmQ0jMBpgR97UeNvkTB5rwchhy4YzY,1446
62
+ anemoi/datasets/create/functions/sources/xarray_zarr.py,sha256=3JvoGfQZ4NCUcfxDAbNZOL7z2VRNJzr1H3r8dsWbrgk,545
63
+ anemoi/datasets/create/functions/sources/zenodo.py,sha256=rPL9uNPeFTdI9XvVEahtHkxzE18MyrjNXZjpt_sNeH4,1251
64
+ anemoi/datasets/create/functions/sources/xarray/__init__.py,sha256=fEJI2OGOtk-CJqCzaege0uwPKGpqEkeKxgt2bN-W934,3136
65
+ anemoi/datasets/create/functions/sources/xarray/coordinates.py,sha256=-FkcAaio2KumOd20eb1hLv9rRhjnu-CyqtqzrMsZx18,6213
66
+ anemoi/datasets/create/functions/sources/xarray/field.py,sha256=70_3wxBE-flftWqyHAyBP7FhwZOHgrSW6WDmA8QGszs,3680
67
+ anemoi/datasets/create/functions/sources/xarray/fieldlist.py,sha256=wBHPQPm1oJnaVGO6p0opx9tEOIJkdINw_cCTG1y9GYk,5884
68
+ anemoi/datasets/create/functions/sources/xarray/flavour.py,sha256=6mqldGyx40Zgy4_VkuGWKgrSuPbWKe__nmEradQO5qg,14855
69
+ anemoi/datasets/create/functions/sources/xarray/grid.py,sha256=OuLBVv_CdgtLgGACpqhjX8fwtYzM7tfJiwUOXbG_ifw,3644
70
+ anemoi/datasets/create/functions/sources/xarray/metadata.py,sha256=GXHjPm8MsFU9fBfJCjllPWtKahBcKWtQwj0yA7zt4hU,4573
71
+ anemoi/datasets/create/functions/sources/xarray/time.py,sha256=RKODUhgGtApvee3C8SdcBpz2wlQ4zJhyov1UPvblsr4,5987
72
+ anemoi/datasets/create/functions/sources/xarray/variable.py,sha256=j2NN-zx-yjprIJLcidxMxFC4QQZ7I8Dd0nKMrgRpsdM,4385
73
+ anemoi/datasets/create/input/__init__.py,sha256=cAwfW9AQiG2PfmZ2Irll7HX8HyiC0Nk1Q9OhoQ84ZAg,1625
74
+ anemoi/datasets/create/input/action.py,sha256=SApZApq-_mlOwk1NTERgQlPdPL8lBlIk6rxYX3JBw_E,3857
75
+ anemoi/datasets/create/input/concat.py,sha256=DwxgoTSTqNDsVcX5btUBAA7vXtX3G5m-zJ-jDrmAC-c,3279
76
+ anemoi/datasets/create/input/context.py,sha256=ohpbdlX7HKVR9peaX_yhx089AeJdhKLPsvPDttcz-uE,1748
77
+ anemoi/datasets/create/input/data_sources.py,sha256=lXBD9gJ1EbInKElhUSY7HKz_9wnep9N2RzFJPDcoFbw,2493
78
+ anemoi/datasets/create/input/empty.py,sha256=1rWFpHiKIUa-YhlmSSSU0R8dlUVQ9qFVDyJH1NrMmtU,980
79
+ anemoi/datasets/create/input/filter.py,sha256=TmUEGFl4hkeXvUeVAwnowO0uEOQ0vn0DQZIhslc2C0Q,2068
80
+ anemoi/datasets/create/input/function.py,sha256=F5GQgbtFYmyqFAgNGoGDuWw-xqkcCLzuu20n1TT4GfA,3719
81
+ anemoi/datasets/create/input/join.py,sha256=wQP1-vVg4as-R5i3pstgK6HmTJAY7WyWYhCEF6FIU1c,1991
82
+ anemoi/datasets/create/input/misc.py,sha256=r7NC_QRYA8iiJJbSFgQnNuixymATK0CPZknGxgYcLOk,1975
83
+ anemoi/datasets/create/input/pipe.py,sha256=KfPCtiqyfqkXbmC-2LTqHkCQ7bJY46XMvNDnp9QeHTQ,1344
84
+ anemoi/datasets/create/input/repeated_dates.py,sha256=biwnjgaRGzJiFk5fAY-YA4FotzdlwkY56GKUetzOulg,6840
85
+ anemoi/datasets/create/input/result.py,sha256=-pcVcaaj3G_xcNKWWTgzVH5Ds5-ETWmErN0KeQGitAw,20013
86
+ anemoi/datasets/create/input/step.py,sha256=CoowF9mc3kepT8XQ2ObxO750rnQEkYNTviIHQ1m-4UA,2886
87
+ anemoi/datasets/create/input/template.py,sha256=Vgi4wQ1aeswLbji0fIzshYhISmzdrt7b0BmgeJJjYGc,1859
88
+ anemoi/datasets/create/input/trace.py,sha256=DYXMSnwKqOIx0XWZTKNJojWz4EqaFLknTh6ysxsW9uY,2198
89
+ anemoi/datasets/create/statistics/__init__.py,sha256=l6VE00sfcfqBg6cDFJTian-DLnvwt1QYEYq0lCHZ0PY,12786
90
+ anemoi/datasets/create/statistics/summary.py,sha256=wmnz4fZkr6fomXgI8JlMutU8gakfrXTc5ixf3Np7gZA,3385
91
+ anemoi/datasets/data/__init__.py,sha256=AW1-Ycj77pWQsZcDGsp0pgTS5rFW6XC4CzuUEIUPAIk,1558
92
+ anemoi/datasets/data/concat.py,sha256=udtYINuoLOEYYKhi_VpG2-emv80pwZbFAZKwNwXJk3s,5244
93
+ anemoi/datasets/data/dataset.py,sha256=rknyaODW9uNSd456139ZUaqTrd59RHUab5nCFWKdSaQ,15414
94
+ anemoi/datasets/data/debug.css,sha256=z2X_ZDSnZ9C3pyZPWnQiEyAxuMxUaxJxET4oaCImTAQ,211
95
+ anemoi/datasets/data/debug.py,sha256=IjCMwtAvknF51PCl_YRYgMZB2iX_9DC5DKILNgl_UHQ,6300
96
+ anemoi/datasets/data/ensemble.py,sha256=KNIXDfjYSIo6JVn1bD9X92yffd4Gg83wn_2sGxqAnWU,1111
97
+ anemoi/datasets/data/fill_missing.py,sha256=4btLi-D-hFTsS_57_gIC1nK5AVifAO-V4M-fqMrtrxk,4636
98
+ anemoi/datasets/data/forwards.py,sha256=P9DfSY5B9w9gtkKfV6TIzXel_LY83g-2nEreJy2rYkU,8916
99
+ anemoi/datasets/data/grids.py,sha256=IjR0Ay3AyPm3FSjT4S4-qhcbMpNzdK7jXC8yYhH6Jss,15682
100
+ anemoi/datasets/data/indexing.py,sha256=9lycQXSqUIbYj52JlFv0w_Gf6soVZnbVGswYMvGPpqs,4773
101
+ anemoi/datasets/data/interpolate.py,sha256=D27lSH8yNhm0aoO0U3UoRbr3kni7OWXSu_X4jCbIrA0,4137
102
+ anemoi/datasets/data/join.py,sha256=z6mVXJM4On4V2mtniHZGTWtEH4JNGY5czxjH62c_Q7s,5287
103
+ anemoi/datasets/data/masked.py,sha256=eAVGVmQR7tWsd3xXYGXGyq28uRLwL50vOXWTNNdHxl0,4530
104
+ anemoi/datasets/data/merge.py,sha256=6vYRy3-P4J9GgTPkdoPFs9CbZ5F0m8FAukS-P66BR_M,5448
105
+ anemoi/datasets/data/misc.py,sha256=IKqtvcU36nyB4z6dfu7W_gnCpaeX20fK2C5A2seWdCA,10061
106
+ anemoi/datasets/data/missing.py,sha256=SWEjiC1usBjZtlKMr73uKetnoQZoflVQVGqLP2gJR7A,7131
107
+ anemoi/datasets/data/rescale.py,sha256=wMU7tFZebnOqJJxaIGOqNqhpNKGsPNZMC1YxuiHvri4,4112
108
+ anemoi/datasets/data/select.py,sha256=XW_ohlhrF8FLe13pdM3DRZDxbHxntcsO0F56GRqZQY0,4293
109
+ anemoi/datasets/data/statistics.py,sha256=vBVrLpI2rLQHo-qRDBwTc1N9pWkVXYONU2wdhpp_5Gc,1619
110
+ anemoi/datasets/data/stores.py,sha256=4Ax_fA6OEwkDRVRIYfwFNbbQzbQVuiDquJolF7KfNZA,14320
111
+ anemoi/datasets/data/subset.py,sha256=M9oVdwjMdDEEtpri6qcGCTL9l6Xw2epA7DFusy9IOsg,4806
112
+ anemoi/datasets/data/unchecked.py,sha256=Vk9P3Y-JGgsWTcOhb878qV_dJv3lP4S-4I8rFWnRAJI,4278
113
+ anemoi/datasets/data/xy.py,sha256=YzAB12jq-IoCHcjbZlS4SJKLK8e2QvIIfPwHDgkH5vM,3568
114
+ anemoi/datasets/dates/__init__.py,sha256=wX2FvlmRfHV5HDmllIxwfrC1LuRlb7i6SguLLasP0l4,8042
115
+ anemoi/datasets/dates/groups.py,sha256=i7x8z0kv6E8qUfm1tMZR1aaOqNwQzEkV-VWpOvHjoX4,5390
116
+ anemoi/datasets/utils/__init__.py,sha256=hCW0QcLHJmE-C1r38P27_ZOvCLNewex5iQEtZqx2ckI,393
117
+ anemoi/datasets/utils/fields.py,sha256=l7xKOiRLgk9Eewykqu7xZP9xOajG2dx2CiDlGvBVejU,1411
118
+ anemoi_datasets-0.5.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
119
+ anemoi_datasets-0.5.11.dist-info/METADATA,sha256=L4oe7KIUvfomyWOms-zfinIGzjJ41RfwC61wifz_C0E,15593
120
+ anemoi_datasets-0.5.11.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
121
+ anemoi_datasets-0.5.11.dist-info/entry_points.txt,sha256=yR-o-4uiPEA_GLBL81SkMYnUoxq3CAV3hHulQiRtGG0,66
122
+ anemoi_datasets-0.5.11.dist-info/top_level.txt,sha256=DYn8VPs-fNwr7fNH9XIBqeXIwiYYd2E2k5-dUFFqUz0,7
123
+ anemoi_datasets-0.5.11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
anemoi/datasets/fields.py DELETED
@@ -1,66 +0,0 @@
1
- # (C) Copyright 2024 European Centre for Medium-Range Weather Forecasts.
2
- # This software is licensed under the terms of the Apache Licence Version 2.0
3
- # which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
4
- # In applying this licence, ECMWF does not waive the privileges and immunities
5
- # granted to it by virtue of its status as an intergovernmental organisation
6
- # nor does it submit to any jurisdiction.
7
-
8
-
9
- from earthkit.data.indexing.fieldlist import FieldArray
10
-
11
-
12
- def list_to_fieldlist(fields):
13
- return FieldArray(fields)
14
-
15
-
16
- def empty_fieldlist():
17
- return FieldArray([])
18
-
19
-
20
- class WrappedField:
21
- def __init__(self, field):
22
- self._field = field
23
-
24
- def __getattr__(self, name):
25
- return getattr(self._field, name)
26
-
27
- def __repr__(self) -> str:
28
- return repr(self._field)
29
-
30
-
31
- class NewDataField(WrappedField):
32
- def __init__(self, field, data):
33
- super().__init__(field)
34
- self._data = data
35
- self.shape = data.shape
36
-
37
- def to_numpy(self, flatten=False, dtype=None, index=None):
38
- data = self._data
39
- if dtype is not None:
40
- data = data.astype(dtype)
41
- if flatten:
42
- data = data.flatten()
43
- if index is not None:
44
- data = data[index]
45
- return data
46
-
47
-
48
- class NewMetadataField(WrappedField):
49
- def __init__(self, field, **kwargs):
50
- super().__init__(field)
51
- self._metadata = kwargs
52
-
53
- def metadata(self, *args, **kwargs):
54
- if len(args) == 1 and args[0] in self._metadata:
55
- return self._metadata[args[0]]
56
- return self._field.metadata(*args, **kwargs)
57
-
58
-
59
- class NewValidDateTimeField(NewMetadataField):
60
- def __init__(self, field, valid_datetime):
61
- date = valid_datetime.date().strftime("%Y%m%d")
62
- time = valid_datetime.time().strftime("%H%M")
63
-
64
- self.valid_datetime = valid_datetime
65
-
66
- super().__init__(field, date=date, time=time, step=0, valid_datetime=valid_datetime.isoformat())
@@ -1,122 +0,0 @@
1
- anemoi/datasets/__init__.py,sha256=Z1gqZWhecLcT0RZQqYBLlz01MUlUZd0kWEj_RavbITM,782
2
- anemoi/datasets/__main__.py,sha256=cLA2PidDTOUHaDGzd0_E5iioKYNe-PSTv567Y2fuwQk,723
3
- anemoi/datasets/_version.py,sha256=WG2gUkVRG4TIqG0-naezn012emNIbgERkkZYUI1CHww,411
4
- anemoi/datasets/fields.py,sha256=95TYAfqS_kZp1bzj84GngurVfyVvziVBy3zpUyoturI,1968
5
- anemoi/datasets/grids.py,sha256=xgvIbpMGuN2GKi2wIBhOLEMzj940nY9PH-toD0rCmPo,8980
6
- anemoi/datasets/testing.py,sha256=xtJBYywbsciaMp9NZ4jkjI4TdddCSkqqCCwSEHNwaNM,1810
7
- anemoi/datasets/commands/__init__.py,sha256=qAybFZPBBQs0dyx7dZ3X5JsLpE90pwrqt1vSV7cqEIw,706
8
- anemoi/datasets/commands/cleanup.py,sha256=_BkzGPUgvSqnuleymBfBx-sIyIM55hjK61m-v7yK0T8,1062
9
- anemoi/datasets/commands/compare.py,sha256=svEhyR7pOS1847_RJr1I6vF7ZDPB9AVlcrhy_gxQVms,3263
10
- anemoi/datasets/commands/copy.py,sha256=SxAeN51owyN5gwtwpt30xhJSIJRlJb9YOUt_4K4m-D8,11780
11
- anemoi/datasets/commands/create.py,sha256=X6cmuSd1Ni0QciZFVWaJw9a4-HhOkb0tLW8NUmytrus,5022
12
- anemoi/datasets/commands/finalise-additions.py,sha256=876K37hVjslHJiu9VXZfre4YJhS2_t9rLhmNWqlKGGk,1158
13
- anemoi/datasets/commands/finalise.py,sha256=oPul5za7E__eJqkf5fRwvdL_0n2nG5Xk3JraRZQe64k,913
14
- anemoi/datasets/commands/init-additions.py,sha256=K3eKH5V_6ERiBKKyqIUuI1cfvAsjWV9ZAFzbtjIDyjs,1146
15
- anemoi/datasets/commands/init.py,sha256=7BpWaZ4gzMMiRqD9djHRciQNa0W2R4cOzoy5R-UJ0ck,2033
16
- anemoi/datasets/commands/inspect.py,sha256=RFOkw0rB72kR3CGb-JRyb0-oh9zKois8ddeQwDWWKhQ,18822
17
- anemoi/datasets/commands/load-additions.py,sha256=Tg4FX0xealmwyB--zv03ZBrqTAGddkT0rKrHlcu4VW0,1234
18
- anemoi/datasets/commands/load.py,sha256=3jhL3DKUg07C8D6L8RsRWciq8korYsJ40_9atp-p68U,1304
19
- anemoi/datasets/commands/patch.py,sha256=gHY16r46GHxARItaAUHVjKSOm0Q7ZyZvSZmXqg1Wnig,841
20
- anemoi/datasets/commands/publish.py,sha256=HV8W4wFOD7RB-Fn0qzkwyVoyZyaGsx8MUGFa5crIptE,686
21
- anemoi/datasets/commands/scan.py,sha256=MaTdne4JrtlqO3LhOUr43DZhZ6O-RZwC7uQ7C6PG7Os,2910
22
- anemoi/datasets/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- anemoi/datasets/compute/recentre.py,sha256=CMvRxTMv2H1hF1KqaZHT3Maa9P01GtsgAxr1YHbvH_o,4939
24
- anemoi/datasets/create/__init__.py,sha256=rJjN17VUExSeGXPN1UwU005a1x_ERfWMeZGZje0BJfI,35221
25
- anemoi/datasets/create/check.py,sha256=j0vaA7y7dEYsgvAJVGhTZgjhWgvu7DDF1Bl-JkKxFcU,6128
26
- anemoi/datasets/create/chunks.py,sha256=1Inh3sIBn-2sNguErb-BsLns6W_HtDiOJAjIb29lp-U,2442
27
- anemoi/datasets/create/config.py,sha256=IqWsW_AVcp0uA2M1IPB-TT0IWjquvZL2R7PeiviOb4Y,8882
28
- anemoi/datasets/create/patch.py,sha256=c8cWoqxFzcY9mKREosLjuQCUeJMJL6sbNNkoVvhCZDA,3800
29
- anemoi/datasets/create/persistent.py,sha256=ts4p4ouQdin9Mu9mZMQDgENjFTjUgmzXogeRcqF6EZ0,4366
30
- anemoi/datasets/create/size.py,sha256=k4COEjs3wud0oKHH5P3n8Fap35xddXs002ucPjpBC88,1040
31
- anemoi/datasets/create/utils.py,sha256=v0dyQUk3hWOVQeZ82pnH3GmRwENXIHSwlwB7qqnomuU,2708
32
- anemoi/datasets/create/writer.py,sha256=G1qAPvdn8anGnpWYhvSSP4u3Km_tHKPdMXm0G4skKSk,1379
33
- anemoi/datasets/create/zarr.py,sha256=eNhopqcNSWtuJ_ltQIGdHVL2bGFRhS4Q6KkxAZ9s-Jw,5491
34
- anemoi/datasets/create/functions/__init__.py,sha256=5HmelLkXDjFOhNhX0Z78aV3ZlW2txiJliJwT4jfLEN4,945
35
- anemoi/datasets/create/functions/filters/__init__.py,sha256=Xe9G54CKvCI3ji-7k0R5l0WZZdhlydRgawsXuBcX_hg,379
36
- anemoi/datasets/create/functions/filters/empty.py,sha256=QGj7YEfbo3gwlmwHi1lPATjST0332TH2-uc6_wKENjI,621
37
- anemoi/datasets/create/functions/filters/noop.py,sha256=ZP434Z1rFlqdgXse_1ZzqC2XAqRQlYlXlVfGLx7rK8g,444
38
- anemoi/datasets/create/functions/filters/pressure_level_relative_humidity_to_specific_humidity.py,sha256=ml-hbCxiYcjZ9EMz6uCX4E39NlUD1F8W0GK7oAPyWdg,1842
39
- anemoi/datasets/create/functions/filters/pressure_level_specific_humidity_to_relative_humidity.py,sha256=htO023TUI5dEIqhUklueYzuGud5ddIcENeIAz54OlTU,1840
40
- anemoi/datasets/create/functions/filters/rename.py,sha256=-vfao1dT6LJdP9RIWfZUELaoyVnWXxu373ZAG1mcyjQ,2335
41
- anemoi/datasets/create/functions/filters/rotate_winds.py,sha256=E0P5scdX0lwTMdcFDYfBzQ_X_4A6EvnrtFvF55-56Hk,2414
42
- anemoi/datasets/create/functions/filters/single_level_dewpoint_to_relative_humidity.py,sha256=GBtGTuP5YWfAB0QKz2p63PHGZ_vwLV3Is-jsMZuCMFo,1704
43
- anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_dewpoint.py,sha256=H9WC4-5zaxZPLFc0CNngdLwSd0nBhBx47QAxf4si6Eo,1893
44
- anemoi/datasets/create/functions/filters/single_level_relative_humidity_to_specific_humidity.py,sha256=QEWjoKiyDQ0XZKyjl6ZmVnjK1njQ_NOpQ-Z2BwaYqlM,4076
45
- anemoi/datasets/create/functions/filters/single_level_specific_humidity_to_relative_humidity.py,sha256=HqMxnGGq_95ltoIyWom4DxeT37Juk1U069Am9Mq6lQU,12672
46
- anemoi/datasets/create/functions/filters/speeddir_to_uv.py,sha256=qZei5TaxTpw3CGck-Mnf_VoiOJhdaeNuzggxLE7Hn1o,2234
47
- anemoi/datasets/create/functions/filters/unrotate_winds.py,sha256=hiIwgWi_2lk_ntxsPFMyZ6Ku8_5p91ht36VN_2kHYDA,2414
48
- anemoi/datasets/create/functions/filters/uv_to_speeddir.py,sha256=8JpzPTZr3r18kl-AdpPkWN90hVqa3x3NB-Q2J8128kw,1747
49
- anemoi/datasets/create/functions/sources/__init__.py,sha256=sXQl1e4KvUiHkM52O9dA2XeVDDFEcVjz7x9XXYEo23o,1350
50
- anemoi/datasets/create/functions/sources/accumulations.py,sha256=_aYLrTOh0yVvcT9d584iWX-fK2x1PD4boA3-gvUl6jA,12121
51
- anemoi/datasets/create/functions/sources/constants.py,sha256=9MNxjkXAjtIq7X-T7GgKGVzH-V-FBcTxj0gLLJYoXTI,903
52
- anemoi/datasets/create/functions/sources/empty.py,sha256=ZrXGs8Y3VrLSV8C8YlJTJcHV7Bmi7xPiUlrq8R0JZQY,485
53
- anemoi/datasets/create/functions/sources/forcings.py,sha256=tF3EyIs5AGF1Ppvp6dIExONM-kGF-wcnMO1sZc_wDuo,646
54
- anemoi/datasets/create/functions/sources/grib.py,sha256=stoYUrznrRF9A283xHBa_B7dbONvHDpp7ZrY9RzqNNc,4370
55
- anemoi/datasets/create/functions/sources/hindcasts.py,sha256=yW30hfbgHGV4DOhKEv6OGrJXGHBZDXtZBYqh9wzAieU,1662
56
- anemoi/datasets/create/functions/sources/mars.py,sha256=R5KzvxgCVXrEs5-Y7BCKpVYYp3Gw9QL3iD8UMKQpudI,6797
57
- anemoi/datasets/create/functions/sources/netcdf.py,sha256=8uug0oAdGBJIKKws-EflA4ZgjQye_sWCBymUVv1TEW4,532
58
- anemoi/datasets/create/functions/sources/opendap.py,sha256=0Bs0PytUvI1WZGn2OdmnJuFDGAQypxN8v44nl106QjY,531
59
- anemoi/datasets/create/functions/sources/recentre.py,sha256=t07LIXG3Hp9gmPkPriILVt86TxubsHyS1EL1lzwgtXY,1810
60
- anemoi/datasets/create/functions/sources/source.py,sha256=J3O4M0nB1a-67IJuY_aWqDDqyNGXB_uzxVbicFldO4U,1422
61
- anemoi/datasets/create/functions/sources/tendencies.py,sha256=4hFPGU51KnxXp-KteSp5WLb8v586sDq2ePPd8CfUFjA,4108
62
- anemoi/datasets/create/functions/sources/xarray_kerchunk.py,sha256=JsuGjTs5BQdJIPRI8TuUNde680UQkT4GbUhOt6wYy38,1432
63
- anemoi/datasets/create/functions/sources/xarray_zarr.py,sha256=qI_fEKo28hu_B_qMPx67gigysw8qw5ePMU9P0wbDcIc,531
64
- anemoi/datasets/create/functions/sources/zenodo.py,sha256=n7_sfZHJVDjVnSwc07muO9kS7TwOM4S8DIlJf5pnDiU,1237
65
- anemoi/datasets/create/functions/sources/xarray/__init__.py,sha256=0HMGeuI2y-DlQJiikYvBLkZeLwdKCWggAadzXnRiMho,2962
66
- anemoi/datasets/create/functions/sources/xarray/coordinates.py,sha256=NgOlA7426pdhq20IKJv2-mrBnjFSFO4asPgcXQph05c,6198
67
- anemoi/datasets/create/functions/sources/xarray/field.py,sha256=3xy14ywRxYydvxucDlE8g6PeKfP5mcc5NL-2mGDv9nU,3658
68
- anemoi/datasets/create/functions/sources/xarray/fieldlist.py,sha256=GnYbierm_TuTPMG9WOn99QBi1DxaFo0hra69KGvSiEg,5589
69
- anemoi/datasets/create/functions/sources/xarray/flavour.py,sha256=17bnp_VQ4lRIEMYz4JC6_XBbn56UoknX74SYVhgO_Yk,14841
70
- anemoi/datasets/create/functions/sources/xarray/grid.py,sha256=ND9TSNxg-_8gGhXLzCo_CFoTrZXLWLYjsF-d88AKr28,3630
71
- anemoi/datasets/create/functions/sources/xarray/metadata.py,sha256=TSFQ_2ijVtEiXdwnjYr9wPRsTBwqfo_pNNZDFPXFAts,4558
72
- anemoi/datasets/create/functions/sources/xarray/time.py,sha256=494pqiQ2p9cryXobGsuf5AgvMBzionKTpnyVoI0HtiA,5973
73
- anemoi/datasets/create/functions/sources/xarray/variable.py,sha256=tJUiJCPJ6Ft-U9isaEv8vLzPk52Dnnss9zTJX1hXQvI,4522
74
- anemoi/datasets/create/input/__init__.py,sha256=v9hJbgkH5hl3Zp5papYHwyEJ3JF2u4ILiTfnjJ1oOpI,2135
75
- anemoi/datasets/create/input/action.py,sha256=qMKyQLTjAJDBey_1_iIbI6_bqdNVyXarJzDtCH4kiRM,4188
76
- anemoi/datasets/create/input/concat.py,sha256=N7u0VeAK2z4fZHiP6Or-xqJP0LfvM3yvEcVu92m1eU8,3264
77
- anemoi/datasets/create/input/context.py,sha256=vOExSWFMSR_UsDzcFQoO46IGfVFT-XNXY4FtDekJ5V8,2079
78
- anemoi/datasets/create/input/data_sources.py,sha256=8hyR-IlaaVJrP2tPVWBZF5fwrXJZrPeN5miwJBzsjns,2825
79
- anemoi/datasets/create/input/empty.py,sha256=67U5jnJP9SVPwPmONFD_PKcUPxbCjlEWBoj6bn_SqzI,1312
80
- anemoi/datasets/create/input/filter.py,sha256=I4zskObZMBVGx4-IUBFkDaZhQoerjBkwcmctXhbiXSQ,2400
81
- anemoi/datasets/create/input/function.py,sha256=vb-fahl0VQbqaTCR9mYzc104hugeR3aKb6awEchk2EA,4051
82
- anemoi/datasets/create/input/join.py,sha256=uvsIio-KMP3aaZyHK2k_7sdsqYbgIoqKQQ3DfWVr4jY,1976
83
- anemoi/datasets/create/input/misc.py,sha256=HhCVxVeONqdV7WiiYiAeZb3_QeoR0gcVgAAanon6U4Y,2306
84
- anemoi/datasets/create/input/pipe.py,sha256=YBEAypMXaaWRzwZQCRG0oQwvwSmZhNCAa_1hPlYJuvc,1170
85
- anemoi/datasets/create/input/repeated_dates.py,sha256=NueAwQ8uwD54FQEOzHfPGEC8iw7HRiTmdSR2ytFdWrw,6536
86
- anemoi/datasets/create/input/result.py,sha256=35wCEKwmybe5uuTigqmESh_y_JB-KgTqLT_f2_lIqhQ,14804
87
- anemoi/datasets/create/input/step.py,sha256=Jvl3QpkNgSIkhdc2ekrCMlqSWmP9fPXD0CvPYcocAsM,3133
88
- anemoi/datasets/create/input/template.py,sha256=-prOGI7vbcqph4uS-Mf5-mQ1ws3LbdFzKZxx4d7Ojp8,1844
89
- anemoi/datasets/create/input/trace.py,sha256=J-8jDy28wNZa4aSV1KIQMwc1KolcoH3R2xjLl-_eLzM,2183
90
- anemoi/datasets/create/statistics/__init__.py,sha256=HphcJfdD6mYxhH8hzDMAcSFH3wblHW_ZONT70qX-BYI,12771
91
- anemoi/datasets/create/statistics/summary.py,sha256=sgmhA24y3VRyjmDUgTnPIqcHSlWBbFA0qynx6gJ9Xw8,3370
92
- anemoi/datasets/data/__init__.py,sha256=usTH1SLkeveBbYkbBTc7rP4G3mCGNa8A74vPjXjlOSw,1067
93
- anemoi/datasets/data/concat.py,sha256=SYASNNngnAyz3rC4ENzrGAu91rnhd6uwP0kGX9aMZAQ,5269
94
- anemoi/datasets/data/dataset.py,sha256=GS-V1rHze1qynIBz56PQOpQMVzWcSpbIppZ7-SLtYr8,10383
95
- anemoi/datasets/data/debug.css,sha256=z2X_ZDSnZ9C3pyZPWnQiEyAxuMxUaxJxET4oaCImTAQ,211
96
- anemoi/datasets/data/debug.py,sha256=xNpFeJqdlN9Qhlhbp4pxXJP0dQTf0V4bm2cK4hsrSJM,6326
97
- anemoi/datasets/data/ensemble.py,sha256=AsP7Xx0ZHLoZs6a4EC0jtyGYIcOvZvvKXhgNsIvqIN8,1137
98
- anemoi/datasets/data/forwards.py,sha256=-5h18GgkSOH_sNRpwJ8ZGv_KuJkPqzmCDwljPStAQHI,8223
99
- anemoi/datasets/data/grids.py,sha256=KiHpN1Ne0DnQM42buBy0sIAZHNaC2kuEFwkk6ohIooU,8046
100
- anemoi/datasets/data/indexing.py,sha256=625m__JG5m_tDMrkz1hB6Vydenwt0oHuyAlc-o3Zwos,4799
101
- anemoi/datasets/data/interpolate.py,sha256=usnYgjoDPfnUNg_lZl3KsFTsJ7kOsf7YaHwarsBU7Ag,4163
102
- anemoi/datasets/data/join.py,sha256=mmCSJVLsdY1qBLJ5pLQvC5n6-cJB-u40xoUP5ffaOd0,5244
103
- anemoi/datasets/data/masked.py,sha256=GKAKHwiiVrDX13V_mDiQ3G1Y7zXSksc0IkABPEvVw-M,3825
104
- anemoi/datasets/data/misc.py,sha256=8ZaLhgHmUmP77X0_6scp36BJJzz544nHVQRAamW6x-Y,9821
105
- anemoi/datasets/data/missing.py,sha256=OyW8cRow1v641Vgv-IY5BnUxH2Ob5P2QjgrVR1Szjl0,7157
106
- anemoi/datasets/data/rescale.py,sha256=c_onY5f-2XDGmLP5mawNFueQWNS-BnTpo6xaBJF4aWA,4138
107
- anemoi/datasets/data/select.py,sha256=HiTFpZm5RVD2Vck4tjtFABUuIQYuYz_F09GrnIvnFDU,4319
108
- anemoi/datasets/data/statistics.py,sha256=lZCcKw9s7ttMBEp6ANyxtbXoZZvchhE7SClq-D4AUR8,1645
109
- anemoi/datasets/data/stores.py,sha256=w8SgIGV7YlysazF6FLAVd81EQcAyWbj9RhR6svp1_iU,12301
110
- anemoi/datasets/data/subset.py,sha256=peyHlIvno0uUzqW0HS9zjqThmyXn6rpvVWh-925XHnE,4692
111
- anemoi/datasets/data/unchecked.py,sha256=4qqHuDJNQ89HDOQFsSVACRYpT34xgxYpiH4T6J16HXE,4304
112
- anemoi/datasets/data/xy.py,sha256=_k1z_2INvA0v7zsm5lxfVvf7ymBFu6Tr9PxvtdB9kFg,3002
113
- anemoi/datasets/dates/__init__.py,sha256=-RcoD33OQl4GOL92r7ksT8014KhvURjUCb1C9SNXjp0,7970
114
- anemoi/datasets/dates/groups.py,sha256=7zXEtMwFWFFQarKNyNDLxpTu7OFiZWSYIrvAIeWLEPg,5391
115
- anemoi/datasets/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
116
- anemoi/datasets/utils/fields.py,sha256=VWf9PPmJ1WU1-oJ5tNkbC3_ik9gqnFxqwrc1EFysBYk,1397
117
- anemoi_datasets-0.5.7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
118
- anemoi_datasets-0.5.7.dist-info/METADATA,sha256=UTGUJaqsj9oc2Z3-iLLc709HlXxBxp1KPp7CHVfrEhE,16324
119
- anemoi_datasets-0.5.7.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
120
- anemoi_datasets-0.5.7.dist-info/entry_points.txt,sha256=yR-o-4uiPEA_GLBL81SkMYnUoxq3CAV3hHulQiRtGG0,66
121
- anemoi_datasets-0.5.7.dist-info/top_level.txt,sha256=DYn8VPs-fNwr7fNH9XIBqeXIwiYYd2E2k5-dUFFqUz0,7
122
- anemoi_datasets-0.5.7.dist-info/RECORD,,