├── .gitignore ├── README.md ├── scripts ├── crop_china_region.py ├── mask_china_region.py ├── plot-sample.ncl ├── remap_web_mercator.py ├── remove_small_features.py ├── shapefile_utils.ncl └── territorial_sea.py └── shapefiles ├── china.dbf ├── china.prj ├── china.shp ├── china.shx ├── china_country.dbf ├── china_country.prj ├── china_country.shp ├── china_country.shx ├── china_nine_dotted_line.dbf ├── china_nine_dotted_line.prj ├── china_nine_dotted_line.shp ├── china_nine_dotted_line.shx ├── china_without_islands.cpg ├── china_without_islands.dbf ├── china_without_islands.shp ├── china_without_islands.shx ├── simplied_china_country.dbf ├── simplied_china_country.prj ├── simplied_china_country.shp └── simplied_china_country.shx /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/README.md -------------------------------------------------------------------------------- /scripts/crop_china_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/crop_china_region.py -------------------------------------------------------------------------------- /scripts/mask_china_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/mask_china_region.py -------------------------------------------------------------------------------- /scripts/plot-sample.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/plot-sample.ncl -------------------------------------------------------------------------------- /scripts/remap_web_mercator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/remap_web_mercator.py -------------------------------------------------------------------------------- /scripts/remove_small_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/remove_small_features.py -------------------------------------------------------------------------------- /scripts/shapefile_utils.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/shapefile_utils.ncl -------------------------------------------------------------------------------- /scripts/territorial_sea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/scripts/territorial_sea.py -------------------------------------------------------------------------------- /shapefiles/china.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china.dbf -------------------------------------------------------------------------------- /shapefiles/china.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china.prj -------------------------------------------------------------------------------- /shapefiles/china.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china.shp -------------------------------------------------------------------------------- /shapefiles/china.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china.shx -------------------------------------------------------------------------------- /shapefiles/china_country.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_country.dbf -------------------------------------------------------------------------------- /shapefiles/china_country.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_country.prj -------------------------------------------------------------------------------- /shapefiles/china_country.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_country.shp -------------------------------------------------------------------------------- /shapefiles/china_country.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_country.shx -------------------------------------------------------------------------------- /shapefiles/china_nine_dotted_line.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_nine_dotted_line.dbf -------------------------------------------------------------------------------- /shapefiles/china_nine_dotted_line.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_nine_dotted_line.prj -------------------------------------------------------------------------------- /shapefiles/china_nine_dotted_line.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_nine_dotted_line.shp -------------------------------------------------------------------------------- /shapefiles/china_nine_dotted_line.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_nine_dotted_line.shx -------------------------------------------------------------------------------- /shapefiles/china_without_islands.cpg: -------------------------------------------------------------------------------- 1 | ISO-8859-1 -------------------------------------------------------------------------------- /shapefiles/china_without_islands.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_without_islands.dbf -------------------------------------------------------------------------------- /shapefiles/china_without_islands.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_without_islands.shp -------------------------------------------------------------------------------- /shapefiles/china_without_islands.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/china_without_islands.shx -------------------------------------------------------------------------------- /shapefiles/simplied_china_country.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/simplied_china_country.dbf -------------------------------------------------------------------------------- /shapefiles/simplied_china_country.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/simplied_china_country.prj -------------------------------------------------------------------------------- /shapefiles/simplied_china_country.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/simplied_china_country.shp -------------------------------------------------------------------------------- /shapefiles/simplied_china_country.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongli/china-shapefiles/HEAD/shapefiles/simplied_china_country.shx --------------------------------------------------------------------------------