OceanDataStore 0.3.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 (104) hide show
  1. OceanDataStore/__init__.py +21 -0
  2. OceanDataStore/catalog/__init__.py +12 -0
  3. OceanDataStore/catalog/oceandatacatalog.py +1242 -0
  4. OceanDataStore/catalog/stac/README.md +34 -0
  5. OceanDataStore/catalog/stac/__init__.py +30 -0
  6. OceanDataStore/catalog/stac/create_noc_stac.py +109 -0
  7. OceanDataStore/catalog/stac/npd_era5_collection.py +364 -0
  8. OceanDataStore/catalog/stac/npd_jra55_collection.py +196 -0
  9. OceanDataStore/catalog/stac/ods_obs_collection.py +534 -0
  10. OceanDataStore/catalog/stac/rapid_evo_collection.py +309 -0
  11. OceanDataStore/catalog/stac/template_collection.py +85 -0
  12. OceanDataStore/catalog/stac/utils.py +476 -0
  13. OceanDataStore/cli/__init__.py +34 -0
  14. OceanDataStore/cli/arg_parser.py +182 -0
  15. OceanDataStore/cli/cli.py +203 -0
  16. OceanDataStore/cli/exceptions.py +83 -0
  17. OceanDataStore/cli/icechunk.py +888 -0
  18. OceanDataStore/cli/logging.py +52 -0
  19. OceanDataStore/cli/object_store.py +293 -0
  20. OceanDataStore/cli/utils.py +275 -0
  21. OceanDataStore/cli/zarr.py +870 -0
  22. OceanDataStore/data/ARMOR3D/create_ARMOR3D_P1M-m_monthly_climatology.py +135 -0
  23. OceanDataStore/data/ARMOR3D/download_ARMOR3D_0.125def_P1M-m_1993_2024.py +33 -0
  24. OceanDataStore/data/ARMOR3D/run_create_ARMOR3D_P1M-m_monthly_climatology.slurm +32 -0
  25. OceanDataStore/data/ARMOR3D/run_send_ARMOR3D_P1M-m_climatology_to_os.slurm +32 -0
  26. OceanDataStore/data/ARMOR3D/run_send_ARMOR3D_P1M-m_monthly_to_os.slurm +32 -0
  27. OceanDataStore/data/ARMOR3D/run_update_ARMOR3D_P1m-m_monthly_to_os.slurm +32 -0
  28. OceanDataStore/data/ARMOR3D/send_ARMOR3D_P1m-m_monthly_climatology_to_os.py +99 -0
  29. OceanDataStore/data/ARMOR3D/send_ARMOR3D_P1m-m_monthly_to_os.py +147 -0
  30. OceanDataStore/data/ARMOR3D/update_ARMOR3D_P1m-m_monthly_to_os.py +143 -0
  31. OceanDataStore/data/EN.4.2.2/create_EN4.2.2_analysis_g10_climatology.py +162 -0
  32. OceanDataStore/data/EN.4.2.2/download_EN4.2.2_analysis_g10_data.sh +51 -0
  33. OceanDataStore/data/EN.4.2.2/run_send_EN4.2.2_analysis_g10_climatology_to_os.slurm +32 -0
  34. OceanDataStore/data/EN.4.2.2/run_send_EN4.2.2_analysis_g10_monthly_to_os.slurm +32 -0
  35. OceanDataStore/data/EN.4.2.2/run_update_EN4.2.2_analysis_g10_monthly_to_os.slurm +32 -0
  36. OceanDataStore/data/EN.4.2.2/send_EN4.2.2_analysis_g10_monthly_climatology_to_os.py +76 -0
  37. OceanDataStore/data/EN.4.2.2/send_EN4.2.2_analysis_g10_monthly_to_os.py +165 -0
  38. OceanDataStore/data/EN.4.2.2/update_EN4.2.2_analysis_g10_monthly_to_os.py +161 -0
  39. OceanDataStore/data/ERA5/create_ERA5_daily_climatology.py +110 -0
  40. OceanDataStore/data/ERA5/create_ERA5_daily_mean.py +69 -0
  41. OceanDataStore/data/ERA5/create_ERA5_monthly_mean.py +74 -0
  42. OceanDataStore/data/ERA5/run_create_ERA5_daily_climatology.slurm +54 -0
  43. OceanDataStore/data/ERA5/run_send_ERA5_daily_climatology_to_os.slurm +32 -0
  44. OceanDataStore/data/ERA5/run_send_ERA5_daily_to_os.slurm +32 -0
  45. OceanDataStore/data/ERA5/run_send_ERA5_monthly_to_os.slurm +32 -0
  46. OceanDataStore/data/ERA5/run_update_ERA5_daily_to_os.slurm +32 -0
  47. OceanDataStore/data/ERA5/run_update_ERA5_monthly_to_os.slurm +32 -0
  48. OceanDataStore/data/ERA5/send_ERA5_daily_climatology_to_os.py +159 -0
  49. OceanDataStore/data/ERA5/send_ERA5_daily_to_os.py +141 -0
  50. OceanDataStore/data/ERA5/send_ERA5_monthly_to_os.py +173 -0
  51. OceanDataStore/data/ERA5/update_ERA5_daily_to_os.py +141 -0
  52. OceanDataStore/data/ERA5/update_ERA5_monthly_to_os.py +169 -0
  53. OceanDataStore/data/HadISST/download_HadISST1_data.sh +43 -0
  54. OceanDataStore/data/HadISST/run_send_HadISST1_monthly_to_os.slurm +32 -0
  55. OceanDataStore/data/HadISST/send_HadISST1_monthly_to_os.py +133 -0
  56. OceanDataStore/data/NSIDC/download_NSIDC_monthly_1979_2025_data.sh +54 -0
  57. OceanDataStore/data/NSIDC/process_NSIDC_SSI_Antarctic_data.py +130 -0
  58. OceanDataStore/data/NSIDC/process_NSIDC_SSI_Arctic_data.py +129 -0
  59. OceanDataStore/data/NSIDC/run_send_NSIDC_v4.0_to_OS.slurm +32 -0
  60. OceanDataStore/data/NSIDC/send_NSIDC_SII_v4.0_to_os.py +140 -0
  61. OceanDataStore/data/OISST/create_OISSTv2_daily_climatology.py +83 -0
  62. OceanDataStore/data/OISST/download_oisstv2_data.sh +43 -0
  63. OceanDataStore/data/OISST/run_create_OISSTv2_daily_climatology.slurm +44 -0
  64. OceanDataStore/data/OISST/run_send_OISSTv2_daily_climatology_to_os.slurm +32 -0
  65. OceanDataStore/data/OISST/run_send_OISSTv2_daily_to_os.slurm +32 -0
  66. OceanDataStore/data/OISST/run_send_OISSTv2_monthly_climatology_to_os.slurm +32 -0
  67. OceanDataStore/data/OISST/run_send_OISSTv2_monthly_to_os.slurm +32 -0
  68. OceanDataStore/data/OISST/run_update_OISSTv2_daily_to_os.slurm +32 -0
  69. OceanDataStore/data/OISST/send_OISSTv2_daily_climatology_to_os.py +154 -0
  70. OceanDataStore/data/OISST/send_OISSTv2_daily_ltm_climatology_to_os.py +151 -0
  71. OceanDataStore/data/OISST/send_OISSTv2_daily_to_os.py +142 -0
  72. OceanDataStore/data/OISST/send_OISSTv2_monthly_climatology_to_os.py +150 -0
  73. OceanDataStore/data/OISST/send_OISSTv2_monthly_to_os.py +145 -0
  74. OceanDataStore/data/OISST/update_OISSTv2_daily_to_os.py +142 -0
  75. OceanDataStore/data/OSTIA/create_OSTIA_daily_climatology.py +120 -0
  76. OceanDataStore/data/OSTIA/download_OSTIA_NRT.py +42 -0
  77. OceanDataStore/data/OSTIA/download_OSTIA_REP_1981_2025.py +42 -0
  78. OceanDataStore/data/OSTIA/run_create_OSTIA_daily_climatology.slurm +54 -0
  79. OceanDataStore/data/OSTIA/run_send_OSTIA_daily_climatology_to_os.slurm +32 -0
  80. OceanDataStore/data/OSTIA/run_send_OSTIA_nrt_daily_to_os.slurm +32 -0
  81. OceanDataStore/data/OSTIA/run_send_OSTIA_rep_daily_to_os.slurm +32 -0
  82. OceanDataStore/data/OSTIA/run_update_OSTIA_daily_to_os.slurm +33 -0
  83. OceanDataStore/data/OSTIA/send_OSTIA_daily_climatology_to_os.py +194 -0
  84. OceanDataStore/data/OSTIA/send_OSTIA_nrt_daily_to_os.py +141 -0
  85. OceanDataStore/data/OSTIA/send_OSTIA_rep_daily_to_os.py +145 -0
  86. OceanDataStore/data/OSTIA/update_OSTIA_copernicus_nrt_daily_to_os.py +144 -0
  87. OceanDataStore/data/OSTIA/update_OSTIA_nrt_daily_to_os.py +137 -0
  88. OceanDataStore/data/WOA23/download_WOA23_climatology.sh +41 -0
  89. OceanDataStore/data/WOA23/run_send_WOA23_annual_climatology_to_os.slurm +32 -0
  90. OceanDataStore/data/WOA23/run_send_WOA23_monthly_climatology_to_os.slurm +32 -0
  91. OceanDataStore/data/WOA23/send_WOA23_annual_climatology_to_os.py +263 -0
  92. OceanDataStore/data/WOA23/send_WOA23_monthly_climatology_to_os.py +292 -0
  93. OceanDataStore/data/update_icechunk_repo_attrs.py +76 -0
  94. OceanDataStore/data/update_noc_npd_era5v1_attrs.py +172 -0
  95. OceanDataStore/data/utils.py +506 -0
  96. OceanDataStore/zarr.py +993 -0
  97. oceandatastore-0.3.0.dist-info/METADATA +184 -0
  98. oceandatastore-0.3.0.dist-info/RECORD +104 -0
  99. oceandatastore-0.3.0.dist-info/WHEEL +5 -0
  100. oceandatastore-0.3.0.dist-info/entry_points.txt +2 -0
  101. oceandatastore-0.3.0.dist-info/licenses/LICENSE +201 -0
  102. oceandatastore-0.3.0.dist-info/scm_file_list.json +154 -0
  103. oceandatastore-0.3.0.dist-info/scm_version.json +8 -0
  104. oceandatastore-0.3.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,184 @@
1
+ Metadata-Version: 2.4
2
+ Name: OceanDataStore
3
+ Version: 0.3.0
4
+ Summary: OceanDataStore is an open-source Python library for creating, publishing, discovering, and accessing cloud-native ocean datasets.
5
+ Author: Ollie Tooth, Joao Morado
6
+ Author-email: oliver.tooth@noc.ac.uk, joao.morado@noc.ac.uk
7
+ Maintainer: Ollie Tooth
8
+ Maintainer-email: oliver.tooth@noc.ac.uk
9
+ License: Apache-2.0
10
+ Project-URL: Home, https://github.com/NOC-MSM/OceanDataStore
11
+ Project-URL: Documentation, https://noc-msm.github.io/OceanDataStore/
12
+ Keywords: data,model,object store,tookit,cloud,zarr,noc
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Intended Audience :: Science/Research
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Scientific/Engineering
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+ License-File: LICENSE
24
+ Requires-Dist: dask[distributed]>=2025.2.0
25
+ Requires-Dist: aiobotocore>=2.17.0
26
+ Requires-Dist: botocore>=1.35.93
27
+ Requires-Dist: h5netcdf>=1.6.1
28
+ Requires-Dist: xarray>=2025.1.2
29
+ Requires-Dist: icechunk>=2.0.0
30
+ Requires-Dist: pystac>=1.13.0
31
+ Requires-Dist: shapely>=2.1.2
32
+ Requires-Dist: s3fs>=2025.3.0
33
+ Requires-Dist: tqdm>=4.67.1
34
+ Requires-Dist: fsspec>=2025.3.0
35
+ Requires-Dist: numpy>=2.2.3
36
+ Requires-Dist: zarr>=3.0.7
37
+ Provides-Extra: tests
38
+ Requires-Dist: pytest>=8.3.3; extra == "tests"
39
+ Requires-Dist: pytest-mock>=3.15.1; extra == "tests"
40
+ Dynamic: license-file
41
+
42
+ <p align="left">
43
+ <img src="./docs/docs/assets/icons/noc_logo_black.png" alt="National Oceanography Centre logo" width="190" height="65">
44
+ &nbsp;&nbsp;
45
+ <img src="./docs/docs/assets/icons/OceanDataStore_logo.png" alt="OceanDataStore logo" width="150" height="100">
46
+ </p>
47
+
48
+ # **OceanDataStore**
49
+
50
+ [![Xarray](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/pydata/xarray/refs/heads/main/doc/badge.json)](https://xarray.dev)
51
+ [![Powered by Pixi](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/prefix-dev/pixi/main/assets/badge/v0.json)](https://pixi.sh)
52
+ [![Tests](https://github.com/NOC-MSM/OceanDataStore/actions/workflows/ci_tests.yml/badge.svg?branch=dev)](https://github.com/NOC-MSM/OceanDataStore/actions/workflows/ci_tests.yml?query=branch%3Adev)
53
+ [![Docs](https://github.com/NOC-MSM/OceanDataStore/actions/workflows/ci_docs.yml/badge.svg?branch=dev)](https://github.com/NOC-MSM/OceanDataStore/actions/workflows/ci_docs.yml?query=branch%3Adev)
54
+
55
+ **OceanDataStore** is an open-source Python library for creating, publishing, discovering, and accessing cloud-native ocean datasets.
56
+
57
+ **OceanDataStore** enables ocean modelling and observational communities to work with Analysis-Ready, Cloud-Optimised (**ARCO**) datasets stored in object storage, including a:
58
+
59
+ * Command Line Interface (**CLI**) to convert traditional ocean datasets into scalable cloud formats such as Zarr stores and Icechunk repositories.
60
+
61
+ * Intuitive **OceanDataCatalog** API to discover and access datasets using Spatio-Temporal Asset Catalog (**STAC**) metadata.
62
+
63
+
64
+ ## **Why OceanDataStore?**
65
+
66
+ Traditional ocean datasets are often distributed as collections of thousands of NetCDF files stored on HPC systems or remote archives. Accessing these datasets can require substantial data transfers, complex file management, and bespoke workflows.
67
+
68
+ **OceanDataStore** adopts a cloud-native approach where datasets are stored in **ARCO** formats and described through a searchable **STAC** catalogue.
69
+
70
+ This enables users to:
71
+
72
+ * Access only the variables, time periods, and spatial domains required for analysis.
73
+ * Open datasets directly as `xarray.Dataset` objects without downloading complete archives.
74
+ * Work seamlessly with the scientific Python ecosystem, including xarray, dask, and zarr.
75
+ * Build scalable, reproducible workflows for ocean science.
76
+
77
+ ## **Key Features**
78
+
79
+ 🌊 **Discover and access ocean datasets with OceanDataCatalog**
80
+ * Search STAC catalogs for available ocean model and observational datasets.
81
+ * Explore dataset metadata and available variables.
82
+ * Open cloud-hosted datasets directly as lazy `xarray.Dataset` objects.
83
+
84
+ ☁️ **Create and publish ARCO ocean datasets**
85
+ * Convert collections of NetCDF files into cloud-native Zarr datasets.
86
+ * Write directly to S3-compatible object storage.
87
+ * Use Dask for parallel processing of large simulations and observational products.
88
+
89
+ 🔄 **Support reproducible ocean data workflows**
90
+ * Integrate ocean model output and observations through a common access interface.
91
+ * Develop scalable model validation workflows.
92
+ * Facilitate FAIR data practices for ocean science.
93
+
94
+
95
+ ## **Installation**
96
+ We recommend installing **OceanDataStore** within a dedicated Python environment using venv, conda, or mamba.
97
+ Install the latest development version directly from GitHub:
98
+
99
+ ```bash
100
+ pip install git+https://github.com/NOC-MSM/OceanDataStore.git
101
+ ```
102
+
103
+ ### **Quick Start**
104
+
105
+ **1. Create and Publish an ARCO Dataset**
106
+
107
+ **OceanDataStore** provides command-line tools for converting collections of NetCDF files into Zarr datasets stored in S3-compatible object storage.
108
+
109
+ For example, a large ocean model simulation can be converted into a cloud-native dataset using:
110
+
111
+ ```bash
112
+ ods send_to_zarr \
113
+ -f /path/to/files*.nc \
114
+ -c credentials.json \
115
+ -b my_bucket \
116
+ -p my_ocean_model \
117
+ -cs '{"x": 2160, "y": 1803}' \
118
+ -dc dask_config.json \
119
+ -zv 3
120
+ ```
121
+
122
+ More complete publishing workflows and examples are available in the `examples` directory and documentation.
123
+
124
+
125
+ **2. Discover and Access Ocean Datasets**
126
+
127
+ **OceanDataCatalog** provides a Python interface for searching, exploring, and opening datasets described by **STAC** metadata.
128
+
129
+ ```python
130
+ from oceandatastore import OceanDataCatalog
131
+
132
+ # Connect to the NOC STAC catalog:
133
+ catalog = OceanDataCatalog(catalog_name="noc-stac")
134
+
135
+ # Search the catalog:
136
+ catalog.search(
137
+ collection="noc-npd-era5"
138
+ )
139
+
140
+ # Open a dataset directly as an xarray.Dataset:
141
+ ds = catalog.open_dataset(
142
+ id="noc-npd-era5/npd-eorca1-era5v1/r1i1c1f1/gn/T1m",
143
+ variable_names=["tos_con"],
144
+ start_datetime="2004-01",
145
+ end_datetime="2008-12",
146
+ )
147
+ ```
148
+
149
+ Since datasets are opened lazily using xarray and dask, analyses can scale from a laptop to HPC and cloud environments.
150
+
151
+
152
+
153
+ ## **Scientific Use Cases**
154
+
155
+ **OceanDataStore** supports a broad range of ocean science workflows, including:
156
+
157
+ **Ocean Model Validation**
158
+ * Compare ocean simulations against observational products using a common data access pattern.
159
+
160
+ * Build reproducible evaluation workflows across multiple models and experiments.
161
+
162
+ **Cloud-Native Model Archives**
163
+ * Publish large-scale ocean simulations as FAIR, discoverable datasets without sharing raw file archives.
164
+
165
+ **Ocean Observations**
166
+ * Access observational products alongside model output through a single catalog interface.
167
+
168
+
169
+ ### **Documentation**
170
+ Documentation, examples, and API references are available [**here**](https://noc-msm.github.io/OceanDataStore/)
171
+
172
+
173
+ ## **Contributing**
174
+ **OceanDataStore** is under active development and we welcome feedback and contributions from the ocean modelling, observational, and wider marine data communities.
175
+
176
+
177
+ ## **Funding**
178
+ The ongoing development of OceanDataStore is funded by the following projects:
179
+
180
+ - **AtlantiS**: [Atlantic Climate and Environment Strategic Science](https://atlantis.ac.uk)
181
+
182
+ ## **Contact**
183
+
184
+ Ollie Tooth (oliver.tooth@noc.ac.uk)
@@ -0,0 +1,104 @@
1
+ OceanDataStore/__init__.py,sha256=hU1OWdZVUzu3v91v5lqf_anKA4_wFT_cT6xn9lNghLk,630
2
+ OceanDataStore/zarr.py,sha256=9sEv5xO3UiTIYSaExkx-EUhAU2uQLWl-NXdVEZQJtDE,38074
3
+ OceanDataStore/catalog/__init__.py,sha256=8SIMYsVn5QzTHWYjHk9r2tshbovNQ62m61_hmHFIENI,421
4
+ OceanDataStore/catalog/oceandatacatalog.py,sha256=Ih-itsJDxAmr-ZyxCde0J1bJzTh3QxglrkbT71vUhvw,45370
5
+ OceanDataStore/catalog/stac/README.md,sha256=ZTB4SzGyy5avM4JBq6FbuEB7S1eH8zDYXIng-mrZXdA,1417
6
+ OceanDataStore/catalog/stac/__init__.py,sha256=3EMDqFrcLKXc8drCbUe-NwqMKDJPzxKgFyR3ZQiW-y8,1001
7
+ OceanDataStore/catalog/stac/create_noc_stac.py,sha256=vjAX-xoH81qtltX9SuL89I0V83Lkbm3xsuLO2F6jqT4,4591
8
+ OceanDataStore/catalog/stac/npd_era5_collection.py,sha256=TdH_WsDbXWdgUvu-3fvIZBU329gkRi0yiq2lFsTlQmI,17562
9
+ OceanDataStore/catalog/stac/npd_jra55_collection.py,sha256=kq8qVzF-L6cX8wXQkmn9Kqi3we4sf6WTs4sINvgLmDo,8531
10
+ OceanDataStore/catalog/stac/ods_obs_collection.py,sha256=3L3cjuKjTCS8t8OedO5Ks3deutV6UJFaNNPVk4jJWGI,22856
11
+ OceanDataStore/catalog/stac/rapid_evo_collection.py,sha256=Y9hrE-BZiCOsLqBBYLnrVAMKjuU7DWPmSYdLlE3VVWo,14370
12
+ OceanDataStore/catalog/stac/template_collection.py,sha256=4QCYKYo9DoOi3-jNDh89JMhBfrKpZBipsbdfI2Kkb6Y,3487
13
+ OceanDataStore/catalog/stac/utils.py,sha256=15vIzqp2o0agUvoinBiZCO7cMUNxEEqgokORE7gwKDc,24242
14
+ OceanDataStore/cli/__init__.py,sha256=etxp7oJROE7O5AWvryG-d9ErZfZpGfHAG-Yq-8vHgWE,1434
15
+ OceanDataStore/cli/arg_parser.py,sha256=-YLMAsI_HHthybKWMAAJ_TZBJKtyU8S4ncNPNBnLfGQ,5100
16
+ OceanDataStore/cli/cli.py,sha256=WbHOZ33hdxSbeJH4rmmqVICRzR-x_65ovWiVESFaS1M,6852
17
+ OceanDataStore/cli/exceptions.py,sha256=ed7V0gQZ0w9Ud7GLERbPwNIs3bp6Vo9RAbS-8htrABw,2986
18
+ OceanDataStore/cli/icechunk.py,sha256=_MIttOVECK9sjwbNz3DXUjZCn7XlOG-bxXyK0ctyY1U,38677
19
+ OceanDataStore/cli/logging.py,sha256=8LVhcMlEWrGDLYS9yTKSj-IRY8YqDReddSyv3cO_Y-4,1487
20
+ OceanDataStore/cli/object_store.py,sha256=QA_8FKlcja9xm5SVDsXrS9s4UfwQ90x9qKluYcT3Ybw,9682
21
+ OceanDataStore/cli/utils.py,sha256=WOR6sxGAd69ry7PNUPeZTiylwsZj0sf0ObW151pAPVU,10113
22
+ OceanDataStore/cli/zarr.py,sha256=hTkPpNQVicNH-76Bsi5NzXCdJ1ifviqef7q0fG435vA,33468
23
+ OceanDataStore/data/update_icechunk_repo_attrs.py,sha256=MNpyZmvLnNU1BdxKLpHal8SiuNOkFkSwhbu0FP2k6tM,4208
24
+ OceanDataStore/data/update_noc_npd_era5v1_attrs.py,sha256=RTn6UZfofhUykNIigV_t8snkcykQgeydXof62-0ai0g,8390
25
+ OceanDataStore/data/utils.py,sha256=KMXaFr7jh0ekLkeFZbWuN58_8W6AsnnA7qf3PQp_Hhw,17066
26
+ OceanDataStore/data/ARMOR3D/create_ARMOR3D_P1M-m_monthly_climatology.py,sha256=hpRTMYOKGT5k7ufTH7oqwX_3XGG3nsOlqznNECFGTN4,7553
27
+ OceanDataStore/data/ARMOR3D/download_ARMOR3D_0.125def_P1M-m_1993_2024.py,sha256=GfVsmdVSnbFEifUyqo65wUGzxJRimaO65RCHJNwedxE,1219
28
+ OceanDataStore/data/ARMOR3D/run_create_ARMOR3D_P1M-m_monthly_climatology.slurm,sha256=82hTjZIm2D3NJgBWSxF2zXiyQFzDysz8ds_sE_Y8924,960
29
+ OceanDataStore/data/ARMOR3D/run_send_ARMOR3D_P1M-m_climatology_to_os.slurm,sha256=PiIail29-Kh1NUvx69SNIyjXQLRmt3g8KwgYlcFd-Jg,1006
30
+ OceanDataStore/data/ARMOR3D/run_send_ARMOR3D_P1M-m_monthly_to_os.slurm,sha256=C9hTAgYK4NdCwkKfBj9E4FbPn7Mx_-cJ8ai0y5fK4Qk,923
31
+ OceanDataStore/data/ARMOR3D/run_update_ARMOR3D_P1m-m_monthly_to_os.slurm,sha256=aPAAPt-DixKj5JwQsQNx7FbYKNNub1LQivMBehJZitI,939
32
+ OceanDataStore/data/ARMOR3D/send_ARMOR3D_P1m-m_monthly_climatology_to_os.py,sha256=EZfjXubw3ulJ5wqMGQDNPMOIGcOpXOGkvhqtRvtUiB0,4124
33
+ OceanDataStore/data/ARMOR3D/send_ARMOR3D_P1m-m_monthly_to_os.py,sha256=PAkyiVs0uN_0g3wii3IO7VZLdOyU7tceBf0JZUMPbNU,6984
34
+ OceanDataStore/data/ARMOR3D/update_ARMOR3D_P1m-m_monthly_to_os.py,sha256=teXFOS5QsHLJD3e5qYKpCCEDIdWh6KdvpEmUjgH5mw8,6872
35
+ OceanDataStore/data/EN.4.2.2/create_EN4.2.2_analysis_g10_climatology.py,sha256=PGEpZzRxnAe5431yZyE7N7yJt4OWSZf81Bsdoh_4TDo,7938
36
+ OceanDataStore/data/EN.4.2.2/download_EN4.2.2_analysis_g10_data.sh,sha256=jEaZLSMectU7LPMcWnY5Rdw7Flrf-7hDcLdCPaDPcsE,1739
37
+ OceanDataStore/data/EN.4.2.2/run_send_EN4.2.2_analysis_g10_climatology_to_os.slurm,sha256=yWgpDzRB5ueG2FYM2asDz8NGa2SY79kiFjWLyckPMrw,1022
38
+ OceanDataStore/data/EN.4.2.2/run_send_EN4.2.2_analysis_g10_monthly_to_os.slurm,sha256=tDfxf6oBXmpaPBECsu21IwF6otUKbuMEdVJvanevghI,980
39
+ OceanDataStore/data/EN.4.2.2/run_update_EN4.2.2_analysis_g10_monthly_to_os.slurm,sha256=46TJWY2_gNtxyIT_3CUofSNlakcVMft62dpatpPDXrA,992
40
+ OceanDataStore/data/EN.4.2.2/send_EN4.2.2_analysis_g10_monthly_climatology_to_os.py,sha256=ZFyaYj4CRXdM_nnejm0J9H-mn1rUyfQCTCa84-Z0hoI,2866
41
+ OceanDataStore/data/EN.4.2.2/send_EN4.2.2_analysis_g10_monthly_to_os.py,sha256=YaHuj58rNxjHTqWJUxdxHyZoq8axg3p4IRvmIwap9Wk,6755
42
+ OceanDataStore/data/EN.4.2.2/update_EN4.2.2_analysis_g10_monthly_to_os.py,sha256=lnXwgPQmFy1eImE_MTUoh_0LVQLXcwmGGYW6vrJPlh0,6643
43
+ OceanDataStore/data/ERA5/create_ERA5_daily_climatology.py,sha256=VCv4bKKfHgtGiD6NmOfnGouSAwprXC3zoHL2kQsijio,3258
44
+ OceanDataStore/data/ERA5/create_ERA5_daily_mean.py,sha256=0-Oujh3JiHf5Gb58hLg5WN3gN2YR3UTKzQL_82FgcfY,2751
45
+ OceanDataStore/data/ERA5/create_ERA5_monthly_mean.py,sha256=jAUUH7fA4EzLa78km5f5kKsBcI6vQaexGe6FhOkoa74,2911
46
+ OceanDataStore/data/ERA5/run_create_ERA5_daily_climatology.slurm,sha256=Tvaot2KL-4mPDYa0U84sTXU_aXxxcNMLAlwK640bbl0,1366
47
+ OceanDataStore/data/ERA5/run_send_ERA5_daily_climatology_to_os.slurm,sha256=RT8S9H-PB3ZZpuBbMgutZlOA5ei435G1UGiCbudLvxg,964
48
+ OceanDataStore/data/ERA5/run_send_ERA5_daily_to_os.slurm,sha256=nFasPJOU8mCnDW5-EHwT4vfC14Vd4Gsa_t2uJW9AYF8,932
49
+ OceanDataStore/data/ERA5/run_send_ERA5_monthly_to_os.slurm,sha256=ACxyZydmOtxSQV1X3D621CdXIC2bd3s6zS0gu3yXIw0,952
50
+ OceanDataStore/data/ERA5/run_update_ERA5_daily_to_os.slurm,sha256=Sg8oMTTfVySg3oi8C6s6CFqtmuNpcU8pmgBUq2d2dMo,950
51
+ OceanDataStore/data/ERA5/run_update_ERA5_monthly_to_os.slurm,sha256=dcUBhUUZrqunXAiMh1moEWG9XKTSGzrKWC5A7w01H9A,970
52
+ OceanDataStore/data/ERA5/send_ERA5_daily_climatology_to_os.py,sha256=Qx6_D4qlVXGBlMX5BaAQqwpY374VOHz5OkqnZpsWjxE,7137
53
+ OceanDataStore/data/ERA5/send_ERA5_daily_to_os.py,sha256=gIc_oDLqAD0OgQLuqP7BEBDA2uw_2ivrdv7KAyPCgD4,6212
54
+ OceanDataStore/data/ERA5/send_ERA5_monthly_to_os.py,sha256=TSGAaZo1XPkh8N9hXRnO-zFE3QY3oTtox6-UFm5mfLw,7812
55
+ OceanDataStore/data/ERA5/update_ERA5_daily_to_os.py,sha256=WJhHodjKKM4RKN6ww4Qy4NK1P8vpRma_tFbt0qBd188,6230
56
+ OceanDataStore/data/ERA5/update_ERA5_monthly_to_os.py,sha256=QXpsqAfJuayuwj44ytp38lM2klRcZz9Apg-tYrVfJuQ,7698
57
+ OceanDataStore/data/HadISST/download_HadISST1_data.sh,sha256=TRtVZhcO0xLpMO29u68UKX3Q_laSJFnMn_wb121yJ7Q,1455
58
+ OceanDataStore/data/HadISST/run_send_HadISST1_monthly_to_os.slurm,sha256=kpC5JwhHDh-wHvKm0SCL_X8FbJoGbug8Pm6FbQrnGiU,966
59
+ OceanDataStore/data/HadISST/send_HadISST1_monthly_to_os.py,sha256=K65z9kMtrAAAsOJ3FK_SKsIg7rLITjiSBNj-G6kGeLc,5915
60
+ OceanDataStore/data/NSIDC/download_NSIDC_monthly_1979_2025_data.sh,sha256=i9ZRasihx2lNhH4kKkOjztGWAGtsKrPz9oX1nR1ssDE,2003
61
+ OceanDataStore/data/NSIDC/process_NSIDC_SSI_Antarctic_data.py,sha256=CIC0FFv0-T8b9o2Izg4VBeVuJGYOz-ePxhJaI7xHNao,6223
62
+ OceanDataStore/data/NSIDC/process_NSIDC_SSI_Arctic_data.py,sha256=sBw2TXx-r270RQzLJmCLQ03Tfpvi08xAJ60tYTDvlUc,6191
63
+ OceanDataStore/data/NSIDC/run_send_NSIDC_v4.0_to_OS.slurm,sha256=ornpkrsDRi6iFwyEjPHFCoO3_fuvQXdimrii6bRnwIQ,931
64
+ OceanDataStore/data/NSIDC/send_NSIDC_SII_v4.0_to_os.py,sha256=s59lYK0nLuxjZJEk7UZO5asJv6dQmIKt67gANbF20lc,7360
65
+ OceanDataStore/data/OISST/create_OISSTv2_daily_climatology.py,sha256=hevpSLwZXFYXqatr-u1Ytk1DaaCSsGY_e8VfkWaw4_g,3182
66
+ OceanDataStore/data/OISST/download_oisstv2_data.sh,sha256=taos97_2IpIHWTxPmMTvi9s6Bai-T7QLEgk6kahYtaI,1424
67
+ OceanDataStore/data/OISST/run_create_OISSTv2_daily_climatology.slurm,sha256=-vb3AO1zUgpMhosYjG9FEeWFcBESsv2LhARNzGU1eFU,1457
68
+ OceanDataStore/data/OISST/run_send_OISSTv2_daily_climatology_to_os.slurm,sha256=3Iq58v1_JrFZTtJt4kyfn03_kCGjEWh1on-0lv1WlfQ,990
69
+ OceanDataStore/data/OISST/run_send_OISSTv2_daily_to_os.slurm,sha256=RobkaAUfl7yQ9aMq-R-SvWa0lRVLfUs0NSlzpHjP-no,961
70
+ OceanDataStore/data/OISST/run_send_OISSTv2_monthly_climatology_to_os.slurm,sha256=NW8nVlovhl1-PBm5mvmVn7eBfiaEVE0wnLbvSx8XgUs,983
71
+ OceanDataStore/data/OISST/run_send_OISSTv2_monthly_to_os.slurm,sha256=YXTU4uW9hHMEDcgE_Nu6iESUYIH4VJD1fyCfr3Tgw0Y,946
72
+ OceanDataStore/data/OISST/run_update_OISSTv2_daily_to_os.slurm,sha256=7Fj3DIYxYfIKqIr-D6RdMTyOhFakDI80nCzWzhKi1Ko,975
73
+ OceanDataStore/data/OISST/send_OISSTv2_daily_climatology_to_os.py,sha256=wrczRUBLrJt4aIi2ikESf_53QVvTlo4kfZ0KIcLQfKw,7326
74
+ OceanDataStore/data/OISST/send_OISSTv2_daily_ltm_climatology_to_os.py,sha256=LTx2uSTg8MXB3zhC880FDt89rIAylJ5errvjz1tsdnk,7327
75
+ OceanDataStore/data/OISST/send_OISSTv2_daily_to_os.py,sha256=AU0e-qUGaCieOa55n2YA2747lgml4UI-WP4Cnt4559I,6676
76
+ OceanDataStore/data/OISST/send_OISSTv2_monthly_climatology_to_os.py,sha256=kLprfMdBllzLDV9RGCoAQEQVIuschaoyk22Dc0cfuIM,7344
77
+ OceanDataStore/data/OISST/send_OISSTv2_monthly_to_os.py,sha256=TS8ST2Ne-08GsbZcDBUGjkihnrku7Q3UBHyOr0JiakI,7270
78
+ OceanDataStore/data/OISST/update_OISSTv2_daily_to_os.py,sha256=9o_zZ8Siz_N1DparLaC8z3otYezQVfHTr-4iLBMwlXI,6691
79
+ OceanDataStore/data/OSTIA/create_OSTIA_daily_climatology.py,sha256=LkcGVzw41slxmXAbje_Cc_13NGelAIr915K46vhVItk,4835
80
+ OceanDataStore/data/OSTIA/download_OSTIA_NRT.py,sha256=paqLpoOzMffZtgj_uovuSj7lFRSI3oP9w0HkbClfjWg,1456
81
+ OceanDataStore/data/OSTIA/download_OSTIA_REP_1981_2025.py,sha256=NCdXkpoKsfx-e1Es4Id0QvYqyrxQrBeR5D3phk2GTiw,1463
82
+ OceanDataStore/data/OSTIA/run_create_OSTIA_daily_climatology.slurm,sha256=hutKF8LHWdOoBqDZDBi-EdWUcYVPiQTo8K9kYHoq-sU,1376
83
+ OceanDataStore/data/OSTIA/run_send_OSTIA_daily_climatology_to_os.slurm,sha256=XrI1xhcw85rkO7hvu0ZYCX1ZZPSD_slngC1u9ZkYeos,968
84
+ OceanDataStore/data/OSTIA/run_send_OSTIA_nrt_daily_to_os.slurm,sha256=exyQcZ3ELOALf3eyQK8Wjox0_1MB5GatKW-4V5oe8HU,996
85
+ OceanDataStore/data/OSTIA/run_send_OSTIA_rep_daily_to_os.slurm,sha256=QD-vrweGEC5Kq2oxoFJYf9dWRLaLGZ1oNioZxM4yi_I,987
86
+ OceanDataStore/data/OSTIA/run_update_OSTIA_daily_to_os.slurm,sha256=xVlOAT2HF_kSL1qSscHt_fMMsBCB8bodFcN4mYA-pKQ,1038
87
+ OceanDataStore/data/OSTIA/send_OSTIA_daily_climatology_to_os.py,sha256=3QhU4Q7BFFPlSkL0MI7ppdqHd6mygw9m3jXDqPKPXro,8261
88
+ OceanDataStore/data/OSTIA/send_OSTIA_nrt_daily_to_os.py,sha256=BKUcesJSTp0uG0FfIBzdneuOMgdwdJ1_vgO7JHG3HQ0,6869
89
+ OceanDataStore/data/OSTIA/send_OSTIA_rep_daily_to_os.py,sha256=f0qu51y18YCwCJAvXz2WdZeqOLnEuFKPq2p29Qfjmpg,6388
90
+ OceanDataStore/data/OSTIA/update_OSTIA_copernicus_nrt_daily_to_os.py,sha256=lqE_90T3fU0oTUY799NXRBqTiva-TE7GOuLdEd6s3VY,6917
91
+ OceanDataStore/data/OSTIA/update_OSTIA_nrt_daily_to_os.py,sha256=w0WQhB0_Qpq5CKYX88WqFppBqeNvYyqlubxvo6eZGz4,6756
92
+ OceanDataStore/data/WOA23/download_WOA23_climatology.sh,sha256=5_P8vJ0h94jIhYlYY9V71NeW2jrmMy1nBsKsQBhyPwE,2446
93
+ OceanDataStore/data/WOA23/run_send_WOA23_annual_climatology_to_os.slurm,sha256=tYZyn38CDyrx3TJz0wKeMKTABKXIG88JCqbICAvnji8,951
94
+ OceanDataStore/data/WOA23/run_send_WOA23_monthly_climatology_to_os.slurm,sha256=3rFg7AmTmSXLtNEG55vVZqS7xltFiPZniMekePiYqXQ,958
95
+ OceanDataStore/data/WOA23/send_WOA23_annual_climatology_to_os.py,sha256=yiQ_HtiQmkxsnKwHe_K0URjF2OiJP8H2cAVISjKEMUY,12924
96
+ OceanDataStore/data/WOA23/send_WOA23_monthly_climatology_to_os.py,sha256=QY8lWIZy0-xepceN-gB01FOub3cRPwobaO_hWqzv2gQ,14009
97
+ oceandatastore-0.3.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
98
+ oceandatastore-0.3.0.dist-info/METADATA,sha256=FwWGpgz4pFn1FjETcs5sDIoy8ukYn9K433h79mhFdXE,7503
99
+ oceandatastore-0.3.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
100
+ oceandatastore-0.3.0.dist-info/entry_points.txt,sha256=niP8--obhbAm4IoA6ddDrfkwMkuX_-Ha-h5Rb95G_kY,51
101
+ oceandatastore-0.3.0.dist-info/scm_file_list.json,sha256=tTQ7Imb9b0Kphqzf5wt6SGx89nob7OmNyuZlxNNEuwM,8478
102
+ oceandatastore-0.3.0.dist-info/scm_version.json,sha256=EOgeXjzCQtGeY68z4jYF7Pm-R5noUT_fGbBTuxRetlE,160
103
+ oceandatastore-0.3.0.dist-info/top_level.txt,sha256=AbJmFIqQIYi2OAzZt5HY4VxU-hZWX3NgjbmH9tLem-4,15
104
+ oceandatastore-0.3.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ods = OceanDataStore.cli.cli:ods
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.