-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathPW_OpenAPI.yaml
More file actions
1442 lines (1438 loc) · 55.9 KB
/
Copy pathPW_OpenAPI.yaml
File metadata and controls
1442 lines (1438 loc) · 55.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
version: "2.9.6"
title: Pirate Weather API
description: Pirate Weather provides an open, free, and documented source of government weather data.
termsOfService: https://pirate-weather.apiable.io/terms
contact:
email: mail@pirateweather.net
license:
name: Apache License 2.0
url: https://github.com/Pirate-Weather/pirateweather/blob/main/LICENSE.md
externalDocs:
description: Full API reference
url: https://pirate-weather.apiable.io/full-api-reference
tags:
- name: Weather
description: Pirate Weather provides an open, free, and documented source of government weather data.
paths:
"/forecast/{api_key}/{lat_and_long_or_time}":
get:
tags:
- Weather
operationId: Weather
summary: Make a request to Pirate Weather
description: Fetch a weather forecast or get historical weather data based on latitude/longitude or city/country input.
parameters:
- name: api_key
in: path
description: Pirate Weather Authentication Token.
required: true
schema:
type: string
- name: lat_and_long_or_time
in: path
description: A single comma-delimited location string. Use either latitude,longitude or city,country. Optionally append a UNIX timestamp, ISO 8601 date string, or relative negative time in seconds (S), hours (H), or days (D). Examples include '45.42,-75.69', 'Ottawa,Canada', 'New%20York,US', and 'Paris,France,1704067200'.
required: true
schema:
type: string
examples:
- '45.42,-75.69'
- 'Ottawa,Canada'
- 'New%20York,US'
- 'Paris,France,1704067200'
- name: exclude
in: query
description: Exclude some keys (currently, minutely, hourly, daily, day_night, flags, alerts), models (nbm, hrrr, gefs, aigefs, aigfs, aifs), or detailed text summaries (summary) from the Pirate Weather forecast response. Exclude takes precedence over include-based feature flags.
schema:
type: string
enum:
- summary
- currently
- minutely
- hourly
- daily
- day_night
- flags
- alerts
- nbm
- hrrr
- gefs
- aigefs
- aigfs
- aifs
- rtma_ru
- ecmwf_ifs
- dwd_mosmix
- name: days
in: query
description: When using the Time Machine endpoint, return up to 7 days of historic data in a single request.
schema:
type: integer
minimum: 1
maximum: 7
example: 7
- name: extend
in: query
description: Fetch the next 168 hours (7 days) worth of hourly data, instead of the next 24.
schema:
type: string
enum:
- hourly
- name: extraVars
in: query
description: Add additional variables to the response.
schema:
type: string
enum:
- stationPressure
- name: lang
in: query
description: Returns the forecast summaries in the desired language.
schema:
type: string
enum:
- ar
- az
- be
- bg
- bn
- bs
- ca
- cs
- cy
- da
- de
- el
- en
- eo
- es
- et
- fa
- fi
- fr
- ga
- gd
- he
- hi
- hr
- hu
- id
- is
- it
- ja
- ka
- kn
- ko
- kw
- lv
- ml
- mr
- nl
- no
- pa
- pl
- pt
- ro
- ru
- sk
- sl
- sr
- sv
- ta
- te
- tet
- tr
- uk
- ur
- vi
- x-pig-latin
- zh
- zh-tw
- name: units
in: query
description: Return the weather forecast data in the requested unit system.
schema:
type: string
- name: version
in: query
description: Include fields which were not part of the Dark Sky API but were introduced in API version 2.
schema:
type: integer
- name: tmextra
in: query
description: Include the full set of parameters in recent time machine requests.
schema:
type: integer
- name: icon
in: query
description: Changes the icon field to return icons which aren't part of the Dark Sky icon set.
schema:
type: string
- name: include
in: query
description: Include extra blocks or model families that were not part of the Dark Sky API.
schema:
type: string
enum:
- day_night_forecast
- aimodels
- name: blocks
in: query
description: A comma-delimited allowlist of response blocks to return. Supported blocks are currently, minutely, hourly, daily, day_night, alerts, and flags.
schema:
type: string
example: currently,hourly
- name: daily_indices
in: query
description: A comma-delimited list of zero-based indices to return from daily.data.
schema:
type: string
example: 0,1,2
- name: hourly_indices
in: query
description: A comma-delimited list of zero-based indices to return from hourly.data.
schema:
type: string
example: 0,1,2,6
- name: day_night_indices
in: query
description: A comma-delimited list of zero-based indices to return from day_night.data.
schema:
type: string
example: 0,1
responses:
"400":
description: "Bad Request. Longitude or Latitude is invalid, or one of the filtering query parameters is malformed."
content:
application/json:
schema:
properties:
detail:
type: string
description: The error message
example: "Invalid Location Specification"
"401":
description: "API key does not have access to the queried endpoint or if you did not include an API key in your request."
content:
text/html:
schema:
type: string
example: Kong Error Invalid authentication credentials.
"404":
description: "You queried the API using an invalid route or if you do not supply a latitude or longitude in your request."
content:
application/json:
schema:
properties:
message:
type: string
description: The error message.
example: "no Route matched with those values"
"429":
description: "Your your API key has hit the quota for the month."
content:
text/html:
schema:
type: string
example: Kong Error API rate limit exceeded.
"500":
description: "Internal Server Error."
content:
application/json:
schema:
properties:
message:
type: string
description: The error message.
example: "Internal Server Error"
"502":
description: "Bad Gateway."
content:
application/json:
schema:
properties:
message:
type: string
description: The error message.
example: "An invalid response was received from the upstream server"
"200":
description: Success
content:
application/json:
schema:
properties:
latitude:
$ref: "#/components/schemas/latitude"
longitude:
$ref: "#/components/schemas/longitude"
timezone:
$ref: "#/components/schemas/timezone"
offset:
$ref: "#/components/schemas/offset"
elevation:
$ref: "#/components/schemas/elevation"
currently:
$ref: "#/components/schemas/currently"
minutely:
$ref: "#/components/schemas/minutely"
hourly:
$ref: "#/components/schemas/hourly"
day_night:
$ref: "#/components/schemas/day_night"
daily:
$ref: "#/components/schemas/daily"
alerts:
$ref: "#/components/schemas/alerts"
flags:
$ref: "#/components/schemas/flags"
servers:
- url: https://api.pirateweather.net
description: Production forecast data server
- url: https://dev.pirateweather.net
description: Development forecast data server
- url: https://timemachine.pirateweather.net
description: Production historic data server
components:
schemas:
latitude:
type: number
description: The requested latitude.
example: 37.3035
longitude:
type: number
description: The requested longitude.
example: -89.523
timezone:
type: string
description: The timezone name for the requested location.
example: America/Chicago
offset:
type: number
description: The timezone offset in hours.
example: -6
elevation:
type: number
description: The elevation in meters of the forecast point.
example: 105
currently:
type: object
description: A block containing the current weather for the requested location.
properties:
time:
type: integer
format: int32
description: The current time in UNIX format.
example: 1762721160
summary:
type: string
description: A human-readable summary of the current weather.
example: Breezy and Mostly Clear
icon:
type: string
description: An icon representing the current weather.
example: wind
nearestStormDistance:
type: number
description: The distance to the nearest storm.
example: 194.97
nearestStormBearing:
type: integer
format: int32
description: The direction to the nearest storm in degrees.
example: 131
precipIntensity:
type: number
description: The intensity of liquid water equivalent precipitation.
example: 0
precipProbability:
type: number
description: The probability of precipitation occurring.
example: 0
precipIntensityError:
type: number
description: The standard deviation of the precipitation intensity.
example: 0
precipType:
type: string
description: The type of precipitation occurring.
example: none
rainIntensity:
type: number
description: The intensity of rain precipitation. Only returned when version>1.
example: 0
snowIntensity:
type: number
description: The intensity of snow precipitation. Only returned when version>1.
example: 0
iceIntensity:
type: number
description: The intensity of ice precipitation. Only returned when version>1.
example: 0
temperature:
type: number
description: The air temperature.
example: 42.15
apparentTemperature:
type: number
description: The apparent temperature (feels like).
example: 29.95
dewPoint:
type: number
description: The dew point temperature.
example: 24.21
humidity:
type: number
description: The relative humidity.
example: 0.49
pressure:
type: number
description: The sea-level pressure in hectopascals.
example: 1024.45
windSpeed:
type: number
description: The wind speed.
example: 17.25
windGust:
type: number
description: The wind gust speed.
example: 24.93
windBearing:
type: integer
format: int32
description: The direction of the wind in degrees.
example: 333
cloudCover:
type: number
description: The fraction of the sky covered by clouds.
example: 0.14
uvIndex:
type: number
description: The UV index.
example: 2.19
visibility:
type: number
description: The visibility.
example: 10
ozone:
type: number
description: The ozone concentration in Dobson units.
example: 321.45
smoke:
type: number
description: The amount of near-surface smoke in ug/m^3. Only returned when version>1.
example: 0.34
fireIndex:
type: number
description: The Fosberg Fire Weather Index, derived from temperature, relative humidity, and wind speed. Only returned when version>1.
example: 27.58
feelsLike:
type: number
description: The apparent temperature reported by NBM and gfs. Only returned when version>1.
example: 33.75
currentDayIce:
type: number
description: The ice precipitation that has accumulated so far during the day, from midnight until the forecast request time. Only returned when version>1.
example: 0
currentDayLiquid:
type: number
description: The liquid precipitation that has accumulated so far during the day, from midnight until the forecast request time. Only returned when version>1.
example: 0
currentDaySnow:
type: number
description: The snow precipitation that has accumulated so far during the day, from midnight until the forecast request time. Only returned when version>1.
example: 0
stationPressure:
type: number
description: The station pressure hectopascals. Only returned when extraVars contains stationPressure.
example: 0
solar:
type: number
description: The Downward Short-Wave Radiation Flux measured in W/m^2. Only returned when version>1.
example: 319.73
cape:
type: integer
format: int32
description: The Convective Available Potential Energy measured in J/kg. Only returned when version>1.
example: 3
minutely:
type: object
description: A block containing minute-by-minute precipitation intensity for the next 60 minutes.
properties:
summary:
type: string
description: A summary of the minute-by-minute forecast.
example: Breezy and mostly clear for the hour.
icon:
type: string
description: An icon representing the minute-by-minute forecast.
example: wind
data:
type: array
items:
type: object
properties:
time:
type: integer
format: int32
description: The time of the data point in UNIX format.
example: 1762721160
precipIntensity:
type: number
description: The intensity of precipitation.
example: 0
precipProbability:
type: number
description: The probability of precipitation.
example: 0.38
precipIntensityError:
type: number
description: The standard deviation of the precipitation intensity.
example: 0
precipType:
type: string
description: The type of precipitation occurring.
example: none
rainIntensity:
type: number
description: The intensity of rain precipitation. Only returned when version>1.
example: 0
snowIntensity:
type: number
description: The intensity of snow precipitation. Only returned when version>1.
example: 0
iceIntensity:
type: number
description: The intensity of ice precipitation. Only returned when version>1.
example: 0
hourly:
type: object
description: A block containing hour-by-hour forecasted conditions for the next 48 hours. If `extend=hourly` is used, the hourly block gives hour-by-hour forecasted conditions for the next 168 hours.
properties:
summary:
type: string
description: A summary of the hourly forecast.
example: Breezy until this evening, starting again tomorrow morning.
icon:
type: string
description: An icon representing the hourly forecast.
example: wind
data:
type: array
items:
type: object
properties:
time:
type: integer
format: int32
description: The time of the data point in UNIX format.
example: 1762718400
summary:
type: string
description: A summary of the weather.
example: Breezy and Mostly Clear
icon:
type: string
description: An icon representing the weather.
example: wind
precipIntensity:
type: number
description: The intensity of precipitation.
example: 0
precipProbability:
type: number
description: The probability of precipitation.
example: 0
precipIntensityError:
type: number
description: The standard deviation of the precipitation intensity.
example: 0
precipAccumulation:
type: number
description: The total amount of precipitation.
example: 0
precipType:
type: string
description: The type of precipitation occurring.
example: none
rainIntensity:
type: number
description: The intensity of rain precipitation. Only returned when version>1.
example: 0
snowIntensity:
type: number
description: The intensity of snow precipitation. Only returned when version>1.
example: 0
iceIntensity:
type: number
description: The intensity of ice precipitation. Only returned when version>1.
example: 0
temperature:
type: number
description: The air temperature.
example: 42.22
apparentTemperature:
type: number
description: The apparent temperature (feels like).
example: 31.26
dewPoint:
type: number
description: The dew point temperature.
example: 23.85
humidity:
type: number
description: The relative humidity.
example: 0.47
pressure:
type: number
description: The air pressure.
example: 1024.02
stationPressure:
type: number
description: The station pressure. Only returned when extraVars contains stationPressure.
example: 1009.92
windSpeed:
type: number
description: The wind speed.
example: 16.98
windGust:
type: number
description: The wind gust speed.
example: 27.48
windBearing:
type: integer
format: int32
description: The direction of the wind in degrees.
example: 330
cloudCover:
type: number
description: The fraction of the sky covered by clouds.
example: 0.35
uvIndex:
type: number
description: The UV index.
example: 2.93
visibility:
type: number
description: The visibility.
example: 10
ozone:
type: number
description: The ozone concentration in Dobson units.
example: 319.3
smoke:
type: number
description: The amount of near-surface smoke in ug/m3. Only returned when version>1.
example: 0.4
liquidAccumulation:
type: number
description: The amount of liquid precipitation expected. Only returned when version>1.
example: 0
snowAccumulation:
type: number
description: The amount of snow precipitation expected. Only returned when version>1.
example: 0
iceAccumulation:
type: number
description: The amount of ice precipitation expected. Only returned when version>1.
example: 0
nearestStormDistance:
type: number
description: The distance to the nearest storm.
example: 172.16
nearestStormBearing:
type: integer
format: int32
description: The direction to the nearest storm.
example: 127
fireIndex:
type: number
description: The Fosberg Fire Weather Index, derived from temperature, relative humidity, and wind speed. Only returned when version>1.
example: 27.2
feelsLike:
type: number
description: The apparent temperature reported by NBM and gfs. Only returned when version>1.
example: 34.38
solar:
type: number
description: The Downward Short-Wave Radiation Flux measured in W/m^2. Only returned when version>1.
example: 498.64
cape:
type: integer
format: int32
description: The Convective Available Potential Energy measured in J/kg. Only returned when version>1.
example: 0
day_night:
type: object
description: A block containing day and night forecasts for the next 7 days.
properties:
data:
type: array
items:
type: object
properties:
time:
type: integer
format: int32
description: The time of the data point in UNIX format.
example: 1762682400
summary:
type: string
description: A summary of the weather.
example: Breezy throughout the day.
icon:
type: string
description: An icon representing the weather.
example: wind
precipIntensity:
type: number
description: The intensity of precipitation.
example: 0
precipIntensityMax:
type: number
description: The maximum intensity of precipitation.
example: 0
rainIntensity:
type: number
description: The intensity of rain precipitation. Only returned when version>1.
example: 0
rainIntensityMax:
type: number
description: The maximum intensity of rain precipitation. Only returned when version>1.
example: 0
snowIntensity:
type: number
description: The intensity of snow precipitation. Only returned when version>1.
example: 0
snowIntensityMax:
type: number
description: The maximum intensity of snow precipitation. Only returned when version>1.
example: 0
iceIntensity:
type: number
description: The intensity of ice precipitation. Only returned when version>1.
example: 0
iceIntensityMax:
type: number
description: The maximum intensity of ice precipitation. Only returned when version>1.
example: 0
precipProbability:
type: number
description: The probability of precipitation.
example: 0
precipIntensityError:
type: number
description: The standard deviation of the precipitation intensity.
example: 0
precipAccumulation:
type: number
description: The total amount of precipitation.
example: 0
precipType:
type: string
description: The type of precipitation occurring.
example: none
temperature:
type: number
description: The air temperature.
example: 42.82
apparentTemperature:
type: number
description: The apparent temperature (feels like).
example: 32.32
dewPoint:
type: number
description: The dew point temperature.
example: 29.17
humidity:
type: number
description: The relative humidity.
example: 0.62
pressure:
type: number
description: The air pressure.
example: 1021.06
stationPressure:
type: number
description: The station pressure. Only returned when extraVars contains stationPressure.
example: 1009.92
windSpeed:
type: number
description: The wind speed.
example: 16.15
windGust:
type: number
description: The wind gust speed.
example: 26.4
windBearing:
type: integer
format: int32
description: The direction of the wind in degrees.
example: 328
cloudCover:
type: number
description: The fraction of the sky covered by clouds.
example: 0.58
uvIndex:
type: number
description: The UV index.
example: 1.15
visibility:
type: number
description: The visibility.
example: 10
ozone:
type: number
description: The ozone concentration in Dobson units.
example: 317.12
smoke:
type: number
description: The amount of near-surface smoke in ug/m3. Only returned when version>1.
example: 0.12
liquidAccumulation:
type: number
description: The amount of liquid precipitation expected. Only returned when version>1.
example: 0
snowAccumulation:
type: number
description: The amount of snow precipitation expected. Only returned when version>1.
example: 0
iceAccumulation:
type: number
description: The amount of ice precipitation expected. Only returned when version>1.
example: 0
fireIndex:
type: number
description: The Fosberg Fire Weather Index, derived from temperature, relative humidity, and wind speed. Only returned when version>1.
example: 22.08
solar:
type: number
description: The Downward Short-Wave Radiation Flux measured in W/m^2. Only returned when version>1.
example: 178.72
cape:
type: integer
format: int32
description: The Convective Available Potential Energy measured in J/kg. Only returned when version>1.
example: 4
daily:
type: object
description: A block containing day-by-day forecasted conditions for the next 7 days.
properties:
summary:
type: string
description: A summary of the daily forecast.
example: Drizzle next Sunday, with high temperatures peaking at 71°F on Friday.
icon:
type: string
description: An icon representing the daily forecast.
example: rain
data:
type: array
items:
type: object
properties:
time:
type: integer
format: int32
description: The time of the data point in UNIX format.
example: 1762668000
summary:
type: string
description: A summary of the weather.
example: Breezy until evening.
icon:
type: string
description: An icon representing the weather.
example: wind
dawnTime:
type: integer
format: int32
description: The time when the sun is a specific (6 degrees) height above the horizon after sunrise. Only returned when version>1.
example: 1762689813
sunriseTime:
type: integer
format: int32
description: The time of sunrise in UNIX format.
example: 1762691493
sunsetTime:
type: integer
format: int32
description: The time of sunset in UNIX format.
example: 1762728710
duskTime:
type: integer
format: int32
description: The time when the sun is a specific (6 degrees) height above the horizon before sunset. Only returned when version>1.
example: 1762730390
moonPhase:
type: number
description: The fractional lunation number for the given day.
example: 0.65
precipIntensity:
type: number
description: The intensity of precipitation.
example: 0
precipIntensityMax:
type: number
description: The maximum intensity of precipitation.
example: 0
precipIntensityMaxTime:
type: integer
format: int32
description: The time when the maximum precipitation intensity occurs in UNIX format.
example: 1762668000
precipProbability:
type: number
description: The probability of precipitation.
example: 0
precipAccumulation:
type: number
description: The total amount of precipitation.
example: 0
precipType:
type: string
description: The type of precipitation occurring.
example: none
rainIntensity:
type: number
description: The intensity of rain precipitation. Only returned when version>1.
example: 0
rainIntensityMax:
type: number
description: The maximum intensity of rain precipitation. Only returned when version>1.
example: 0
snowIntensity:
type: number
description: The intensity of snow precipitation. Only returned when version>1.
example: 0
snowIntensityMax:
type: number
description: The maximum intensity of snow precipitation. Only returned when version>1.
example: 0
iceIntensity:
type: number
description: The intensity of ice precipitation. Only returned when version>1.
example: 0
iceIntensityMax:
type: number
description: The maximum intensity of ice precipitation. Only returned when version>1.
temperatureHigh:
type: number
description: The daytime high temperature.
example: 42.82
temperatureHighTime:
type: integer
format: int32
description: The time when the high temperature occurs in UNIX format.
example: 1762707600
temperatureLow:
type: number
description: The overnight low temperature.
example: 26.6
temperatureLowTime:
type: integer
format: int32
description: The time when the low temperature occurs in UNIX format.
example: 1762776000
apparentTemperatureHigh:
type: number
description: The apparent daytime high temperature (feels like).
example: 32.32
apparentTemperatureHighTime:
type: integer
format: int32
description: The time when the apparent high temperature occurs in UNIX format.
example: 1762714800
apparentTemperatureLow:
type: number
description: The apparent overnight low temperature (feels like).
example: 15.43
apparentTemperatureLowTime:
type: integer
format: int32
description: The time when the apparent low temperature occurs in UNIX format.
example: 1762776000
dewPoint:
type: number
description: The dew point temperature.
example: 27.67
humidity:
type: number
description: The relative humidity.
example: 0.61
pressure:
type: number
description: The air pressure.
example: 1021.84
windSpeed:
type: number
description: The wind speed.
example: 14.07
windGust:
type: number
description: The wind gust speed.
example: 23.52
windGustTime:
type: integer
format: int32
description: The time when the maximum wind gust occurs in UNIX format.
example: 1762714800
windBearing:
type: integer
format: int32
description: The direction of the wind in degrees.
example: 327
cloudCover:
type: number
description: The fraction of the sky covered by clouds.
example: 0.43
uvIndex:
type: number
description: The max UV index during that day.
example: 3.52
uvIndexTime:
type: integer
format: int32
description: The time when the maximum UV index occurs in UNIX format.
example: 1762714800
visibility: