Skip to content
Snippets Groups Projects
Commit 543628c1 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Merge branch 'luke' into 'master'

Added missing weather data types from VIPS weather data specification.

See merge request VIPS/VIPSCommon!1
parents 5f019606 de0bdc72
No related branches found
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