Parcel Import~
Use Korean land data (VWorld) to quickly import site boundaries onto the map. Instead of drawing polygons manually, use address search or a CSV file to instantly generate accurate cadastral boundaries.
Prerequisites~
A VWorld API key must be registered.
- Add a VWorld layer at
/geo/layer. - Gear icon → Enter API key → Save.
- Activate.
Import by Address~
- Go to
/geo/design. - Click the Parcel Import button in the top toolbar.
- Enter an address (e.g.,
123 Gojung-ri, Songsan-myeon, Hwaseong-si, Gyeonggi-do). - Click Search.
- Select the parcel from the results.
- The parcel boundary appears as a preview on the map.
- Click Save as Site.
The parcel boundary is saved as a Site type GeoShape.
CSV Batch Import~
Use this to import multiple parcels at once.
CSV File Format~
address,name
123 Gojung-ri, Songsan-myeon, Hwaseong-si, Gyeonggi-do,Greenhouse Site 1
124 Gojung-ri, Songsan-myeon, Hwaseong-si, Gyeonggi-do,Greenhouse Site 2
456 Ipbuk-dong, Gwonseon-gu, Suwon-si, Gyeonggi-do,Admin Building Site
Fields: - address (required): Street address or lot number address - name (optional): Site name. If omitted, the address string is used as the name.
How to Import~
- Select Parcel Import → CSV Import in the top toolbar of
/geo/design. - Select or drag and drop a CSV file.
- Review the data in the preview table.
- Rows with errors are highlighted in red (address not recognized).
- Click Import.
Processing results are displayed: - Success: Site feature created - Failure: Address search failed (check address format)
Direct API Usage~
Use the REST API to call parcel import from an automation script.
Import by Address~
POST /api/geo/parcel/from_address
Content-Type: application/json
{
"address": "123 Gojung-ri, Songsan-myeon, Hwaseong-si, Gyeonggi-do"
}
Response:
{
"pnu": "4159025300100230000",
"geometry": {
"type": "Polygon",
"coordinates": [[[...], ...]]
},
"address": "123 Gojung-ri, ...",
"area_m2": 3256.7
}
CSV Batch Import~
Save as Site~
POST /api/geo/parcel/save_as_site
Content-Type: application/json
{
"geo_id": "<map UUID>",
"geometry": { "type": "Polygon", "coordinates": [...] },
"name": "Greenhouse Site 1"
}
Notes~
- Only Korean addresses are supported (uses VWorld PNU API).
- If address recognition fails, try both the road address and lot number address.
- Large CSV imports (100+ rows) may take time to process.
- Imported parcels can be edited the same as any Site feature.
Related Pages~
- Design Tool — Manual drawing in Site mode
- GIS Layers — Registering a VWorld API key