/otl-zoning-west-hartford

Leaflet comparison map of Zoning in West Hartford CT

Primary LanguageJavaScriptMIT LicenseMIT

otl-zoning-west-hartford

Interactive Zoning Maps in West Hartford CT, 1924-present. Georeferenced 1924 zoning map and shapefiles for use districts (residential, business, industrial) and area districts (A-E).

Live map

https://ontheline.github.io/otl-zoning-west-hartford/index-caption.html

TODO

  • Finalize colors for polygons (sequential green looks best, I think)
  • Finalize colors for point markers: choose one solid color, or matching hex colors with SVG option? If latter, do I need to update to v 1.2? https://github.com/coryasilva/Leaflet.ExtraMarkers
  • Create legend, using colors above and text below
    • 1924 Zoning Requirements
    • Area Min. Land (Sq Ft) Per Family
    • A 9000
    • B 6000
    • C 3000
    • D 1500
    • E 750
  • Properly display presentAerial background -- see script.js lines 30-35
  • Update caption

Credits

1924 digitization and interactive Leaflet map developed by Ilya Ilyankou/Picturedigits and Jack Dougherty for On The Line, http://OnTheLine.trincoll.edu, Trinity College, Hartford CT

Sources

Whitten, Robert Harvey. West Hartford Zoning: Report to the Zoning Commission on the Zoning of West Hartford. West Hartford, Conn: Zoning Commission, 1924 (courtesy of the Connecticut State Library).

Zoning maps, 1930, 1951, 1960, 1970, 1988, Town of West Hartford, Connecticut (with assistance from Jeffrey Roller), on MAGIC Web Mapping Service (WMS), http://magic.lib.uconn.edu/help/help_WMS.htm

West Harford property parcels, 2020, CT DEEP, https://ct-deep-gis-open-data-website-ctdeep.hub.arcgis.com/datasets/connecticut-parcels-/data?geometry=-73.130%2C41.653%2C-72.290%2C41.832&orderBy=TOWN&where=TOWN%20%3D%20%27West%20Hartford%27

Dependencies

Replaces 2012 UConn Library MAGIC Google Map http://magic.lib.uconn.edu/otl/dualcontrol_zoning_westhartford.html

Known issues

  • Console warning: Mixed content (http served over https). Asked UConn MAGIC about future https support for WMS server or alternate map source.

Georeferencing and Digitizing Boundaries

The original 1924 JPG map was georeferenced using QGIS Georeferencer tool. About 40 ground control points were chosen (available in georeferencing/gcp.points). The GeoTIFF is too heavy for GitHub, but is easy to recreate.

  1. Open the JPG map in Georeferencer.
  2. Load GCP points file.
  3. In Transformation Settings, set type to Thin Plate Spline, resampling method to Nearest neighbor, and target SRS to EPSG:3857 (Web Mercator).
  4. Hit the Play button to generate a GeoTIFF.

Shapefiles for use and area districts were manually created in QGIS. They are available from shapefiles/ folder, as well as GeoJSONS (see geojson/ folder).

Notes

  • Western part of West Hartford is rural in 1924, with few roads and intersections that can be reliably used for georeferencing.
  • Each polygon contains acres property with its area expressed in acres (rounded to 1 decimal).
  • PDFs with semi-transparent maps were created to assess the accuracy of the output.

What percent of total land did WH assign to zones A-E in 1924?

  1. Digitize wh-area-districts-1924-whitten.geojson, with acres, in QGIS Georeferencer.
  2. In Mapshaper.org, export as CSV, and calculate pivot table for acres.
1924 Residential Zone Land (in acres) Percent
A 6430 45%
B 5540 39%
C 1825 13%
D 435 3%
E 109 1%
Total 14339 100%

What percent of total residential land did WH assign to zones A-E in 1924?

In 1924, no one knew exactly which land would be developed into residential, so we use 2020 parcel development to estimate total residential land in the future.

  1. Place West Hartford 2020 parcels in GeoJSON.io with OpenStreetMap overlay, and manually remove non-residential parcels (schools, parks, cemeteries, streams, industrial areas, store-only areas) to create: wh-approx-res-parcels-2020.geojson. This is approximate because I could not easily remove roads, commercial portions of mixed areas, etc., so it overestimates the amount of potential residential land.

  2. Upload to Mapshaper.org to do spatial join with 1924 area-districts (A-E zones), which has imperfect results but good enough for estimation:

$ -join area-districts
[join] Joined data from 18 source records to 19,895 target records
[join] 1/19896 target records received no data
[join] 1358/19896 target records were matched by multiple source records (many-to-one relationship)
[join] Inconsistent values were found in fields [id,area,acres] during many-to-one join. Values in the first joining record were used.
  1. Remove extraneous fields from spatial join, export as: wh-approx-res-parcels-2020-w-1924-zones.geojson
  2. Also export file as CSV, create pivot table to calculate acres in zones A-E
1924 Zone Estimated 2020 Residential Land (in acres) Percent
A 2821 35%
B 3725 46%
C 1201 15%
D 316 4%
E 84 1%
Total 8147 100%

Interpretation: While A and B differ in the two tables above, the combined A+B total is about the same (84% vs. 81%).

What percent of undeveloped land did WH assign to zones A-E in 1924?

Since about 80% of total estimated residential land was zoned A-B in 1924, we can assume that the percent of undeveloped land that year was higher than 80%. Answering this more precisely requires parcel data with "year built" field to separate pre-1924 vs post-1924 land. Sent request in mid-April 2021 to WH CIO for GIS parcel shapefile with year-built data.

See also http://gis.vgsi.com/westhartfordct/Parcel.aspx?Pid=2 with these fields:

  • Location
  • Parcel ID
  • Vision ID
  • MBLU (not same as MBL in CT DEEP Parcel data)
  • Year Built
  • (Land) Use Code (see 100+ are residential)
  • Zone
  • Neighborhood
  • Size (acres)