Skip to content

Commit

Permalink
Added census tracts and places.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed May 17, 2011
1 parent e0d18dc commit 36b9846
Show file tree
Hide file tree
Showing 12 changed files with 428 additions and 0 deletions.
Binary file added data/shapefiles/census_places/census_places.dbf
Binary file not shown.
Binary file added data/shapefiles/census_places/census_places.dbf~
Binary file not shown.
1 change: 1 addition & 0 deletions data/shapefiles/census_places/census_places.prj
@@ -0,0 +1 @@
GEOGCS["GCS_WGS_1984",DATUM["D_unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
1 change: 1 addition & 0 deletions data/shapefiles/census_places/census_places.qpj
@@ -0,0 +1 @@
GEOGCS["WGS 84",DATUM["unknown",SPHEROID["WGS84",6378137,298.257223563],TOWGS84[0,0,0,0,0,0,0]],PRIMEM["Greenwich",0],UNIT["degree",0.0174532925199433]]
Binary file added data/shapefiles/census_places/census_places.shp
Binary file not shown.
Binary file added data/shapefiles/census_places/census_places.shx
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions data/shapefiles/census_tracts/tl_2010_48423_tract10.prj
@@ -0,0 +1 @@
GEOGCS["GCS_North_American_1983",DATUM["D_North_American_1983",SPHEROID["GRS_1980",6378137,298.257222101]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
Binary file not shown.
397 changes: 397 additions & 0 deletions data/shapefiles/census_tracts/tl_2010_48423_tract10.shp.xml

Large diffs are not rendered by default.

Binary file not shown.
28 changes: 28 additions & 0 deletions data/shapefiles/definitions.py
Expand Up @@ -65,4 +65,32 @@
'encoding': '',
'srid': ''
},
'Census Places': {
'file': 'census_places/census_places.shp',
'singular': 'Census Place',
'kind_first': False,
'ider': utils.simple_namer(['GEOID10']),
'namer': utils.simple_namer(['NAMELSAD']),
'authority': 'U.S. Census Bureau',
'domain': 'Smith County',
'last_updated': date(2011, 5, 16),
'href': 'http://www.census.gov/cgi-bin/geo/shapefiles2010/main',
'notes': 'Reduced from Texas-wide dataset to only those intersecting the census polygon for Smith County.',
'encoding': '',
'srid': ''
},
'Census Tracts': {
'file': 'census_tracts/tl_2010_48423_tract10.shp',
'singular': 'Census Tract',
'kind_first': True,
'ider': utils.simple_namer(['GEOID10']),
'namer': utils.simple_namer(['NAME10']),
'authority': 'U.S. Census Bureau',
'domain': 'Smith County',
'last_updated': date(2011, 5, 16),
'href': 'http://www.census.gov/cgi-bin/geo/shapefiles2010/main',
'notes': '',
'encoding': '',
'srid': ''
},
}

0 comments on commit 36b9846

Please sign in to comment.