Skip to content

Commit

Permalink
fix #23 "is_day" "precipitation_probability" in Hourly class
Browse files Browse the repository at this point in the history
  • Loading branch information
AlienDwarf committed May 3, 2023
1 parent 6e8b5ef commit e9cd4a5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions OpenMeteo/Hourly.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2290,5 +2290,9 @@ public class Hourly
public float?[]? Geopotential_height_70hPa_meteofrance_arpege_world { get; set; }
public float?[]? Geopotential_height_50hPa_meteofrance_arpege_world { get; set; }
public float?[]? Geopotential_height_30hPa_meteofrance_arpege_world { get; set; }
public float?[]? Uv_index { get; set; }
public float?[]? Uv_index_clear_sky { get; set; }
public bool?[]? Is_day { get; set; }
public int?[]? Precipitation_probability { get; set; }
}
}
7 changes: 6 additions & 1 deletion OpenMeteo/HourlyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,11 @@ public enum HourlyOptionsParameter
geopotential_height_100hPa,
geopotential_height_70hPa,
geopotential_height_50hPa,
geopotential_height_30hPa
geopotential_height_30hPa,
is_day,
uv_index,
uv_index_clear_sky,
precipitation_probability

}
}
4 changes: 4 additions & 0 deletions OpenMeteo/HourlyUnits.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2291,5 +2291,9 @@ public class HourlyUnits
public string? Geopotential_height_70hPa_meteofrance_arpege_world { get; set; }
public string? Geopotential_height_50hPa_meteofrance_arpege_world { get; set; }
public string? Geopotential_height_30hPa_meteofrance_arpege_world { get; set; }
public string? Uv_index { get; set; }
public string? Uv_index_clear_sky { get; set; }
public string? Is_day { get; set; }
public string? Precipitation_probability { get; set; }
}
}

0 comments on commit e9cd4a5

Please sign in to comment.