Skip to content

Commit d39dc95

Browse files
author
Vincent van der Wal
committed
added meteoswiss
1 parent 88e11e6 commit d39dc95

File tree

1 file changed

+89
-0
lines changed

1 file changed

+89
-0
lines changed

src/utils/domains.ts

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const domainGroups = [
1919
'knmi',
2020
'meteofrance',
2121
'metno',
22+
'meteoswiss',
2223
'ukmo'
2324
];
2425

@@ -792,6 +793,94 @@ export const domains: Array<Domain> = [
792793
windUVComponents: false
793794
},
794795

796+
// MeteoSwiss ICON
797+
{
798+
value: 'meteoswiss_icon_ch1',
799+
label: 'MeteoSwiss ICON CH1',
800+
grid: {
801+
nx: 1089,
802+
ny: 705,
803+
latMin: 43.18,
804+
lonMin: -3.94,
805+
dx: 0.01,
806+
dy: 0.01,
807+
zoom: 5.2,
808+
projection: {
809+
rotation: [43.0, 190.0],
810+
latitude: -6.46,
811+
longitude: -4.06,
812+
name: 'RotatedLatLonProjection',
813+
projectOrigin: false
814+
},
815+
center: function () {
816+
this.center = getCenterPoint(this);
817+
return this;
818+
}
819+
},
820+
variables: [
821+
'cape',
822+
'cloud_cover',
823+
'precipitation',
824+
'pressure_msl',
825+
'relative_humidity_2m',
826+
'temperature_2m',
827+
'temperature_80m',
828+
'temperature_120m',
829+
'temperature_180m',
830+
'visibility',
831+
'weather_code',
832+
'wind_10m',
833+
'wind_80m',
834+
'wind_120m',
835+
'wind_180m',
836+
'wind_gusts_10m'
837+
],
838+
windUVComponents: true
839+
},
840+
{
841+
value: 'meteoswiss_icon_ch2',
842+
label: 'MeteoSwiss ICON CH2',
843+
grid: {
844+
nx: 545,
845+
ny: 353,
846+
latMin: 43.18,
847+
lonMin: -3.94,
848+
dx: 0.02,
849+
dy: 0.02,
850+
zoom: 5.2,
851+
projection: {
852+
rotation: [43.0, 190.0],
853+
latitude: -6.46,
854+
longitude: -4.06,
855+
name: 'RotatedLatLonProjection',
856+
projectOrigin: false
857+
},
858+
center: function () {
859+
this.center = getCenterPoint(this);
860+
return this;
861+
}
862+
},
863+
variables: [
864+
'cape',
865+
'cloud_cover',
866+
'precipitation',
867+
'pressure_msl',
868+
'relative_humidity_2m',
869+
'temperature_2m',
870+
'temperature_80m',
871+
'temperature_120m',
872+
'temperature_180m',
873+
'visibility',
874+
'weather_code',
875+
'wind_10m',
876+
'wind_80m',
877+
'wind_120m',
878+
'wind_180m',
879+
'wind_gusts_10m'
880+
],
881+
windUVComponents: true
882+
},
883+
795884
// UKMO
796885
{
797886
value: 'ukmo_global_deterministic_10km',

0 commit comments

Comments
 (0)