]> gitweb.michael.orlitzky.com - dead/census-tools.git/commitdiff
Added the Delaware lines to the download_data script.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 10 Nov 2009 05:40:22 +0000 (00:40 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 10 Nov 2009 05:40:22 +0000 (00:40 -0500)
bin/download_data

index 7e59ece5ec7b3ab7c8a4f3d60b9e78e07265b55b..6830f5f66b8befc40e936f39377419bab70c563a 100755 (executable)
@@ -17,6 +17,7 @@ from Data import State, County
 
 
 # Create the State objects.
+de = State(10, 'Delaware')
 dc = State(11, 'District of Columbia')
 md = State(24, 'Maryland')
 ny = State(36, 'New York')
@@ -26,7 +27,14 @@ wv = State(54, 'West Virginia')
 
 
 # Now we add all of the counties belonging to each state, starting
-# with Washington D.C.
+# with Delaware.
+
+de.add_county(1, 'Kent')
+de.add_county(3, 'New Castle')
+de.add_county(5, 'Sussex')
+
+
+# Washington D.C.
 
 dc.add_county(1, 'District of Columbia', True)
 
@@ -395,5 +403,5 @@ wv.add_county(109, 'Wyoming')
 
 # Now that the counties have been added, create a list of states to
 # pass to the download_lines function.
-states = [dc, md, ny, pa, va, wv]
+states = [de, dc, md, ny, pa, va, wv]
 Data.download_lines(states)