├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── clipbounds ├── aaa_test │ ├── go-and-gk-but-no-cemetry.osm │ ├── go-and-gk.osm │ ├── go-no-cemetry.osm │ └── go.osm ├── africa.poly ├── africa │ ├── canary_islands.poly │ ├── ethiopia.poly │ ├── guinea.poly │ ├── ivory_coast.poly │ ├── liberia.poly │ ├── libya.poly │ ├── madagascar.poly │ ├── morocco.poly │ ├── south_africa_and_lesotho.poly │ └── tanzania.poly ├── antarctica.poly ├── asia.poly ├── asia │ ├── azerbaijan.poly │ ├── china.poly │ ├── gaza-bbox.poly │ ├── gaza.poly │ ├── gcc_states.poly │ ├── india.poly │ ├── indonesia.poly │ ├── iraq.poly │ ├── israel.poly │ ├── israel_and_palestine.poly │ ├── japan.poly │ ├── kazakhstan.poly │ ├── kyrgyzstan.poly │ ├── mongolia.poly │ ├── nepal.poly │ ├── pakistan.poly │ ├── philippines.poly │ ├── taiwan.poly │ ├── turkmenistan.poly │ └── uzbekistan.poly ├── australia-oceania.poly ├── australia-oceania │ ├── new-caledonia.poly │ └── new-zealand.poly ├── canada.poly ├── canada │ ├── british-columbia.poly │ ├── new-brunswick.poly │ ├── newfoundland-and-labrador.poly │ ├── nova-scotia.poly │ ├── ontario.poly │ ├── prince-edward-island.poly │ └── quebec.poly ├── central-america.poly ├── central-america │ └── haiti-and-domrep.poly ├── europe.poly ├── europe │ ├── albania.poly │ ├── alps.poly │ ├── andorra.poly │ ├── austria.poly │ ├── azores.poly │ ├── belarus.poly │ ├── belgium.poly │ ├── bosnia-herzegovina.poly │ ├── british_isles.poly │ ├── bulgaria.poly │ ├── croatia.poly │ ├── cyprus.poly │ ├── czech_republic.poly │ ├── denmark.poly │ ├── estonia.poly │ ├── faroe_islands.poly │ ├── finland.poly │ ├── france.poly │ ├── france │ │ ├── alsace.poly │ │ ├── aquitaine.poly │ │ ├── auvergne.poly │ │ ├── basse-normandie.poly │ │ ├── bourgogne.poly │ │ ├── bretagne.poly │ │ ├── centre.poly │ │ ├── champagne-ardenne.poly │ │ ├── corse.poly │ │ ├── franche-comte.poly │ │ ├── haute-normandie.poly │ │ ├── ile-de-france.poly │ │ ├── languedoc-roussillon.poly │ │ ├── limousin.poly │ │ ├── lorraine.poly │ │ ├── midi-pyrenees.poly │ │ ├── nord-pas-de-calais.poly │ │ ├── pays-de-la-loire.poly │ │ ├── picardie.poly │ │ ├── poitou-charentes.poly │ │ ├── provence-alpes-cote-d-azur.poly │ │ └── rhone-alpes.poly │ ├── germany.poly │ ├── germany │ │ ├── baden-wuerttemberg.poly │ │ ├── bayern.poly │ │ ├── bayern │ │ │ ├── mittelfranken.poly │ │ │ ├── niederbayern.poly │ │ │ ├── oberbayern.poly │ │ │ ├── oberfranken.poly │ │ │ ├── oberpfalz.poly │ │ │ ├── schwaben.poly │ │ │ └── unterfranken.poly │ │ ├── berlin.poly │ │ ├── brandenburg.poly │ │ ├── bremen.poly │ │ ├── hamburg.poly │ │ ├── hessen.poly │ │ ├── mecklenburg-vorpommern.poly │ │ ├── niedersachsen.poly │ │ ├── nordrhein-westfalen.poly │ │ ├── nordrhein-westfalen │ │ │ ├── arnsberg.poly │ │ │ ├── detmold.poly │ │ │ ├── duesseldorf.poly │ │ │ ├── koeln.poly │ │ │ └── muenster.poly │ │ ├── rheinland-pfalz.poly │ │ ├── saarland.poly │ │ ├── sachsen-anhalt.poly │ │ ├── sachsen.poly │ │ ├── schleswig-holstein.poly │ │ └── thueringen.poly │ ├── great_britain.poly │ ├── great_britain │ │ ├── england.poly │ │ ├── england │ │ │ ├── buckinghamshire.poly │ │ │ ├── cambridgeshire.poly │ │ │ ├── cumbria.poly │ │ │ ├── east_yorkshire_with_hull.poly │ │ │ ├── essex.poly │ │ │ ├── herefordshire.poly │ │ │ ├── kent.poly │ │ │ ├── lancashire.poly │ │ │ ├── leicestershire.poly │ │ │ ├── london │ │ │ │ └── enfield.poly │ │ │ ├── norfolk.poly │ │ │ ├── nottinghamshire.poly │ │ │ ├── oxfordshire.poly │ │ │ ├── shropshire.poly │ │ │ ├── somerset.poly │ │ │ ├── south_yorkshire.poly │ │ │ ├── suffolk.poly │ │ │ ├── surrey.poly │ │ │ └── wiltshire.poly │ │ ├── scotland.poly │ │ └── wales.poly │ ├── greece.poly │ ├── hungary.poly │ ├── iceland.poly │ ├── ireland.poly │ ├── isle_of_man.poly │ ├── italy.poly │ ├── kosovo.poly │ ├── latvia.poly │ ├── liechtenstein.poly │ ├── lithuania.poly │ ├── luxembourg.poly │ ├── macedonia.poly │ ├── malta.poly │ ├── moldova.poly │ ├── monaco.poly │ ├── montenegro.poly │ ├── netherlands.poly │ ├── norway.poly │ ├── poland.poly │ ├── portugal.poly │ ├── romania.poly │ ├── russia.poly │ ├── serbia.poly │ ├── slovakia.poly │ ├── slovenia.poly │ ├── spain.poly │ ├── sweden.poly │ ├── switzerland.poly │ ├── turkey.poly │ └── ukraine.poly ├── north-america.poly ├── south-america.poly ├── south-america │ ├── argentina.poly │ ├── bolivia.poly │ ├── brazil.poly │ ├── chile.poly │ └── colombia.poly ├── us-midwest.poly ├── us-midwest │ ├── michigan.poly │ └── ohio.poly ├── us-northeast.poly ├── us-northeast │ ├── massachusetts.poly │ └── vermont.poly ├── us-pacific.poly ├── us-south.poly ├── us-south │ ├── arkansas.poly │ ├── district-of-columbia.poly │ ├── florida.poly │ ├── louisiana.poly │ ├── maryland.poly │ ├── mississippi.poly │ ├── oklahoma.poly │ ├── texas.poly │ ├── virginia.poly │ └── west-virginia.poly ├── us-west.poly └── us-west │ ├── arizona.poly │ ├── california.poly │ ├── colorado.poly │ ├── idaho.poly │ ├── montana.poly │ ├── new-mexico.poly │ ├── oregon.poly │ ├── utah.poly │ └── washington.poly ├── cut.hpp ├── example.config ├── geometryreader.hpp ├── growing_bitset.hpp ├── hardcut.hpp ├── softcut.hpp ├── splitter.cpp ├── test ├── test.config └── version-two-node-after.osh └── tools ├── continents.conf ├── countries.conf ├── fetch-and-split.php ├── misc.conf └── split-all-clipbounds.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | osm-history-splitter 2 | 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/README.md -------------------------------------------------------------------------------- /clipbounds/aaa_test/go-and-gk-but-no-cemetry.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/aaa_test/go-and-gk-but-no-cemetry.osm -------------------------------------------------------------------------------- /clipbounds/aaa_test/go-and-gk.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/aaa_test/go-and-gk.osm -------------------------------------------------------------------------------- /clipbounds/aaa_test/go-no-cemetry.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/aaa_test/go-no-cemetry.osm -------------------------------------------------------------------------------- /clipbounds/aaa_test/go.osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/aaa_test/go.osm -------------------------------------------------------------------------------- /clipbounds/africa.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa.poly -------------------------------------------------------------------------------- /clipbounds/africa/canary_islands.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/canary_islands.poly -------------------------------------------------------------------------------- /clipbounds/africa/ethiopia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/ethiopia.poly -------------------------------------------------------------------------------- /clipbounds/africa/guinea.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/guinea.poly -------------------------------------------------------------------------------- /clipbounds/africa/ivory_coast.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/ivory_coast.poly -------------------------------------------------------------------------------- /clipbounds/africa/liberia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/liberia.poly -------------------------------------------------------------------------------- /clipbounds/africa/libya.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/libya.poly -------------------------------------------------------------------------------- /clipbounds/africa/madagascar.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/madagascar.poly -------------------------------------------------------------------------------- /clipbounds/africa/morocco.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/morocco.poly -------------------------------------------------------------------------------- /clipbounds/africa/south_africa_and_lesotho.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/south_africa_and_lesotho.poly -------------------------------------------------------------------------------- /clipbounds/africa/tanzania.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/africa/tanzania.poly -------------------------------------------------------------------------------- /clipbounds/antarctica.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/antarctica.poly -------------------------------------------------------------------------------- /clipbounds/asia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia.poly -------------------------------------------------------------------------------- /clipbounds/asia/azerbaijan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/azerbaijan.poly -------------------------------------------------------------------------------- /clipbounds/asia/china.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/china.poly -------------------------------------------------------------------------------- /clipbounds/asia/gaza-bbox.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/gaza-bbox.poly -------------------------------------------------------------------------------- /clipbounds/asia/gaza.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/gaza.poly -------------------------------------------------------------------------------- /clipbounds/asia/gcc_states.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/gcc_states.poly -------------------------------------------------------------------------------- /clipbounds/asia/india.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/india.poly -------------------------------------------------------------------------------- /clipbounds/asia/indonesia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/indonesia.poly -------------------------------------------------------------------------------- /clipbounds/asia/iraq.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/iraq.poly -------------------------------------------------------------------------------- /clipbounds/asia/israel.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/israel.poly -------------------------------------------------------------------------------- /clipbounds/asia/israel_and_palestine.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/israel_and_palestine.poly -------------------------------------------------------------------------------- /clipbounds/asia/japan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/japan.poly -------------------------------------------------------------------------------- /clipbounds/asia/kazakhstan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/kazakhstan.poly -------------------------------------------------------------------------------- /clipbounds/asia/kyrgyzstan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/kyrgyzstan.poly -------------------------------------------------------------------------------- /clipbounds/asia/mongolia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/mongolia.poly -------------------------------------------------------------------------------- /clipbounds/asia/nepal.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/nepal.poly -------------------------------------------------------------------------------- /clipbounds/asia/pakistan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/pakistan.poly -------------------------------------------------------------------------------- /clipbounds/asia/philippines.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/philippines.poly -------------------------------------------------------------------------------- /clipbounds/asia/taiwan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/taiwan.poly -------------------------------------------------------------------------------- /clipbounds/asia/turkmenistan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/turkmenistan.poly -------------------------------------------------------------------------------- /clipbounds/asia/uzbekistan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/asia/uzbekistan.poly -------------------------------------------------------------------------------- /clipbounds/australia-oceania.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/australia-oceania.poly -------------------------------------------------------------------------------- /clipbounds/australia-oceania/new-caledonia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/australia-oceania/new-caledonia.poly -------------------------------------------------------------------------------- /clipbounds/australia-oceania/new-zealand.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/australia-oceania/new-zealand.poly -------------------------------------------------------------------------------- /clipbounds/canada.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada.poly -------------------------------------------------------------------------------- /clipbounds/canada/british-columbia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/british-columbia.poly -------------------------------------------------------------------------------- /clipbounds/canada/new-brunswick.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/new-brunswick.poly -------------------------------------------------------------------------------- /clipbounds/canada/newfoundland-and-labrador.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/newfoundland-and-labrador.poly -------------------------------------------------------------------------------- /clipbounds/canada/nova-scotia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/nova-scotia.poly -------------------------------------------------------------------------------- /clipbounds/canada/ontario.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/ontario.poly -------------------------------------------------------------------------------- /clipbounds/canada/prince-edward-island.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/prince-edward-island.poly -------------------------------------------------------------------------------- /clipbounds/canada/quebec.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/canada/quebec.poly -------------------------------------------------------------------------------- /clipbounds/central-america.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/central-america.poly -------------------------------------------------------------------------------- /clipbounds/central-america/haiti-and-domrep.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/central-america/haiti-and-domrep.poly -------------------------------------------------------------------------------- /clipbounds/europe.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe.poly -------------------------------------------------------------------------------- /clipbounds/europe/albania.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/albania.poly -------------------------------------------------------------------------------- /clipbounds/europe/alps.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/alps.poly -------------------------------------------------------------------------------- /clipbounds/europe/andorra.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/andorra.poly -------------------------------------------------------------------------------- /clipbounds/europe/austria.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/austria.poly -------------------------------------------------------------------------------- /clipbounds/europe/azores.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/azores.poly -------------------------------------------------------------------------------- /clipbounds/europe/belarus.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/belarus.poly -------------------------------------------------------------------------------- /clipbounds/europe/belgium.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/belgium.poly -------------------------------------------------------------------------------- /clipbounds/europe/bosnia-herzegovina.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/bosnia-herzegovina.poly -------------------------------------------------------------------------------- /clipbounds/europe/british_isles.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/british_isles.poly -------------------------------------------------------------------------------- /clipbounds/europe/bulgaria.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/bulgaria.poly -------------------------------------------------------------------------------- /clipbounds/europe/croatia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/croatia.poly -------------------------------------------------------------------------------- /clipbounds/europe/cyprus.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/cyprus.poly -------------------------------------------------------------------------------- /clipbounds/europe/czech_republic.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/czech_republic.poly -------------------------------------------------------------------------------- /clipbounds/europe/denmark.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/denmark.poly -------------------------------------------------------------------------------- /clipbounds/europe/estonia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/estonia.poly -------------------------------------------------------------------------------- /clipbounds/europe/faroe_islands.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/faroe_islands.poly -------------------------------------------------------------------------------- /clipbounds/europe/finland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/finland.poly -------------------------------------------------------------------------------- /clipbounds/europe/france.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/alsace.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/alsace.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/aquitaine.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/aquitaine.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/auvergne.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/auvergne.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/basse-normandie.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/basse-normandie.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/bourgogne.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/bourgogne.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/bretagne.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/bretagne.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/centre.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/centre.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/champagne-ardenne.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/champagne-ardenne.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/corse.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/corse.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/franche-comte.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/franche-comte.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/haute-normandie.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/haute-normandie.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/ile-de-france.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/ile-de-france.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/languedoc-roussillon.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/languedoc-roussillon.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/limousin.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/limousin.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/lorraine.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/lorraine.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/midi-pyrenees.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/midi-pyrenees.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/nord-pas-de-calais.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/nord-pas-de-calais.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/pays-de-la-loire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/pays-de-la-loire.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/picardie.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/picardie.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/poitou-charentes.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/poitou-charentes.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/provence-alpes-cote-d-azur.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/provence-alpes-cote-d-azur.poly -------------------------------------------------------------------------------- /clipbounds/europe/france/rhone-alpes.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/france/rhone-alpes.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/baden-wuerttemberg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/baden-wuerttemberg.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/mittelfranken.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/mittelfranken.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/niederbayern.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/niederbayern.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/oberbayern.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/oberbayern.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/oberfranken.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/oberfranken.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/oberpfalz.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/oberpfalz.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/schwaben.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/schwaben.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bayern/unterfranken.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bayern/unterfranken.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/berlin.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/berlin.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/brandenburg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/brandenburg.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/bremen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/bremen.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/hamburg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/hamburg.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/hessen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/hessen.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/mecklenburg-vorpommern.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/mecklenburg-vorpommern.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/niedersachsen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/niedersachsen.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen/arnsberg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen/arnsberg.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen/detmold.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen/detmold.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen/duesseldorf.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen/duesseldorf.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen/koeln.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen/koeln.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/nordrhein-westfalen/muenster.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/nordrhein-westfalen/muenster.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/rheinland-pfalz.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/rheinland-pfalz.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/saarland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/saarland.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/sachsen-anhalt.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/sachsen-anhalt.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/sachsen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/sachsen.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/schleswig-holstein.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/schleswig-holstein.poly -------------------------------------------------------------------------------- /clipbounds/europe/germany/thueringen.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/germany/thueringen.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/buckinghamshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/buckinghamshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/cambridgeshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/cambridgeshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/cumbria.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/cumbria.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/east_yorkshire_with_hull.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/east_yorkshire_with_hull.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/essex.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/essex.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/herefordshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/herefordshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/kent.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/kent.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/lancashire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/lancashire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/leicestershire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/leicestershire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/london/enfield.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/london/enfield.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/norfolk.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/norfolk.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/nottinghamshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/nottinghamshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/oxfordshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/oxfordshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/shropshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/shropshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/somerset.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/somerset.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/south_yorkshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/south_yorkshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/suffolk.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/suffolk.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/surrey.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/surrey.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/england/wiltshire.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/england/wiltshire.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/scotland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/scotland.poly -------------------------------------------------------------------------------- /clipbounds/europe/great_britain/wales.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/great_britain/wales.poly -------------------------------------------------------------------------------- /clipbounds/europe/greece.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/greece.poly -------------------------------------------------------------------------------- /clipbounds/europe/hungary.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/hungary.poly -------------------------------------------------------------------------------- /clipbounds/europe/iceland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/iceland.poly -------------------------------------------------------------------------------- /clipbounds/europe/ireland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/ireland.poly -------------------------------------------------------------------------------- /clipbounds/europe/isle_of_man.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/isle_of_man.poly -------------------------------------------------------------------------------- /clipbounds/europe/italy.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/italy.poly -------------------------------------------------------------------------------- /clipbounds/europe/kosovo.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/kosovo.poly -------------------------------------------------------------------------------- /clipbounds/europe/latvia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/latvia.poly -------------------------------------------------------------------------------- /clipbounds/europe/liechtenstein.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/liechtenstein.poly -------------------------------------------------------------------------------- /clipbounds/europe/lithuania.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/lithuania.poly -------------------------------------------------------------------------------- /clipbounds/europe/luxembourg.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/luxembourg.poly -------------------------------------------------------------------------------- /clipbounds/europe/macedonia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/macedonia.poly -------------------------------------------------------------------------------- /clipbounds/europe/malta.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/malta.poly -------------------------------------------------------------------------------- /clipbounds/europe/moldova.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/moldova.poly -------------------------------------------------------------------------------- /clipbounds/europe/monaco.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/monaco.poly -------------------------------------------------------------------------------- /clipbounds/europe/montenegro.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/montenegro.poly -------------------------------------------------------------------------------- /clipbounds/europe/netherlands.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/netherlands.poly -------------------------------------------------------------------------------- /clipbounds/europe/norway.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/norway.poly -------------------------------------------------------------------------------- /clipbounds/europe/poland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/poland.poly -------------------------------------------------------------------------------- /clipbounds/europe/portugal.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/portugal.poly -------------------------------------------------------------------------------- /clipbounds/europe/romania.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/romania.poly -------------------------------------------------------------------------------- /clipbounds/europe/russia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/russia.poly -------------------------------------------------------------------------------- /clipbounds/europe/serbia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/serbia.poly -------------------------------------------------------------------------------- /clipbounds/europe/slovakia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/slovakia.poly -------------------------------------------------------------------------------- /clipbounds/europe/slovenia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/slovenia.poly -------------------------------------------------------------------------------- /clipbounds/europe/spain.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/spain.poly -------------------------------------------------------------------------------- /clipbounds/europe/sweden.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/sweden.poly -------------------------------------------------------------------------------- /clipbounds/europe/switzerland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/switzerland.poly -------------------------------------------------------------------------------- /clipbounds/europe/turkey.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/turkey.poly -------------------------------------------------------------------------------- /clipbounds/europe/ukraine.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/europe/ukraine.poly -------------------------------------------------------------------------------- /clipbounds/north-america.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/north-america.poly -------------------------------------------------------------------------------- /clipbounds/south-america.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america.poly -------------------------------------------------------------------------------- /clipbounds/south-america/argentina.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america/argentina.poly -------------------------------------------------------------------------------- /clipbounds/south-america/bolivia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america/bolivia.poly -------------------------------------------------------------------------------- /clipbounds/south-america/brazil.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america/brazil.poly -------------------------------------------------------------------------------- /clipbounds/south-america/chile.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america/chile.poly -------------------------------------------------------------------------------- /clipbounds/south-america/colombia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/south-america/colombia.poly -------------------------------------------------------------------------------- /clipbounds/us-midwest.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-midwest.poly -------------------------------------------------------------------------------- /clipbounds/us-midwest/michigan.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-midwest/michigan.poly -------------------------------------------------------------------------------- /clipbounds/us-midwest/ohio.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-midwest/ohio.poly -------------------------------------------------------------------------------- /clipbounds/us-northeast.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-northeast.poly -------------------------------------------------------------------------------- /clipbounds/us-northeast/massachusetts.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-northeast/massachusetts.poly -------------------------------------------------------------------------------- /clipbounds/us-northeast/vermont.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-northeast/vermont.poly -------------------------------------------------------------------------------- /clipbounds/us-pacific.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-pacific.poly -------------------------------------------------------------------------------- /clipbounds/us-south.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south.poly -------------------------------------------------------------------------------- /clipbounds/us-south/arkansas.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/arkansas.poly -------------------------------------------------------------------------------- /clipbounds/us-south/district-of-columbia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/district-of-columbia.poly -------------------------------------------------------------------------------- /clipbounds/us-south/florida.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/florida.poly -------------------------------------------------------------------------------- /clipbounds/us-south/louisiana.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/louisiana.poly -------------------------------------------------------------------------------- /clipbounds/us-south/maryland.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/maryland.poly -------------------------------------------------------------------------------- /clipbounds/us-south/mississippi.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/mississippi.poly -------------------------------------------------------------------------------- /clipbounds/us-south/oklahoma.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/oklahoma.poly -------------------------------------------------------------------------------- /clipbounds/us-south/texas.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/texas.poly -------------------------------------------------------------------------------- /clipbounds/us-south/virginia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/virginia.poly -------------------------------------------------------------------------------- /clipbounds/us-south/west-virginia.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-south/west-virginia.poly -------------------------------------------------------------------------------- /clipbounds/us-west.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west.poly -------------------------------------------------------------------------------- /clipbounds/us-west/arizona.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/arizona.poly -------------------------------------------------------------------------------- /clipbounds/us-west/california.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/california.poly -------------------------------------------------------------------------------- /clipbounds/us-west/colorado.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/colorado.poly -------------------------------------------------------------------------------- /clipbounds/us-west/idaho.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/idaho.poly -------------------------------------------------------------------------------- /clipbounds/us-west/montana.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/montana.poly -------------------------------------------------------------------------------- /clipbounds/us-west/new-mexico.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/new-mexico.poly -------------------------------------------------------------------------------- /clipbounds/us-west/oregon.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/oregon.poly -------------------------------------------------------------------------------- /clipbounds/us-west/utah.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/utah.poly -------------------------------------------------------------------------------- /clipbounds/us-west/washington.poly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/clipbounds/us-west/washington.poly -------------------------------------------------------------------------------- /cut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/cut.hpp -------------------------------------------------------------------------------- /example.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/example.config -------------------------------------------------------------------------------- /geometryreader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/geometryreader.hpp -------------------------------------------------------------------------------- /growing_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/growing_bitset.hpp -------------------------------------------------------------------------------- /hardcut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/hardcut.hpp -------------------------------------------------------------------------------- /softcut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/softcut.hpp -------------------------------------------------------------------------------- /splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/splitter.cpp -------------------------------------------------------------------------------- /test/test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/test/test.config -------------------------------------------------------------------------------- /test/version-two-node-after.osh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/test/version-two-node-after.osh -------------------------------------------------------------------------------- /tools/continents.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/tools/continents.conf -------------------------------------------------------------------------------- /tools/countries.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/tools/countries.conf -------------------------------------------------------------------------------- /tools/fetch-and-split.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/tools/fetch-and-split.php -------------------------------------------------------------------------------- /tools/misc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/tools/misc.conf -------------------------------------------------------------------------------- /tools/split-all-clipbounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaZderMind/osm-history-splitter/HEAD/tools/split-all-clipbounds.py --------------------------------------------------------------------------------