├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitlab-ci.yml ├── INSTALL.md ├── LICENSE.txt ├── Makefile ├── README.md ├── TODO.md ├── boundaries ├── boundaries.data └── hkmo2psql.py ├── country_languages.data.in ├── debian ├── README.debian ├── changelog ├── compat ├── control ├── control.in ├── copyright ├── pgversions └── rules ├── gen_country_languages_table.py ├── gen_osml10n_extension.sh ├── gen_osml10n_thai_extension.sh ├── icutranslit ├── .gitignore ├── INSTALL ├── Makefile ├── README └── osml10n_translit.cpp ├── kanjitranscript ├── .gitignore ├── INSTALL ├── Makefile ├── README └── kanjitranscript.c ├── osml10n.control.in ├── osml10n_thai_transcript.control.in ├── plpgsql ├── charset_helpers.sql ├── geo_transliterate.sql ├── get_country.sql ├── get_country_name.sql ├── get_localized_name_from_tags.sql └── street_abbrv.sql ├── tests ├── de_tests.csv ├── en_tests.csv ├── fr_tests.csv ├── runtests.sh └── runtests_in_virtualenv.sh └── thaitranscript ├── Makefile ├── gen_raw_py ├── head ├── plpy.py ├── tail └── thai_transcript.sql /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/TODO.md -------------------------------------------------------------------------------- /boundaries/boundaries.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/boundaries/boundaries.data -------------------------------------------------------------------------------- /boundaries/hkmo2psql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/boundaries/hkmo2psql.py -------------------------------------------------------------------------------- /country_languages.data.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/country_languages.data.in -------------------------------------------------------------------------------- /debian/README.debian: -------------------------------------------------------------------------------- 1 | ../README -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/debian/control -------------------------------------------------------------------------------- /debian/control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/debian/control.in -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/pgversions: -------------------------------------------------------------------------------- 1 | 9.6+ 2 | 3 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/debian/rules -------------------------------------------------------------------------------- /gen_country_languages_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/gen_country_languages_table.py -------------------------------------------------------------------------------- /gen_osml10n_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/gen_osml10n_extension.sh -------------------------------------------------------------------------------- /gen_osml10n_thai_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/gen_osml10n_thai_extension.sh -------------------------------------------------------------------------------- /icutranslit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/icutranslit/.gitignore -------------------------------------------------------------------------------- /icutranslit/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/icutranslit/INSTALL -------------------------------------------------------------------------------- /icutranslit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/icutranslit/Makefile -------------------------------------------------------------------------------- /icutranslit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/icutranslit/README -------------------------------------------------------------------------------- /icutranslit/osml10n_translit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/icutranslit/osml10n_translit.cpp -------------------------------------------------------------------------------- /kanjitranscript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/kanjitranscript/.gitignore -------------------------------------------------------------------------------- /kanjitranscript/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/kanjitranscript/INSTALL -------------------------------------------------------------------------------- /kanjitranscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/kanjitranscript/Makefile -------------------------------------------------------------------------------- /kanjitranscript/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/kanjitranscript/README -------------------------------------------------------------------------------- /kanjitranscript/kanjitranscript.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/kanjitranscript/kanjitranscript.c -------------------------------------------------------------------------------- /osml10n.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/osml10n.control.in -------------------------------------------------------------------------------- /osml10n_thai_transcript.control.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/osml10n_thai_transcript.control.in -------------------------------------------------------------------------------- /plpgsql/charset_helpers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/charset_helpers.sql -------------------------------------------------------------------------------- /plpgsql/geo_transliterate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/geo_transliterate.sql -------------------------------------------------------------------------------- /plpgsql/get_country.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/get_country.sql -------------------------------------------------------------------------------- /plpgsql/get_country_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/get_country_name.sql -------------------------------------------------------------------------------- /plpgsql/get_localized_name_from_tags.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/get_localized_name_from_tags.sql -------------------------------------------------------------------------------- /plpgsql/street_abbrv.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/plpgsql/street_abbrv.sql -------------------------------------------------------------------------------- /tests/de_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/tests/de_tests.csv -------------------------------------------------------------------------------- /tests/en_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/tests/en_tests.csv -------------------------------------------------------------------------------- /tests/fr_tests.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/tests/fr_tests.csv -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/runtests_in_virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/tests/runtests_in_virtualenv.sh -------------------------------------------------------------------------------- /thaitranscript/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/Makefile -------------------------------------------------------------------------------- /thaitranscript/gen_raw_py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/gen_raw_py -------------------------------------------------------------------------------- /thaitranscript/head: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/head -------------------------------------------------------------------------------- /thaitranscript/plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/plpy.py -------------------------------------------------------------------------------- /thaitranscript/tail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/tail -------------------------------------------------------------------------------- /thaitranscript/thai_transcript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giggls/mapnik-german-l10n/HEAD/thaitranscript/thai_transcript.sql --------------------------------------------------------------------------------