= GIS Data = [[TOC]] This page lists sources for data, including some which has been pre-formatted for easy import into Sahana Eden. '''IMPORTANT NOTE:'''[[BR]] BE VERY CAREFUL WITH WHAT PROGRAMS YOU EDIT THESE FILES IN! * Excel can lose placenames in unicode languages * Excel and Open Office can truncate WKTs It is safest (and fastest) to use a plain text editor (eg. Notepad++) == Africa == === Central African Republic === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/CF_Lx.7z CF_Lx.7z] These have come originally from [http://cod.humanitarianresponse.info COD]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d CF_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["fr"] = "French" languages["sg"] = "Sango" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "CF_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "CF_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "CF_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "CF_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "CF_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "CF_L5.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Guinea === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/GN_Lx.7z GN_Lx.7z] These have come originally from [http://gadm.org GADM] with PCodes added from OCHA and UNMIL 'Health' codes. Conarky spelt correctly as Conakry. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d GN_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["fr"] = "French" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "GN_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "GN_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "GN_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "GN_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Liberia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/LR_Lx.7z LR_Lx.7z] These have come originally from [http://gadm.org GADM] for !L0/L1 and [http://cod.humanitarianresponse.info COD] for L2...adding PCodes & UNMIL 'Health' codes. Boundary changes noted for L1s with historical boundaries included for statistical analysis. NB L3 is included (data from GADM), but not recommended to import as it will add several L2s which no longer exist. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d LR_Lx.7z python web2py.py -S eden -M auth.override = True stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "LR_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "LR_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "LR_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() #filename = "LR_L3.csv" #File = open(filename, "r") #resource.import_xml(File, format="csv", stylesheet=stylesheet) #db.commit() gis.update_location_tree() db.commit() }}} === Madagascar === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MG_Lx.7z MG_Lx.7z] These have come originally from [http://cod.humanitarianresponse.info COD] with L0 & alternate names from [http://gadm.org GADM]. Truncated names in Antananarivo II fixed using http://www.ceni-madagascar.mg/dossier/TEXTES_COMMUNALE/DECRETS/Decret_classement_communes_Fokontany_consolid%C3%A9_01-04-15.pdf Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MG_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["mg"] = "Malagasy" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "MG_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "MG_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "MG_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "MG_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "MG_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Sierra Leone === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/SL_Lx.7z SL_Lx.7z] These have come originally from [http://cod.humanitarianresponse.info COD] including PCodes & UNMIL 'Health' codes. PCodes have been made full where incomplete. Missing Western Urban L3s recreated from dissolved L4s. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d SL_Lx.7z python web2py.py -S eden -M auth.override = True stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "SL_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "SL_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "SL_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "SL_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "SL_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Americas == === Honduras === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/HN_Lx.7z HN_Lx.7z] L0 and L1 have come originally from [http://cod.humanitarianresponse.info COD] with L2 from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d HN_Lx.7z python web2py.py -S eden -M auth.override = True stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "HN_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "HN_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "HN_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === United States === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/US_Lx.7z US_Lx.7z] These have come originally from [http://gadm.org GADM] There is also good socioeconomic data available at the Census Tract and Census Block Group, so those Polygons are useful. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d US_Lx.7z python web2py.py -S eden -M auth.override = True stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "US_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "US_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "US_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Asia == === Afghanistan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/AF_Lx.7z AF_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] with Pashto names and better Romanised names from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d AF_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["prs"] = "Dari" languages["ps"] = "Pashto" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "AF_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AF_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AF_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AF_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Armenia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/AM_Lx.7z AM_Lx.7z] These have come originally from [http://gadm.org GADM] with Armenian & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d AM_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["hy"] = "Armenian" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "AM_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Azerbaijan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/AZ_Lx.7z AZ_Lx.7z] These have come originally from [http://gadm.org GADM] with Azerbaijani & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d AZ_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["az"] = "Azerbaijani" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "AZ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Bangladesh === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/BD_Lx.7z BD_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] (L0 from GADM) with Bengali names and better Romanised names from Wikipedia.[[BR]] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d BD_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["bn"] = "Bengali" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "BD_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "BD_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "BD_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "BD_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Cambodia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/KH_Lx.7z KH_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] with Khmer names, Hierarchy, Newer locations and better Romanised names from Wikipedia.[[BR]] (The COD dataset is a little more complete than the GADM one, although is very similar) Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d KH_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["km"] = "Khmer" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "KH_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "KH_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "KH_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "KH_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === India === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/IN_Lx.7z IN_Lx.7z] These have come from [http://gadm.org GADM]. The state name 'Orissa' has been updated to 'Odisha'. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d IN_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "IN_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IN_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IN_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IN_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Indonesia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/ID_Lx.7z ID_Lx.7z] These have come originally from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d ID_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "ID_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "ID_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "ID_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Korea, Republic of === 'South Korea' Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/KR_Lx.7z KR_Lx.7z] These have come originally from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d KR_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ko"] = "Korean" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "KR_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Kazakhstan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/KZ_Lx.7z KZ_Lx.7z] These have come originally from [http://gadm.org GADM] with Kazakh & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d KG_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["kk"] = "Kazakh" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "KZ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Kyrgyzstan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/KG_Lx.7z KG_Lx.7z] These have come originally from OCHA with Kyrgyz names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d KG_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ky"] = "Kyrgyz" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "KG_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "KG_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "KG_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Malaysia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MY_Lx.7z MY_Lx.7z] These have come originally from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MY_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "MY_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MY_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MY_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Maldives === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MV_Lx.7z MV_Lx.7z] These have come originally from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MV_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "MV_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Mongolia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MN_Lx.7z MN_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] with the names (both English & Mongolian) updated from Wikipedia (COD name moved to alt_name in case of conflict)....and the 1994 creation of Govisümber noted. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MN_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["mn"] = "Mongolian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "MN_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MN_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MN_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MN_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Myanmar === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MM_Lx.7z MM_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] with the Bago & Shan substates removed & the L2 boundaries created by dissolving the L3 polygons. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MM_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "MM_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MM_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MM_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MM_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MM_L4.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MM_L5.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Nepal === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/NP_Lx.7z NP_Lx.7z] These have come originally from [http://gadm.org GADM] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d NP_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "NP_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NP_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NP_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NP_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NP_L4.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Philippines === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/PH_Lx.7z PH_Lx.7z] These have come originally from [http://gadm.org GADM] but have had these changes: * L1s inserted by [http://www.philgis.org/freegisdata.htm PhilGIS] so their L1s become L2s, etc * Lakes removed from L3s (available in PH_Lakes.csv if-desired) * Davao Occidental has been created from Davao del Sur: http://en.wikipedia.org/wiki/Davao_Occidental * Hinunangan is all in Southern Leyte (San Pablo & San Pedro Islands were listed as being in Quezon!) * Manila is split up into Districts and Municipalities: http://www.nscb.gov.ph/activestats/psgc/regview.asp?region=13 * Shariff Kabunsuan has merged back into Maguindanao: http://en.wikipedia.org/wiki/Shariff_Kabunsuan * Omar has been created from Luuk: http://en.wikipedia.org/wiki/Omar,_Sulu * Region Names have been modified to the format used by DSWD (Department of Social Welfare & Development) * PSGC codes added for L1, L2 and L3 from http://www.nscb.gov.ph/activestats/psgc/listprov.asp * A couple of other names have been corrected * Kalookan -> Caloocan * Albuquerque -> Alburquerque * Ozamis -> Ozamiz * Sagnay -> Sagñay * Santo Nino -> Santo Niño (x2) * Sofronio Española * Taguig -> Taguig City * Names for Barangays in Cavite City, San Pablo City and Tacloban City which have unique ones * Barangay numbers have been added for Bacarra and San Nicolas * Cotabato City & Isabela City marked as being directly in their L1s not in the L2s that they're capitals of Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d PH_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["tl"] = "Tagalog" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "PH_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PH_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PH_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PH_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PH_L4.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Sri Lanka === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/LK_Lx.7z LK_Lx.7z] These have come originally from [http://cod.humanitarianresponse.info COD] with Sinhala & Tamil names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d LK_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["si"] = "Sinhala" languages["ta"] = "Tamil" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "LK_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "LK_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "LK_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "LK_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Tajikistan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/TJ_Lx.7z TJ_Lx.7z] These have come originally from [http://gadm.org GADM] with Tajik & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d TJ_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["tg"] = "Tajik" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "TJ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TJ_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Timor-Leste === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/TL_Lx.7z TL_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d TL_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "TL_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TL_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TL_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TL_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Turkmenistan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/TM_Lx.7z TM_Lx.7z] These have come originally from [http://gadm.org GADM] with Turkmen & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d TM_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["tk"] = "Turkmen" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "TM_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Uzbekistan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/UZ_Lx.7z UZ_Lx.7z] These have come originally from [http://gadm.org GADM] with Uzbek & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d UZ_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["uz"] = "Uzbek" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "UZ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Vietnam === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/VN_Lx.7z VN_Lx.7z] These have come from Viet Nam Red Cross. * Old boundaries have been left and start / end dates have been added from Wikipedia. - the latest changes have unknown dates currently so are using 2015-01-01 until these are known. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d VN_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["vi"] = "Vietnamese" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "VN_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "VN_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "VN_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "VN_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Europe == === Albania === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/AL_Lx.7z AL_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d AL_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["al"] = "Albanian" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "AL_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AL_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AL_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AL_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Austria === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/AT_Lx.7z AT_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d AT_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["de"] = "German" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "AT_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AT_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "AT_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Belgium === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/BE_Lx.7z BE_Lx.7z] These have come originally from [http://gadm.org GADM] with the Commune of Gingelom moved from Wallonia to Flanders and names sorted out with the help of Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d BE_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["fr"] = "French" languages["nl"] = "Dutch" languages["de"] = "German" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "BE_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BE_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BE_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BE_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BE_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Bosnia and Herzegovina === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/BA_Lx.7z BA_Lx.7z] These have come originally from [http://gadm.org GADM] with Bosnian, Croatian & Serbian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d BA_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["bs"] = "Bosnian" languages["hr"] = "Croatian" languages["sr"] = "Serbian" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "BA_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BA_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BA_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BA_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Bulgaria === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/BG_Lx.7z BG_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d BG_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["bg"] = "Bulgarian" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "BG_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BG_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "BG_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Croatia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/HR_Lx.7z HR_Lx.7z] These have come originally from [http://gadm.org GADM] with Names fixed using Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d HR_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["hr"] = "Croatian" languages["hu"] = "Hungarian" languages["it"] = "Italian" languages["sr"] = "Serbian" stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") resource = s3db.resource("gis_location") filename = "HR_L0.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "HR_L1.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "HR_L2.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Georgia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/GE_Lx.7z GE_Lx.7z] These have come originally from [http://gadm.org GADM] with Georgian & Russian names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d GE_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ka"] = "Georgian" languages["ru"] = "Russian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "GE_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Germany === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/DE_Lx.7z DE_Lx.7z] These have come originally from [http://gadm.org GADM] with NUTS1 codes added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d DE_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "DE_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "DE_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "DE_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "DE_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Greece === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/GR_Lx.7z GR_Lx.7z] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d JO_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["el"] = "Greek" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "GR_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "GR_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "GR_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "GR_L4.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Hungary === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/HU_Lx.7z HU_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d HU_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["hu"] = "Hungarian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "HU_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "HU_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "HU_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Italy === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/IT_Lx.7z IT_Lx.7z] These have come originally from [http://gadm.org GADM] with the 2x BAT L2 dissolved to 1. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d IT_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["it"] = "Italian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "IT_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IT_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IT_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IT_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Macedonia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/MK_Lx.7z MK_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d MK_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["mk"] = "Macedonian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "MK_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "MK_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Serbia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/RS_Lx.7z RS_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d RS_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["sr"] = "Serbian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "RS_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "RS_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "RS_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Ukraine === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/UA_Lx.7z UA_Lx.7z] These have come originally from [http://gadm.org GADM] with Ukrainian, Russian & Crimean Tatar names added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d UA_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["uk"] = "Ukrainian" languages["ru"] = "Russian" languages["crh"] = "Crimean Tatar" languages["ro"] = "Romanian" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "UA_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "UA_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "UA_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Middle East == === Iraq=== Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/IQ_Lx.7z IQ_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d IQ_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "IQ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IQ_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IQ_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "IQ_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Jordan === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/JO_Lx.7z JO_Lx.7z] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d JO_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ar"] = "Arabic" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "JO_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "JO_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "JO_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "JO_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "JO_Zaatari.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Lebanon === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/LB_Lx.7z LB_Lx.7z] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d LB_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ar"] = "Arabic" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "LB_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "LB_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "LB_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "LB_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "LB_Wadi_Khaled.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Syria === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/SY_Lx.7z SY_Lx.7z] Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d SY_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["ar"] = "Arabic" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "SY_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "SY_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "SY_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "SY_L3.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Turkey === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/TR_Lx.7z TR_Lx.7z] These have come originally from [https://cod.humanitarianresponse.info COD] with L2 Polygons added from [http://gadm.org GADM]. The new L1, Düzce, was created & L1 polygons corrected. New L2s from GADM were added. Turkish Names, ISO3166 & NUTS codes were added from Wikipedia, and some Alternate Names. (Several Turkish Names can still be added) Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d TR_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["tr"] = "Turkish" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "TR_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TR_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "TR_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Oceania == === Christmas Island === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/CX_Lx.7z CX_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d CX_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "CX_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Micronesia === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/FM_Lx.7z FM_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d FM_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "FM_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === New Zealand === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/NZ_Lx.7z NZ_Lx.7z] These have come originally from [http://gadm.org GADM]. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d NZ_Lx.7z python web2py.py -S eden -M auth.override = True resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "NZ_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NZ_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "NZ_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} === Papua New Guinea === Admin Boundaries: * [http://eden.sahanafoundation.org/downloads/PG_Lx.7z PG_Lx.7z] These have come originally from [http://gadm.org GADM] updated for new provinces with name corrections and L3 & L4 added from Wikipedia. Use [http://7zip.org 7-Zip] to extract to your web2py folder & then install like this: {{{ cd /home/web2py p7zip -d PG_Lx.7z python web2py.py -S eden -M auth.override = True languages = s3.l10n_languages languages["tpi"] = "Tok Pisin" languages["ho"] = "Hiri Motu" resource = s3db.resource("gis_location") stylesheet = os.path.join(request.folder, "static", "formats", "s3csv", "gis", "location.xsl") import_file = "PG_L0.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PG_L1.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() import_file = "PG_L2.csv" File = open(import_file, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "PG_L3.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() filename = "PG_L4.csv" File = open(filename, "r") resource.import_xml(File, format="csv", stylesheet=stylesheet) db.commit() gis.update_location_tree() db.commit() }}} == Other Data Sources == * https://cod.humanitarianresponse.info - official UN source of boundaries & P-Codes * [wiki:GIS/OpenStreetMap OpenStreetMap] * Admin 0 & 1, Hydro features, Raster & Vector: http://www.naturalearthdata.com/ * http://opencrisis.org/datastores * https://docs.google.com/spreadsheet/ccc?key=0AmVWKgWFwEyodE40Uk94bl9jZWdQTy1weEh4NVhzSWc#gid=16 * [http://data.un.org UN Data] * [http://data.worldbank.org World Bank Data] === L0 === * http://www.gadm.org * http://nils.weidmann.ws/projects/cshapes <- varying over time * http://www.naturalearthdata.com/ * http://quattroshapes.com * VMap0: http://en.wikipedia.org/wiki/Vector_Map * http://freegisdata.rtwilson.com * http://barendgehrels.blogspot.com/2010/12/free-shapefile-of-countries-of-world.html * http://barendgehrels.blogspot.com/2010/12/free-shapefiles-of-of-world-2.html * http://barendgehrels.blogspot.com/2010/12/free-shapefiles-of-of-world-3.html * http://barendgehrels.blogspot.com/2011/01/free-shapefiles-of-countries-of-world-4.html * http://thematicmapping.org/downloads/world_borders.php * UN (North Africa): http://unosat-sdn.web.cern.ch/unosat-sdn/northafrica/region/ungiwg_level0_region.zip === L1 === * http://www.gadm.org * http://www.naturalearthdata.com/ * http://geonames.org * http://quattroshapes.com * US: http://www.mapcruzin.com/free-united-states-arcgis-maps-shapefiles.htm === L2 === * SALB (High-quality, country-verified, but not all countries): http://www.unsalb.org/ * http://www.gadm.org * http://geonames.org * http://quattroshapes.com * California: http://swdb.igs.berkeley.edu/pub/data/GEOGRAPHY/DECENNIAL2010/state_county_2010_shp.zip === OGC (WMS/WFS) === * http://geonetwork-opensource.org/gallery.html#geonetwork-nodes * http://www.ogc-services.net * !BlueMarble & Mosaic (!LandSat7): http://onearth.jpl.nasa.gov/ * Hazard Layers: http://preview.grid.unep.ch:8080/geoserver/ows?service=WMS&request=GetCapabilities * Hazard Layers: http://www.pdc.org/mde/services.jsp * Massachusetts: http://lyceum.massgis.state.ma.us/wiki/doku.php === Aerial Imagery === See [wiki:GIS/AerialImagery GIS/AerialImagery] == See Also == * [wiki:UserGuidelines/GIS/Data UserGuidelines/GIS/Data]