@@ -32,7 +32,7 @@ close = Client(os.environ.get("CLOSECITY_KEY"))
3232A few terms come up throughout:
3333
3434- ** Census block.** The smallest area the Census Bureau publishes. Each one has a
35- 15-digit id, its ** GEOID** . Block GEOIDs come from the census — look them up with
35+ 15-digit id, its ** GEOID** . Block GEOIDs come from the census. Look them up with
3636 ` pygris ` or the Census Bureau geocoder/API, or read them straight off Close's
3737 block routes (` blocks_query ` , ` place_blocks ` ).
3838- ** Destination type.** A category of place, such as grocery stores or libraries.
@@ -89,7 +89,7 @@ point instead of a GEOID.
8989## Make a call and map it
9090
9191Routes with geometry return a GeoDataFrame. ` close_map() ` draws it on an interactive
92- basemap in one line — bright, hoverable points here, with the city boundary behind
92+ basemap in one line: bright, hoverable points here, with the city boundary behind
9393them and the view zoomed to fit.
9494
9595``` {code-cell} python
@@ -135,34 +135,34 @@ full signatures.
135135
136136Catalog and lookups (free, no key):
137137
138- - {py: meth }` ~closecity.Client.modes ` — the travel modes: walk, bike, transit.
139- - {py: meth }` ~closecity.Client.destination_types ` — the catalog of amenity categories and their numeric ids.
140- - {py: meth }` ~closecity.Client.places ` — a city name to its GEOID and centre point.
141- - {py: meth }` ~closecity.Client.place_boundary ` — the boundary polygon of a census place.
142- - {py: meth }` ~closecity.Client.vintage ` — the data vintage.
143- - {py: meth }` ~closecity.Client.last_updated ` — when the data was last refreshed.
144- - {py: meth }` ~closecity.Client.isochrone_meta ` — isochrone modes, directions, and assumptions.
145- - {py: meth }` ~closecity.Client.health ` — a service health check.
138+ - {py: meth }` ~closecity.Client.modes ` : the travel modes ( walk, bike, transit) .
139+ - {py: meth }` ~closecity.Client.destination_types ` : the catalog of amenity categories and their numeric ids.
140+ - {py: meth }` ~closecity.Client.places ` : a city name to its GEOID and centre point.
141+ - {py: meth }` ~closecity.Client.place_boundary ` : the boundary polygon of a census place.
142+ - {py: meth }` ~closecity.Client.vintage ` : the data vintage.
143+ - {py: meth }` ~closecity.Client.last_updated ` : when the data was last refreshed.
144+ - {py: meth }` ~closecity.Client.isochrone_meta ` : isochrone modes, directions, and assumptions.
145+ - {py: meth }` ~closecity.Client.health ` : a service health check.
146146
147147Travel times from a block or a point:
148148
149- - {py: meth }` ~closecity.Client.block_summary ` — walk/bike/transit time from a block to each amenity type.
150- - {py: meth }` ~closecity.Client.point_summary ` — the same, from a ` lat ` /` lon ` point.
151- - {py: meth }` ~closecity.Client.block_pois ` — the individual POIs reachable from a block, each with its travel time.
152- - {py: meth }` ~closecity.Client.point_pois ` — the same, from a ` lat ` /` lon ` point.
149+ - {py: meth }` ~closecity.Client.block_summary ` : walk/bike/transit time from a block to each amenity type.
150+ - {py: meth }` ~closecity.Client.point_summary ` : the same, from a ` lat ` /` lon ` point.
151+ - {py: meth }` ~closecity.Client.block_pois ` : the individual POIs reachable from a block, each with its travel time.
152+ - {py: meth }` ~closecity.Client.point_pois ` : the same, from a ` lat ` /` lon ` point.
153153
154154Points of interest:
155155
156- - {py: meth }` ~closecity.Client.pois_search ` — search POIs by radius or bounding box.
157- - {py: meth }` ~closecity.Client.poi ` — the details of one POI.
158- - {py: meth }` ~closecity.Client.poi_catchment ` — the blocks that can walk to a POI (its catchment).
156+ - {py: meth }` ~closecity.Client.pois_search ` : search POIs by radius or bounding box.
157+ - {py: meth }` ~closecity.Client.poi ` : the details of one POI.
158+ - {py: meth }` ~closecity.Client.poi_catchment ` : the blocks that can walk to a POI (its catchment).
159159
160160Whole areas:
161161
162- - {py: meth }` ~closecity.Client.blocks_query ` — per-block travel times for a polygon, or a centre and radius.
163- - {py: meth }` ~closecity.Client.place_blocks ` — per-block travel times for every block in a place.
164- - {py: meth }` ~closecity.Client.place_pois ` — every POI within a place's boundary.
165- - {py: meth }` ~closecity.Client.isochrone ` — travel-time contours from a block or a point.
162+ - {py: meth }` ~closecity.Client.blocks_query ` : per-block travel times for a polygon, or a centre and radius.
163+ - {py: meth }` ~closecity.Client.place_blocks ` : per-block travel times for every block in a place.
164+ - {py: meth }` ~closecity.Client.place_pois ` : every POI within a place's boundary.
165+ - {py: meth }` ~closecity.Client.isochrone ` : travel-time contours from a block or a point.
166166
167167## Handling errors
168168
0 commit comments