Open knowledge
Romania
Public data / Database

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.

www.meteoromania.ro ↗

Getting started

  1. Access the weather forecasts and meteorological warning feeds on the ANM portal.
  2. Select the target weather station in the county of interest to inspect current conditions.
  3. Cross-reference recorded temperature and precipitation levels with river discharge from Apele Române and air quality from RNMCA.

Access and checks

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;
Executable query snippets for command line, data pipelines, or DuckDB.

Data dictionary and field schema

Surface weather observation schema — ANM

Field / ColumnTypeDescription
indicativ_statietextWMO synoptic station identifier code
nume_statietextGeographical name of weather observation station
judettextCounty jurisdiction where station is located
temperatura_cfloatAir temperature at 2-metre elevation in degrees Celsius
umezeala_relativa_pctintegerRelative humidity percentage
presiune_hpafloatAtmospheric pressure reduced to sea level (hPa)
viteza_vant_msfloatAverage wind speed in metres per second
precipitatii_mmfloatAccumulated 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.

Top ↑