1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341
|
/* DO NOT REMOVE the config.h include file under any circumstances,
* it's very much needed on some platforms */
#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif
/* DO NOT REMOVE the above config.h include file under any
* circumstances as long as it's the autoconf configuration header
* used to build this package. When it's missing on some platforms,
* some poor person has to do long, tedious debugging sessions, where
* struct offsets almost imperceptibly change from one file to the
* next to find out what happened */
#include <string.h>
#include <ctype.h>
#include "cdi.h"
#include "cdi_int.h"
#include "cdf_util.h"
#include "error.h"
char *
str_to_lower(char *str)
{
if (str)
for (size_t i = 0; str[i]; ++i) str[i] = (char) tolower((int) str[i]);
return str;
}
bool
strStartsWith(const char *vstr, const char *cstr)
{
bool is_equal = false;
if (vstr && cstr)
{
size_t clen = strlen(cstr);
size_t vlen = strlen(vstr);
if (clen <= vlen) is_equal = (memcmp(vstr, cstr, clen) == 0);
}
return is_equal;
}
int
get_time_units(size_t len, const char *ptu)
{
int timeunit = -1;
while (isspace(*ptu) && len)
{
ptu++;
len--;
}
// clang-format off
if (len > 2)
{
if (strStartsWith(ptu, "sec")) timeunit = TUNIT_SECOND;
else if (strStartsWith(ptu, "minute")) timeunit = TUNIT_MINUTE;
else if (strStartsWith(ptu, "hour")) timeunit = TUNIT_HOUR;
else if (strStartsWith(ptu, "day")) timeunit = TUNIT_DAY;
else if (strStartsWith(ptu, "month")) timeunit = TUNIT_MONTH;
else if (strStartsWith(ptu, "calendar_month")) timeunit = TUNIT_MONTH;
else if (strStartsWith(ptu, "year")) timeunit = TUNIT_YEAR;
}
else if (len == 1 && ptu[0] == 's') timeunit = TUNIT_SECOND;
// clang-format on
return timeunit;
}
bool
is_time_units(const char *timeunits)
{
while (isspace(*timeunits)) timeunits++;
// clang-format off
return (strStartsWith(timeunits, "sec")
|| strStartsWith(timeunits, "minute")
|| strStartsWith(timeunits, "hour")
|| strStartsWith(timeunits, "day")
|| strStartsWith(timeunits, "month")
|| strStartsWith(timeunits, "calendar_month")
|| strStartsWith(timeunits, "year"));
// clang-format on
}
bool
is_timeaxis_units(const char *timeunits)
{
bool status = false;
size_t len = strlen(timeunits);
char *tu = (char *) malloc((len + 1) * sizeof(char));
memcpy(tu, timeunits, len);
tu[len] = 0;
str_to_lower(tu);
int timeunit = get_time_units(len, tu);
if (timeunit != -1)
{
size_t pos = 0;
while (!isspace(tu[pos]) && tu[pos] != 0) pos++;
if (tu[pos])
{
while (isspace(tu[pos])) { pos++; }
status = strStartsWith(tu + pos, "as") || strStartsWith(tu + pos, "since");
}
}
free(tu);
return status;
}
bool
is_height_units(const char *units)
{
int u0 = units[0];
// clang-format off
return ((u0=='m' && (!units[1] || strStartsWith(units, "meter")))
|| (!units[2] && units[1]=='m' && (u0=='c' || u0=='d' || u0=='k'))
|| (strStartsWith(units, "decimeter"))
|| (strStartsWith(units, "centimeter"))
|| (strStartsWith(units, "millimeter"))
|| (strStartsWith(units, "kilometer")));
// clang-format on
}
bool
is_pressure_units(const char *units)
{
// clang-format off
return (strStartsWith(units, "millibar")
|| strStartsWith(units, "mb")
|| strStartsWith(units, "hectopas")
|| strStartsWith(units, "hPa")
|| strStartsWith(units, "pa")
|| strStartsWith(units, "Pa"));
// clang-format on
}
bool
is_DBL_axis(const char *longname)
{
// clang-format off
return (str_is_equal(longname, "depth below land")
|| str_is_equal(longname, "depth_below_land")
|| str_is_equal(longname, "levels below the surface"));
// clang-format on
}
bool
is_depth_axis(const char *stdname, const char *longname)
{
// clang-format off
return (str_is_equal(stdname, "depth")
|| str_is_equal(longname, "depth_below_sea")
|| str_is_equal(longname, "depth below sea"));
// clang-format ofn
}
bool is_height_axis(const char *stdname, const char *longname)
{
// clang-format off
return (str_is_equal(stdname, "height")
|| str_is_equal(longname, "height")
|| str_is_equal(longname, "height above the surface"));
// clang-format on
}
bool
is_altitude_axis(const char *stdname, const char *longname)
{
// clang-format off
return (str_is_equal(stdname, "altitude")
|| str_is_equal(longname, "altitude"));
// clang-format on
}
bool
is_reference_axis(const char *stdname, const char *longname)
{
// clang-format off
return ((str_is_equal(longname, "generalized_height") || str_is_equal(longname, "generalized height"))
&& str_is_equal(stdname, "height"));
// clang-format on
}
bool
is_lon_axis(const char *units, const char *stdname)
{
bool status = false;
char lc_units[16];
memcpy(lc_units, units, 15);
lc_units[15] = 0;
str_to_lower(lc_units);
if ((strStartsWith(lc_units, "degree") || strStartsWith(lc_units, "radian"))
&& (strStartsWith(stdname, "grid_longitude") || strStartsWith(stdname, "longitude")))
{
status = true;
}
else if (strStartsWith(lc_units, "degree") && !strStartsWith(stdname, "grid_latitude") && !strStartsWith(stdname, "latitude"))
{
int ioff = 6;
if (lc_units[ioff] == 's') ioff++;
if (lc_units[ioff] == ' ') ioff++;
if (lc_units[ioff] == '_') ioff++;
if (lc_units[ioff] == 'e') status = true;
}
return status;
}
bool
is_lat_axis(const char *units, const char *stdname)
{
bool status = false;
char lc_units[16];
memcpy(lc_units, units, 15);
lc_units[15] = 0;
str_to_lower(lc_units);
if ((strStartsWith(lc_units, "degree") || strStartsWith(lc_units, "radian"))
&& (strStartsWith(stdname, "grid_latitude") || strStartsWith(stdname, "latitude")))
{
status = true;
}
else if (strStartsWith(lc_units, "degree") && !strStartsWith(stdname, "grid_longitude") && !strStartsWith(stdname, "longitude"))
{
int ioff = 6;
if (lc_units[ioff] == 's') ioff++;
if (lc_units[ioff] == ' ') ioff++;
if (lc_units[ioff] == '_') ioff++;
if (lc_units[ioff] == 'n' || lc_units[ioff] == 's') status = true;
}
return status;
}
bool
is_x_axis(const char *units, const char *stdname)
{
(void) units;
return (str_is_equal(stdname, "projection_x_coordinate"));
}
bool
is_y_axis(const char *units, const char *stdname)
{
(void) units;
return (str_is_equal(stdname, "projection_y_coordinate"));
}
void
cdf_set_gridtype(const char *attstring, int *gridtype)
{
// clang-format off
if (str_is_equal(attstring, "gaussian_reduced")) *gridtype = GRID_GAUSSIAN_REDUCED;
else if (str_is_equal(attstring, "gaussian")) *gridtype = GRID_GAUSSIAN;
else if (strStartsWith(attstring, "spectral")) *gridtype = GRID_SPECTRAL;
else if (strStartsWith(attstring, "fourier")) *gridtype = GRID_FOURIER;
else if (str_is_equal(attstring, "trajectory")) *gridtype = GRID_TRAJECTORY;
else if (str_is_equal(attstring, "generic")) *gridtype = GRID_GENERIC;
else if (str_is_equal(attstring, "cell")) *gridtype = GRID_UNSTRUCTURED;
else if (str_is_equal(attstring, "unstructured")) *gridtype = GRID_UNSTRUCTURED;
else if (str_is_equal(attstring, "curvilinear")) ;
else if (str_is_equal(attstring, "characterxy")) *gridtype = GRID_CHARXY;
else if (str_is_equal(attstring, "sinusoidal")) ;
else if (str_is_equal(attstring, "laea")) ;
else if (str_is_equal(attstring, "lcc2")) ;
else if (str_is_equal(attstring, "linear")) ; // ignore grid type linear
else
{
static bool warn = true;
if (warn)
{
warn = false;
Warning("NetCDF attribute grid_type='%s' unsupported!", attstring);
}
}
// clang-format on
}
void
cdf_set_zaxistype(const char *attstring, int *zaxistype)
{
// clang-format off
if (str_is_equal(attstring, "toa")) *zaxistype = ZAXIS_TOA;
else if (str_is_equal(attstring, "tropopause")) *zaxistype = ZAXIS_TROPOPAUSE;
else if (str_is_equal(attstring, "cloudbase")) *zaxistype = ZAXIS_CLOUD_BASE;
else if (str_is_equal(attstring, "cloudtop")) *zaxistype = ZAXIS_CLOUD_TOP;
else if (str_is_equal(attstring, "isotherm0")) *zaxistype = ZAXIS_ISOTHERM_ZERO;
else if (str_is_equal(attstring, "seabottom")) *zaxistype = ZAXIS_SEA_BOTTOM;
else if (str_is_equal(attstring, "lakebottom")) *zaxistype = ZAXIS_LAKE_BOTTOM;
else if (str_is_equal(attstring, "sedimentbottom")) *zaxistype = ZAXIS_SEDIMENT_BOTTOM;
else if (str_is_equal(attstring, "sedimentbottomta")) *zaxistype = ZAXIS_SEDIMENT_BOTTOM_TA;
else if (str_is_equal(attstring, "sedimentbottomtw")) *zaxistype = ZAXIS_SEDIMENT_BOTTOM_TW;
else if (str_is_equal(attstring, "mixlayer")) *zaxistype = ZAXIS_MIX_LAYER;
else if (str_is_equal(attstring, "atmosphere")) *zaxistype = ZAXIS_ATMOSPHERE;
else
{
static bool warn = true;
if (warn)
{
warn = false;
Warning("NetCDF attribute level_type='%s' unsupported!", attstring);
}
}
// clang-format on
}
int
attribute_to_calendar(const char *attstring)
{
// clang-format off
if (strStartsWith(attstring, "standard")) return CALENDAR_STANDARD;
if (strStartsWith(attstring, "gregorian")) return CALENDAR_GREGORIAN;
if (strStartsWith(attstring, "none")) return CALENDAR_NONE;
if (strStartsWith(attstring, "proleptic")) return CALENDAR_PROLEPTIC;
if (strStartsWith(attstring, "360")) return CALENDAR_360DAYS;
if (strStartsWith(attstring, "365") ||
strStartsWith(attstring, "noleap")) return CALENDAR_365DAYS;
if (strStartsWith(attstring, "366") ||
strStartsWith(attstring, "all_leap")) return CALENDAR_366DAYS;
// clang-format on
static bool warn = true;
if (warn)
{
warn = false;
Warning("Calendar >%s< unsupported!", attstring);
}
return CALENDAR_STANDARD;
}
|