mirror of https://github.com/ecmwf/eccodes.git
15 lines
626 B
Modula-2
15 lines
626 B
Modula-2
# ECMWF Unstructured Grid Mapping
|
|
|
|
concept unstructuredGridType(unknown,"unstructuredGridType.def",conceptsLocalDirAll,conceptsMasterDir);
|
|
|
|
concept unstructuredGridSubtype(unknown,"unstructuredGridSubtype.def",conceptsLocalDirAll,conceptsMasterDir);
|
|
|
|
concept unstructuredGridUUID(unknown,"unstructuredGridUUID.def",conceptsLocalDirAll,conceptsMasterDir);
|
|
|
|
if (unstructuredGridType is "undefined" || unstructuredGridType is "unknown") {
|
|
meta gridName sprintf("%s",unstructuredGridType) : no_copy;
|
|
} else {
|
|
meta gridName sprintf("%s_%s",unstructuredGridType,unstructuredGridSubtype) : no_copy;
|
|
}
|
|
alias ls.gridName=gridName;
|