Polygon boundaries representing estimates of service / catchment areas of tenants rights and community organizations in NYC that operate at the neighborhood level.
Please get in touch if you have organizations to add to this dataset, suggestions, or corrections to be made!
Data is available in GeoJSON and ESRI Shapefile format.
This dataset was created from a list of tenants rights organizations I compiled for NYC which includes orgs listed in the DHCR Community Based Housing Organizations list.
The polygon boundaries are sourced from multiple datasources for NYC neighborhoods, zipcode tabulation areas, community district boundaries, as well as boundaries I drew from scratch. For organizations that serve multiple neighborhoods the polygons were dissolved / joined.
- Pediacities NYC Neighborhoods
- NYC Planning Neighborhood Tabulation Areas
- NYC Zipcode Tabulation Areas
- NYC Community District boundaries
There is a lot of overlap in the polygon boundaries. Using PostGIS with a "point in polygon" query will return all organizations that overlap for that specific point. This can be done easily with the data hosted in CartoDB by opening the dataset and pasting in the following SQL
code into CartoDB's SQL Panel. Note that the coordinates for a point must be in the order of lon, lat (x, y).
SELECT * FROM nyc_tenants_rights_service_areas
WHERE
ST_Intersects(
ST_GeomFromText(
'Point(-73.982557 40.724435)', 4326
),
nyc_tenants_rights_service_areas.the_geom
);
Or by using ST_Contains
:
SELECT * FROM nyc_tenants_rights_service_areas
WHERE
ST_Contains(
nyc_tenants_rights_service_areas.the_geom,
ST_GeomFromText(
'Point(-73.917104 40.694827)', 4326
)
);
This data is licensed under a Creative Commons Attribution-NonCommericial license.