From: Michael Orlitzky Date: Mon, 28 Sep 2009 02:21:22 +0000 (-0400) Subject: Changed the default SRID constant to an integer (as opposed to a string). X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=f9f6eeb97d2a5588ba6e567b48f186c704342be9 Changed the default SRID constant to an integer (as opposed to a string). --- diff --git a/src/Configuration/Defaults.py b/src/Configuration/Defaults.py index 588cddd..0de824a 100644 --- a/src/Configuration/Defaults.py +++ b/src/Configuration/Defaults.py @@ -1,4 +1,4 @@ DATABASE_HOST = 'localhost' DATABASE_NAME = 'census' DATABASE_USERNAME = 'postgres' -SRID = '4269' +SRID = 4269