National meteorological observation network — ANM
Hourly and daily weather observations recorded across national meteorological stations: temperature, relative humidity, wind speed, air pressure, precipitation and hazardous weather alerts.
Before you use this resource
Current observations and synoptic charts are publicly accessible on the portal; full historical multiannual series and raw radar data require institutional agreements or formal FOIA requests.
- Published by
- National Meteorological Administration
- Source
- Public institution
- Collection
- Public data
- Resource type
- Database
- Coverage
- Romania; national meteorological station network
- Documented formats
- HTML, JSON, XML
- Licence / terms
- Rights need checking
- API access
- Documented API
- Record review date
- 2026-09-07
- Last resource update
- 2026-09-07
- Technical data audit
- Not performed
- Documentation
- Source reviewed
Documentation
The official National Meteorological Administration portal was directly reviewed, including nowcasting warning feeds and the national Doppler radar composite.
The cited page documents this record. Check the original source for terms and versions before reuse.
Getting started
- Access the weather forecasts and meteorological warning feeds on the ANM portal.
- Select the target weather station in the county of interest to inspect current conditions.
- Cross-reference recorded temperature and precipitation levels with river discharge from Apele Române and air quality from RNMCA.
Access and checks
- ANM meteorological warnings and weather bulletins ↗ · HTML
Sample inspected on 2026-09-07 - National radar composite precipitation map ↗ · PNG
Sample inspected on 2026-09-07
Direct API queries
curl -s 'https://www.meteoromania.ro/vremea/avertizari-meteorologice/' | jq .import urllib.request
import json
url = "https://www.meteoromania.ro/vremea/avertizari-meteorologice/"
req = urllib.request.Request(url, headers={"User-Agent": "CunoastereDeschisa/1.7"})
with urllib.request.urlopen(req) as resp:
data = json.loads(resp.read().decode("utf-8"))
print(json.dumps(data, indent=2)[:500])library(jsonlite)
data <- fromJSON("https://www.meteoromania.ro/vremea/avertizari-meteorologice/")
str(data)INSTALL httpfs;
LOAD httpfs;
SELECT * FROM read_json_auto('https://www.meteoromania.ro/vremea/avertizari-meteorologice/')
LIMIT 10;Data dictionary and field schema
Surface weather observation schema — ANM
| Field / Column | Type | Description |
|---|---|---|
indicativ_statie | text | WMO synoptic station identifier code |
nume_statie | text | Geographical name of weather observation station |
judet | text | County jurisdiction where station is located |
temperatura_c | float | Air temperature at 2-metre elevation in degrees Celsius |
umezeala_relativa_pct | integer | Relative humidity percentage |
presiune_hpa | float | Atmospheric pressure reduced to sea level (hPa) |
viteza_vant_ms | float | Average wind speed in metres per second |
precipitatii_mm | float | Accumulated precipitation amount (mm or l/sqm) |
Sample real record (JSON)
{
"indicativ_statie": "15420",
"nume_statie": "București Băneasa",
"judet": "București",
"temperatura_c": 21.4,
"umezeala_relativa_pct": 58,
"presiune_hpa": 1014.8,
"viteza_vant_ms": 3.2,
"precipitatii_mm": 0
}Continue your research
Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.