├── .hgignore ├── README.md ├── Rakefile.rb ├── Vagrantfile ├── docs ├── data_preprocessing.md └── geography_trivia.md ├── raw_data ├── README.md └── reference_data │ └── regions_data.json ├── topojson_edit ├── add_regions_data └── merge_cities_to_regions ├── ukraine.json └── vagrant.sh /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/.hgignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/Rakefile.rb -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/Vagrantfile -------------------------------------------------------------------------------- /docs/data_preprocessing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/docs/data_preprocessing.md -------------------------------------------------------------------------------- /docs/geography_trivia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/docs/geography_trivia.md -------------------------------------------------------------------------------- /raw_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/raw_data/README.md -------------------------------------------------------------------------------- /raw_data/reference_data/regions_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/raw_data/reference_data/regions_data.json -------------------------------------------------------------------------------- /topojson_edit/add_regions_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/topojson_edit/add_regions_data -------------------------------------------------------------------------------- /topojson_edit/merge_cities_to_regions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/topojson_edit/merge_cities_to_regions -------------------------------------------------------------------------------- /ukraine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/ukraine.json -------------------------------------------------------------------------------- /vagrant.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsapsai/ukraine_map_data/HEAD/vagrant.sh --------------------------------------------------------------------------------