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 dd9554e + 7b0e67d commit c42ca55Copy full SHA for c42ca55
parcels/field.py
@@ -686,7 +686,11 @@ def from_netcdf(
686
kwargs["data_full_zdim"] = data_full_zdim
687
688
if len(data_filenames) > 1 and "time" not in dimensions and timestamps is None:
689
- raise RuntimeError("Multiple files given but no time dimension specified")
+ warnings.warn(
690
+ "Multiple files given but no time dimension specified. See https://github.com/OceanParcels/Parcels/issues/1831 for more info.",
691
+ FieldSetWarning,
692
+ stacklevel=2,
693
+ )
694
695
if grid is None:
696
# Concatenate time variable to determine overall dimension
0 commit comments