Skip to content

Cyprus 🇨🇾

Parcels in Cyprus come from the Department of Lands and Surveys (DLS) via its public INSPIRE ArcGIS service. Geometry is returned in EPSG:4326.

from plot_finder import Plot

plot = Plot(country="CY", plot_id="1000-21/450301-1-1-290")

Querying

The plot_id is the national cadastral reference (district-sheet/plan-quarter-block-parcel), e.g. 1000-21/450301-1-1-290.

Plot(country="CY", plot_id="1000-21/450301-1-1-290")

Coordinates are longitude, latitude (EPSG:4326).

Plot(country="CY", x=33.3396, y=35.1787)   # (lon, lat)

The address is geocoded with OpenStreetMap Nominatim.

Plot(country="CY", address="Nicosia, Cyprus")

Attributes

Sourced from the Cyprus class (parsed from the cadastral reference):

Attribute Meaning Example
district_code district block 1000
sheet plan sheet 21
plan plan number 450301
parcel_number parcel number 290

Notes

  • Area is computed in EPSG:32636 (UTM zone 36N) and matches the DLS areaValue.
  • Administrative names (district/village) are numeric codes in the parcel record; only the reference components are exposed.

Errors

Exception When
DLSError a DLS request failed or returned invalid data
PlotNotFoundError no parcel at the point / for the reference
AddressNotFoundError the address could not be geocoded