I have 1 folder of 12 netcdf files. How might I use xarray to combine all the netcdf files into one data array?
The folder represents year 2015 and the 12 netcdf files represent data for each month in 2015.
I thought maybe I could try and manipulate the strings by running a for loop and change each number of the file in the string, since my files are organized (for 2015) by:
EN.4.2.1.f.analysis.g10.201501.nc
EN.4.2.1.f.analysis.g10.201502.nc
EN.4.2.1.f.analysis.g10.201503.nc
....
I am loading the one netcdf file like:
import numpy as np
from scipy import stats
import matplotlib.pyplot as plt
import netCDF4 as s
import glob
import xarray as xr
from datetime import datetime
inpath='../../Data/EN.4.2.1_analyses/EN.4.2.1.analyses.g10.2015/'
# just loading in the first month (january) of 2015
en4_2015 = xr.open_dataset(inpath+'EN.4.2.1.f.analysis.g10.201501.nc')
How would I combine all the netcdf files into one array rather than 12 different xarrays?
I tried:
import glob
import xarray as xr
from datetime import datetime
# List all matching files
files = glob.glob(inpath+'*.nc')
# Create list for
individual_files = []
# Loop through each file in the list
for i in files:
# Load a single dataset
timestep_ds = xr.open_dataset(i)
# Create a new variable called 'time' from the `time_coverage_start` field, and
# convert the string to a datetime object so xarray knows it is time data
timestep_ds['time'] = datetime.strptime(timestep_ds.time_coverage_start,
"%Y-%m-%dT%H:%M:%S.%fZ")
# Add the dataset to the list
individual_files.append(timestep_ds)
# Combine individual datasets into a single xarray along the 'time' dimension
modis_ds = xr.concat(individual_files, dim='time')
print(modis_ds)
AttributeError Traceback (most recent call last)
<ipython-input-36-34685efc1691> in <module>
10 # Create a new variable called 'time' from the `time_coverage_start` field, and
11 # convert the string to a datetime object so xarray knows it is time data
---> 12 timestep_ds['time'] = datetime.strptime(timestep_ds.time_coverage_start,
13 "%Y-%m-%dT%H:%M:%S.%fZ")
14
~/miniconda3/envs/py3_std_maps/lib/python3.8/site-packages/xarray/core/common.py in __getattr__(self, name)
226 with suppress(KeyError):
227 return source[name]
--> 228 raise AttributeError(
229 "{!r} object has no attribute {!r}".format(type(self).__name__, name)
230 )
AttributeError: 'Dataset' object has no attribute 'time_coverage_start'
individual_files.append(timestep_ds)an in-place operation in xarray, or does it make a new array, as in numpy?