From 7713b7f56d66d692849dec7a75fe0b3439fe6a10 Mon Sep 17 00:00:00 2001 From: bill Date: Thu, 2 Feb 2012 23:26:56 -0500 Subject: [PATCH] delete configure.py and .gitignore configure.py --- .gitignore | 1 + configure.py | 33 --------------------------------- 2 files changed, 1 insertion(+), 33 deletions(-) delete mode 100755 configure.py diff --git a/.gitignore b/.gitignore index 6f97ca1..ba02c7c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ build *.pyc +configure.py diff --git a/configure.py b/configure.py deleted file mode 100755 index d800c69..0000000 --- a/configure.py +++ /dev/null @@ -1,33 +0,0 @@ -#!/usr/bin/env python - -## OSM BRIGHT CARTO TEMPLATE CONFIGURATION OPTIONS ############################# - -config = { - "importer": "imposm", # either 'imposm' or 'osm2pgsql' - "postgis": {} -} - -# PostGIS connection setup -# Leave empty for Mapnik defaults. The only required parameter is dbname. -config["postgis"]["host"] = "" -config["postgis"]["port"] = "" -config["postgis"]["dbname"] = "osm" -config["postgis"]["user"] = "" -config["postgis"]["password"] = "" - -# Increase performance if you are only rendering a particular area by -# specifying a bounding box to restrict queries. Format is "XMIN,YMIN,XMAX,YMAX" -# in the same units as the database (probably spherical mercator meters). The -# whole world is "-20037508.34 -20037508.34 20037508.34 20037508.34". -# Leave blank to let Mapnik estimate. -config["postgis"]["extent"] = "-20037508.34 -20037508.34 20037508.34 20037508.34" - -# Land shapefiles required for the style. If you have already downloaded -# these or wish to use different versions, specify their paths here. -# OSM land shapefiles from MapBox are indexed for Mapnik and have blatant -# errors corrected (eg triangles along the 180 E/W line), but are updated -# infrequently. The latest versions can be downloaded from osm.org: -# - http://tile.openstreetmap.org/processed_p.tar.bz2 -# - http://tile.openstreetmap.org/shoreline_300.tar.bz2 -processed_p = "http://tilemill-data.s3.amazonaws.com/osm/coastline-good.zip" -shoreline_300 = "http://tilemill-data.s3.amazonaws.com/osm/shoreline_300.zip"