mirror of
https://github.com/tumic0/GPXSee-maps.git
synced 2025-06-29 04:29:16 +02:00
Maps web page
This commit is contained in:
356
scripts/mapgen.py
Executable file
356
scripts/mapgen.py
Executable file
@ -0,0 +1,356 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import os
|
||||
import sys
|
||||
import re
|
||||
import xml.etree.ElementTree as ET
|
||||
|
||||
REPOSITORY = "https://raw.githubusercontent.com/tumic0/GPXSee-maps/master"
|
||||
|
||||
COUNTRYCODES = {
|
||||
'AD': 'Andorra',
|
||||
'AE': 'United Arab Emirates',
|
||||
'AF': 'Afghanistan',
|
||||
'AG': 'Antigua & Barbuda',
|
||||
'AI': 'Anguilla',
|
||||
'AL': 'Albania',
|
||||
'AM': 'Armenia',
|
||||
'AN': 'Netherlands Antilles',
|
||||
'AO': 'Angola',
|
||||
'AQ': 'Antarctica',
|
||||
'AR': 'Argentina',
|
||||
'AS': 'American Samoa',
|
||||
'AT': 'Austria',
|
||||
'AU': 'Australia',
|
||||
'AW': 'Aruba',
|
||||
'AZ': 'Azerbaijan',
|
||||
'BA': 'Bosnia and Herzegovina',
|
||||
'BB': 'Barbados',
|
||||
'BD': 'Bangladesh',
|
||||
'BE': 'Belgium',
|
||||
'BF': 'Burkina Faso',
|
||||
'BG': 'Bulgaria',
|
||||
'BH': 'Bahrain',
|
||||
'BI': 'Burundi',
|
||||
'BJ': 'Benin',
|
||||
'BM': 'Bermuda',
|
||||
'BN': 'Brunei Darussalam',
|
||||
'BO': 'Bolivia',
|
||||
'BR': 'Brazil',
|
||||
'BS': 'Bahama',
|
||||
'BT': 'Bhutan',
|
||||
'BU': 'Burma (no longer exists)',
|
||||
'BV': 'Bouvet Island',
|
||||
'BW': 'Botswana',
|
||||
'BY': 'Belarus',
|
||||
'BZ': 'Belize',
|
||||
'CA': 'Canada',
|
||||
'CC': 'Cocos (Keeling) Islands',
|
||||
'CF': 'Central African Republic',
|
||||
'CG': 'Congo',
|
||||
'CH': 'Switzerland',
|
||||
'CI': 'Côte D\'ivoire (Ivory Coast)',
|
||||
'CK': 'Cook Iislands',
|
||||
'CL': 'Chile',
|
||||
'CM': 'Cameroon',
|
||||
'CN': 'China (PRC)',
|
||||
'CO': 'Colombia',
|
||||
'CR': 'Costa Rica',
|
||||
'CS': 'Czechoslovakia (no longer exists)',
|
||||
'CU': 'Cuba',
|
||||
'CV': 'Cape Verde',
|
||||
'CX': 'Christmas Island',
|
||||
'CY': 'Cyprus',
|
||||
'CZ': 'Czech Republic',
|
||||
'DD': 'German Democratic Republic (no longer exists)',
|
||||
'DE': 'Germany',
|
||||
'DJ': 'Djibouti',
|
||||
'DK': 'Denmark',
|
||||
'DM': 'Dominica',
|
||||
'DO': 'Dominican Republic',
|
||||
'DZ': 'Algeria',
|
||||
'EC': 'Ecuador',
|
||||
'EE': 'Estonia',
|
||||
'EG': 'Egypt',
|
||||
'EH': 'Western Sahara',
|
||||
'ER': 'Eritrea',
|
||||
'ES': 'Spain',
|
||||
'ET': 'Ethiopia',
|
||||
'FI': 'Finland',
|
||||
'FJ': 'Fiji',
|
||||
'FK': 'Falkland Islands (Malvinas)',
|
||||
'FM': 'Micronesia',
|
||||
'FO': 'Faroe Islands',
|
||||
'FR': 'France',
|
||||
'FX': 'France, Metropolitan',
|
||||
'GA': 'Gabon',
|
||||
'GB': 'United Kingdom (Great Britain)',
|
||||
'GD': 'Grenada',
|
||||
'GE': 'Georgia',
|
||||
'GF': 'French Guiana',
|
||||
'GH': 'Ghana',
|
||||
'GI': 'Gibraltar',
|
||||
'GL': 'Greenland',
|
||||
'GM': 'Gambia',
|
||||
'GN': 'Guinea',
|
||||
'GP': 'Guadeloupe',
|
||||
'GQ': 'Equatorial Guinea',
|
||||
'GR': 'Greece',
|
||||
'GS': 'South Georgia and the South Sandwich Islands',
|
||||
'GT': 'Guatemala',
|
||||
'GU': 'Guam',
|
||||
'GW': 'Guinea-Bissau',
|
||||
'GY': 'Guyana',
|
||||
'HK': 'Hong Kong',
|
||||
'HM': 'Heard & McDonald Islands',
|
||||
'HN': 'Honduras',
|
||||
'HR': 'Croatia',
|
||||
'HT': 'Haiti',
|
||||
'HU': 'Hungary',
|
||||
'ID': 'Indonesia',
|
||||
'IE': 'Ireland',
|
||||
'IL': 'Israel',
|
||||
'IN': 'India',
|
||||
'IO': 'British Indian Ocean Territory',
|
||||
'IQ': 'Iraq',
|
||||
'IR': 'Islamic Republic of Iran',
|
||||
'IS': 'Iceland',
|
||||
'IT': 'Italy',
|
||||
'JM': 'Jamaica',
|
||||
'JO': 'Jordan',
|
||||
'JP': 'Japan',
|
||||
'KE': 'Kenya',
|
||||
'KG': 'Kyrgyzstan',
|
||||
'KH': 'Cambodia',
|
||||
'KI': 'Kiribati',
|
||||
'KM': 'Comoros',
|
||||
'KN': 'St. Kitts and Nevis',
|
||||
'KP': 'Korea, Democratic People\'s Republic of',
|
||||
'KR': 'Korea, Republic of',
|
||||
'KW': 'Kuwait',
|
||||
'KY': 'Cayman Islands',
|
||||
'KZ': 'Kazakhstan',
|
||||
'LA': 'Lao People\'s Democratic Republic',
|
||||
'LB': 'Lebanon',
|
||||
'LC': 'Saint Lucia',
|
||||
'LI': 'Liechtenstein',
|
||||
'LK': 'Sri Lanka',
|
||||
'LR': 'Liberia',
|
||||
'LS': 'Lesotho',
|
||||
'LT': 'Lithuania',
|
||||
'LU': 'Luxembourg',
|
||||
'LV': 'Latvia',
|
||||
'LY': 'Libyan Arab Jamahiriya',
|
||||
'MA': 'Morocco',
|
||||
'MC': 'Monaco',
|
||||
'MD': 'Moldova, Republic of',
|
||||
'MG': 'Madagascar',
|
||||
'MH': 'Marshall Islands',
|
||||
'ML': 'Mali',
|
||||
'MN': 'Mongolia',
|
||||
'MM': 'Myanmar',
|
||||
'MO': 'Macau',
|
||||
'MP': 'Northern Mariana Islands',
|
||||
'MQ': 'Martinique',
|
||||
'MR': 'Mauritania',
|
||||
'MS': 'Monserrat',
|
||||
'MT': 'Malta',
|
||||
'MU': 'Mauritius',
|
||||
'MV': 'Maldives',
|
||||
'MW': 'Malawi',
|
||||
'MX': 'Mexico',
|
||||
'MY': 'Malaysia',
|
||||
'MZ': 'Mozambique',
|
||||
'NA': 'Namibia',
|
||||
'NC': 'New Caledonia',
|
||||
'NE': 'Niger',
|
||||
'NF': 'Norfolk Island',
|
||||
'NG': 'Nigeria',
|
||||
'NI': 'Nicaragua',
|
||||
'NL': 'Netherlands',
|
||||
'NO': 'Norway',
|
||||
'NP': 'Nepal',
|
||||
'NR': 'Nauru',
|
||||
'NT': 'Neutral Zone (no longer exists)',
|
||||
'NU': 'Niue',
|
||||
'NZ': 'New Zealand',
|
||||
'OM': 'Oman',
|
||||
'PA': 'Panama',
|
||||
'PE': 'Peru',
|
||||
'PF': 'French Polynesia',
|
||||
'PG': 'Papua New Guinea',
|
||||
'PH': 'Philippines',
|
||||
'PK': 'Pakistan',
|
||||
'PL': 'Poland',
|
||||
'PM': 'St. Pierre & Miquelon',
|
||||
'PN': 'Pitcairn',
|
||||
'PR': 'Puerto Rico',
|
||||
'PT': 'Portugal',
|
||||
'PW': 'Palau',
|
||||
'PY': 'Paraguay',
|
||||
'QA': 'Qatar',
|
||||
'RE': 'Réunion',
|
||||
'RO': 'Romania',
|
||||
'RU': 'Russian Federation',
|
||||
'RW': 'Rwanda',
|
||||
'SA': 'Saudi Arabia',
|
||||
'SB': 'Solomon Islands',
|
||||
'SC': 'Seychelles',
|
||||
'SD': 'Sudan',
|
||||
'SE': 'Sweden',
|
||||
'SG': 'Singapore',
|
||||
'SH': 'St. Helena',
|
||||
'SI': 'Slovenia',
|
||||
'SJ': 'Svalbard & Jan Mayen Islands',
|
||||
'SK': 'Slovakia',
|
||||
'SL': 'Sierra Leone',
|
||||
'SM': 'San Marino',
|
||||
'SN': 'Senegal',
|
||||
'SO': 'Somalia',
|
||||
'SR': 'Suriname',
|
||||
'ST': 'Sao Tome & Principe',
|
||||
'SU': 'Union of Soviet Socialist Republics (no longer exists)',
|
||||
'SV': 'El Salvador',
|
||||
'SY': 'Syrian Arab Republic',
|
||||
'SZ': 'Swaziland',
|
||||
'TC': 'Turks & Caicos Islands',
|
||||
'TD': 'Chad',
|
||||
'TF': 'French Southern Territories',
|
||||
'TG': 'Togo',
|
||||
'TH': 'Thailand',
|
||||
'TJ': 'Tajikistan',
|
||||
'TK': 'Tokelau',
|
||||
'TM': 'Turkmenistan',
|
||||
'TN': 'Tunisia',
|
||||
'TO': 'Tonga',
|
||||
'TP': 'East Timor',
|
||||
'TR': 'Turkey',
|
||||
'TT': 'Trinidad & Tobago',
|
||||
'TV': 'Tuvalu',
|
||||
'TW': 'Taiwan (Republic of China)',
|
||||
'TZ': 'Tanzania, United Republic of',
|
||||
'UA': 'Ukraine',
|
||||
'UG': 'Uganda',
|
||||
'UM': 'United States Minor Outlying Islands',
|
||||
'US': 'United States of America',
|
||||
'UY': 'Uruguay',
|
||||
'UZ': 'Uzbekistan',
|
||||
'VA': 'Vatican City State (Holy See)',
|
||||
'VC': 'St. Vincent & the Grenadines',
|
||||
'VE': 'Venezuela',
|
||||
'VG': 'British Virgin Islands',
|
||||
'VI': 'United States Virgin Islands',
|
||||
'VN': 'Viet Nam',
|
||||
'VU': 'Vanuatu',
|
||||
'WF': 'Wallis & Futuna Islands',
|
||||
'WS': 'Samoa',
|
||||
'YD': 'Democratic Yemen (no longer exists)',
|
||||
'YE': 'Yemen',
|
||||
'YT': 'Mayotte',
|
||||
'YU': 'Yugoslavia',
|
||||
'ZA': 'South Africa',
|
||||
'ZM': 'Zambia',
|
||||
'ZR': 'Zaire',
|
||||
'ZW': 'Zimbabwe',
|
||||
'ZZ': 'Unknown or unspecified country',
|
||||
}
|
||||
|
||||
|
||||
def sectionname(name):
|
||||
if name in COUNTRYCODES:
|
||||
return COUNTRYCODES[name]
|
||||
else:
|
||||
return name
|
||||
|
||||
def header(name, level):
|
||||
return "<h" + str(level) + ">" + name + "</h" + str(level) + ">"
|
||||
|
||||
def tile(xmlfile, suffix):
|
||||
base = os.path.splitext(os.path.basename(xmlfile))[0]
|
||||
tile = "tiles/" + base + suffix
|
||||
return tile
|
||||
|
||||
def mapinfo(xmlfile):
|
||||
with open(xmlfile) as f:
|
||||
xmlstring = f.read()
|
||||
xmlstring = re.sub('\\sxmlns="[^"]+"', '', xmlstring, count=1)
|
||||
root = ET.fromstring(xmlstring)
|
||||
|
||||
info = {}
|
||||
for element in root:
|
||||
if element.tag == "name":
|
||||
info["name"] = element.text
|
||||
|
||||
info["url"] = REPOSITORY + xmlfile[xmlfile.find('/World'):]
|
||||
|
||||
png = tile(xmlfile, ".png")
|
||||
jpg = tile(xmlfile, ".jpg")
|
||||
if os.path.isfile("../" + png):
|
||||
info["tile"] = png
|
||||
elif os.path.isfile("../" + jpg):
|
||||
info["tile"] = jpg
|
||||
else:
|
||||
info["tile"] = "tiles/NA.png"
|
||||
|
||||
return info
|
||||
|
||||
def processmaps(maps):
|
||||
print("<table>")
|
||||
i = 0
|
||||
print("<tr>")
|
||||
for xmlfile in maps:
|
||||
info = mapinfo(xmlfile)
|
||||
if i and i % 4 == 0:
|
||||
print("</tr><tr>")
|
||||
print("<td>" + "<a href=\"" + info["url"] + "\" download><img src=\""
|
||||
+ info["tile"] + "\" alt=\"Map Preview\" width=\"256\" height=\"256\"/></a><br/>"
|
||||
+ info["name"] + "</td>")
|
||||
i = i + 1
|
||||
print("</tr>")
|
||||
print("</table>")
|
||||
|
||||
def processdir(path, level, name):
|
||||
maps = []
|
||||
sections = []
|
||||
|
||||
entries = os.listdir(path)
|
||||
for entry in entries:
|
||||
entrypath = os.path.join(path, entry)
|
||||
if (os.path.isdir(entrypath)):
|
||||
sections.append((sectionname(entry), entrypath))
|
||||
else:
|
||||
maps.append(entrypath)
|
||||
|
||||
if maps:
|
||||
processmaps(maps)
|
||||
sections.sort()
|
||||
for section in sections:
|
||||
print(header(section[0], level + 1))
|
||||
processdir(section[1], level + 1, section[0])
|
||||
|
||||
|
||||
if len(sys.argv) < 2:
|
||||
print("Usage: " + os.path.basename(sys.argv[0]) + " DIR", file=sys.stderr)
|
||||
sys.exit(-1)
|
||||
|
||||
print("""<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>GPXSee Online Maps</title>
|
||||
<link rel="stylesheet" href="style.css" type="text/css" media="all"/>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="center">
|
||||
<h1>GPXSee Online Maps</h1>
|
||||
""")
|
||||
|
||||
print(header("Worldwide", 2))
|
||||
processdir(sys.argv[1], 1, os.path.basename(sys.argv[1]))
|
||||
|
||||
print("""
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
""")
|
Reference in New Issue
Block a user