|
|
@ -7,7 +7,6 @@ class NEMOData: public LayeredDataZ |
|
|
|
{ |
|
|
|
{ |
|
|
|
TYPE_UNKNOWN, |
|
|
|
TYPE_UNKNOWN, |
|
|
|
TYPE_DT, |
|
|
|
TYPE_DT, |
|
|
|
TYPE_DT1, |
|
|
|
|
|
|
|
TYPE_NRT, |
|
|
|
TYPE_NRT, |
|
|
|
TYPE_NRT6, |
|
|
|
TYPE_NRT6, |
|
|
|
TYPE_BALTICDT, |
|
|
|
TYPE_BALTICDT, |
|
|
@ -35,7 +34,6 @@ class NEMOData: public LayeredDataZ |
|
|
|
switch(type) |
|
|
|
switch(type) |
|
|
|
{ |
|
|
|
{ |
|
|
|
case(TYPE_DT): return "NEMO Delayed time, daily mean (DT)"; |
|
|
|
case(TYPE_DT): return "NEMO Delayed time, daily mean (DT)"; |
|
|
|
case(TYPE_DT1): return "NEMO Delayed time, daily mean, part 2 (DT1)"; |
|
|
|
|
|
|
|
case(TYPE_NRT): return "NEMO Near-real time, daily mean (NRT)"; |
|
|
|
case(TYPE_NRT): return "NEMO Near-real time, daily mean (NRT)"; |
|
|
|
case(TYPE_NRT6): return "NEMO Near-real time, 6h resolution (NRT6)"; |
|
|
|
case(TYPE_NRT6): return "NEMO Near-real time, 6h resolution (NRT6)"; |
|
|
|
case(TYPE_BALTICDT): return "NEMO Delayed time, Baltic region, daily mean (BALTICDT)"; |
|
|
|
case(TYPE_BALTICDT): return "NEMO Delayed time, Baltic region, daily mean (BALTICDT)"; |
|
|
@ -61,8 +59,6 @@ class NEMOData: public LayeredDataZ |
|
|
|
GPL.UsePrefix("NEMO"); |
|
|
|
GPL.UsePrefix("NEMO"); |
|
|
|
if(dataset == "DT") |
|
|
|
if(dataset == "DT") |
|
|
|
type = TYPE_DT; |
|
|
|
type = TYPE_DT; |
|
|
|
else if(dataset == "DT1") |
|
|
|
|
|
|
|
type = TYPE_DT1; |
|
|
|
|
|
|
|
else if(dataset == "NRT") |
|
|
|
else if(dataset == "NRT") |
|
|
|
type = TYPE_NRT; |
|
|
|
type = TYPE_NRT; |
|
|
|
else if(dataset == "NRT6") |
|
|
|
else if(dataset == "NRT6") |
|
|
|