Added to const. new trim data set sizes
This commit is contained in:
parent
a3b6aab0c7
commit
61bf490538
10
src/consts.h
10
src/consts.h
|
|
@ -13,13 +13,15 @@ const double infty = 1e15f; // This value is used to represent missing values
|
||||||
|
|
||||||
// --------------------------- Dataset Constants ---------------------------
|
// --------------------------- Dataset Constants ---------------------------
|
||||||
// const int VOLUME_WIDTH = 576; // lon
|
// const int VOLUME_WIDTH = 576; // lon
|
||||||
const int VOLUME_WIDTH = 97; // lon
|
// const int VOLUME_WIDTH = 97; // lon
|
||||||
|
const int VOLUME_WIDTH = 57; // lon
|
||||||
// const int VOLUME_HEIGHT = 361; // lat
|
// const int VOLUME_HEIGHT = 361; // lat
|
||||||
const int VOLUME_HEIGHT = 71; // lat
|
// const int VOLUME_HEIGHT = 71; // lat
|
||||||
|
const int VOLUME_HEIGHT = 121; // lat
|
||||||
const int VOLUME_DEPTH = 42; // lev
|
const int VOLUME_DEPTH = 42; // lev
|
||||||
|
|
||||||
const float DLON = 60.0f / VOLUME_WIDTH; // 60 for current trimmed data set range
|
const float DLON = 35.0f / VOLUME_WIDTH; // 35 for current trimmed data set range
|
||||||
const float DLAT = 35.0f / VOLUME_HEIGHT; // 35 for current trimmed data set range
|
const float DLAT = 60.0f / VOLUME_HEIGHT; // 60 for current trimmed data set range
|
||||||
const float DLEV = 1000.0f / VOLUME_DEPTH; // 1000 from max pressure (hPa) but not sure here
|
const float DLEV = 1000.0f / VOLUME_DEPTH; // 1000 from max pressure (hPa) but not sure here
|
||||||
|
|
||||||
const float MIN_TEMP = 210.0f;
|
const float MIN_TEMP = 210.0f;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue