Skip to content

Commit

Permalink
feat: add ecmwf_ifs025 domain
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-zippenfenig committed Feb 5, 2024
1 parent 9055a40 commit a9430a1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion flatbuffers/weather_api.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ enum Model: ubyte {
arpae_cosmo_seamless,
arpae_cosmo_2i,
arpae_cosmo_2i_ruc,
arpae_cosmo_5m
arpae_cosmo_5m,
ecmwf_ifs025
}

enum Variable: ubyte {
Expand Down
3 changes: 2 additions & 1 deletion java/com/openmeteo/sdk/Model.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ private Model() { }
public static final int arpae_cosmo_2i = 57;
public static final int arpae_cosmo_2i_ruc = 58;
public static final int arpae_cosmo_5m = 59;
public static final int ecmwf_ifs025 = 60;

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", "cma_grapes_global", "bom_access_global", "bom_access_global_ensemble", "arpae_cosmo_seamless", "arpae_cosmo_2i", "arpae_cosmo_2i_ruc", "arpae_cosmo_5m", };
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", "cma_grapes_global", "bom_access_global", "bom_access_global_ensemble", "arpae_cosmo_seamless", "arpae_cosmo_2i", "arpae_cosmo_2i_ruc", "arpae_cosmo_5m", "ecmwf_ifs025", };

public static String name(int e) { return names[e]; }
}
Expand Down
1 change: 1 addition & 0 deletions kotlin/com/openmeteo/sdk/Model.kt
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,6 @@ class Model private constructor() {
const val arpae_cosmo_2i: UByte = 57u
const val arpae_cosmo_2i_ruc: UByte = 58u
const val arpae_cosmo_5m: UByte = 59u
const val ecmwf_ifs025: UByte = 60u
}
}
1 change: 1 addition & 0 deletions python/openmeteo_sdk/Model.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,4 @@ class Model(object):
arpae_cosmo_2i = 57
arpae_cosmo_2i_ruc = 58
arpae_cosmo_5m = 59
ecmwf_ifs025 = 60
3 changes: 2 additions & 1 deletion swift/Sources/OpenMeteoSdk/weather_api_generated.swift
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,9 @@ public enum openmeteo_sdk_Model: UInt8, Enum, Verifiable {
case arpaeCosmo2i = 57
case arpaeCosmo2iRuc = 58
case arpaeCosmo5m = 59
case ecmwfIfs025 = 60

public static var max: openmeteo_sdk_Model { return .arpaeCosmo5m }
public static var max: openmeteo_sdk_Model { return .ecmwfIfs025 }
public static var min: openmeteo_sdk_Model { return .undefined }
}

Expand Down
3 changes: 2 additions & 1 deletion ts/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,6 @@ export enum Model {
arpae_cosmo_seamless = 56,
arpae_cosmo_2i = 57,
arpae_cosmo_2i_ruc = 58,
arpae_cosmo_5m = 59
arpae_cosmo_5m = 59,
ecmwf_ifs025 = 60
}

0 comments on commit a9430a1

Please sign in to comment.