I use WUnderground API to retrieve hourly forecast. Here is a part of the json, returned by WUndergound API:
"qpf":{
"english":"0.02",
"metric":"1"
},
"snow":{
"english":"0.0",
"metric":"0"
}
And I don't know how to understand english/metric fields for snow and qpf. Are they in inches/millimeters or inches/centimeters or something else? Precipitation is usually specified in cm/mm for the metric system and in inches for imperial. But:
1 cm != 0.02 inches && 1 mm != 0.02 inches.
I have no guesses.