meteocat 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/ISSUE_TEMPLATE/bug_report.md +8 -2
- package/.github/ISSUE_TEMPLATE/config.yml +7 -0
- package/.github/ISSUE_TEMPLATE/improvement.md +39 -0
- package/.github/ISSUE_TEMPLATE/new_function.md +41 -0
- package/.github/labels.yml +63 -0
- package/.github/workflows/autocloser.yaml +11 -9
- package/.github/workflows/close-on-label.yml +48 -0
- package/.github/workflows/force-sync-labels.yml +18 -0
- package/.github/workflows/sync-gitlab.yml +15 -4
- package/.github/workflows/sync-labels.yml +21 -0
- package/CHANGELOG.md +46 -11
- package/README.md +13 -4
- package/custom_components/meteocat/__init__.py +51 -41
- package/custom_components/meteocat/config_flow.py +52 -3
- package/custom_components/meteocat/const.py +3 -0
- package/custom_components/meteocat/coordinator.py +188 -2
- package/custom_components/meteocat/manifest.json +1 -1
- package/custom_components/meteocat/options_flow.py +61 -3
- package/custom_components/meteocat/sensor.py +297 -246
- package/custom_components/meteocat/strings.json +61 -15
- package/custom_components/meteocat/translations/ca.json +58 -13
- package/custom_components/meteocat/translations/en.json +61 -15
- package/custom_components/meteocat/translations/es.json +61 -15
- package/custom_components/meteocat/version.py +1 -1
- package/hacs.json +1 -1
- package/images/daily_forecast_2_alerts.png +0 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/scripts/update_version.sh +6 -0
- package/.github/workflows/close-duplicates.yml +0 -57
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"options": {
|
|
37
|
-
"step":{
|
|
37
|
+
"step": {
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "Setup the API Key, the API limits
|
|
39
|
+
"description": "Setup the API Key, the API limits, regenerate 'assets' files, or update coordinates.",
|
|
40
40
|
"title": "Setup options",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Options"
|
|
@@ -50,6 +50,14 @@
|
|
|
50
50
|
"description": "Setup the API limits.",
|
|
51
51
|
"title": "API limits"
|
|
52
52
|
},
|
|
53
|
+
"update_coordinates": {
|
|
54
|
+
"description": "Enter new coordinates. Current coordinates: latitude {current_latitude}, longitude {current_longitude}.",
|
|
55
|
+
"title": "Update Coordinates",
|
|
56
|
+
"data": {
|
|
57
|
+
"latitude": "Latitude",
|
|
58
|
+
"longitude": "Longitude"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
53
61
|
"confirm_regenerate_assets": {
|
|
54
62
|
"description": "Regenerate missing assets files.",
|
|
55
63
|
"title": "Regenerate assets",
|
|
@@ -61,7 +69,8 @@
|
|
|
61
69
|
"error": {
|
|
62
70
|
"cannot_connect": "Cannot connect. Error when checking the new API Key.",
|
|
63
71
|
"unknown": "Unknown error when checking the new API Key.",
|
|
64
|
-
"invalid_limit": "Invalid limit. The limit must be a positive number."
|
|
72
|
+
"invalid_limit": "Invalid limit. The limit must be a positive number.",
|
|
73
|
+
"invalid_coordinates": "Coordinates must be within Catalonia's range (latitude: 40.5 to 42.5, longitude: 0.1 to 3.3)."
|
|
65
74
|
}
|
|
66
75
|
},
|
|
67
76
|
"selector": {
|
|
@@ -69,7 +78,8 @@
|
|
|
69
78
|
"options": {
|
|
70
79
|
"update_api_and_limits": "Update API Key and limits.",
|
|
71
80
|
"update_limits_only": "Update API limits.",
|
|
72
|
-
"regenerate_assets": "Regenerate 'assets' files."
|
|
81
|
+
"regenerate_assets": "Regenerate 'assets' files.",
|
|
82
|
+
"update_coordinates": "Update coordinates (latitude and longitude)."
|
|
73
83
|
}
|
|
74
84
|
}
|
|
75
85
|
},
|
|
@@ -269,7 +279,7 @@
|
|
|
269
279
|
"cloud_cloud": {
|
|
270
280
|
"name": "Cloud-Cloud"
|
|
271
281
|
},
|
|
272
|
-
"cloud_ground_neg":{
|
|
282
|
+
"cloud_ground_neg": {
|
|
273
283
|
"name": "Cloud-Ground Negative"
|
|
274
284
|
},
|
|
275
285
|
"cloud_ground_pos": {
|
|
@@ -283,7 +293,7 @@
|
|
|
283
293
|
"cloud_cloud": {
|
|
284
294
|
"name": "Cloud-Cloud"
|
|
285
295
|
},
|
|
286
|
-
"cloud_ground_neg":{
|
|
296
|
+
"cloud_ground_neg": {
|
|
287
297
|
"name": "Cloud-Ground Negative"
|
|
288
298
|
},
|
|
289
299
|
"cloud_ground_pos": {
|
|
@@ -533,7 +543,8 @@
|
|
|
533
543
|
"wind_35": "Max. wind speed > 35 m/s",
|
|
534
544
|
"wind_30": "Max. wind speed > 30 m/s",
|
|
535
545
|
"wind_25": "Max. wind speed > 25 m/s",
|
|
536
|
-
"wind_20": "Max. wind speed > 20 m/s"
|
|
546
|
+
"wind_20": "Max. wind speed > 20 m/s",
|
|
547
|
+
"unknown": "Unknown"
|
|
537
548
|
}
|
|
538
549
|
},
|
|
539
550
|
"peligro": {
|
|
@@ -572,7 +583,8 @@
|
|
|
572
583
|
"hail_2_cm": "Hail with diameter > 2 cm",
|
|
573
584
|
"microburst": "Microburst",
|
|
574
585
|
"intensity_40_30": "Intensity > 40 mm / 30 minutes",
|
|
575
|
-
"intensity_20_30": "Intensity > 20 mm / 30 minutes"
|
|
586
|
+
"intensity_20_30": "Intensity > 20 mm / 30 minutes",
|
|
587
|
+
"unknown": "Unknown"
|
|
576
588
|
}
|
|
577
589
|
},
|
|
578
590
|
"peligro": {
|
|
@@ -610,7 +622,8 @@
|
|
|
610
622
|
"state": {
|
|
611
623
|
"microburst": "Microburst",
|
|
612
624
|
"rain_200_24": "Amount > 200 mm /24 hours",
|
|
613
|
-
"rain_100_24": "Amount > 100 mm /24 hours"
|
|
625
|
+
"rain_100_24": "Amount > 100 mm /24 hours",
|
|
626
|
+
"unknown": "Unknown"
|
|
614
627
|
}
|
|
615
628
|
},
|
|
616
629
|
"peligro": {
|
|
@@ -649,7 +662,8 @@
|
|
|
649
662
|
"microburst": "Microburst",
|
|
650
663
|
"tornadoes": "Tornadoes or waterspouts",
|
|
651
664
|
"waves_4": "Waves > 4.00 meters (rough sea)",
|
|
652
|
-
"waves_2_50": "Waves > 2.50 meters (tidal)"
|
|
665
|
+
"waves_2_50": "Waves > 2.50 meters (tidal)",
|
|
666
|
+
"unknown": "Unknown"
|
|
653
667
|
}
|
|
654
668
|
},
|
|
655
669
|
"peligro": {
|
|
@@ -686,7 +700,8 @@
|
|
|
686
700
|
"name": "Threshold",
|
|
687
701
|
"state": {
|
|
688
702
|
"cold_very_intense": "Very intense cold",
|
|
689
|
-
"cold_intense": "Intense cold"
|
|
703
|
+
"cold_intense": "Intense cold",
|
|
704
|
+
"unknown": "Unknown"
|
|
690
705
|
}
|
|
691
706
|
},
|
|
692
707
|
"peligro": {
|
|
@@ -723,7 +738,8 @@
|
|
|
723
738
|
"name": "Threshold",
|
|
724
739
|
"state": {
|
|
725
740
|
"heat_very_intense": "Very intense hot",
|
|
726
|
-
"heat_intense": "Intense heat"
|
|
741
|
+
"heat_intense": "Intense heat",
|
|
742
|
+
"unknown": "Unknown"
|
|
727
743
|
}
|
|
728
744
|
},
|
|
729
745
|
"peligro": {
|
|
@@ -760,7 +776,8 @@
|
|
|
760
776
|
"name": "Threshold",
|
|
761
777
|
"state": {
|
|
762
778
|
"heat_night_very_intense": "Very intense night heat",
|
|
763
|
-
"heat_night_intense": "Intense night heat"
|
|
779
|
+
"heat_night_intense": "Intense night heat",
|
|
780
|
+
"unknown": "Unknown"
|
|
764
781
|
}
|
|
765
782
|
},
|
|
766
783
|
"peligro": {
|
|
@@ -806,7 +823,8 @@
|
|
|
806
823
|
"thickness_5_at_300": "thickness > 5 cm at altitudes below 300 meters",
|
|
807
824
|
"thickness_5_at_600": "thickness > 5 cm at altitudes above 600 meters up to 800 meters",
|
|
808
825
|
"thickness_2_at_300": "thickness > 2 cm at altitudes above 300 meters up to 600 meters",
|
|
809
|
-
"thickness_0_at_300": "thickness ≥ 0 cm at altitudes below 300 meters"
|
|
826
|
+
"thickness_0_at_300": "thickness ≥ 0 cm at altitudes below 300 meters",
|
|
827
|
+
"unknown": "Unknown"
|
|
810
828
|
}
|
|
811
829
|
},
|
|
812
830
|
"peligro": {
|
|
@@ -816,7 +834,35 @@
|
|
|
816
834
|
"name": "Level"
|
|
817
835
|
}
|
|
818
836
|
}
|
|
837
|
+
},
|
|
838
|
+
"sunrise": {
|
|
839
|
+
"name": "Sunrise",
|
|
840
|
+
"state_attributes": {
|
|
841
|
+
"friendly_time": {
|
|
842
|
+
"name": "Time"
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"sunset": {
|
|
847
|
+
"name": "Sunset",
|
|
848
|
+
"state_attributes": {
|
|
849
|
+
"friendly_time": {
|
|
850
|
+
"name": "Time"
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"sun_file_status": {
|
|
855
|
+
"name": "Sun File",
|
|
856
|
+
"state": {
|
|
857
|
+
"updated": "Updated",
|
|
858
|
+
"obsolete": "Obsolete"
|
|
859
|
+
},
|
|
860
|
+
"state_attributes": {
|
|
861
|
+
"update_date": {
|
|
862
|
+
"name": "Date"
|
|
863
|
+
}
|
|
864
|
+
}
|
|
819
865
|
}
|
|
820
866
|
}
|
|
821
867
|
}
|
|
822
|
-
}
|
|
868
|
+
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"options": {
|
|
37
37
|
"step":{
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "
|
|
39
|
+
"description": "Configureu la clau API, els límits de l'API, regenereu els fitxers d'assets o actualitzeu les coordenades.",
|
|
40
40
|
"title": "Opcions de configuració",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Opcions"
|
|
@@ -50,6 +50,14 @@
|
|
|
50
50
|
"description": "Configura els límits de l'API.",
|
|
51
51
|
"title": "Límits de l'API"
|
|
52
52
|
},
|
|
53
|
+
"update_coordinates": {
|
|
54
|
+
"description": "Introduïu noves coordenades. Coordenades actuals: latitud {current_latitude}, longitud {current_longitude}.",
|
|
55
|
+
"title": "Actualitzar coordenades",
|
|
56
|
+
"data": {
|
|
57
|
+
"latitude": "Latitud",
|
|
58
|
+
"longitude": "Longitud"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
53
61
|
"confirm_regenerate_assets": {
|
|
54
62
|
"description": "Regenera els arxius a 'assets'.",
|
|
55
63
|
"title": "Regenera 'assets'",
|
|
@@ -61,7 +69,8 @@
|
|
|
61
69
|
"error": {
|
|
62
70
|
"cannot_connect": "Error de conexió. Error al comprovar la nova API Key.",
|
|
63
71
|
"unknown": "Error desconegut al comprovar la nova API Key.",
|
|
64
|
-
"invalid_limit": "Límit no vàlid. El límit ha de ser un nombre positiu."
|
|
72
|
+
"invalid_limit": "Límit no vàlid. El límit ha de ser un nombre positiu.",
|
|
73
|
+
"invalid_coordinates": "Les coordenades han d'estar dins del rang de Catalunya (latitud: 40.5 a 42.5, longitud: 0.1 a 3.3)."
|
|
65
74
|
}
|
|
66
75
|
},
|
|
67
76
|
"selector": {
|
|
@@ -69,7 +78,8 @@
|
|
|
69
78
|
"options": {
|
|
70
79
|
"update_api_and_limits": "Actualitzar API Key i límits.",
|
|
71
80
|
"update_limits_only": "Actualitzar API límits.",
|
|
72
|
-
"regenerate_assets": "Regenera arxius a 'assets'."
|
|
81
|
+
"regenerate_assets": "Regenera arxius a 'assets'.",
|
|
82
|
+
"update_coordinates": "Actualitzar coordenades (latitud i longitud)."
|
|
73
83
|
}
|
|
74
84
|
}
|
|
75
85
|
},
|
|
@@ -533,7 +543,8 @@
|
|
|
533
543
|
"wind_35": "Ratxa màxima > 35 m/s",
|
|
534
544
|
"wind_30": "Ratxa màxima > 30 m/s",
|
|
535
545
|
"wind_25": "Ratxa màxima > 25 m/s",
|
|
536
|
-
"wind_20": "Ratxa màxima > 20 m/s"
|
|
546
|
+
"wind_20": "Ratxa màxima > 20 m/s",
|
|
547
|
+
"unknown": "Desconegut"
|
|
537
548
|
}
|
|
538
549
|
},
|
|
539
550
|
"peligro": {
|
|
@@ -572,7 +583,8 @@
|
|
|
572
583
|
"hail_2_cm": "Pedra de diàmetre > 2 cm",
|
|
573
584
|
"microburst": "Esclafits",
|
|
574
585
|
"intensity_40_30": "Intensitat > 40 mm / 30 minuts",
|
|
575
|
-
"intensity_20_30": "Intensitat > 20 mm / 30 minuts"
|
|
586
|
+
"intensity_20_30": "Intensitat > 20 mm / 30 minuts",
|
|
587
|
+
"unknown": "Desconegut"
|
|
576
588
|
}
|
|
577
589
|
},
|
|
578
590
|
"peligro": {
|
|
@@ -610,7 +622,8 @@
|
|
|
610
622
|
"state": {
|
|
611
623
|
"microburst": "Esclafits",
|
|
612
624
|
"rain_200_24": "Acumulada > 200 mm /24 hores",
|
|
613
|
-
"rain_100_24": "Acumulada > 100 mm /24 hores"
|
|
625
|
+
"rain_100_24": "Acumulada > 100 mm /24 hores",
|
|
626
|
+
"unknown": "Desconegut"
|
|
614
627
|
}
|
|
615
628
|
},
|
|
616
629
|
"peligro": {
|
|
@@ -649,7 +662,8 @@
|
|
|
649
662
|
"microburst": "Esclafits",
|
|
650
663
|
"tornadoes": "Tornados o mànegues",
|
|
651
664
|
"waves_4": "Onades > 4.00 metres (mar brava)",
|
|
652
|
-
"waves_2_50": "Onades > 2.50 metres (maregassa)"
|
|
665
|
+
"waves_2_50": "Onades > 2.50 metres (maregassa)",
|
|
666
|
+
"unknown": "Desconegut"
|
|
653
667
|
}
|
|
654
668
|
},
|
|
655
669
|
"peligro": {
|
|
@@ -686,7 +700,8 @@
|
|
|
686
700
|
"name": "Llindar",
|
|
687
701
|
"state": {
|
|
688
702
|
"cold_very_intense": "Fred molt intens",
|
|
689
|
-
"cold_intense": "Fred intens"
|
|
703
|
+
"cold_intense": "Fred intens",
|
|
704
|
+
"unknown": "Desconegut"
|
|
690
705
|
}
|
|
691
706
|
},
|
|
692
707
|
"peligro": {
|
|
@@ -723,7 +738,8 @@
|
|
|
723
738
|
"name": "Llindar",
|
|
724
739
|
"state": {
|
|
725
740
|
"heat_very_intense": "Calor molt intensa",
|
|
726
|
-
"heat_intense": "Calor intensa"
|
|
741
|
+
"heat_intense": "Calor intensa",
|
|
742
|
+
"unknown": "Desconegut"
|
|
727
743
|
}
|
|
728
744
|
},
|
|
729
745
|
"peligro": {
|
|
@@ -760,7 +776,8 @@
|
|
|
760
776
|
"name": "Llindar",
|
|
761
777
|
"state": {
|
|
762
778
|
"heat_night_very_intense": "Calor nocturna molt intensa",
|
|
763
|
-
"heat_night_intense": "Calor nocturna intensa"
|
|
779
|
+
"heat_night_intense": "Calor nocturna intensa",
|
|
780
|
+
"unknown": "Desconegut"
|
|
764
781
|
}
|
|
765
782
|
},
|
|
766
783
|
"peligro": {
|
|
@@ -806,7 +823,8 @@
|
|
|
806
823
|
"thickness_5_at_300": "gruix > 5 cm a cotes inferiors a 300 metres",
|
|
807
824
|
"thickness_5_at_600": "gruix > 5 cm a cotes superiors a 600 metres fins a 800 metres",
|
|
808
825
|
"thickness_2_at_300": "gruix > 2 cm a cotes superiors a 300 metres fins a 600 metres",
|
|
809
|
-
"thickness_0_at_300": "gruix ≥ 0 cm a cotes inferiors a 300 metres"
|
|
826
|
+
"thickness_0_at_300": "gruix ≥ 0 cm a cotes inferiors a 300 metres",
|
|
827
|
+
"unknown": "Desconegut"
|
|
810
828
|
}
|
|
811
829
|
},
|
|
812
830
|
"peligro": {
|
|
@@ -816,8 +834,35 @@
|
|
|
816
834
|
"name": "Nivell"
|
|
817
835
|
}
|
|
818
836
|
}
|
|
837
|
+
},
|
|
838
|
+
"sunrise": {
|
|
839
|
+
"name": "Sortida del sol",
|
|
840
|
+
"state_attributes": {
|
|
841
|
+
"friendly_time": {
|
|
842
|
+
"name": "Hora"
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"sunset": {
|
|
847
|
+
"name": "Posta de sol",
|
|
848
|
+
"state_attributes": {
|
|
849
|
+
"friendly_time": {
|
|
850
|
+
"name": "Hora"
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"sun_file_status": {
|
|
855
|
+
"name": "Arxiu Sol",
|
|
856
|
+
"state": {
|
|
857
|
+
"updated": "Actualitzat",
|
|
858
|
+
"obsolete": "Obsolet"
|
|
859
|
+
},
|
|
860
|
+
"state_attributes": {
|
|
861
|
+
"update_date": {
|
|
862
|
+
"name": "Data"
|
|
863
|
+
}
|
|
864
|
+
}
|
|
819
865
|
}
|
|
820
866
|
}
|
|
821
867
|
}
|
|
822
|
-
}
|
|
823
|
-
|
|
868
|
+
}
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"options": {
|
|
37
|
-
"step":{
|
|
37
|
+
"step": {
|
|
38
38
|
"init": {
|
|
39
|
-
"description": "Setup the API Key, the API limits
|
|
39
|
+
"description": "Setup the API Key, the API limits, regenerate 'assets' files, or update coordinates.",
|
|
40
40
|
"title": "Setup options",
|
|
41
41
|
"data": {
|
|
42
42
|
"option": "Options"
|
|
@@ -50,6 +50,14 @@
|
|
|
50
50
|
"description": "Setup the API limits.",
|
|
51
51
|
"title": "API limits"
|
|
52
52
|
},
|
|
53
|
+
"update_coordinates": {
|
|
54
|
+
"description": "Enter new coordinates. Current coordinates: latitude {current_latitude}, longitude {current_longitude}.",
|
|
55
|
+
"title": "Update Coordinates",
|
|
56
|
+
"data": {
|
|
57
|
+
"latitude": "Latitude",
|
|
58
|
+
"longitude": "Longitude"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
53
61
|
"confirm_regenerate_assets": {
|
|
54
62
|
"description": "Regenerate missing assets files.",
|
|
55
63
|
"title": "Regenerate assets",
|
|
@@ -61,7 +69,8 @@
|
|
|
61
69
|
"error": {
|
|
62
70
|
"cannot_connect": "Cannot connect. Error when checking the new API Key.",
|
|
63
71
|
"unknown": "Unknown error when checking the new API Key.",
|
|
64
|
-
"invalid_limit": "Invalid limit. The limit must be a positive number."
|
|
72
|
+
"invalid_limit": "Invalid limit. The limit must be a positive number.",
|
|
73
|
+
"invalid_coordinates": "Coordinates must be within Catalonia's range (latitude: 40.5 to 42.5, longitude: 0.1 to 3.3)."
|
|
65
74
|
}
|
|
66
75
|
},
|
|
67
76
|
"selector": {
|
|
@@ -69,7 +78,8 @@
|
|
|
69
78
|
"options": {
|
|
70
79
|
"update_api_and_limits": "Update API Key and limits.",
|
|
71
80
|
"update_limits_only": "Update API limits.",
|
|
72
|
-
"regenerate_assets": "Regenerate 'assets' files."
|
|
81
|
+
"regenerate_assets": "Regenerate 'assets' files.",
|
|
82
|
+
"update_coordinates": "Update coordinates (latitude and longitude)."
|
|
73
83
|
}
|
|
74
84
|
}
|
|
75
85
|
},
|
|
@@ -269,7 +279,7 @@
|
|
|
269
279
|
"cloud_cloud": {
|
|
270
280
|
"name": "Cloud-Cloud"
|
|
271
281
|
},
|
|
272
|
-
"cloud_ground_neg":{
|
|
282
|
+
"cloud_ground_neg": {
|
|
273
283
|
"name": "Cloud-Ground Negative"
|
|
274
284
|
},
|
|
275
285
|
"cloud_ground_pos": {
|
|
@@ -283,7 +293,7 @@
|
|
|
283
293
|
"cloud_cloud": {
|
|
284
294
|
"name": "Cloud-Cloud"
|
|
285
295
|
},
|
|
286
|
-
"cloud_ground_neg":{
|
|
296
|
+
"cloud_ground_neg": {
|
|
287
297
|
"name": "Cloud-Ground Negative"
|
|
288
298
|
},
|
|
289
299
|
"cloud_ground_pos": {
|
|
@@ -533,7 +543,8 @@
|
|
|
533
543
|
"wind_35": "Max. wind speed > 35 m/s",
|
|
534
544
|
"wind_30": "Max. wind speed > 30 m/s",
|
|
535
545
|
"wind_25": "Max. wind speed > 25 m/s",
|
|
536
|
-
"wind_20": "Max. wind speed > 20 m/s"
|
|
546
|
+
"wind_20": "Max. wind speed > 20 m/s",
|
|
547
|
+
"unknown": "Unknown"
|
|
537
548
|
}
|
|
538
549
|
},
|
|
539
550
|
"peligro": {
|
|
@@ -572,7 +583,8 @@
|
|
|
572
583
|
"hail_2_cm": "Hail with diameter > 2 cm",
|
|
573
584
|
"microburst": "Microburst",
|
|
574
585
|
"intensity_40_30": "Intensity > 40 mm / 30 minutes",
|
|
575
|
-
"intensity_20_30": "Intensity > 20 mm / 30 minutes"
|
|
586
|
+
"intensity_20_30": "Intensity > 20 mm / 30 minutes",
|
|
587
|
+
"unknown": "Unknown"
|
|
576
588
|
}
|
|
577
589
|
},
|
|
578
590
|
"peligro": {
|
|
@@ -610,7 +622,8 @@
|
|
|
610
622
|
"state": {
|
|
611
623
|
"microburst": "Microburst",
|
|
612
624
|
"rain_200_24": "Amount > 200 mm /24 hours",
|
|
613
|
-
"rain_100_24": "Amount > 100 mm /24 hours"
|
|
625
|
+
"rain_100_24": "Amount > 100 mm /24 hours",
|
|
626
|
+
"unknown": "Unknown"
|
|
614
627
|
}
|
|
615
628
|
},
|
|
616
629
|
"peligro": {
|
|
@@ -649,7 +662,8 @@
|
|
|
649
662
|
"microburst": "Microburst",
|
|
650
663
|
"tornadoes": "Tornadoes or waterspouts",
|
|
651
664
|
"waves_4": "Waves > 4.00 meters (rough sea)",
|
|
652
|
-
"waves_2_50": "Waves > 2.50 meters (tidal)"
|
|
665
|
+
"waves_2_50": "Waves > 2.50 meters (tidal)",
|
|
666
|
+
"unknown": "Unknown"
|
|
653
667
|
}
|
|
654
668
|
},
|
|
655
669
|
"peligro": {
|
|
@@ -686,7 +700,8 @@
|
|
|
686
700
|
"name": "Threshold",
|
|
687
701
|
"state": {
|
|
688
702
|
"cold_very_intense": "Very intense cold",
|
|
689
|
-
"cold_intense": "Intense cold"
|
|
703
|
+
"cold_intense": "Intense cold",
|
|
704
|
+
"unknown": "Unknown"
|
|
690
705
|
}
|
|
691
706
|
},
|
|
692
707
|
"peligro": {
|
|
@@ -723,7 +738,8 @@
|
|
|
723
738
|
"name": "Threshold",
|
|
724
739
|
"state": {
|
|
725
740
|
"heat_very_intense": "Very intense hot",
|
|
726
|
-
"heat_intense": "Intense heat"
|
|
741
|
+
"heat_intense": "Intense heat",
|
|
742
|
+
"unknown": "Unknown"
|
|
727
743
|
}
|
|
728
744
|
},
|
|
729
745
|
"peligro": {
|
|
@@ -760,7 +776,8 @@
|
|
|
760
776
|
"name": "Threshold",
|
|
761
777
|
"state": {
|
|
762
778
|
"heat_night_very_intense": "Very intense night heat",
|
|
763
|
-
"heat_night_intense": "Intense night heat"
|
|
779
|
+
"heat_night_intense": "Intense night heat",
|
|
780
|
+
"unknown": "Unknown"
|
|
764
781
|
}
|
|
765
782
|
},
|
|
766
783
|
"peligro": {
|
|
@@ -806,7 +823,8 @@
|
|
|
806
823
|
"thickness_5_at_300": "thickness > 5 cm at altitudes below 300 meters",
|
|
807
824
|
"thickness_5_at_600": "thickness > 5 cm at altitudes above 600 meters up to 800 meters",
|
|
808
825
|
"thickness_2_at_300": "thickness > 2 cm at altitudes above 300 meters up to 600 meters",
|
|
809
|
-
"thickness_0_at_300": "thickness ≥ 0 cm at altitudes below 300 meters"
|
|
826
|
+
"thickness_0_at_300": "thickness ≥ 0 cm at altitudes below 300 meters",
|
|
827
|
+
"unknown": "Unknown"
|
|
810
828
|
}
|
|
811
829
|
},
|
|
812
830
|
"peligro": {
|
|
@@ -816,7 +834,35 @@
|
|
|
816
834
|
"name": "Level"
|
|
817
835
|
}
|
|
818
836
|
}
|
|
837
|
+
},
|
|
838
|
+
"sunrise": {
|
|
839
|
+
"name": "Sunrise",
|
|
840
|
+
"state_attributes": {
|
|
841
|
+
"friendly_time": {
|
|
842
|
+
"name": "Time"
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"sunset": {
|
|
847
|
+
"name": "Sunset",
|
|
848
|
+
"state_attributes": {
|
|
849
|
+
"friendly_time": {
|
|
850
|
+
"name": "Time"
|
|
851
|
+
}
|
|
852
|
+
}
|
|
853
|
+
},
|
|
854
|
+
"sun_file_status": {
|
|
855
|
+
"name": "Sun File",
|
|
856
|
+
"state": {
|
|
857
|
+
"updated": "Updated",
|
|
858
|
+
"obsolete": "Obsolete"
|
|
859
|
+
},
|
|
860
|
+
"state_attributes": {
|
|
861
|
+
"update_date": {
|
|
862
|
+
"name": "Date"
|
|
863
|
+
}
|
|
864
|
+
}
|
|
819
865
|
}
|
|
820
866
|
}
|
|
821
867
|
}
|
|
822
|
-
}
|
|
868
|
+
}
|