]> gitweb.michael.orlitzky.com - dead/census-tools.git/commitdiff
Converted the SRID argument to type="int".
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 27 Sep 2009 20:26:43 +0000 (16:26 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 27 Sep 2009 20:26:43 +0000 (16:26 -0400)
bin/wkt2pop

index af3559577faa9919aed275beaa9fbb305f3e14fe..24e4a1f1a79ca1ab6bc532c2be9fcc9172065a65 100755 (executable)
@@ -51,6 +51,7 @@ parser.add_option('-U',
 
 parser.add_option('-s',
                   '--srid',
+                  type="int",
                   help="SRID of the input geometry. Defaults to %s." % Configuration.Defaults.SRID,
                   default=Configuration.Defaults.SRID)
 
@@ -73,7 +74,7 @@ cursor = conn.cursor()
 # We're ready to build our query, one step at a time. Firsy, we store
 # the Text->Geom conversion in a variable; this just makes the query a
 # little easier to read.
-geometric_object = "ST_GeomFromText('%s', %s)" % (args[0], options.srid)
+geometric_object = "ST_GeomFromText('%s', %d)" % (args[0], options.srid)
 
 # We want to compute the population "under" the geometric object. We
 # can compute the percentage of a block that is covered by taking the