X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=bin%2Fdownload_data;h=37741cd7a84acc53be930ba6e240255f8a743e62;hb=5b2b3a2bb2c4620143c0a3a8ca20f88babe96f7b;hp=7e59ece5ec7b3ab7c8a4f3d60b9e78e07265b55b;hpb=2f9baf2bf5df3f7fa8191a7898e9ede706f61f7c;p=dead%2Fcensus-tools.git diff --git a/bin/download_data b/bin/download_data index 7e59ece..37741cd 100755 --- a/bin/download_data +++ b/bin/download_data @@ -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,6 @@ 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_blocks(states) Data.download_lines(states)