Skip to content

Commit 095023d

Browse files
committed
still some refinements to work with cmt 2.x
1 parent 2d72815 commit 095023d

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,6 @@ Options:
211211
-v, --dataset-version TEXT Dry run
212212
-nd, --no-directories TEXT Option to not recreate folder hierarchy in
213213
output directory
214-
--force-download TEXT Flag to skip confirmation before download
215214
--disable-progress-bar TEXT Flag to hide progress bar
216215
-n, --username TEXT Username
217216
-w, --password TEXT Password
@@ -263,13 +262,13 @@ Options:
263262
With a specific file:
264263
265264
```shell
266-
mds etag -e s3://mdl-native-12/native/MEDSEA_ANALYSISFORECAST_PHY_006_013/cmems_mod_med_phy-tem_anfc_4.2km_P1D-m_202411/2023/08/20230820_d-CMCC--TEMP-MFSeas9-MEDATL-b20240607_an-sv10.00.nc
265+
mds etag -e s3://mdl-native-12/native/MEDSEA_ANALYSISFORECAST_PHY_006_013/cmems_mod_med_phy-cur_anfc_4.2km_PT15M-i_202411/2025/05/20250501_qm-CMCC--RFVL-MFSeas9-MEDATL-b20250513_an-sv10.00.nc
267266
```
268267
269268
Or:
270269
271270
```shell
272-
mds etag -p MEDSEA_ANALYSISFORECAST_PHY_006_013 -i cmems_mod_med_phy-cur_anfc_4.2km_PT15M-i -g 202411 -f '*b20241212*' -s 2024/12
271+
mds etag -p MEDSEA_ANALYSISFORECAST_PHY_006_013 -i cmems_mod_med_phy-cur_anfc_4.2km_PT15M-i -g 202411 -f '*' -s 2025/05
273272
```
274273
275274
---

mds/core/copernicus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def get(**get_kwargs) -> List[pathlib.Path]:
3636

3737
# download
3838
utils.pprint_dict(get_kwargs)
39-
result = copernicusmarine.get(**get_kwargs, no_metadata_cache=True)
39+
result = copernicusmarine.get(**get_kwargs)
4040
return result
4141

4242

mds/mng/wrapper_group.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,6 @@ def subset(**kwargs):
129129
default=True,
130130
help="Option to not recreate folder hierarchy in output directory",
131131
)
132-
@click.option(
133-
"--force-download",
134-
type=str,
135-
default=True,
136-
help="Flag to skip confirmation before download",
137-
)
138132
@click.option(
139133
"--disable-progress-bar", type=str, default=True, help="Flag to hide progress bar"
140134
)

0 commit comments

Comments
 (0)