diff --git a/flatbuffers/weather_api.fbs b/flatbuffers/weather_api.fbs index a8f2d81..748fda2 100644 --- a/flatbuffers/weather_api.fbs +++ b/flatbuffers/weather_api.fbs @@ -104,7 +104,8 @@ enum Model: ubyte { NICAM16_8S, cams_europe, cams_global, - cfsv2 + cfsv2, + era5_ocean } enum Variable: ubyte { diff --git a/java/com/openmeteo/sdk/Model.java b/java/com/openmeteo/sdk/Model.java index d7ca78a..050cb77 100644 --- a/java/com/openmeteo/sdk/Model.java +++ b/java/com/openmeteo/sdk/Model.java @@ -57,8 +57,9 @@ private Model() { } public static final int cams_europe = 49; public static final int cams_global = 50; public static final int cfsv2 = 51; + public static final int era5_ocean = 52; - public static final String[] names = { "undefined", "best_match", "gfs_seamless", "gfs_global", "gfs_hrrr", "meteofrance_seamless", "meteofrance_arpege_seamless", "meteofrance_arpege_world", "meteofrance_arpege_europe", "meteofrance_arome_seamless", "meteofrance_arome_france", "meteofrance_arome_france_hd", "jma_seamless", "jma_msm", "jms_gsm", "jma_gsm", "gem_seamless", "gem_global", "gem_regional", "gem_hrdps_continental", "icon_seamless", "icon_global", "icon_eu", "icon_d2", "ecmwf_ifs04", "metno_nordic", "era5_seamless", "era5", "cerra", "era5_land", "ecmwf_ifs", "gwam", "ewam", "glofas_seamless_v3", "glofas_forecast_v3", "glofas_consolidated_v3", "glofas_seamless_v4", "glofas_forecast_v4", "glofas_consolidated_v4", "gfs025", "gfs05", "CMCC_CM2_VHR4", "FGOALS_f3_H_highresSST", "FGOALS_f3_H", "HiRAM_SIT_HR", "MRI_AGCM3_2_S", "EC_Earth3P_HR", "MPI_ESM1_2_XR", "NICAM16_8S", "cams_europe", "cams_global", "cfsv2", }; + public static final String[] names = { "undefined", "best_match", "gfs_seamless", "gfs_global", "gfs_hrrr", "meteofrance_seamless", "meteofrance_arpege_seamless", "meteofrance_arpege_world", "meteofrance_arpege_europe", "meteofrance_arome_seamless", "meteofrance_arome_france", "meteofrance_arome_france_hd", "jma_seamless", "jma_msm", "jms_gsm", "jma_gsm", "gem_seamless", "gem_global", "gem_regional", "gem_hrdps_continental", "icon_seamless", "icon_global", "icon_eu", "icon_d2", "ecmwf_ifs04", "metno_nordic", "era5_seamless", "era5", "cerra", "era5_land", "ecmwf_ifs", "gwam", "ewam", "glofas_seamless_v3", "glofas_forecast_v3", "glofas_consolidated_v3", "glofas_seamless_v4", "glofas_forecast_v4", "glofas_consolidated_v4", "gfs025", "gfs05", "CMCC_CM2_VHR4", "FGOALS_f3_H_highresSST", "FGOALS_f3_H", "HiRAM_SIT_HR", "MRI_AGCM3_2_S", "EC_Earth3P_HR", "MPI_ESM1_2_XR", "NICAM16_8S", "cams_europe", "cams_global", "cfsv2", "era5_ocean", }; public static String name(int e) { return names[e]; } } diff --git a/kotlin/com/openmeteo/sdk/Model.kt b/kotlin/com/openmeteo/sdk/Model.kt index 76b9a01..05013d3 100644 --- a/kotlin/com/openmeteo/sdk/Model.kt +++ b/kotlin/com/openmeteo/sdk/Model.kt @@ -57,5 +57,6 @@ class Model private constructor() { const val cams_europe: UByte = 49u const val cams_global: UByte = 50u const val cfsv2: UByte = 51u + const val era5_ocean: UByte = 52u } } diff --git a/python/openmeteo_sdk/Model.py b/python/openmeteo_sdk/Model.py index 54860e5..8d9f938 100644 --- a/python/openmeteo_sdk/Model.py +++ b/python/openmeteo_sdk/Model.py @@ -55,3 +55,4 @@ class Model(object): cams_europe = 49 cams_global = 50 cfsv2 = 51 + era5_ocean = 52 diff --git a/swift/Sources/OpenMeteoSdk/weather_api_generated.swift b/swift/Sources/OpenMeteoSdk/weather_api_generated.swift index 432e8be..c48659f 100644 --- a/swift/Sources/OpenMeteoSdk/weather_api_generated.swift +++ b/swift/Sources/OpenMeteoSdk/weather_api_generated.swift @@ -111,8 +111,9 @@ public enum openmeteo_sdk_Model: UInt8, Enum, Verifiable { case camsEurope = 49 case camsGlobal = 50 case cfsv2 = 51 + case era5Ocean = 52 - public static var max: openmeteo_sdk_Model { return .cfsv2 } + public static var max: openmeteo_sdk_Model { return .era5Ocean } public static var min: openmeteo_sdk_Model { return .undefined } } diff --git a/ts/model.ts b/ts/model.ts index 4468da4..015b929 100644 --- a/ts/model.ts +++ b/ts/model.ts @@ -52,5 +52,6 @@ export enum Model { NICAM16_8S = 48, cams_europe = 49, cams_global = 50, - cfsv2 = 51 + cfsv2 = 51, + era5_ocean = 52 }