Skip to content

Rainfall Nowcast (HKO)

Hong Kong Observatory (HKO)

JSON Updated every 10 minutes. No API key required.

~10 min
Update Interval
~50
Rain Gauge Stations
mm/hr
Unit
FieldTypeExampleDescription
data[].mainstring"Hong Kong Observatory"District rain zone name
data[].placestring"HKO"Station identifier
data[].amountfloat12.4Rainfall (mm) in past hour
data[].unitstring"mm"Measurement unit (always mm)
startTimestring"2024-01-15T08:00:00+08:00"Measurement period start
endTimestring"2024-01-15T09:00:00+08:00"Measurement period end

Rainfall Intensity Reference (HKO)

Amount (mm/hr)Warning LevelFoot Traffic Impact
0NoneNormal
0–15Amber Rainstorm-20% outdoor diners
15–30Red Rainstorm-40% all foot traffic
30+Black Rainstorm-70% foot traffic
Terminal window
curl "https://data.weather.gov.hk/weatherAPI/opendata/weather.php?dataType=rainfall&lang=en" \
| jq '.rainfall.data[] | select(.place == "HKO")'
{
"rainfall": {
"data": [
{
"unit": "mm",
"main": "Hong Kong Observatory",
"place": "HKO",
"amount": 12.4
},
{
"unit": "mm",
"main": "Central & Western District",
"place": "CWB",
"amount": 14.2
}
],
"startTime": "2024-01-15T08:00:00+08:00",
"endTime": "2024-01-15T09:00:00+08:00"
}
}
ModelHow
ABM TheoryRain amount → foot traffic multiplier: 0mm=1.0, 5mm=0.8, 15mm=0.6, 30mm+=0.3
LLM-Powered AgentsRain state included in agent reasoning prompt as situational context
  • amount field is 0 on dry days — defensive check before applying rain multiplier
  • Rainfall is highly localized in HK due to topography — Sheung Wan can be dry while Sha Tin has a downpour
  • This endpoint is the hourly accumulation — for instantaneous intensity, combine with the rhrread endpoint
  • Combined data: fetch both rhrread and rainfall in a single pipeline run