We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c0da72f + 6a803a4 commit 2a67198Copy full SHA for 2a67198
pcmdi_metrics/io/xcdat_openxml.py
@@ -36,9 +36,11 @@ def xcdat_open(
36
# Open a single netCDF file
37
>>> ds = xcdat_open('mydata.nc')
38
# Open multiple files
39
- >>> ds2 = xcdat_open(['mydata1.nc', 'mydata2.nc'] # Open multipe netCDF files
+ >>> ds = xcdat_open(['mydata1.nc', 'mydata2.nc']) # Open multipe netCDF files
40
+ # Open multiple files using a wildcard
41
+ >>> ds = xcdat_open('mydata*.nc')
42
# Open with specifing the variable 'ts'
- >>> ds3 = xcdat_open(['mydata1.nc', 'mydata2.nc'], data_var='ts')
43
+ >>> ds = xcdat_open(['mydata1.nc', 'mydata2.nc'], data_var='ts')
44
# Open an xml file
45
>>> ds = xcdat_open('mydata.xml')
46
"""
0 commit comments