Skip to content

Commit 34cb7dc

Browse files
Wind speed and gust should be meters per second
1 parent 7cdee83 commit 34cb7dc

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

ObservingConditionsSimulator/OCSimulator.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ public class OCSimulator
187187
{PROPERTY_SKYTEMPERATURE, 50.0},
188188
{PROPERTY_TEMPERATURE, 50.0},
189189
{PROPERTY_WINDDIRECTION, 360.0},
190-
{PROPERTY_WINDGUST, 100.0},
191-
{PROPERTY_WINDSPEED, 100.0}
190+
{PROPERTY_WINDGUST, 50.0},
191+
{PROPERTY_WINDSPEED, 50.0}
192192
};
193193

194194
public static Dictionary<string, string> UnitString = new Dictionary<string, string>()
@@ -204,8 +204,8 @@ public class OCSimulator
204204
{PROPERTY_SKYTEMPERATURE, "Celsius"},
205205
{PROPERTY_TEMPERATURE, "Celsius"},
206206
{PROPERTY_WINDDIRECTION, "Degrees"},
207-
{PROPERTY_WINDGUST, "mph"},
208-
{PROPERTY_WINDSPEED, "mph"}
207+
{PROPERTY_WINDGUST, "m/s"},
208+
{PROPERTY_WINDSPEED, "m/s"}
209209
};
210210

211211
#endregion Public variables and constants

0 commit comments

Comments
 (0)