├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── config.json.enc ├── config.json.example ├── create_named.js ├── dark-matter-all-lowercase.yml ├── dark-matter-all.yml ├── dark-matter-labels-only.yml ├── dark-matter-no-labels.yml ├── dark-matter.yml ├── data ├── README.md ├── cartodb_sql.js ├── core_functions.sql ├── datasets.txt ├── fixed_shps │ ├── ne_10m_admin_1_states_provinces_lines_shp.zip │ ├── ne_10m_geography_marine_polys.zip │ └── ne_50m_geography_marine_polys.zip ├── generalizations.yml ├── generalizations_sql.js ├── generalizations_sql_batch.js ├── global_functions.sql ├── import_extract.js ├── import_files.js ├── import_sync.js ├── imposm3_mapping.json ├── refresh.js ├── replicate.sh ├── small_shps │ ├── continents_900913.dbf │ ├── continents_900913.prj │ ├── continents_900913.shp │ └── continents_900913.shx └── syncdatasets.txt ├── deploy.sh ├── layers.yml ├── migrations └── v2.1.0.sql ├── package.json ├── positron-all-lowercase.yml ├── positron-all.yml ├── positron-labels-only.yml ├── positron-no-labels.yml ├── positron.yml └── styles ├── admin0boundaries.mss ├── admin1_labels.mss ├── admin1_labels_lowercase.mss ├── admin1boundaries.mss ├── admin1boundary_labels.mss ├── admin1boundary_labels_lowercase.mss ├── aeroways.mss ├── buildings.mss ├── continent_labels.mss ├── continent_labels_lowercase.mss ├── country_city_labels.mss ├── country_city_labels_lowercase.mss ├── false_background.mss ├── global_variables.mss ├── global_variables_dark.mss ├── global_variables_dark_lowercase.mss ├── global_variables_dark_only_labels.mss ├── global_variables_lowercase.mss ├── global_variables_only_labels.mss ├── green_areas.mss ├── images ├── bgnoise.png ├── capital_shield_dark.png ├── capital_shield_dark.svg ├── capital_shield_dark_444.png ├── capital_shield_dark_444.svg ├── capital_shield_dark_666.png ├── capital_shield_dark_666.svg ├── capital_shield_light.png ├── circles.png ├── city_shield_dark.svg ├── city_shield_dark_444.png ├── city_shield_dark_444.svg ├── city_shield_dark_666.png ├── city_shield_dark_666.svg ├── city_shield_light.svg ├── park-halftone-1.png ├── star.idraw └── star8.png ├── land_negative.mss ├── land_positive.mss ├── marine_labels.mss ├── marine_labels_lowercase.mss ├── ne10mroads.mss ├── osm_roads_labels.mss ├── osm_roads_labels_lowercase.mss ├── osmbridges.mss ├── osmroads.mss ├── osmtunnels.mss ├── park_labels.mss ├── park_labels_lowercase.mss ├── urban_areas.mss ├── water.mss ├── water_labels.mss └── water_labels_lowercase.mss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/README.md -------------------------------------------------------------------------------- /config.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/config.json.enc -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/config.json.example -------------------------------------------------------------------------------- /create_named.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/create_named.js -------------------------------------------------------------------------------- /dark-matter-all-lowercase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/dark-matter-all-lowercase.yml -------------------------------------------------------------------------------- /dark-matter-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/dark-matter-all.yml -------------------------------------------------------------------------------- /dark-matter-labels-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/dark-matter-labels-only.yml -------------------------------------------------------------------------------- /dark-matter-no-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/dark-matter-no-labels.yml -------------------------------------------------------------------------------- /dark-matter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/dark-matter.yml -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/README.md -------------------------------------------------------------------------------- /data/cartodb_sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/cartodb_sql.js -------------------------------------------------------------------------------- /data/core_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/core_functions.sql -------------------------------------------------------------------------------- /data/datasets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/datasets.txt -------------------------------------------------------------------------------- /data/fixed_shps/ne_10m_admin_1_states_provinces_lines_shp.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/fixed_shps/ne_10m_admin_1_states_provinces_lines_shp.zip -------------------------------------------------------------------------------- /data/fixed_shps/ne_10m_geography_marine_polys.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/fixed_shps/ne_10m_geography_marine_polys.zip -------------------------------------------------------------------------------- /data/fixed_shps/ne_50m_geography_marine_polys.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/fixed_shps/ne_50m_geography_marine_polys.zip -------------------------------------------------------------------------------- /data/generalizations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/generalizations.yml -------------------------------------------------------------------------------- /data/generalizations_sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/generalizations_sql.js -------------------------------------------------------------------------------- /data/generalizations_sql_batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/generalizations_sql_batch.js -------------------------------------------------------------------------------- /data/global_functions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/global_functions.sql -------------------------------------------------------------------------------- /data/import_extract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/import_extract.js -------------------------------------------------------------------------------- /data/import_files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/import_files.js -------------------------------------------------------------------------------- /data/import_sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/import_sync.js -------------------------------------------------------------------------------- /data/imposm3_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/imposm3_mapping.json -------------------------------------------------------------------------------- /data/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/refresh.js -------------------------------------------------------------------------------- /data/replicate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/replicate.sh -------------------------------------------------------------------------------- /data/small_shps/continents_900913.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/small_shps/continents_900913.dbf -------------------------------------------------------------------------------- /data/small_shps/continents_900913.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/small_shps/continents_900913.prj -------------------------------------------------------------------------------- /data/small_shps/continents_900913.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/small_shps/continents_900913.shp -------------------------------------------------------------------------------- /data/small_shps/continents_900913.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/small_shps/continents_900913.shx -------------------------------------------------------------------------------- /data/syncdatasets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/data/syncdatasets.txt -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/deploy.sh -------------------------------------------------------------------------------- /layers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/layers.yml -------------------------------------------------------------------------------- /migrations/v2.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/migrations/v2.1.0.sql -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/package.json -------------------------------------------------------------------------------- /positron-all-lowercase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/positron-all-lowercase.yml -------------------------------------------------------------------------------- /positron-all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/positron-all.yml -------------------------------------------------------------------------------- /positron-labels-only.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/positron-labels-only.yml -------------------------------------------------------------------------------- /positron-no-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/positron-no-labels.yml -------------------------------------------------------------------------------- /positron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/positron.yml -------------------------------------------------------------------------------- /styles/admin0boundaries.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin0boundaries.mss -------------------------------------------------------------------------------- /styles/admin1_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin1_labels.mss -------------------------------------------------------------------------------- /styles/admin1_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin1_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/admin1boundaries.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin1boundaries.mss -------------------------------------------------------------------------------- /styles/admin1boundary_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin1boundary_labels.mss -------------------------------------------------------------------------------- /styles/admin1boundary_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/admin1boundary_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/aeroways.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/aeroways.mss -------------------------------------------------------------------------------- /styles/buildings.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/buildings.mss -------------------------------------------------------------------------------- /styles/continent_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/continent_labels.mss -------------------------------------------------------------------------------- /styles/continent_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/continent_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/country_city_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/country_city_labels.mss -------------------------------------------------------------------------------- /styles/country_city_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/country_city_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/false_background.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/false_background.mss -------------------------------------------------------------------------------- /styles/global_variables.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables.mss -------------------------------------------------------------------------------- /styles/global_variables_dark.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables_dark.mss -------------------------------------------------------------------------------- /styles/global_variables_dark_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables_dark_lowercase.mss -------------------------------------------------------------------------------- /styles/global_variables_dark_only_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables_dark_only_labels.mss -------------------------------------------------------------------------------- /styles/global_variables_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables_lowercase.mss -------------------------------------------------------------------------------- /styles/global_variables_only_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/global_variables_only_labels.mss -------------------------------------------------------------------------------- /styles/green_areas.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/green_areas.mss -------------------------------------------------------------------------------- /styles/images/bgnoise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/bgnoise.png -------------------------------------------------------------------------------- /styles/images/capital_shield_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark.png -------------------------------------------------------------------------------- /styles/images/capital_shield_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark.svg -------------------------------------------------------------------------------- /styles/images/capital_shield_dark_444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark_444.png -------------------------------------------------------------------------------- /styles/images/capital_shield_dark_444.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark_444.svg -------------------------------------------------------------------------------- /styles/images/capital_shield_dark_666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark_666.png -------------------------------------------------------------------------------- /styles/images/capital_shield_dark_666.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_dark_666.svg -------------------------------------------------------------------------------- /styles/images/capital_shield_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/capital_shield_light.png -------------------------------------------------------------------------------- /styles/images/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/circles.png -------------------------------------------------------------------------------- /styles/images/city_shield_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_dark.svg -------------------------------------------------------------------------------- /styles/images/city_shield_dark_444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_dark_444.png -------------------------------------------------------------------------------- /styles/images/city_shield_dark_444.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_dark_444.svg -------------------------------------------------------------------------------- /styles/images/city_shield_dark_666.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_dark_666.png -------------------------------------------------------------------------------- /styles/images/city_shield_dark_666.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_dark_666.svg -------------------------------------------------------------------------------- /styles/images/city_shield_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/city_shield_light.svg -------------------------------------------------------------------------------- /styles/images/park-halftone-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/park-halftone-1.png -------------------------------------------------------------------------------- /styles/images/star.idraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/star.idraw -------------------------------------------------------------------------------- /styles/images/star8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/images/star8.png -------------------------------------------------------------------------------- /styles/land_negative.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/land_negative.mss -------------------------------------------------------------------------------- /styles/land_positive.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/land_positive.mss -------------------------------------------------------------------------------- /styles/marine_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/marine_labels.mss -------------------------------------------------------------------------------- /styles/marine_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/marine_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/ne10mroads.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/ne10mroads.mss -------------------------------------------------------------------------------- /styles/osm_roads_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/osm_roads_labels.mss -------------------------------------------------------------------------------- /styles/osm_roads_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/osm_roads_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/osmbridges.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/osmbridges.mss -------------------------------------------------------------------------------- /styles/osmroads.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/osmroads.mss -------------------------------------------------------------------------------- /styles/osmtunnels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/osmtunnels.mss -------------------------------------------------------------------------------- /styles/park_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/park_labels.mss -------------------------------------------------------------------------------- /styles/park_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/park_labels_lowercase.mss -------------------------------------------------------------------------------- /styles/urban_areas.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/urban_areas.mss -------------------------------------------------------------------------------- /styles/water.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/water.mss -------------------------------------------------------------------------------- /styles/water_labels.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/water_labels.mss -------------------------------------------------------------------------------- /styles/water_labels_lowercase.mss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/CartoDB-basemaps/HEAD/styles/water_labels_lowercase.mss --------------------------------------------------------------------------------