| 1418 | === Kosovo === |
| 1419 | Admin Boundaries: |
| 1420 | * [http://eden.sahanafoundation.org/downloads/XK_Lx.7z XK_Lx.7z] |
| 1421 | |
| 1422 | These have come originally from [http://gadm.org GADM] with names and new Municipalities from Wikipedia. |
| 1423 | |
| 1424 | Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: |
| 1425 | {{{ |
| 1426 | cd /home/web2py |
| 1427 | p7zip -d XK_Lx.7z |
| 1428 | python web2py.py -S eden -M |
| 1429 | |
| 1430 | auth.override = True |
| 1431 | languages = s3.l10n_languages |
| 1432 | languages["sq"] = "Albanian" |
| 1433 | languages["sr"] = "Serbian" |
| 1434 | languages["tr"] = "Turkish" |
| 1435 | resource = s3db.resource("gis_location") |
| 1436 | stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") |
| 1437 | import_file = "XK_L0.csv" |
| 1438 | File = open(import_file, "r") |
| 1439 | resource.import_xml(File, format="csv", stylesheet=stylesheet) |
| 1440 | db.commit() |
| 1441 | import_file = "XK_L1.csv" |
| 1442 | File = open(import_file, "r") |
| 1443 | resource.import_xml(File, format="csv", stylesheet=stylesheet) |
| 1444 | db.commit() |
| 1445 | import_file = "XK_L2.csv" |
| 1446 | File = open(import_file, "r") |
| 1447 | resource.import_xml(File, format="csv", stylesheet=stylesheet) |
| 1448 | db.commit() |
| 1449 | gis.update_location_tree() |
| 1450 | db.commit() |
| 1451 | }}} |
| 1452 | |
| 1453 | |