Skip to content

Commit 166ba0a

Browse files
committed
backup
1 parent 59d27c8 commit 166ba0a

File tree

2 files changed

+91
-0
lines changed

2 files changed

+91
-0
lines changed

xcube_multistore/accessors/base.py

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# MIT License
2+
#
3+
# Copyright (c) 2025 Brockmann Consult GmbH
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in all
13+
# copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
23+
from abc import ABC
24+
25+
import xarray as xr
26+
from xcube.core.mldataset import MultiLevelDataset
27+
from xcube.core.store import DataStore
28+
29+
30+
class Accessor(ABC):
31+
"""Provides methods for accessing dataset from a data store"""
32+
33+
def open_data(
34+
self,
35+
store: DataStore,
36+
data_id: str,
37+
**open_params,
38+
) -> xr.Dataset | MultiLevelDataset:
39+
"""Open and return the dataset corresponding to data ID."""
40+
return store.open_data(data_id, **open_params)

xcube_multistore/accessors/clms.py

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# MIT License
2+
#
3+
# Copyright (c) 2025 Brockmann Consult GmbH
4+
#
5+
# Permission is hereby granted, free of charge, to any person obtaining a copy
6+
# of this software and associated documentation files (the "Software"), to deal
7+
# in the Software without restriction, including without limitation the rights
8+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
# copies of the Software, and to permit persons to whom the Software is
10+
# furnished to do so, subject to the following conditions:
11+
#
12+
# The above copyright notice and this permission notice shall be included in all
13+
# copies or substantial portions of the Software.
14+
#
15+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
# FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL THE
18+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
# SOFTWARE.
22+
23+
import xarray as xr
24+
from xcube.core.mldataset import MultiLevelDataset
25+
26+
from xcube_multistore.accessor import Accessor
27+
28+
29+
class CdsAccessor(Accessor):
30+
"""Provides methods for accessing dataset from xcube-cds data store"""
31+
32+
def open_data(
33+
self,
34+
data_id: str,
35+
**open_params,
36+
) -> xr.Dataset | MultiLevelDataset:
37+
"""Open and return the dataset corresponding to data ID."""
38+
open_params = self._convert_point_to_bbox(open_params)
39+
return self.store.open_data(data_id, **open_params)
40+
41+
@staticmethod
42+
def _convert_point_to_bbox(open_params: dict):
43+
if "point" in open_params:
44+
lon, lat = open_params.pop("point")
45+
open_params["bbox"] = [
46+
lon - 2 * open_params["spatial_res"],
47+
lat - 2 * open_params["spatial_res"],
48+
lon + 2 * open_params["spatial_res"],
49+
lat + 2 * open_params["spatial_res"],
50+
]
51+
return open_params

0 commit comments

Comments
 (0)