Open knowledge
Romania
Public data / Catalogue

ANCPI National Geoportal — INSPIRE spatial data

National access point for viewing (WMS) and download (WFS) services covering official spatial data: cadastral parcel boundaries, registered properties, orthophotos and administrative units.

Before you use this resource

National cadastral coverage is ongoing; unregistered zones lack digital parcel geometries. Official coordinates use the national Stereo 70 projection (EPSG:3844) requiring transformation to WGS84 for web cartography.

Published by
National Agency for Cadastre and Land Registration
Source
Public institution
Collection
Public data
Resource type
Catalogue
Coverage
Romania
Documented formats
WMS, WFS, SHP, HTML
Licence / terms
Rights need checking
API access
Documented API
Record review date
2026-09-07
Last resource update
Unknown
Technical data audit
Not performed
Documentation
Source reviewed

Documentation

Geoportal catalogue and INSPIRE WMS services inspected on the official ANCPI portal.

The cited page documents this record. Check the original source for terms and versions before reuse.

geoportal.ancpi.ro ↗

Getting started

  1. Connect the WMS/WFS service URL in GIS software (e.g. QGIS) to overlay official layers.
  2. Set project coordinate reference system to EPSG:3844 (Dealul Piscului 1970 / Stereo 70).
  3. Inspect the INSPIRE metadata catalogue to verify flight acquisition dates for orthophotos.

Access and checks

Direct API queries

curl -s 'https://geoportal.ancpi.ro/' | jq .
import urllib.request
import json

url = "https://geoportal.ancpi.ro/"
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://geoportal.ancpi.ro/")
str(data)
INSTALL httpfs;
LOAD httpfs;

SELECT * FROM read_json_auto('https://geoportal.ancpi.ro/')
LIMIT 10;
Executable query snippets for command line, data pipelines, or DuckDB.

Continue your research

Editorial suggestions for discovery. These links do not establish technical integration or licence compatibility.

Top ↑