-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
514 additions
and
838 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,68 @@ | ||
### Links | ||
# census-map-consolidator | ||
|
||
Combine Census blocks into new shapes. | ||
|
||
### Installation | ||
|
||
```bash | ||
pipenv install census-map-consolidator | ||
``` | ||
|
||
### Usage | ||
|
||
Create a list of Census block GEOIDs. That can be simple like this: | ||
|
||
```python | ||
your_block_list = ["060371976001008", "060371976001009"] | ||
``` | ||
|
||
Or read in from a file like this: | ||
|
||
```python | ||
with open("test_data/dtla.csv", "r") as f: | ||
your_block_list = f.read().splitlines() | ||
``` | ||
|
||
Import our class. | ||
|
||
```python | ||
from census_map_consolidator import BlockConsolidator | ||
``` | ||
|
||
Pass in the block list as arguments. | ||
|
||
```python | ||
c = BlockConsolidator(*your_block_list) | ||
``` | ||
|
||
Consolidate the blocks into a single shape. This can take a minute. Big shapefiles have to be downloaded. | ||
|
||
```python | ||
c.consolidate() | ||
``` | ||
|
||
Write out the new shape. You can do GeoJSON. | ||
|
||
```python | ||
c.write("./your-new-shape.geojson") | ||
``` | ||
|
||
Or shapefiles. | ||
|
||
```python | ||
c.write("./your-new-shape.shp") | ||
``` | ||
|
||
That's it. You can inspect your work however you like. But [geojsonio](https://github.com/mapbox/geojsonio-cli) is handy. | ||
|
||
```bash | ||
geojsonio < your-new-shape.geojson | ||
``` | ||
|
||
![dtla](_static/dtla.png) | ||
|
||
## Links | ||
|
||
* Docs: [palewi.re/docs/census-map-consolidator/](https://palewi.re/docs/census-map-consolidator/) | ||
* Issues: [github.com/datadesk/census-map-consolidator/issues](https://github.com/datadesk/census-map-consolidator/issues) | ||
* Packaging: [pypi.python.org/pypi/census-map-consolidator](https://pypi.python.org/pypi/census-map-consolidator) | ||
* Testing: [github.com/datadesk/census-map-consolidator/actions](https://github.com/datadesk/census-map-consolidator/actions) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.