Precipitation

Represents a set of precipitation values at a given location.

JSON representation
{
  "probability": {
    object (PrecipitationProbability)
  },
  "qpf": {
    object (QuantitativePrecipitationForecast)
  }
}
Fields
probability

object (PrecipitationProbability)

The probability of precipitation (values from 0 to 100).

qpf

object (QuantitativePrecipitationForecast)

The amount of precipitation (rain or snow), measured as liquid water equivalent, that has accumulated over a period of time. Note: QPF is an abbreviation for Quantitative Precipitation Forecast (please see the QuantitativePrecipitationForecast definition for more details).

PrecipitationProbability

Represents the probability of precipitation at a given location.

JSON representation
{
  "type": enum (PrecipitationType),
  "percent": integer
}
Fields
type

enum (PrecipitationType)

A code that indicates the type of precipitation.

percent

integer

A percentage from 0 to 100 that indicates the chances of precipitation.

PrecipitationType

Represents the type of precipitation at a given location.

Enums
PRECIPITATION_TYPE_UNSPECIFIED Unspecified precipitation type.
NONE No precipitation.
SNOW Snow precipitation.
RAIN Rain precipitation.
LIGHT_RAIN Light rain precipitation.
HEAVY_RAIN Heavy rain precipitation.
RAIN_AND_SNOW Both rain and snow precipitations.
SLEET Sleet precipitation.
FREEZING_RAIN Freezing rain precipitation.