More questions about precip values #683
Replies: 1 comment 4 replies
-
For your first question, they are both correct. For your second question, its generally useful for weather forecasting to tell people how much of the weather to expect. It's a big difference for city planners to know to expect 0.1" of snow (a dusting) vs 10" (gas up the snowplows) or 30" (better schedule some extra snowplow shifts)! Ice accumulation (from freezing rain or spray) can't be simply intuited from QPF and predominant weather, since it relies on knowing precise details about temperatures in the air column. And similarly to the snow example, large amounts of ice accumulation represent significant public safety concerns and it is worthwhile to call out the amount specifically so everyone can be prepared. |
Beta Was this translation helpful? Give feedback.
-
Hello all:
My question has to do with the interpretation of the 'quantitativePrecipitation' and 'snowfallAmount' properties that you get from the "https://api.weather.gov/gridpoints/lat,lon" url. The information provided by @netbymatt in this thread is great and helped to clear some of my questions. However. I am currently querying for the amount of snow that will fall in a specific area and I find that under the quantitativePrecipitation property I see this:
{
"validTime": "2023-12-19T00:00:00+00:00/PT6H",
"value": 0.254
},
{
"validTime": "2023-12-19T06:00:00+00:00/PT6H",
"value": 0.50800000000000001
},
Then when I check the snowfallAmount for the same time I see this:
{
"validTime": "2023-12-19T00:00:00+00:00/PT6H",
"value": 2.54
},
{
"validTime": "2023-12-19T06:00:00+00:00/PT6H",
"value": 5.0800000000000001
},
Note that the values are off by a decimal place but the units for both measurements are expressed in mm per the corresponding 'uom'.
My first question is which property is expressing the correct value?
My second question is since 'quantitativePrecipitation' is already giving me the amount expected for that period and I can use the 'weather-->values-->value-->weather' property also provided in the JSON file to see if weather is 'snow or 'snow_showers' for that specified period (or rain, rain_showers, or ice_crystals) why is there a need for the 'snowfallAmount' or even the 'iceAccumulation' properties. What am I missing that these properties provide that I can't calculate from the use of weather and quantitativePrecipitation?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions