We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cb1715 commit d618752Copy full SHA for d618752
1 file changed
shared/lib_windfile.cpp
@@ -499,6 +499,10 @@ bool windfile::open( const std::string &file )
499
{
500
lon = col_or_nan(hdr[i + 1]);
501
}
502
+ else if (hdr_item == "elevation" || hdr_item == "el" || hdr_item == "elev" || hdr_item == "site elevation")
503
+ {
504
+ elev = col_or_nan(hdr[i + 1]);
505
+ }
506
else if (hdr_item == "siteid" || hdr_item == "id" || hdr_item == "location" || hdr_item == "location id" || hdr_item == "station" || hdr_item == "station id" || hdr_item == "wban" || hdr_item == "wban#" || hdr_item == "site")
507
508
locid = hdr[i + 1];
0 commit comments