Skip to content

Commit

Permalink
fix: update language files
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-zippenfenig committed Jun 5, 2024
1 parent b824041 commit 04f384f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions csharp/openmeteo_sdk/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public enum Model : byte
ecmwf_aifs025 = 61,
gfs013 = 62,
gfs_graphcast025 = 63,
ecmwf_wam025 = 64,
};


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 @@ -69,8 +69,9 @@ private Model() { }
public static final int ecmwf_aifs025 = 61;
public static final int gfs013 = 62;
public static final int gfs_graphcast025 = 63;
public static final int ecmwf_wam025 = 64;

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", "ecmwf_aifs025", "gfs013", "gfs_graphcast025", };
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", "ecmwf_aifs025", "gfs013", "gfs_graphcast025", "ecmwf_wam025", };

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 @@ -69,5 +69,6 @@ class Model private constructor() {
const val ecmwf_aifs025: UByte = 61u
const val gfs013: UByte = 62u
const val gfs_graphcast025: UByte = 63u
const val ecmwf_wam025: UByte = 64u
}
}
1 change: 1 addition & 0 deletions python/openmeteo_sdk/Model.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,4 @@ class Model(object):
ecmwf_aifs025 = 61
gfs013 = 62
gfs_graphcast025 = 63
ecmwf_wam025 = 64
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 @@ -123,8 +123,9 @@ public enum openmeteo_sdk_Model: UInt8, Enum, Verifiable {
case ecmwfAifs025 = 61
case gfs013 = 62
case gfsGraphcast025 = 63
case ecmwfWam025 = 64

public static var max: openmeteo_sdk_Model { return .gfsGraphcast025 }
public static var max: openmeteo_sdk_Model { return .ecmwfWam025 }
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 @@ -66,5 +66,6 @@ export enum Model {
ecmwf_ifs025 = 60,
ecmwf_aifs025 = 61,
gfs013 = 62,
gfs_graphcast025 = 63
gfs_graphcast025 = 63,
ecmwf_wam025 = 64
}

0 comments on commit 04f384f

Please sign in to comment.