roms-tools 3.4.0__py3-none-any.whl → 3.5.0__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 (111) hide show
  1. roms_tools/datasets/lat_lon_datasets.py +12 -0
  2. roms_tools/datasets/roms_dataset.py +140 -53
  3. roms_tools/datasets/utils.py +14 -2
  4. roms_tools/regrid.py +76 -0
  5. roms_tools/setup/boundary_forcing.py +2 -2
  6. roms_tools/setup/grid.py +17 -3
  7. roms_tools/setup/initial_conditions.py +314 -55
  8. roms_tools/setup/mask.py +2 -5
  9. roms_tools/setup/nesting.py +6 -3
  10. roms_tools/setup/surface_forcing.py +1 -2
  11. roms_tools/setup/tides.py +6 -5
  12. roms_tools/setup/utils.py +220 -142
  13. roms_tools/tests/test_datasets/test_roms_dataset.py +225 -21
  14. roms_tools/tests/test_regrid.py +120 -1
  15. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/c/0/0/0/0 +0 -0
  16. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/zarr.json +57 -0
  17. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/c/0/0/0/0 +0 -0
  18. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/zarr.json +57 -0
  19. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/c/0 +0 -0
  20. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/zarr.json +47 -0
  21. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/c/0 +0 -0
  22. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/zarr.json +47 -0
  23. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/c/0/0/0/0 +0 -0
  24. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/zarr.json +57 -0
  25. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/c/0/0/0/0 +0 -0
  26. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/zarr.json +57 -0
  27. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/c/0/0/0/0 +0 -0
  28. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/zarr.json +57 -0
  29. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/c/0/0/0/0 +0 -0
  30. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/zarr.json +57 -0
  31. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/c/0/0/0/0 +0 -0
  32. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/zarr.json +57 -0
  33. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/c/0/0/0/0 +0 -0
  34. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/zarr.json +57 -0
  35. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/c/0/0/0/0 +0 -0
  36. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/zarr.json +57 -0
  37. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/c/0/0/0/0 +0 -0
  38. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/zarr.json +57 -0
  39. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/c/0/0/0/0 +0 -0
  40. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/zarr.json +57 -0
  41. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/c/0/0/0/0 +0 -0
  42. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/zarr.json +57 -0
  43. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/c/0/0/0/0 +0 -0
  44. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/zarr.json +57 -0
  45. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/c/0/0/0/0 +0 -0
  46. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/zarr.json +57 -0
  47. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/c/0/0/0/0 +0 -0
  48. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/zarr.json +57 -0
  49. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/c/0/0/0/0 +0 -0
  50. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/zarr.json +57 -0
  51. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/c/0/0/0/0 +0 -0
  52. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/zarr.json +57 -0
  53. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/abs_time/zarr.json +47 -0
  54. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/c/0/0/0/0 +0 -0
  55. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/zarr.json +57 -0
  56. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/c/0/0/0/0 +0 -0
  57. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/zarr.json +57 -0
  58. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/c/0/0/0/0 +0 -0
  59. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/zarr.json +57 -0
  60. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/c/0/0/0/0 +0 -0
  61. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/zarr.json +57 -0
  62. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/c/0/0/0/0 +0 -0
  63. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/zarr.json +57 -0
  64. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/c/0/0/0/0 +0 -0
  65. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/zarr.json +57 -0
  66. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/c/0/0/0/0 +0 -0
  67. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/zarr.json +57 -0
  68. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/c/0/0/0/0 +0 -0
  69. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/zarr.json +57 -0
  70. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/c/0/0/0/0 +0 -0
  71. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/zarr.json +57 -0
  72. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/c/0 +0 -0
  73. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/zarr.json +47 -0
  74. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/c/0/0/0/0 +0 -0
  75. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/zarr.json +57 -0
  76. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/c/0/0/0/0 +0 -0
  77. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/zarr.json +57 -0
  78. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/c/0/0/0/0 +0 -0
  79. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/zarr.json +57 -0
  80. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/c/0/0/0/0 +0 -0
  81. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/zarr.json +57 -0
  82. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/c/0/0/0/0 +0 -0
  83. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/zarr.json +57 -0
  84. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/c/0/0/0/0 +0 -0
  85. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/zarr.json +57 -0
  86. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/c/0/0/0/0 +0 -0
  87. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/zarr.json +57 -0
  88. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/c/0/0/0/0 +0 -0
  89. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/zarr.json +57 -0
  90. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/c/0/0/0 +0 -0
  91. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/zarr.json +54 -0
  92. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/c/0/0/0/0 +0 -0
  93. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/zarr.json +57 -0
  94. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/c/0/0/0 +0 -0
  95. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/zarr.json +54 -0
  96. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/w/zarr.json +57 -0
  97. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zarr.json +2481 -0
  98. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/c/0/0/0 +0 -0
  99. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/zarr.json +54 -0
  100. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/c/0/0/0/0 +0 -0
  101. roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/zarr.json +57 -0
  102. roms_tools/tests/test_setup/test_grid.py +24 -0
  103. roms_tools/tests/test_setup/test_initial_conditions.py +128 -11
  104. roms_tools/tests/test_setup/test_validation.py +15 -0
  105. roms_tools/tests/test_utils.py +287 -0
  106. roms_tools/utils.py +177 -72
  107. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/METADATA +2 -3
  108. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/RECORD +111 -24
  109. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/WHEEL +1 -1
  110. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/licenses/LICENSE +0 -0
  111. {roms_tools-3.4.0.dist-info → roms_tools-3.5.0.dist-info}/top_level.txt +0 -0
@@ -4,55 +4,55 @@ roms_tools/__init__.py,sha256=69jWGFt-5pXoXJto5xnwROpQQ2suWbuJdoau4FCo5dI,1486
4
4
  roms_tools/constants.py,sha256=VxhoT2dE_Urqgp7bBdxIfdFDgR7WR83hY2IE7oqIYDE,371
5
5
  roms_tools/fill.py,sha256=f0_4TWpBWAZYvbTwR3NAwrsdfKv-8rJI3RdEFHoxW3c,14719
6
6
  roms_tools/plot.py,sha256=nvc5-lt90D3k0-3kfVl015wTufMOB6Awy0IkERUM9-c,43125
7
- roms_tools/regrid.py,sha256=_Ytjo7wZc8DUWT8j5d0j7duBHj4sf3epTjRFqjb-NHI,10556
8
- roms_tools/utils.py,sha256=1sNXXwCdS26molLftXtZ4RRNumi8zylH5SMUM9Hg5Hs,43289
7
+ roms_tools/regrid.py,sha256=n97NKzVx1pKuaZhaIWMe_2XyUODYDK-hizNelvGzUzA,13327
8
+ roms_tools/utils.py,sha256=TRUC7NSKAOFI9WKqUxOJxKd7nS1f6IjVo9xAK8dU8Ns,46233
9
9
  roms_tools/vertical_coordinate.py,sha256=081LONzUSe8tL9H6XniAmY1tIyehc87rMnRZ-kYQ0FI,7417
10
10
  roms_tools/analysis/cdr_analysis.py,sha256=l1s2z_BqL-2KsucEv1O6SmyrkX4ov4-CJgiRgyZgOSc,6192
11
11
  roms_tools/analysis/cdr_ensemble.py,sha256=RrnApKR1qGlNRiqjhF-iWzC0iymcAB17EpoumzRPRs8,6432
12
12
  roms_tools/analysis/roms_output.py,sha256=zo7a5sRNQX5yR8ALKyMCvxwMUMxRJ1yosGh8FwIvLmI,14635
13
13
  roms_tools/data/grids/GLORYS_global_grid.nc,sha256=XFizF2ayu9VSbM0NCSrOzGa7kFFUvJW6BiRn0Y9XSZY,35140
14
14
  roms_tools/datasets/download.py,sha256=9KqN0mNMF64ExCrLma4EZxm6J_6F4HRmYwhHor3dbQE,8851
15
- roms_tools/datasets/lat_lon_datasets.py,sha256=1Fz0xWXk_UNJD9c2VmdiGhbOKtAP6CRd1puyKeggtjg,91903
15
+ roms_tools/datasets/lat_lon_datasets.py,sha256=olOS_BLrDj2G62x6vUT0ycjDpjtbNR9THys6NIBs3K8,92402
16
16
  roms_tools/datasets/river_datasets.py,sha256=-CdIZ0Uca0QexRX-EM-fZyheOWQexoHTVNtPBJlXWm0,19541
17
- roms_tools/datasets/roms_dataset.py,sha256=CBeSWIVWLfcqZUAiLB6fDvZ2bds-9e84nwOLKA6MLhk,29829
18
- roms_tools/datasets/utils.py,sha256=kbxbEVIOX65UsRZNXG7vcHZAIc5UaYfaPo0hu1VYOjI,16013
17
+ roms_tools/datasets/roms_dataset.py,sha256=4Orn6PGAnaa5nS5ZSwu7szEgI3g7D4MewuxCqyQC1ZQ,32311
18
+ roms_tools/datasets/utils.py,sha256=ikJaPQU2ypjApVixUpZiA3exMqyuPo6fd7yim9PpEfY,16389
19
19
  roms_tools/setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
- roms_tools/setup/boundary_forcing.py,sha256=44xuTqHgMRm2r6wU-WRgKoCFPTUIPnwQYYaQc_-x6qM,46779
20
+ roms_tools/setup/boundary_forcing.py,sha256=SFSwRutJtFbbonEDD7IiwEjbHDnuUjtaIULVjovvd-w,46785
21
21
  roms_tools/setup/cdr_forcing.py,sha256=ekPjaCmb1wvE9kaOpEkCwK7sMlPBEPJ42rd6E5IKdr0,40210
22
22
  roms_tools/setup/cdr_release.py,sha256=q5SmJZ1wSWuf-_ZQEslm0UHjZ7_Nje6jQ4Z0OJvxagk,25495
23
- roms_tools/setup/grid.py,sha256=nJluaHqUY7UrXptTuBt2RBDr8fzS4hmkae196uaZmxs,56838
24
- roms_tools/setup/initial_conditions.py,sha256=b-hJGawx_Gd_rDRnzYdiqFhtfjrosMYDjULAVe2MVWs,34230
25
- roms_tools/setup/mask.py,sha256=ypHg7dea5lqXbmr99trhgIUwv3hbiFX_04u2tR8ftTo,5423
26
- roms_tools/setup/nesting.py,sha256=BWcXk9MqTzOxL5q199CieQdpL8Z49hVpRAPCo4MqvM0,34317
23
+ roms_tools/setup/grid.py,sha256=HAQeQGcLZuND81E_VgSlTaXgKhManjesKMTKTMv1gvw,57219
24
+ roms_tools/setup/initial_conditions.py,sha256=1gEgwA6iSVdNzFnmB-TxuwYXlysyiMvG8NMKMPyPLEQ,43896
25
+ roms_tools/setup/mask.py,sha256=KUC0s_CI8Im8x0_X8dGQxCiSmieDPuiLwCW30fJcyTI,5434
26
+ roms_tools/setup/nesting.py,sha256=nqw6sh-eqoqPw3zzsKe4RTNYb-EtuuS9sfvpIrM3FgE,34330
27
27
  roms_tools/setup/river_forcing.py,sha256=XeMolmwjbx21EjAXqDtdVdog3u-RabfVrL5DlvU_WDg,42446
28
- roms_tools/setup/surface_forcing.py,sha256=I-NffeOq-fyLKG9RMd2ChZrM_L8opIw772JAa0z3CUs,29764
29
- roms_tools/setup/tides.py,sha256=l6P6Ie3PCm1Ig-GGcP7jIBcQ7h4I7wP8f57pEuoeD9M,16265
28
+ roms_tools/setup/surface_forcing.py,sha256=FWXzUmPPU4LQM0XRLZO0dTKxTlECpRJ3UB9zEusqF4Q,29729
29
+ roms_tools/setup/tides.py,sha256=AnOPqdN7xitIZo8MizVHF7Ms4MHVf_49kXrtce3cBss,16235
30
30
  roms_tools/setup/topography.py,sha256=6lfDq_-jw1j0KVIId0zKvTAOkQ_3-iq8Q37T1FNnkWo,14459
31
- roms_tools/setup/utils.py,sha256=YBHZgaisSYaWaUlUvInc6uBuRVEWRDBIMDSY0Qi6hFU,58770
31
+ roms_tools/setup/utils.py,sha256=MH6L_jyf3_abozKcKz0PPfy5Huvd4s_r4jjJqHPS9X8,60085
32
32
  roms_tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
33
  roms_tools/tests/test_fill.py,sha256=KLFY4E7lggost8IJghOOFQbGqreTuUwNWvRHOSomAco,6133
34
- roms_tools/tests/test_regrid.py,sha256=EUeFXcsIUZ3Z1usH5hPEQdkIX4b2XSiBM5zPGG3HXFo,4686
35
- roms_tools/tests/test_utils.py,sha256=i3wktaSXD1dJtWcOdbGLU9I38KuN3tAXg6Hb6fyL5cA,11064
34
+ roms_tools/tests/test_regrid.py,sha256=AcHCF8sRI_aY5Zu-LmeVpp3_ltIYQHL-ZPYZ3UvcFjc,8078
35
+ roms_tools/tests/test_utils.py,sha256=yJiB1aKgUmENyevTpZPTPQbuDGc8axev1ctcNkCII_0,19522
36
36
  roms_tools/tests/test_vertical_coordinate.py,sha256=_L4FGDJGhnDbMhV7g3fc3SGoRt_1Ps82Vx_x2kTxP70,2546
37
37
  roms_tools/tests/test_analysis/test_cdr_analysis.py,sha256=_o2-CGN1FVyRkN4IWDVjzG8s0ElD4y9oqT_D9N-LI3c,4222
38
38
  roms_tools/tests/test_analysis/test_cdr_ensemble.py,sha256=0pQhGE02-pAxIiTKQUREuONt4i5stEckZKa7_-TYMr4,6834
39
39
  roms_tools/tests/test_analysis/test_roms_output.py,sha256=-vmUi6z2ULbaNw7myHiHLV_dRZ8SVi40AKqqwrP-YWw,16059
40
40
  roms_tools/tests/test_datasets/test_lat_lon_datasets.py,sha256=53gMqdACkieBkodCYQRIX2J57pmC3dOQKIUmCE8DXq8,33753
41
41
  roms_tools/tests/test_datasets/test_river_datasets.py,sha256=Z-D00FFtAmrEiIO-s2ZhPqJSdT8RsO-1SulunOdyUaw,1611
42
- roms_tools/tests/test_datasets/test_roms_dataset.py,sha256=NVvsGo-DJ8U4eZLmjgYHqZ11AIXHdaMNFeJBjTTgp2M,16733
42
+ roms_tools/tests/test_datasets/test_roms_dataset.py,sha256=23iK2ns2vxjSsmWkGoiW5hC9yICLS-8L7RluV-cZ9bQ,22118
43
43
  roms_tools/tests/test_datasets/test_utils.py,sha256=aqB1abIa6jwBC5ETqIfeMVqpEThw2EglDGbzYjQc7zg,13363
44
44
  roms_tools/tests/test_setup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
45
  roms_tools/tests/test_setup/test_boundary_forcing.py,sha256=YdyqvtlRYGr-0XaYv6UdICdEJ5kKOX_wer16UL-ldZ0,25049
46
46
  roms_tools/tests/test_setup/test_cdr_forcing.py,sha256=pzaRdMMGfVNp0cHURqGwNU-9HZmxAYH9fjPut0BQr04,38477
47
47
  roms_tools/tests/test_setup/test_cdr_release.py,sha256=pTLDDcaQwTQNXv5jIqM29uFKtyUknrY90GkiriYC8Q4,18927
48
- roms_tools/tests/test_setup/test_grid.py,sha256=q8PeyzSRwg7NzqaAxvwsLJtScDwxNAncR-Qe1fQPe4A,26496
49
- roms_tools/tests/test_setup/test_initial_conditions.py,sha256=NSwNIs7_5HzieWW0YjvOLAyRygQXqa7VdXS3EuF0X8U,18931
48
+ roms_tools/tests/test_setup/test_grid.py,sha256=CvtmSX_KCmCyTMEdBw1HKP33w8uF9cKvabslAAOCR0k,27245
49
+ roms_tools/tests/test_setup/test_initial_conditions.py,sha256=HIEbMFIp7wjF-BAz-Y1wImTeUqLLhyDAu-qzAbDzvNA,23066
50
50
  roms_tools/tests/test_setup/test_nesting.py,sha256=fpn0MIH3mdCsWjfMaKf-ZqU0u8LTmPz0eoN_wWXWRfY,21620
51
51
  roms_tools/tests/test_setup/test_river_forcing.py,sha256=Egj1BzRwk4_o4651p6v2ENNX1kQolZVXgReAZ0Yo7ic,34620
52
52
  roms_tools/tests/test_setup/test_surface_forcing.py,sha256=l2SVvfyk2txpWQAD1fDtSdwT3uL8i0_p5yRje32Y1OI,32409
53
53
  roms_tools/tests/test_setup/test_tides.py,sha256=N-cPgLfsFbrW7AnGx6OD8NDd_Eujo-QDJXVjKVa-MhQ,10546
54
54
  roms_tools/tests/test_setup/test_utils.py,sha256=TAsEt-6h3pR3MiLLw51Ynm4TI_Hdb-brHkM_KOBq2fQ,9439
55
- roms_tools/tests/test_setup/test_validation.py,sha256=QpTkGKLFgYTy4WD3mMhZMP6RDABmiFvkwEIk88zRm-k,3954
55
+ roms_tools/tests/test_setup/test_validation.py,sha256=e173IawpVFBLseXYiK6rzNzXUHCWiQSdb-paTr980jY,4522
56
56
  roms_tools/tests/test_setup/utils.py,sha256=yft8YHmJOmc8Vv8YSXKYOaEzqcDsD-sAFXZhNVhhLc4,1962
57
57
  roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/zarr.json,sha256=Dv1zBcP8GQ8rryYMkHco5XNrDOpT-PS-2aIR71yvdD4,121468
58
58
  roms_tools/tests/test_setup/test_data/bgc_boundary_forcing_from_climatology.zarr/ALK_ALT_CO2_east/zarr.json,sha256=KSNZ-MO2SPQq_XFwju_mKbmEiVMFHBMf-uw063Ow4gc,888
@@ -721,6 +721,93 @@ roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/
721
721
  roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/sigma_w/c/0,sha256=aNNJnBArrc50Nq0vi5lZQK1EU5gP7sX7p-aircg1uvQ,374
722
722
  roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/c,sha256=70lu9D5hMQzgmNmEEbmUVWtzb0UDS9nZOnu_5Rt58uM,10
723
723
  roms_tools/tests/test_setup/test_data/grid_that_straddles_dateline.zarr/spherical/zarr.json,sha256=a1bVLGfsHvmh-TMUicdvPny_y9KuM8TvNjMe0ftcuIs,691
724
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zarr.json,sha256=nxcXoAXsRscZjD5S6CkWkOSiNqxxdHtmX5nD5QbRDwQ,54524
725
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/zarr.json,sha256=Oj4TyPWg_caNdpb8gwsSSgeTWuMq4MuuMiFB7t6bfrE,880
726
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK/c/0/0/0/0,sha256=4uVuijnYWZj_-REVCO5qqoEuu8ZYOZayH7xQ950wDJU,530
727
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/zarr.json,sha256=DIXwIuqB7KtY8nycjdFmG0EogfTLo1Tm-KLSNPqrhfg,897
728
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ALK_ALT_CO2/c/0/0/0/0,sha256=4uVuijnYWZj_-REVCO5qqoEuu8ZYOZayH7xQ950wDJU,530
729
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/zarr.json,sha256=BL4LlUaBkzZ5XBtkYvmRfZHdDzbc3hg1uI7dzl0x4dc,787
730
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_r/c/0,sha256=KzAiHxZPtutPUQ_eZoXETBMy4EBCBnCNQWxglbODtBc,21
731
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/zarr.json,sha256=SZLCLg5tw1BgFSQvKdXxirgsMsZvWYtkW0rj-XnXNDk,783
732
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Cs_w/c/0,sha256=5WMEzZNPbfp_EcqzIR0CaiW1tP_z_mY2z1ffHZXlLYU,25
733
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/zarr.json,sha256=0D26IPx-vSi2seVhbhJ9hwMhztP-SfdvtnAbYhudvno,897
734
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC/c/0/0/0/0,sha256=pfwCP-TlfgzyRyJeHMTZROsfmr6LdGfT59Gi3IqVrm4,554
735
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/zarr.json,sha256=fEqS5RuFUR9NonnQM8MJJpfxiR28Uy8f6dw6bm8lRpo,914
736
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DIC_ALT_CO2/c/0/0/0/0,sha256=pfwCP-TlfgzyRyJeHMTZROsfmr6LdGfT59Gi3IqVrm4,554
737
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/zarr.json,sha256=APsR1yczUNeOprmTtxl2Cnx8ZcpmXeZ_SNZQWKpEkmo,895
738
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOC/c/0/0/0/0,sha256=vpGeDz8omev_crCBUjFVj8XJF0ce6Vm9iapBCymDhs4,598
739
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/zarr.json,sha256=HyuBJwvb7RJAN2zSr4Qs9_ngpx_AHohTzHQj0B_uuPU,906
740
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOCr/c/0/0/0/0,sha256=1vm9yXX9H9XchbDliC3MdR2MUF_xfcW-4uPVB4lxibc,525
741
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/zarr.json,sha256=eUkyZq5WdxrW6YHC1JA9COlOu2OM-izGMr_fSyIXBTE,897
742
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DON/c/0/0/0/0,sha256=9ZZ_vQpqatNKczpCdD-yTEnP1ap3Pgp-yjwW_CIvcXM,598
743
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/zarr.json,sha256=SXt4taPXn_X0xvuNTEGbYgc6aa3IEu03wUa72PYI29s,908
744
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DONr/c/0/0/0/0,sha256=LKvKLm9gQh60Tr9CA7rY8XeIIlxXjKqRIGOf6hSwZTQ,545
745
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/zarr.json,sha256=d5jvF4v3JSPzuvXiDLyj9icde3MgwnlJB3FHb7VCxdQ,899
746
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOP/c/0/0/0/0,sha256=QPlQHT2fJFWdSg_E-3znjnxQOpiVoA5zpRev_PnrITE,598
747
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/zarr.json,sha256=V8Tpn4hR-oW05RK-z0fl9urL2F-16JkevYdS-ptAWZw,910
748
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/DOPr/c/0/0/0/0,sha256=mtegeX59uZSUbDZm3vxe74gItPCO30IY10uH-VZ6SLs,549
749
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/zarr.json,sha256=gE1lWBdoF0Mqa0HUuROE_2lwXKus3_1Ze1AXlZS2Ss0,895
750
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Fe/c/0/0/0/0,sha256=c9RAiw2vS48O6nKY_CDMbarvdHtaHFvSGN3vAfAd54U,574
751
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/zarr.json,sha256=Q6vkVdBfvY1qc9C1NgE0nCaBLkLynm3Vao-4_YVuUYc,890
752
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/Lig/c/0/0/0/0,sha256=pwB6ezx3MqGJ2phYkPXlhbe6B35aGE4BX1Pe5lUUijQ,564
753
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/zarr.json,sha256=jpcmRoqKhLv2WvpaEfsM8zE4xQMJ17BTbbWo5EzLafM,888
754
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NH4/c/0/0/0/0,sha256=572RSJ5I6dIoqcxir-zAEtVGO7AZjMT-nzyLlaY7k8s,598
755
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/zarr.json,sha256=wono7pqI_c_zO-sCY7_WmIMtRBEoP5R0jVQdu7ujMjs,898
756
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/NO3/c/0/0/0/0,sha256=TZMUzDk3f8tkaM3_-cklG6Ec-fgSfjneGwBRoqXPMJ0,584
757
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/zarr.json,sha256=GbHaZ88JEu0kFwCBJQJ3WUiBl2isvt1Cal6Xpkd3XU4,887
758
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/O2/c/0/0/0/0,sha256=54lTewOP87SigF13UqSezWCMi_g9KDhET7D4ahKlwnI,598
759
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/zarr.json,sha256=kJSVp5eE8cKxf4-rme_O4X_UX6d4Pt4HbIoWWT2Yh5g,900
760
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/PO4/c/0/0/0/0,sha256=pIiCo6Ep2g4B6ZBsVFEt1uipZnzJilARtJVRt91SHas,598
761
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/zarr.json,sha256=Nn6vDFvHxhHbLrnUH5F_Yso-BSSZpx-Eg7PNt4kK7L8,899
762
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/SiO3/c/0/0/0/0,sha256=caj9Jk2URthZL-HOHF1SnAw6CRNrDriGjM4ohO0nzNA,598
763
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/abs_time/zarr.json,sha256=s1LVE9x330qPwzXBfF0-cK-6c71q_4coxHmxrC-PztE,780
764
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/zarr.json,sha256=bMmqnLWmlPxXrQHwDcG8youkgu5leIKmKr50kjfBGBs,884
765
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatC/c/0/0/0/0,sha256=ktI5JZ_jQmqw6r28PjFdRDWJX1hOHDfDAcphkvAgY1c,598
766
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/zarr.json,sha256=rjayfOSnbCNKC6SAtJ2OE8Gbne89p4YzSo7KJVudR0o,886
767
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatChl/c/0/0/0/0,sha256=aUowVBPJMQ9hLch_SEjp_rm_4_GYjxFldyfeaYfrKsk,598
768
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/zarr.json,sha256=4I3vJomFyQezP0U5F4CxYsdfOy1dO4lyDu-GtmMf_3o,882
769
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatFe/c/0/0/0/0,sha256=JWnLRT23eDc-3FNLsfDnsCHOpwfZJO_vWXEptBI_OLE,598
770
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/zarr.json,sha256=cQE8ETLBp3nW4pwBfI3VqBVGOWV69Ya8omP_W9uOsP0,888
771
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatP/c/0/0/0/0,sha256=UTxJppaimmxXq0u-ItSbjmKLGtogXBVO_Pl360q-1kY,598
772
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/zarr.json,sha256=TjKyVHqIqDoJK6oVwCQMA-KMbrewsgEoZ0rHAZnQnT4,886
773
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diatSi/c/0/0/0/0,sha256=SJb6oF4y50tuE-Jagrl3-UVADiMJZ-6hYeqJDXPw0cY,598
774
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/zarr.json,sha256=CnPa2PkIKIT095_b6SCP3eheu8i3Zp_b0hAUZWFruR8,888
775
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazC/c/0/0/0/0,sha256=2busNwtzNktSTSmyMsnqsVh0dQNqY2MFeA-DFUluoDQ,598
776
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/zarr.json,sha256=N8hFusESK6uifAjnDvOd33r_X0lYt89iPDEfN1jmX2A,890
777
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazChl/c/0/0/0/0,sha256=iUD-UAOf_CtV25siOdTDKX5um-H-vDMqnCkOuK3CxEg,598
778
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/zarr.json,sha256=2M8WsNydUXIzJgp4S6fAR8vKIV6pw0RzqwIwwLTejUI,886
779
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazFe/c/0/0/0/0,sha256=IykUM4i4hZM6TOP6f24aBr4bDFIdj1_tl9949DmquIo,598
780
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/zarr.json,sha256=qI3ceviF6uQvcqAawFBkf0yl3OnrmJl10E3zIZTy3yw,892
781
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/diazP/c/0/0/0/0,sha256=sY3Q4eY5ZxSxwMEu5DemjzhGasVZzNCghdlzC1Pbeow,598
782
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/zarr.json,sha256=3mrbPfRsPKpsz_tVFrcXGZAD-8VJE804vPAWo1OPUsY,791
783
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ocean_time/c/0,sha256=y1VOSPoj7nv8u4oGXe_hwplmJxRC0kdJLbDC-sgKRTk,17
784
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/zarr.json,sha256=Cr4P2bXlJeXK0qTgVjdeLSiWjIquD-AN-HBypa8HF8E,874
785
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/salt/c/0/0/0/0,sha256=C_Xv2O2Nzz6Ab4ASHIjnSHeupBqOPjVi30vlkhBEQ0U,480
786
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/zarr.json,sha256=5USFO9pDXa4oLOD7eXJX8VYvzDUpl0ZsXLd-VvRDkWE,897
787
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spC/c/0/0/0/0,sha256=fAqFkgz10YW8nMvgRA-mOMnd7Fv91MVcBVk40uTgIMI,598
788
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/zarr.json,sha256=ZRvhIuMlLSMa2t3b9rtAC3A80GJIHk50QN4hDjMEikI,896
789
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spCaCO3/c/0/0/0/0,sha256=s6ixrWwUPv8SAfEmk00xhmgPSxda2T7RiKqQl3Fdjwo,598
790
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/zarr.json,sha256=WRR_FcDmXgaTTAEHsHiFAfuupLJO2nmENYSao4AFWqE,900
791
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spChl/c/0/0/0/0,sha256=rOQBIpORKz9mZSCkqgop1Br5bpEBu_sZ2XCaKjHe2oQ,598
792
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/zarr.json,sha256=VKmf1gNV24liRvYjgoIUzTK0Ema0IzAmXjvIKAB9t_A,895
793
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spFe/c/0/0/0/0,sha256=wG_zymdilDKl4q5voRSWCtlbypRMb1WiwbytI2qYfL4,598
794
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/zarr.json,sha256=f1kAuvARoP6lgYhn02gVl-k0JuBYDGMwYx8WPr6_bvU,902
795
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/spP/c/0/0/0/0,sha256=I2XYE3sRf-hpMXj_lXRUBdcNHABjBib-EG2fEyg3Ubs,598
796
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/zarr.json,sha256=yQSnWSwU6o-4FZD5eO3pgFoI-v2Q5-2xe03jbTDFN_I,899
797
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/temp/c/0/0/0/0,sha256=dMs1OJ_RoVCcJFfpcXGkCQGjVbZPniKiUeD30Iqqj0g,584
798
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/zarr.json,sha256=QQE-4P_pvbjV8tPpbD0PMWnz0TlNHSSC-rDLqBSxOD4,880
799
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/u/c/0/0/0/0,sha256=czjdDoo-3Tvqd2SW044Ji35uNkvhXmlt7dxY5FiMpiM,514
800
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/zarr.json,sha256=vuIZemudeuyttmj1pVP-oRJdWp8f3O4VdaFjnpPpKEU,871
801
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/ubar/c/0/0/0,sha256=zLMLh1sqDEpA3zuDIjke06Rf6f_LF7CIf8ntBDpM_4Q,177
802
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/zarr.json,sha256=IEMyuAnX2h58Wa3sJWimCq_l_2YQHX_MyaqIURj9JK0,880
803
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/v/c/0/0/0/0,sha256=VchGFbNCzMonXtR39-clQNsYzcjddsk3Kqd5jX4z3u4,514
804
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/zarr.json,sha256=d_p4cwUboFJEcajQ9SVuJG3vHQG_tkkvDEnMXWH1E1M,871
805
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/vbar/c/0/0/0,sha256=_apbrVJnQYHJb8OoPjluxyKj61YzzTp8ot3ZV741iyI,177
806
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/w/zarr.json,sha256=tC5svAOFP51NbEC4lLHUPXm8NA3l1K2tvZ7t8GUurSE,880
807
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/zarr.json,sha256=u5HQbNpSrf4tIQ41hgH7c9X0uJl6XLRTzwEwMMKjopk,851
808
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zeta/c/0/0/0,sha256=XocvWkhKPSRozulO8RoJF5tQjk6sirK6GPZ9eoG8ihM,191
809
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/zarr.json,sha256=RFmEufRMK_t34i5SfzoMdLnLsqCrufxO6hzxFWPt0Ow,889
810
+ roms_tools/tests/test_setup/test_data/initial_conditions_from_roms.zarr/zooC/c/0/0/0/0,sha256=7TdJEdnUFXY3VHtD1rR8nWXwFGcArksfbe1B4sqPUFM,598
724
811
  roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/zarr.json,sha256=l_wqMEqHfZJU9agHAzBDzFu0j4xYrVtSuFvZpN2T_nE,54547
725
812
  roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/zarr.json,sha256=Bcd5qjwt3tUe2Y0H84Z2uBFLafHDeoXl_VvF1ghAlmI,880
726
813
  roms_tools/tests/test_setup/test_data/initial_conditions_with_bgc_from_climatology.zarr/ALK/c/0/0/0/0,sha256=Z01dkNah6iJInS9D4OnEtTQ_EtfQ-VOtmDh0Z1UFWbM,194
@@ -987,8 +1074,8 @@ roms_tools/tests/test_tiling/test_join.py,sha256=2z8VbXL7que-BNTDdNM4Ddd-Dwtr0gg
987
1074
  roms_tools/tests/test_tiling/test_partition.py,sha256=h971QTGr0ArGUDby5X2UDpBBVnqBpgB9ld3vwg0nAI0,11749
988
1075
  roms_tools/tiling/join.py,sha256=GgDcl3-BROTAekqtkpWKL1Mm2zWdnHB_mX_1hLGp4Mk,5984
989
1076
  roms_tools/tiling/partition.py,sha256=aw4uFdiVaMcSUpPB0w3vB_j9HAM9yL8GYrTE0ROxRwo,7754
990
- roms_tools-3.4.0.dist-info/licenses/LICENSE,sha256=yiff76E4xRioW2bHhlPpyYpstmePQBx2bF8HhgQhSsg,11318
991
- roms_tools-3.4.0.dist-info/METADATA,sha256=sVqk3BzEsAL7ls00WAkjObvATj3Q7-eYxfcTjJ7XeOM,5681
992
- roms_tools-3.4.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
993
- roms_tools-3.4.0.dist-info/top_level.txt,sha256=aAf4T4nYQSkay5iKJ9kmTjlDgd4ETdp9OSlB4sJdt8Y,19
994
- roms_tools-3.4.0.dist-info/RECORD,,
1077
+ roms_tools-3.5.0.dist-info/licenses/LICENSE,sha256=yiff76E4xRioW2bHhlPpyYpstmePQBx2bF8HhgQhSsg,11318
1078
+ roms_tools-3.5.0.dist-info/METADATA,sha256=P7yezfnq7vADkP_31Gp38MTPM8cXDPY_dLv3_O0us30,5626
1079
+ roms_tools-3.5.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
1080
+ roms_tools-3.5.0.dist-info/top_level.txt,sha256=aAf4T4nYQSkay5iKJ9kmTjlDgd4ETdp9OSlB4sJdt8Y,19
1081
+ roms_tools-3.5.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5