Skip to content
Snippets Groups Projects
Commit de0bdc72 authored by Jussi Nikander's avatar Jussi Nikander
Browse files

Added missing weather data types from VIPS weather data specification.

parent 5f019606
Branches
No related tags found
No related merge requests found
...@@ -79,10 +79,22 @@ public class WeatherElements { ...@@ -79,10 +79,22 @@ public class WeatherElements {
*/ */
public static final String LEAF_WETNESS_GROUND_LEVEL = "BTg"; public static final String LEAF_WETNESS_GROUND_LEVEL = "BTg";
/** /**
* Average wind speed (meters / second) * Average wind speed (meters / second) for the last 60 minutes, measured at 2 meter height
*/ */
public static final String WIND_SPEED_2M = "FM2"; public static final String WIND_SPEED_2M = "FM2";
/**
* Average wind speed (meters / second) for the last 60 minutes, measured at 10 meter height
*/
public static final String WIND_SPEED_10M = "FM";
/**
* Average wind speed (meters / second) for the last 10 minutes, measured at 2 meter height
*/
public static final String WIND_SPEED_10MIN_2M = "FF2";
/**
* Average wind speed (meters / second) for the last 10 minutes, measured at 10 meter height
*/
public static final String WIND_SPEED_10MIN_10M = "FF";
public static final String POTENTIAL_EVAPORATION = "EPP"; public static final String POTENTIAL_EVAPORATION = "EPP";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment