diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java index 17f9589..55962c9 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapView.java @@ -3,6 +3,7 @@ package com.mapbox.rctmgl.components.mapview; import android.content.Context; import android.graphics.BitmapFactory; import android.graphics.PointF; +import android.graphics.RectF; import android.graphics.drawable.Icon; import android.location.Location; import android.os.Handler; @@ -32,14 +33,18 @@ import com.mapbox.mapboxsdk.plugins.locationlayer.LocationLayerPlugin; import com.mapbox.rctmgl.components.AbstractMapFeature; import com.mapbox.rctmgl.components.camera.CameraStop; import com.mapbox.rctmgl.components.camera.CameraUpdateQueue; +import com.mapbox.rctmgl.components.styles.layers.RCTLayer; import com.mapbox.rctmgl.components.styles.light.RCTMGLLight; import com.mapbox.rctmgl.components.styles.sources.RCTSource; import com.mapbox.rctmgl.events.AndroidCallbackEvent; import com.mapbox.rctmgl.events.constants.EventKeys; +import com.mapbox.rctmgl.utils.FilterParser; import com.mapbox.services.android.location.LostLocationEngine; import com.mapbox.services.android.telemetry.location.LocationEngine; import com.mapbox.services.android.telemetry.location.LocationEngineListener; import com.mapbox.services.android.telemetry.location.LocationEnginePriority; +import com.mapbox.services.commons.geojson.Feature; +import com.mapbox.services.commons.geojson.FeatureCollection; import com.mapbox.services.commons.geojson.Point; import com.mapbox.rctmgl.events.IEvent; @@ -49,6 +54,8 @@ import com.mapbox.rctmgl.events.constants.EventTypes; import com.mapbox.rctmgl.utils.ConvertUtils; import com.mapbox.rctmgl.utils.SimpleEventCallback; +import java.util.List; + /** * Created by nickitaliano on 8/18/17. */ @@ -408,6 +415,28 @@ public class RCTMGLMapView extends MapView implements } } + public void queryRenderedFeaturesAtPoint(String callbackID, PointF point, List filter, List layerIDs) { + AndroidCallbackEvent event = new AndroidCallbackEvent(this, callbackID, EventKeys.MAP_ANDROID_CALLBACK); + List features = mMap.queryRenderedFeatures(point, FilterParser.parse(filter), layerIDs.toArray(new String[layerIDs.size()])); + + WritableMap payload = new WritableNativeMap(); + payload.putString("data", FeatureCollection.fromFeatures(features).toJson()); + event.setPayload(payload); + + mManager.handleEvent(event); + } + + public void queryRenderedFeaturesInRect(String callbackID, RectF rect, List filter, List layerIDs) { + AndroidCallbackEvent event = new AndroidCallbackEvent(this, callbackID, EventKeys.MAP_ANDROID_CALLBACK); + List features = mMap.queryRenderedFeatures(rect, FilterParser.parse(filter), layerIDs.toArray(new String[layerIDs.size()])); + + WritableMap payload = new WritableNativeMap(); + payload.putString("data", FeatureCollection.fromFeatures(features).toJson()); + event.setPayload(payload); + + mManager.handleEvent(event); + } + //endregion @Override diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java index c3e4cbe..290b6db 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/mapview/RCTMGLMapViewManager.java @@ -12,6 +12,8 @@ import com.facebook.react.uimanager.annotations.ReactProp; import com.mapbox.services.commons.geojson.FeatureCollection; import com.mapbox.services.commons.geojson.Point; +import java.util.ArrayList; +import java.util.Arrays; import java.util.Map; import javax.annotation.Nullable; @@ -179,12 +181,16 @@ public class RCTMGLMapViewManager extends AbstractEventEmitter { //region React Methods public static final int METHOD_SET_CAMERA = 1; + public static final int METHOD_QUERY_FEATURES_POINT = 2; + public static final int METHOD_QUERY_FEATURES_RECT = 3; @Nullable @Override public Map getCommandsMap() { return MapBuilder.builder() .put("setCamera", METHOD_SET_CAMERA) + .put("queryRenderedFeaturesAtPoint", METHOD_QUERY_FEATURES_POINT) + .put("queryRenderedFeaturesInRect", METHOD_QUERY_FEATURES_RECT) .build(); } @@ -194,6 +200,20 @@ public class RCTMGLMapViewManager extends AbstractEventEmitter { case METHOD_SET_CAMERA: mapView.setCamera(args.getString(0), args.getMap(1)); break; + case METHOD_QUERY_FEATURES_POINT: + mapView.queryRenderedFeaturesAtPoint( + args.getString(0), + ConvertUtils.toPointF(args.getArray(1)), + Arrays.asList(args.getString(2).split(";")), + ConvertUtils.toStringList(args.getArray(3))); + break; + case METHOD_QUERY_FEATURES_RECT: + mapView.queryRenderedFeaturesInRect( + args.getString(0), + ConvertUtils.toRectF(args.getArray(1)), + Arrays.asList(args.getString(2).split(";")), + ConvertUtils.toStringList(args.getArray(3))); + break; } } diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java index 2ae75f4..9997e50 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/layers/RCTLayer.java @@ -14,6 +14,7 @@ import com.mapbox.rctmgl.components.mapview.RCTMGLMapView; import com.mapbox.rctmgl.components.styles.sources.RCTSource; import com.mapbox.rctmgl.utils.ConvertUtils; import com.mapbox.rctmgl.utils.DownloadMapImageTask; +import com.mapbox.rctmgl.utils.FilterParser; import java.util.ArrayList; import java.util.Arrays; @@ -205,117 +206,7 @@ public abstract class RCTLayer extends AbstractMapFeature { } protected Filter.Statement buildFilter() { - Filter.Statement completeStatement = null; - - int compound = 0; - - if (mFilter == null) { - return null; - } - - // we are going to be popping items of the list, we want to treat the react prop as immutable - List filterList = new ArrayList<>(mFilter); - - // no filter - if (filterList.isEmpty()) { - return null; - } - - // peak ahead to see if this is a compound filter or not - switch (filterList.get(0)) { - case "all": - compound = COMPOUND_FILTER_ALL; - break; - case "any": - compound = COMPOUND_FILTER_ANY; - break; - case "none": - compound = COMPOUND_FILTER_NONE; - break; - } - - List compoundStatement = new ArrayList<>(); - - if (compound > 0) { - filterList.remove(0); - } - - while (!filterList.isEmpty()) { - - int posPointer = 1; - - while (posPointer < filterList.size()) { - if (FILTER_OPS.contains(filterList.get(posPointer))) { - break; - } - posPointer++; - } - - // TODO: throw useful exceptions here when popping from list fails due to an invalid filter - - List currentFilters = new ArrayList<>(filterList.subList(0, posPointer)); - filterList.removeAll(currentFilters); - - String op = currentFilters.remove(0); - Filter.Statement statement = null; - String key = currentFilters.remove(0); - List values = getFilterValues(currentFilters); - - switch (op) { - case "in": - statement = Filter.in(key, values); - break; - case "!in": - statement = Filter.notIn(key, values); - break; - case "<=": - statement = Filter.lte(key, values.get(0)); - break; - case "<": - statement = Filter.lt(key, values.get(0)); - break; - case ">=": - statement = Filter.gte(key, values.get(0)); - break; - case ">": - statement = Filter.gt(key, values.get(0)); - break; - case "!=": - statement = Filter.neq(key, values.get(0)); - break; - case "==": - statement = Filter.eq(key, values.get(0)); - break; - case "has": - statement = Filter.has(key); - break; - case "!has": - statement = Filter.notHas(key); - break; - } - - if (compound > 0) { - compoundStatement.add(statement); - } else { - completeStatement = statement; - } - } - - if (compound > 0) { - Filter.Statement[] statements = new Filter.Statement[compoundStatement.size()]; - compoundStatement.toArray(statements); - - switch (compound) { - case COMPOUND_FILTER_ALL: - return Filter.all(statements); - case COMPOUND_FILTER_ANY: - return Filter.any(statements); - case COMPOUND_FILTER_NONE: - return Filter.none(statements); - } - } - - return completeStatement; + return FilterParser.parse(mFilter); } @Override @@ -344,14 +235,4 @@ public abstract class RCTLayer extends AbstractMapFeature { private boolean hasInitialized() { return mMap != null && mLayer != null; } - - private List getFilterValues(List filter) { - List objects = new ArrayList<>(); - - for (String value : filter) { - objects.add(ConvertUtils.getObjectFromString(value)); - } - - return objects; - } } diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java index 3331ff0..9c15cbd 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTMGLShapeSource.java @@ -4,6 +4,7 @@ import android.content.Context; import com.mapbox.mapboxsdk.style.sources.GeoJsonOptions; import com.mapbox.mapboxsdk.style.sources.GeoJsonSource; +import com.mapbox.rctmgl.components.styles.layers.RCTLayer; import com.mapbox.services.commons.geojson.Feature; import com.mapbox.services.commons.geojson.FeatureCollection; import com.mapbox.services.commons.geojson.Geometry; diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTSource.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTSource.java index 5ec5521..d1c8476 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTSource.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/components/styles/sources/RCTSource.java @@ -63,6 +63,12 @@ public abstract class RCTSource extends AbstractMapFeature { @Override public void removeFromMap(RCTMGLMapView mapView) { + if (mLayers.size() > 0) { + for (int i = 0; i < mLayers.size(); i++) { + RCTLayer layer = mLayers.get(mLayers.keyAt(i)); + layer.removeFromMap(mMapView); + } + } mMap.removeSource(mSource); } diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/ConvertUtils.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/ConvertUtils.java index 766222f..48448d1 100644 --- a/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/ConvertUtils.java +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/ConvertUtils.java @@ -1,11 +1,16 @@ package com.mapbox.rctmgl.utils; +import android.graphics.PointF; +import android.graphics.RectF; + +import com.facebook.react.bridge.ReadableArray; import com.facebook.react.bridge.WritableArray; import com.facebook.react.bridge.WritableMap; import com.facebook.react.bridge.WritableNativeArray; import com.facebook.react.bridge.WritableNativeMap; import com.mapbox.mapboxsdk.geometry.LatLng; import com.mapbox.mapboxsdk.geometry.LatLngBounds; +import com.mapbox.mapboxsdk.style.layers.Filter; import com.mapbox.services.commons.geojson.Feature; import com.mapbox.services.commons.geojson.FeatureCollection; import com.mapbox.services.commons.geojson.Point; @@ -13,6 +18,7 @@ import com.mapbox.services.commons.models.Position; import java.text.NumberFormat; import java.text.ParseException; +import java.util.ArrayList; import java.util.List; /** @@ -89,4 +95,40 @@ public class ConvertUtils { return str; } + + public static List toStringList(ReadableArray array) { + List list = new ArrayList<>(); + + if (array == null) { + return list; + } + + for (int i = 0; i < array.size(); i++) { + list.add(array.getString(i)); + } + + return list; + } + + public static PointF toPointF(ReadableArray array) { + PointF pointF = new PointF(); + + if (array == null) { + return pointF; + } + + pointF.set((float)array.getDouble(0), (float)array.getDouble(1)); + return pointF; + } + + public static RectF toRectF(ReadableArray array) { + RectF rectF = new RectF(); + + if (array == null) { + return rectF; + } + + rectF.set((float)array.getDouble(3), (float)array.getDouble(0), (float)array.getDouble(1), (float)array.getDouble(2)); + return rectF; + } } diff --git a/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/FilterParser.java b/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/FilterParser.java new file mode 100644 index 0000000..a1060fe --- /dev/null +++ b/android/rctmgl/src/main/java/com/mapbox/rctmgl/utils/FilterParser.java @@ -0,0 +1,159 @@ +package com.mapbox.rctmgl.utils; + +import com.mapbox.mapboxsdk.style.layers.Filter; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +/** + * Created by nickitaliano on 10/3/17. + */ + +public class FilterParser { + public static final Set FILTER_OPS = new HashSet(Arrays.asList( + "all", + "any", + "none", + "in", + "!in", + "<=", + "<", + ">=", + ">", + "!=", + "==", + "has", + "!has" + )); + + public static final int COMPOUND_FILTER_ALL = 3; + public static final int COMPOUND_FILTER_ANY = 2; + public static final int COMPOUND_FILTER_NONE = 1; + + public static Filter.Statement parse(List filter) { + Filter.Statement completeStatement = null; + + int compound = 0; + + if (filter == null) { + return null; + } + + // we are going to be popping items of the list, we want to treat the react prop as immutable + List filterList = new ArrayList<>(filter); + + // no filter + if (filterList.size() < 2) { + return null; + } + + // peak ahead to see if this is a compound filter or not + switch (filterList.get(0)) { + case "all": + compound = COMPOUND_FILTER_ALL; + break; + case "any": + compound = COMPOUND_FILTER_ANY; + break; + case "none": + compound = COMPOUND_FILTER_NONE; + break; + } + + List compoundStatement = new ArrayList<>(); + + if (compound > 0) { + filterList.remove(0); + } + + while (!filterList.isEmpty()) { + + int posPointer = 1; + + while (posPointer < filterList.size()) { + if (FILTER_OPS.contains(filterList.get(posPointer))) { + break; + } + posPointer++; + } + + // TODO: throw useful exceptions here when popping from list fails due to an invalid filter + + List currentFilters = new ArrayList<>(filterList.subList(0, posPointer)); + filterList.removeAll(currentFilters); + + String op = currentFilters.remove(0); + Filter.Statement statement = null; + String key = currentFilters.remove(0); + List values = getObjectValues(currentFilters); + + switch (op) { + case "in": + statement = Filter.in(key, values); + break; + case "!in": + statement = Filter.notIn(key, values); + break; + case "<=": + statement = Filter.lte(key, values.get(0)); + break; + case "<": + statement = Filter.lt(key, values.get(0)); + break; + case ">=": + statement = Filter.gte(key, values.get(0)); + break; + case ">": + statement = Filter.gt(key, values.get(0)); + break; + case "!=": + statement = Filter.neq(key, values.get(0)); + break; + case "==": + statement = Filter.eq(key, values.get(0)); + break; + case "has": + statement = Filter.has(key); + break; + case "!has": + statement = Filter.notHas(key); + break; + } + + if (compound > 0) { + compoundStatement.add(statement); + } else { + completeStatement = statement; + } + } + + if (compound > 0) { + Filter.Statement[] statements = new Filter.Statement[compoundStatement.size()]; + compoundStatement.toArray(statements); + + switch (compound) { + case COMPOUND_FILTER_ALL: + return Filter.all(statements); + case COMPOUND_FILTER_ANY: + return Filter.any(statements); + case COMPOUND_FILTER_NONE: + return Filter.none(statements); + } + } + + return completeStatement; + } + + private static List getObjectValues(List filter) { + List objects = new ArrayList<>(); + + for (String value : filter) { + objects.add(ConvertUtils.getObjectFromString(value)); + } + + return objects; + } +} diff --git a/example/android/app/app.iml b/example/android/app/app.iml index fc5fd0c..78d7b47 100644 --- a/example/android/app/app.iml +++ b/example/android/app/app.iml @@ -79,6 +79,8 @@ + + @@ -142,5 +144,7 @@ + + \ No newline at end of file diff --git a/example/ios/RNMapboxGLExample.xcodeproj/project.pbxproj b/example/ios/RNMapboxGLExample.xcodeproj/project.pbxproj index 46e99a0..cc04243 100644 --- a/example/ios/RNMapboxGLExample.xcodeproj/project.pbxproj +++ b/example/ios/RNMapboxGLExample.xcodeproj/project.pbxproj @@ -21,7 +21,7 @@ 9F398B7A7129435B923D55DD /* EvilIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 185B11D7852F4121A504A72B /* EvilIcons.ttf */; }; C41AA2661F7B5F1600ECE815 /* Mapbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C41AA2651F7B5F1600ECE815 /* Mapbox.framework */; }; C41AA2671F7B5F1600ECE815 /* Mapbox.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = C41AA2651F7B5F1600ECE815 /* Mapbox.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - C41AA2691F7B5F1E00ECE815 /* libRCTMGL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C41AA2641F7B5EFA00ECE815 /* libRCTMGL.a */; }; + C4C87A921F8558410064AE95 /* libRCTMGL.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C4C87A911F8555930064AE95 /* libRCTMGL.a */; }; C4DA80C51F59D47400DE53BC /* libcxxreact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C41241351F4D4CF80008C81E /* libcxxreact.a */; }; C4DA80C61F59D47400DE53BC /* libdouble-conversion.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C41241411F4D4CF80008C81E /* libdouble-conversion.a */; }; C4DA80C71F59D47400DE53BC /* libjschelpers.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C41241391F4D4CF80008C81E /* libjschelpers.a */; }; @@ -256,9 +256,9 @@ remoteGlobalIDString = 3D383D621EBD27B9005632C8; remoteInfo = "double-conversion-tvOS"; }; - C41AA2631F7B5EFA00ECE815 /* PBXContainerItemProxy */ = { + C4C87A901F8555930064AE95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = C41AA25F1F7B5EFA00ECE815 /* RCTMGL.xcodeproj */; + containerPortal = C4C87A8C1F8555930064AE95 /* RCTMGL.xcodeproj */; proxyType = 2; remoteGlobalIDString = C4D1443D1F4E16F600396F26; remoteInfo = RCTMGL; @@ -309,8 +309,8 @@ 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; A8D5D55CB55C40BAB62CA25C /* SimpleLineIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = SimpleLineIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/SimpleLineIcons.ttf"; sourceTree = ""; }; C412411D1F4D4CF80008C81E /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; - C41AA25F1F7B5EFA00ECE815 /* RCTMGL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTMGL.xcodeproj; path = "../node_modules/@mapbox/react-native-mapbox-gl/ios/RCTMGL.xcodeproj"; sourceTree = ""; }; C41AA2651F7B5F1600ECE815 /* Mapbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Mapbox.framework; path = "../node_modules/@mapbox/react-native-mapbox-gl/ios/Mapbox.framework"; sourceTree = ""; }; + C4C87A8C1F8555930064AE95 /* RCTMGL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTMGL.xcodeproj; path = "../node_modules/@mapbox/react-native-mapbox-gl/ios/RCTMGL.xcodeproj"; sourceTree = ""; }; C4EAF1741F6246670016DEE8 /* Mapbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Mapbox.framework; sourceTree = ""; }; C4FB10FA1F7063E20055AE1F /* main.jsbundle */ = {isa = PBXFileReference; lastKnownFileType = text; name = main.jsbundle; path = RNMapboxGLExample/main.jsbundle; sourceTree = ""; }; CA1A8AC8F4AF482F90E36B0B /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Octicons.ttf"; sourceTree = ""; }; @@ -325,7 +325,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C41AA2691F7B5F1E00ECE815 /* libRCTMGL.a in Frameworks */, + C4C87A921F8558410064AE95 /* libRCTMGL.a in Frameworks */, C4DA80C51F59D47400DE53BC /* libcxxreact.a in Frameworks */, C4DA80C61F59D47400DE53BC /* libdouble-conversion.a in Frameworks */, C4DA80C71F59D47400DE53BC /* libjschelpers.a in Frameworks */, @@ -462,7 +462,7 @@ 832341AE1AAA6A7D00B99B32 /* Libraries */ = { isa = PBXGroup; children = ( - C41AA25F1F7B5EFA00ECE815 /* RCTMGL.xcodeproj */, + C4C87A8C1F8555930064AE95 /* RCTMGL.xcodeproj */, C412411D1F4D4CF80008C81E /* React.xcodeproj */, 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */, 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */, @@ -557,14 +557,6 @@ name = Products; sourceTree = ""; }; - C41AA2601F7B5EFA00ECE815 /* Products */ = { - isa = PBXGroup; - children = ( - C41AA2641F7B5EFA00ECE815 /* libRCTMGL.a */, - ); - name = Products; - sourceTree = ""; - }; C429E76C1F4D680E00F4158E /* Frameworks */ = { isa = PBXGroup; children = ( @@ -582,6 +574,14 @@ name = "Recovered References"; sourceTree = ""; }; + C4C87A8D1F8555930064AE95 /* Products */ = { + isa = PBXGroup; + children = ( + C4C87A911F8555930064AE95 /* libRCTMGL.a */, + ); + name = Products; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -651,8 +651,8 @@ ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */; }, { - ProductGroup = C41AA2601F7B5EFA00ECE815 /* Products */; - ProjectRef = C41AA25F1F7B5EFA00ECE815 /* RCTMGL.xcodeproj */; + ProductGroup = C4C87A8D1F8555930064AE95 /* Products */; + ProjectRef = C4C87A8C1F8555930064AE95 /* RCTMGL.xcodeproj */; }, { ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */; @@ -901,11 +901,11 @@ remoteRef = C41241421F4D4CF80008C81E /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; - C41AA2641F7B5EFA00ECE815 /* libRCTMGL.a */ = { + C4C87A911F8555930064AE95 /* libRCTMGL.a */ = { isa = PBXReferenceProxy; fileType = archive.ar; path = libRCTMGL.a; - remoteRef = C41AA2631F7B5EFA00ECE815 /* PBXContainerItemProxy */; + remoteRef = C4C87A901F8555930064AE95 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXReferenceProxy section */ diff --git a/example/package.json b/example/package.json index c6af224..fcf2851 100644 --- a/example/package.json +++ b/example/package.json @@ -19,7 +19,7 @@ "react": "16.0.0-alpha.12", "react-native": "^0.47.2", "react-native-elements": "^0.16.0", - "@mapbox/react-native-mapbox-gl": "file:../mapbox-react-native-mapbox-gl-6.0.0.tgz", + "@mapbox/react-native-mapbox-gl": "file:../mapbox-react-native-mapbox-gl-6.0.0-alpha2.tgz", "react-native-vector-icons": "^4.3.0" }, "devDependencies": { diff --git a/example/src/App.js b/example/src/App.js index 9e64dd1..cf1496f 100644 --- a/example/src/App.js +++ b/example/src/App.js @@ -32,12 +32,15 @@ import FlyTo from './components/FlyTo'; import FitBounds from './components/FitBounds'; import SetUserTrackingModes from './components/SetUserTrackingModes'; import ShowRegionDidChange from './components/ShowRegionDidChange'; +import CustomIcon from './components/CustomIcon'; import YoYo from './components/YoYo'; import EarthQuakes from './components/EarthQuakes'; import GeoJSONSource from './components/GeoJSONSource'; import WatercolorRasterTiles from './components/WatercolorRasterTiles'; import TwoByTwo from './components/TwoByTwo'; import IndoorBuilding from './components/IndoorBuilding'; +import QueryAtPoint from './components/QueryAtPoint'; +import QueryWithRect from './components/QueryWithRect'; const styles = StyleSheet.create({ header: { @@ -84,12 +87,15 @@ const Examples = [ new ExampleItem('Fit Bounds', FitBounds), new ExampleItem('Set User Tracking Modes', SetUserTrackingModes), new ExampleItem('Show Region Did Change', ShowRegionDidChange), + new ExampleItem('Custom Icon', CustomIcon), new ExampleItem('Yo Yo Camera', YoYo), new ExampleItem('Clustering Earthquakes', EarthQuakes), new ExampleItem('GeoJSON Source', GeoJSONSource), new ExampleItem('Watercolor Raster Tiles', WatercolorRasterTiles), new ExampleItem('Two Map Views', TwoByTwo), new ExampleItem('Indoor Building Map', IndoorBuilding), + new ExampleItem('Query Feature Point', QueryAtPoint), + new ExampleItem('Query Features Bounding Box', QueryWithRect), ]; class App extends React.Component { diff --git a/example/src/assets/example.png b/example/src/assets/example.png new file mode 100644 index 0000000..5351ba3 Binary files /dev/null and b/example/src/assets/example.png differ diff --git a/example/src/assets/nyc_geojson.json b/example/src/assets/nyc_geojson.json new file mode 100644 index 0000000..00d64a8 --- /dev/null +++ b/example/src/assets/nyc_geojson.json @@ -0,0 +1,304 @@ +{ +"type": "FeatureCollection", + +"features": [ +{ "type": "Feature", "id": 0, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.011150343389346, 40.725777216880076 ], [ -74.010812382607256, 40.725789802555752 ], [ -73.999312417001448, 40.717550241777381 ], [ -74.000578392161202, 40.715570902924213 ], [ -74.000454630659604, 40.714365047598868 ], [ -74.000931743323804, 40.713263253045277 ], [ -74.000867814643087, 40.711568158862143 ], [ -74.000509860972329, 40.710984270453366 ], [ -74.001471402320803, 40.709746554323239 ], [ -73.999194511748954, 40.707947376351463 ], [ -74.00118685262828, 40.706859825771751 ], [ -74.000982767577753, 40.706416712992926 ], [ -74.001406666919536, 40.70617938802063 ], [ -74.000582970479797, 40.705433933648877 ], [ -74.001436612454427, 40.704872177705219 ], [ -74.002061425638047, 40.705417004635571 ], [ -74.002569650594666, 40.705523579523494 ], [ -74.00268512768794, 40.705449248118647 ], [ -74.001970704639859, 40.704737867482024 ], [ -74.002171848758593, 40.70460659646367 ], [ -74.002430710758645, 40.704677858004338 ], [ -74.002386708067192, 40.70479566367446 ], [ -74.003323072707872, 40.705628595220048 ], [ -74.003631871693258, 40.705429806751738 ], [ -74.002878430694565, 40.704831357989747 ], [ -74.002972464752858, 40.70476649143739 ], [ -74.003644461838661, 40.7054216846388 ], [ -74.004383444172248, 40.705113259854819 ], [ -74.004266870374281, 40.705011660202032 ], [ -74.004590038836724, 40.704787752945009 ], [ -74.003496320423238, 40.703796769267697 ], [ -74.003719870430402, 40.703654481944646 ], [ -74.004806289007448, 40.704642069051161 ], [ -74.005188051333647, 40.704420535690552 ], [ -74.004925805644064, 40.704211808384628 ], [ -74.005211609004022, 40.704405532235306 ], [ -74.005350272247554, 40.704310079961523 ], [ -74.004157421541649, 40.70323163208721 ], [ -74.004272587521001, 40.703015666411474 ], [ -74.005592426090061, 40.70408256373161 ], [ -74.006018627909228, 40.703873152890765 ], [ -74.006140105779309, 40.703978660271737 ], [ -74.006595919138746, 40.703685902451817 ], [ -74.005304125960777, 40.702559865633027 ], [ -74.005494278050946, 40.702431380950379 ], [ -74.005535461381754, 40.702645521106831 ], [ -74.005675223158875, 40.702584071694936 ], [ -74.00678502257081, 40.703568126900059 ], [ -74.009309076554814, 40.701954603022529 ], [ -74.008699643135671, 40.70113986754221 ], [ -74.007755491506387, 40.701548001671789 ], [ -74.007591362042191, 40.701328081048111 ], [ -74.008536115107745, 40.700919695745029 ], [ -74.008349275591002, 40.700669348388189 ], [ -74.00862036163862, 40.700552163210666 ], [ -74.009600522632866, 40.701865481917835 ], [ -74.011166642179234, 40.701477202208252 ], [ -74.01109588602678, 40.70127499934884 ], [ -74.011289839055237, 40.701249982244235 ], [ -74.01079959311005, 40.700207213006948 ], [ -74.011150335568374, 40.700898400100918 ], [ -74.011358362913541, 40.700851958636321 ], [ -74.011334093443821, 40.700568353682321 ], [ -74.011502911437105, 40.700815058974179 ], [ -74.011729268174747, 40.700770118059658 ], [ -74.011631479186491, 40.700458218248102 ], [ -74.011853785495887, 40.700738921450146 ], [ -74.012086682146915, 40.700681308739156 ], [ -74.011856726230292, 40.700107103408321 ], [ -74.011961961169177, 40.700037545595428 ], [ -74.012391600322843, 40.700620528093999 ], [ -74.012593923275091, 40.700570833472412 ], [ -74.012613820873639, 40.70010826581106 ], [ -74.012908818599925, 40.700523611693399 ], [ -74.013107478473714, 40.700507452180624 ], [ -74.013011893318946, 40.69981825663114 ], [ -74.013113038262944, 40.699774164880068 ], [ -74.013273495491219, 40.700496870227681 ], [ -74.013485608327386, 40.700478222908394 ], [ -74.013532850841372, 40.700108161423138 ], [ -74.013674792487578, 40.700125821450882 ], [ -74.01353047796475, 40.70031110034644 ], [ -74.013558269594867, 40.700939870830517 ], [ -74.013951526904748, 40.700990982460027 ], [ -74.014220632615192, 40.700111490863044 ], [ -74.014152388533361, 40.70057786578343 ], [ -74.014289207411338, 40.700644144765022 ], [ -74.014671200580324, 40.700210400694424 ], [ -74.014323843630166, 40.700661304127095 ], [ -74.014643231688751, 40.700817304325177 ], [ -74.015098322701249, 40.700334265523416 ], [ -74.014673656284756, 40.70083460852581 ], [ -74.015021136616781, 40.700992504013371 ], [ -74.015142318120994, 40.700842892354238 ], [ -74.017145080626577, 40.702705349976149 ], [ -74.017647975728948, 40.703494599879392 ], [ -74.017570357060592, 40.704183880986449 ], [ -74.01779454520279, 40.704234897096185 ], [ -74.017817586979461, 40.703937922496536 ], [ -74.017954740486616, 40.703975785608463 ], [ -74.017844411067244, 40.704242039937895 ], [ -74.018447702437726, 40.704162168231505 ], [ -74.018668307718912, 40.704435239616195 ], [ -74.017480861525726, 40.704667487696142 ], [ -74.018112961291152, 40.704553727487159 ], [ -74.018887466493652, 40.704729148837338 ], [ -74.019342546244602, 40.706093672024494 ], [ -74.019122759634115, 40.706975814337405 ], [ -74.018630583726988, 40.707139715269264 ], [ -74.01884889814508, 40.706970312350194 ], [ -74.018535132696684, 40.706918322014054 ], [ -74.018190293256907, 40.707821626109798 ], [ -74.018855009119662, 40.708047534447395 ], [ -74.017770142545032, 40.712834574789106 ], [ -74.017800378223441, 40.712345124158617 ], [ -74.016624244913388, 40.712157318995182 ], [ -74.016618400783045, 40.712756150029648 ], [ -74.016320066275796, 40.713407982478245 ], [ -74.017544433346572, 40.713611222664227 ], [ -74.017724962192943, 40.713070181622697 ], [ -74.016710186058233, 40.718624176057972 ], [ -74.013213227191926, 40.718315719895749 ], [ -74.012914487463306, 40.719708293225302 ], [ -74.013446940495854, 40.71978201978623 ], [ -74.013389069034446, 40.720042607273193 ], [ -74.014524158565024, 40.720187397445684 ], [ -74.014522790560747, 40.720532050327733 ], [ -74.012965585268248, 40.720328675587126 ], [ -74.012869091380381, 40.720833752211675 ], [ -74.013239373370197, 40.720887986728066 ], [ -74.013080101456367, 40.72154580719522 ], [ -74.012538758072623, 40.721503176576348 ], [ -74.011653265699422, 40.725871761851344 ], [ -74.015163241184226, 40.726319711936782 ], [ -74.015170840858616, 40.726579390657555 ], [ -74.011457631035512, 40.726155689262022 ], [ -74.011150343389346, 40.725777216880076 ] ] ] } } +, +{ "type": "Feature", "id": 1, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.016747560960695, 40.693343368217576 ], [ -74.015403591416472, 40.693066497309104 ], [ -74.015389197682438, 40.693298134665497 ], [ -74.015174821365946, 40.693256680335523 ], [ -74.015259510356458, 40.693036814231853 ], [ -74.015123956349129, 40.693258069299645 ], [ -74.014931366964674, 40.693155771231396 ], [ -74.015156122255206, 40.693015514891542 ], [ -74.014221230848847, 40.692822905338872 ], [ -74.013435633645429, 40.692115441944722 ], [ -74.012502586751879, 40.692303580965522 ], [ -74.012297314925547, 40.692568254835074 ], [ -74.011811856472349, 40.692479335064341 ], [ -74.011757490512551, 40.692263739561525 ], [ -74.011903097225598, 40.692090583507841 ], [ -74.0122011411637, 40.692044905096068 ], [ -74.012461401651251, 40.692212624415852 ], [ -74.013332641496078, 40.692019970102329 ], [ -74.012608569254127, 40.691364103624494 ], [ -74.012034176165756, 40.691503076685656 ], [ -74.01259753218595, 40.691334335544411 ], [ -74.01252783209975, 40.691146337337933 ], [ -74.011825753549729, 40.691064816216127 ], [ -74.012195000900846, 40.691028847568795 ], [ -74.01221017410677, 40.690791696801242 ], [ -74.011971513188229, 40.690770955509493 ], [ -74.011980567612483, 40.690606407271751 ], [ -74.01223131146898, 40.690461330775094 ], [ -74.012306883044914, 40.689280182937559 ], [ -74.013169264027425, 40.68815477019799 ], [ -74.014880979750103, 40.687254570488513 ], [ -74.016047306055469, 40.687338006297615 ], [ -74.017049866092023, 40.686875986913826 ], [ -74.016646640847569, 40.686416347233312 ], [ -74.015143910219948, 40.686437034042989 ], [ -74.016673515960164, 40.686305168553382 ], [ -74.017530324340953, 40.685362987932443 ], [ -74.0176225750659, 40.685409783720679 ], [ -74.016781139571464, 40.686349037919165 ], [ -74.017120991670964, 40.686843337636425 ], [ -74.020543672930813, 40.685272067925943 ], [ -74.020206867105003, 40.684833832071881 ], [ -74.019398423919284, 40.685087404047174 ], [ -74.020952549442754, 40.684384431647281 ], [ -74.020278198464908, 40.684809135174461 ], [ -74.020612672358112, 40.685240390198018 ], [ -74.02259359581042, 40.684359695949922 ], [ -74.022132502528692, 40.683767671379918 ], [ -74.023055747495931, 40.682916945445115 ], [ -74.023194628346616, 40.683000498062128 ], [ -74.022368235576693, 40.683779916793952 ], [ -74.022758990959801, 40.6842844483321 ], [ -74.023541603701233, 40.684002983592528 ], [ -74.024648092412335, 40.683978566613014 ], [ -74.025671838242332, 40.684236456204879 ], [ -74.026334043084319, 40.684801697723984 ], [ -74.02662819083865, 40.685526804749628 ], [ -74.026425771771812, 40.686175339829745 ], [ -74.02020527500305, 40.692033923854076 ], [ -74.019733081945148, 40.693114107472361 ], [ -74.016747560960695, 40.693343368217576 ] ] ] } } +, +{ "type": "Feature", "id": 2, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.039950407885129, 40.700890630642704 ], [ -74.037711247966357, 40.699344040347725 ], [ -74.038097862147737, 40.699039505244201 ], [ -74.038229544453898, 40.698368591697687 ], [ -74.039000438780278, 40.698369890390993 ], [ -74.039340376041153, 40.698115514836196 ], [ -74.041242618322201, 40.699536741434848 ], [ -74.041747688680147, 40.69914786356663 ], [ -74.03991248872623, 40.697702040398376 ], [ -74.041660519148408, 40.696452971639729 ], [ -74.043673712307779, 40.698020404330066 ], [ -74.042703958107225, 40.698800600586672 ], [ -74.042965051615113, 40.69899936232499 ], [ -74.041098612370703, 40.700492943389641 ], [ -74.0408008064624, 40.700268549926484 ], [ -74.040312509735287, 40.700625749192199 ], [ -74.040536377322127, 40.700782094775001 ], [ -74.040288088039475, 40.700643613467108 ], [ -74.039950407885129, 40.700890630642704 ] ] ] } } +, +{ "type": "Feature", "id": 3, "properties": { "communityDistrict": 101, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/101" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.043877616399115, 40.69018767537122 ], [ -74.043505960785666, 40.689687359636089 ], [ -74.042704284267643, 40.690155204644299 ], [ -74.042553720373064, 40.689962759289585 ], [ -74.043467523102962, 40.689636990606026 ], [ -74.043640786274125, 40.688766559570141 ], [ -74.044385217772799, 40.688516178402672 ], [ -74.046275390036669, 40.689327425896721 ], [ -74.046802848985749, 40.689953256266016 ], [ -74.047476515283705, 40.689611369998012 ], [ -74.04772962763063, 40.689915318466007 ], [ -74.047585719247863, 40.689982506826126 ], [ -74.047431261235104, 40.689803890470891 ], [ -74.046892055005912, 40.690059098322621 ], [ -74.047200293662513, 40.690424815623736 ], [ -74.047170294894244, 40.690991329245044 ], [ -74.046147072086654, 40.691122646033158 ], [ -74.043877616399115, 40.69018767537122 ] ] ] } } +, +{ "type": "Feature", "id": 4, "properties": { "communityDistrict": 106, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.97446922636118, 40.73579461792766 ], [ -73.974464612073135, 40.735668172664596 ], [ -73.974145397120765, 40.735672558313311 ], [ -73.973056987781192, 40.73517745341568 ], [ -73.972806617104609, 40.735523918521125 ], [ -73.972930319925283, 40.735607614396812 ], [ -73.972763083803528, 40.735505087473534 ], [ -73.972945206926113, 40.735065170070939 ], [ -73.973298951122089, 40.735242355077233 ], [ -73.973296273629643, 40.735040856642499 ], [ -73.973544728839599, 40.734944326101441 ], [ -73.974437009586197, 40.735316356129282 ], [ -73.973959050297111, 40.733421165538431 ], [ -73.973857300364941, 40.733216303638528 ], [ -73.973676276421273, 40.733205933888179 ], [ -73.973868108422749, 40.73306568719574 ], [ -73.973413217308575, 40.731282416428641 ], [ -73.971963403012467, 40.730000377217465 ], [ -73.971479949072489, 40.729249576693221 ], [ -73.971406179085193, 40.72871876425102 ], [ -73.971685149326461, 40.727405886636667 ], [ -73.971490391588958, 40.727350098110051 ], [ -73.971626972717061, 40.726628453499416 ], [ -73.988779316840834, 40.733965399235885 ], [ -73.986535000019614, 40.737050010973675 ], [ -73.98752047473161, 40.737462697305688 ], [ -73.987101005187782, 40.738053501438763 ], [ -73.987288637460722, 40.73813078597442 ], [ -73.986853452032989, 40.738714752172037 ], [ -73.98730154868953, 40.738903026036418 ], [ -73.987035927871261, 40.739266378549431 ], [ -73.986649696771138, 40.73910091152284 ], [ -73.986471949786832, 40.739362820927028 ], [ -73.985232246112872, 40.738840230794956 ], [ -73.979723464370466, 40.74640287633833 ], [ -73.982956909551802, 40.747764353690854 ], [ -73.980673452491104, 40.750905101457384 ], [ -73.980220899700072, 40.751521979626759 ], [ -73.976985707283106, 40.7501569597583 ], [ -73.968186878036107, 40.762226821325882 ], [ -73.958777908226992, 40.758270920848723 ], [ -73.960656381804739, 40.755923149550178 ], [ -73.962135590580857, 40.754573231473266 ], [ -73.965324056525631, 40.751047718272197 ], [ -73.970788347766415, 40.744406217690312 ], [ -73.970940630264991, 40.744471444025542 ], [ -73.97112503018549, 40.744189748947598 ], [ -73.970703174655839, 40.743990495411154 ], [ -73.97117346687061, 40.744107535510636 ], [ -73.971357530079473, 40.743838455359608 ], [ -73.971205463019672, 40.743771510301293 ], [ -73.971281018316773, 40.743651942051315 ], [ -73.971085334395738, 40.743664058345153 ], [ -73.971267100260576, 40.743389882433661 ], [ -73.971355634091523, 40.743539649852003 ], [ -73.97188888913044, 40.742724820355491 ], [ -73.971740597158458, 40.7426635795089 ], [ -73.971959558562531, 40.742337921543637 ], [ -73.972289920992168, 40.740721039031747 ], [ -73.972164773686572, 40.740675722129112 ], [ -73.972216854884024, 40.740307625061675 ], [ -73.97265743869113, 40.739222754277101 ], [ -73.972489941747398, 40.735803280107596 ], [ -73.97286939178467, 40.735770861285545 ], [ -73.974413858165306, 40.736414393858944 ], [ -73.974459750043906, 40.736294019718159 ], [ -73.974026921703768, 40.736125767245625 ], [ -73.974466471133596, 40.736278456830043 ], [ -73.97450375947156, 40.736064588443888 ], [ -73.974140620183718, 40.735955657167295 ], [ -73.97450488285962, 40.73604228053668 ], [ -73.97446922636118, 40.73579461792766 ] ] ] } } +, +{ "type": "Feature", "id": 5, "properties": { "communityDistrict": 106, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/106" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.96421230461759, 40.746604318476848 ], [ -73.964583184269458, 40.746454400673308 ], [ -73.964159802884311, 40.746865547359548 ], [ -73.96421230461759, 40.746604318476848 ] ] ] } } +, +{ "type": "Feature", "id": 6, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.938046406034374, 40.780829544275512 ], [ -73.937794487264156, 40.780781258755425 ], [ -73.937799442456779, 40.781031339796996 ], [ -73.937646318214831, 40.781001215892829 ], [ -73.937598946226217, 40.780467840861441 ], [ -73.938237735094006, 40.780259079465324 ], [ -73.938612008880597, 40.780338955869297 ], [ -73.939583789724765, 40.779576474007129 ], [ -73.939493298181716, 40.77987369131575 ], [ -73.938728029265945, 40.780510743704582 ], [ -73.938839518450365, 40.780599249799842 ], [ -73.938744230892752, 40.781043876042219 ], [ -73.938082132687143, 40.781418437777184 ], [ -73.937967577216469, 40.781289334060247 ], [ -73.938046406034374, 40.780829544275512 ] ] ] } } +, +{ "type": "Feature", "id": 7, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.941800327955306, 40.769046926625016 ], [ -73.942855286207049, 40.768303494409288 ], [ -73.949431754971087, 40.76054861736116 ], [ -73.951778220259953, 40.758402549876948 ], [ -73.952540793368755, 40.757095314537246 ], [ -73.955195031174767, 40.754774523475923 ], [ -73.957914525592741, 40.752109854525536 ], [ -73.959039759212644, 40.751392485111388 ], [ -73.961173729608646, 40.74949844307389 ], [ -73.961583049385695, 40.749414301106484 ], [ -73.961550800706007, 40.749773889705843 ], [ -73.961110602079614, 40.750600469900924 ], [ -73.960011323298147, 40.7518315173348 ], [ -73.959500799950973, 40.752956382195713 ], [ -73.959016166274779, 40.75359505995737 ], [ -73.958458368056753, 40.753949236504852 ], [ -73.953391407339538, 40.759796762357688 ], [ -73.953124515710414, 40.760052758429794 ], [ -73.952977882160738, 40.759962107876866 ], [ -73.95208632266548, 40.760862154404805 ], [ -73.950937349280878, 40.762570495237789 ], [ -73.949971917502566, 40.763646030317027 ], [ -73.949086287915648, 40.764264027274926 ], [ -73.945844514238203, 40.768321228251388 ], [ -73.9457035733476, 40.768327934311777 ], [ -73.945481142892874, 40.768624779437786 ], [ -73.945627210934504, 40.768692953178856 ], [ -73.945563020487484, 40.768801776027082 ], [ -73.945245104074587, 40.768773268310689 ], [ -73.944724784974568, 40.769786271534819 ], [ -73.942126745807201, 40.772034700509074 ], [ -73.940887072116695, 40.772372515775992 ], [ -73.940274609873768, 40.772947436893276 ], [ -73.940076657516542, 40.772926186357935 ], [ -73.940282079241967, 40.772301406991204 ], [ -73.94020021779653, 40.771128305662707 ], [ -73.94035533477512, 40.770496574371023 ], [ -73.941117787180247, 40.769414408574626 ], [ -73.941800327955306, 40.769046926625016 ] ] ] } } +, +{ "type": "Feature", "id": 8, "properties": { "communityDistrict": 108, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/108" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.943832566099459, 40.782859088972337 ], [ -73.943544207124773, 40.782880524325201 ], [ -73.943880681024979, 40.781532042861755 ], [ -73.94360047475412, 40.780159099466161 ], [ -73.943213862652243, 40.779317588659971 ], [ -73.943004239504674, 40.779639495474157 ], [ -73.942716006112036, 40.779544169476409 ], [ -73.942712374762181, 40.779214856939802 ], [ -73.942535563208523, 40.779090956062419 ], [ -73.942893408187928, 40.778614093246098 ], [ -73.942438481745029, 40.777315235765954 ], [ -73.942074188038774, 40.776917846977071 ], [ -73.942081605234875, 40.775957016317363 ], [ -73.942401009490482, 40.775726927526115 ], [ -73.94293043781397, 40.774676268035805 ], [ -73.943664318148436, 40.773840763674222 ], [ -73.946404189851748, 40.771269045619526 ], [ -73.948664164779615, 40.768857623394268 ], [ -73.950069793691654, 40.767025088383569 ], [ -73.954418260786042, 40.762184104951039 ], [ -73.958777908226992, 40.758270920848723 ], [ -73.973014871761208, 40.764278879445193 ], [ -73.955777359123232, 40.787913924471042 ], [ -73.943832566099459, 40.782859088972337 ] ] ] } } +, +{ "type": "Feature", "id": 9, "properties": { "communityDistrict": 111, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/111" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.921337524193987, 40.800852106497004 ], [ -73.920314655212294, 40.799375459289976 ], [ -73.916629852478025, 40.797858139437068 ], [ -73.915454709664175, 40.797063466030956 ], [ -73.914438272333129, 40.795665517863839 ], [ -73.913804283429442, 40.794511846456366 ], [ -73.913783854367239, 40.793836285482563 ], [ -73.915141344262381, 40.792012481989708 ], [ -73.916305770099797, 40.791117369952083 ], [ -73.916170925658193, 40.791014190212024 ], [ -73.916865405848895, 40.790362063464158 ], [ -73.91710622312948, 40.790468616736746 ], [ -73.918562997749859, 40.78969533382589 ], [ -73.918508769590929, 40.789425089769374 ], [ -73.922188311576477, 40.785509278139244 ], [ -73.922852033462718, 40.783555693418094 ], [ -73.924480522804245, 40.782320490645802 ], [ -73.925718086785338, 40.782176557944538 ], [ -73.927324226409795, 40.78109062932468 ], [ -73.928101189873374, 40.780920320042107 ], [ -73.931053528078877, 40.78239659356656 ], [ -73.935023451345117, 40.783006382028802 ], [ -73.935812997987128, 40.783710080532359 ], [ -73.936070646831226, 40.784217215620586 ], [ -73.935712659976971, 40.785680489492528 ], [ -73.932707073379873, 40.78916719236426 ], [ -73.93240673527869, 40.789718503093077 ], [ -73.932243245112417, 40.789692515411133 ], [ -73.930841787392808, 40.79099143000154 ], [ -73.929724007819146, 40.791366178343004 ], [ -73.928072735756587, 40.790823391283006 ], [ -73.926104102528797, 40.790731606615168 ], [ -73.926160234220774, 40.791716073017177 ], [ -73.926568880358914, 40.791858736637195 ], [ -73.925587791616223, 40.791821859996837 ], [ -73.926739138723136, 40.79192875170461 ], [ -73.926368102603519, 40.791661834384179 ], [ -73.926488043237512, 40.791022393999491 ], [ -73.927868892411922, 40.790954837629243 ], [ -73.927893744985951, 40.791091111420904 ], [ -73.927135637942072, 40.791929306603507 ], [ -73.927801414723973, 40.791997479262321 ], [ -73.92826720296155, 40.792328523948157 ], [ -73.928322716753684, 40.793101989140595 ], [ -73.927353321466811, 40.794461894609896 ], [ -73.926936147674951, 40.795497062196624 ], [ -73.926889678941563, 40.796252010858005 ], [ -73.927118069448653, 40.797203860732957 ], [ -73.927185147783703, 40.797349896780219 ], [ -73.927706941271779, 40.797298662876955 ], [ -73.927202997703475, 40.797386747799791 ], [ -73.927439221853177, 40.797710538215981 ], [ -73.927475886034941, 40.798122899664904 ], [ -73.926882617543583, 40.799940768503205 ], [ -73.926695726295577, 40.80014697715243 ], [ -73.927247708554162, 40.800392957369368 ], [ -73.927114642306421, 40.800563756229515 ], [ -73.927169330224871, 40.80040585369612 ], [ -73.9266656554653, 40.800182714036197 ], [ -73.9265535165366, 40.800315172921408 ], [ -73.926742638929966, 40.800403498972756 ], [ -73.926538464561716, 40.800333898308317 ], [ -73.92668470687282, 40.800454757256233 ], [ -73.92655241808481, 40.800604825092257 ], [ -73.926869086133223, 40.800783676798822 ], [ -73.927046403640446, 40.800651743031686 ], [ -73.926886060219999, 40.80084064836889 ], [ -73.926509548673039, 40.800657031524516 ], [ -73.925775518117462, 40.801730600996272 ], [ -73.925275210201249, 40.801998522743332 ], [ -73.922633786610348, 40.801868738141479 ], [ -73.921910922295723, 40.801502666253519 ], [ -73.921337524193987, 40.800852106497004 ] ] ] } } +, +{ "type": "Feature", "id": 10, "properties": { "communityDistrict": 111, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/111" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.933805899480205, 40.816512493247458 ], [ -73.934014767269787, 40.814483752624774 ], [ -73.933856526388169, 40.814481474419189 ], [ -73.933929846001945, 40.813347690633762 ], [ -73.934340809714726, 40.809927582749552 ], [ -73.934120734181533, 40.808656451977015 ], [ -73.933561193114812, 40.807600677386638 ], [ -73.931159499873274, 40.804966940262432 ], [ -73.930308764588275, 40.803786014865501 ], [ -73.929208175298285, 40.80114752061084 ], [ -73.929034902403089, 40.801080903851854 ], [ -73.928901523442235, 40.799855214160104 ], [ -73.929036401796253, 40.796762594101246 ], [ -73.929279367411709, 40.795853139520574 ], [ -73.929832540425238, 40.794949061140784 ], [ -73.930196644590794, 40.794593223850057 ], [ -73.933484753496273, 40.792774284832007 ], [ -73.935831067889069, 40.791094704870204 ], [ -73.937081043823014, 40.789366395709948 ], [ -73.936140733141229, 40.788949073410464 ], [ -73.936218598699526, 40.788800497574258 ], [ -73.937149654611034, 40.789168449059439 ], [ -73.938115701558502, 40.787184762756709 ], [ -73.939826196964617, 40.785256552415447 ], [ -73.942469704447731, 40.783896460947005 ], [ -73.943161419105394, 40.783411829992176 ], [ -73.943544207124773, 40.782880524325201 ], [ -73.943760053405853, 40.782828932219999 ], [ -73.955777359123232, 40.787913924471042 ], [ -73.944597513456074, 40.803228145255666 ], [ -73.946131310486734, 40.803877357584135 ], [ -73.944301945871231, 40.806390824581001 ], [ -73.942753672281938, 40.805744012794605 ], [ -73.934873438350309, 40.816527847015031 ], [ -73.933800194730466, 40.818349758873957 ], [ -73.933805899480205, 40.816512493247458 ] ] ] } } +, +{ "type": "Feature", "id": 11, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.893854541204846, 40.827340036744992 ], [ -73.892932260349824, 40.82678703602916 ], [ -73.88789510901421, 40.826743185296529 ], [ -73.885418166585225, 40.828075591914555 ], [ -73.883784141345714, 40.828274292462368 ], [ -73.884387053537296, 40.826817283532826 ], [ -73.884646026497066, 40.823823537474574 ], [ -73.884294881451382, 40.822718204764747 ], [ -73.882447795528904, 40.819268322511505 ], [ -73.878062832621268, 40.816182632444068 ], [ -73.876634599637072, 40.815711508099156 ], [ -73.876731855729673, 40.815386496487271 ], [ -73.872501108859723, 40.813888128234041 ], [ -73.872394379662396, 40.813974335606552 ], [ -73.872436672350773, 40.813850934001572 ], [ -73.872097170271516, 40.813738021521729 ], [ -73.872129311473614, 40.813621168692571 ], [ -73.871657776833985, 40.813254261975977 ], [ -73.87095753684099, 40.812146180609446 ], [ -73.870568069279329, 40.812087317622392 ], [ -73.870553421254868, 40.811243380722175 ], [ -73.868112191400783, 40.806751832831814 ], [ -73.868463469591447, 40.805936548939023 ], [ -73.871698819308065, 40.801805271920422 ], [ -73.871603361925295, 40.801751811446437 ], [ -73.87174509307782, 40.801547366115415 ], [ -73.872380604536971, 40.8012901146327 ], [ -73.872469493370602, 40.80078919284297 ], [ -73.872236573268907, 40.800761622650334 ], [ -73.872346849988503, 40.800174763010446 ], [ -73.872978629446493, 40.800250689026448 ], [ -73.872877110637063, 40.800840089046126 ], [ -73.872627058779116, 40.800791861502255 ], [ -73.872705037586002, 40.801167176810573 ], [ -73.873550965725059, 40.800853302771834 ], [ -73.874677163141541, 40.8009794223616 ], [ -73.874730604526974, 40.801256637628583 ], [ -73.875265170373211, 40.801398152548423 ], [ -73.875857885813289, 40.801455987586372 ], [ -73.875929980717004, 40.80108422258855 ], [ -73.878142188199234, 40.801319290306445 ], [ -73.877968803753731, 40.801711115128157 ], [ -73.878062948534193, 40.802194319344977 ], [ -73.877906464952105, 40.802271801020126 ], [ -73.878432954473098, 40.802702734694172 ], [ -73.880054629848786, 40.802760151407597 ], [ -73.882430217740392, 40.802265572389985 ], [ -73.883695424224754, 40.802162123602869 ], [ -73.883964625196995, 40.801965148359628 ], [ -73.883723266659217, 40.801862843941031 ], [ -73.885051723367084, 40.802130906797998 ], [ -73.885365446650056, 40.802260639745306 ], [ -73.885155171267598, 40.802272453041276 ], [ -73.885914247387532, 40.802798516993619 ], [ -73.886163770565631, 40.803175684976807 ], [ -73.887270974132576, 40.803947002337296 ], [ -73.887380956242168, 40.804110681283873 ], [ -73.887247384584199, 40.804186140114211 ], [ -73.887958972900947, 40.804997925921285 ], [ -73.888592177064865, 40.804789274595215 ], [ -73.889278926528419, 40.805181828760674 ], [ -73.889441059022943, 40.805440093556442 ], [ -73.889224160911539, 40.805845351191977 ], [ -73.889995981707685, 40.804886286752726 ], [ -73.890150985016049, 40.804958182262588 ], [ -73.889374392536951, 40.805925273115257 ], [ -73.890059327586513, 40.805704324179331 ], [ -73.8914990373016, 40.805931237737916 ], [ -73.891441043434313, 40.80566189856539 ], [ -73.891786181356039, 40.805622892086156 ], [ -73.891979296004138, 40.806384708976807 ], [ -73.892706811326534, 40.806343948093499 ], [ -73.892531771394232, 40.805656551568312 ], [ -73.892273158435316, 40.805702433124786 ], [ -73.892163645476415, 40.805302592565404 ], [ -73.891284024139225, 40.804976281899151 ], [ -73.891866108093907, 40.805090487426632 ], [ -73.892197396715616, 40.805284687919361 ], [ -73.892300202614379, 40.805660605669537 ], [ -73.89256667738411, 40.805620710004632 ], [ -73.892748140374039, 40.806340261301983 ], [ -73.894632524172351, 40.806232331922672 ], [ -73.894573939134162, 40.806045773007185 ], [ -73.894726019096197, 40.806026246583485 ], [ -73.894853605358762, 40.80621490815868 ], [ -73.894729704605396, 40.805741101461038 ], [ -73.894842959836325, 40.805723997012123 ], [ -73.895098365535389, 40.806863639174125 ], [ -73.895506339685667, 40.806595305303638 ], [ -73.895279628078669, 40.805766184067295 ], [ -73.895591091579661, 40.806581343348064 ], [ -73.895722737787636, 40.806559657308213 ], [ -73.895670251387571, 40.806290130456915 ], [ -73.895838380731007, 40.806540607571883 ], [ -73.895977946877494, 40.806517615839574 ], [ -73.895874816654597, 40.805808511582981 ], [ -73.896108245840225, 40.806496150951808 ], [ -73.896230408031599, 40.806210471902737 ], [ -73.897260149991467, 40.806040959847245 ], [ -73.897496819538972, 40.806214400202485 ], [ -73.897414726985716, 40.805800059478059 ], [ -73.897638187411516, 40.806201320838781 ], [ -73.897761267148908, 40.80618993350209 ], [ -73.897728272510705, 40.805967494137263 ], [ -73.898013408961589, 40.806166604361785 ], [ -73.897871279245152, 40.805534981759003 ], [ -73.898161107526988, 40.806138070099877 ], [ -73.89829494887951, 40.80609757069832 ], [ -73.898125361334223, 40.80565076037449 ], [ -73.898526564504635, 40.805434309097329 ], [ -73.90097298881534, 40.804876097891125 ], [ -73.902049522779649, 40.804784140521519 ], [ -73.90222284699469, 40.804948113189532 ], [ -73.903417203736481, 40.811506882855625 ], [ -73.904465514767352, 40.812281959913648 ], [ -73.903009832143638, 40.816317791954702 ], [ -73.897569587585892, 40.829423000830893 ], [ -73.893854541204846, 40.827340036744992 ] ] ] } } +, +{ "type": "Feature", "id": 12, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.898330362705565, 40.802412820940006 ], [ -73.896466688345711, 40.800790470891307 ], [ -73.898640387149953, 40.799101164621334 ], [ -73.900210050592804, 40.799264155896537 ], [ -73.899787388671314, 40.799509553369958 ], [ -73.899715638174442, 40.800798808502762 ], [ -73.900037358157405, 40.800908742050183 ], [ -73.899489194898067, 40.800901115930124 ], [ -73.899387486371879, 40.801935665070843 ], [ -73.898330362705565, 40.802412820940006 ] ] ] } } +, +{ "type": "Feature", "id": 13, "properties": { "communityDistrict": 202, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/202" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896808832237724, 40.795808445159786 ], [ -73.896938729987909, 40.795635872853559 ], [ -73.897968397837417, 40.795644839161987 ], [ -73.899194342499811, 40.796502456018196 ], [ -73.898520520714698, 40.796936194189776 ], [ -73.897882532401837, 40.797116532147022 ], [ -73.897131497956408, 40.796798077728297 ], [ -73.896785263412326, 40.796329166487091 ], [ -73.896808832237724, 40.795808445159786 ] ] ] } } +, +{ "type": "Feature", "id": 14, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.807286471225694, 40.885931813816164 ], [ -73.805505767435776, 40.886092949181226 ], [ -73.794165557614448, 40.882993216348616 ], [ -73.793855272090696, 40.883643311333458 ], [ -73.793006526493372, 40.883358736880382 ], [ -73.793792374904456, 40.881970326764915 ], [ -73.794917055866705, 40.880543790984852 ], [ -73.795545798426531, 40.880691015373699 ], [ -73.795025962328438, 40.879747797211706 ], [ -73.796250974695724, 40.877011999777359 ], [ -73.79712701174671, 40.876190400903887 ], [ -73.797438154572845, 40.875135332953128 ], [ -73.798553307877214, 40.874401428274467 ], [ -73.798912454636195, 40.874645893142869 ], [ -73.799813895803368, 40.874159849716222 ], [ -73.799877137935695, 40.873484667292566 ], [ -73.800872704582531, 40.871590119893895 ], [ -73.801372354098561, 40.871461043107537 ], [ -73.802522847565967, 40.870506644696789 ], [ -73.803177265017268, 40.871683155070563 ], [ -73.802699397862455, 40.872214691294282 ], [ -73.803391175230843, 40.872505037631072 ], [ -73.804318494680786, 40.871159741570537 ], [ -73.803733393992871, 40.870962602823781 ], [ -73.803583149392509, 40.869948061028573 ], [ -73.802829598932007, 40.870076294030454 ], [ -73.803022036852639, 40.869155119796481 ], [ -73.804220270516112, 40.869002148670738 ], [ -73.80483122145958, 40.869313181785927 ], [ -73.805544959957629, 40.86895600501218 ], [ -73.805884100128822, 40.869068502184909 ], [ -73.805744860803301, 40.869692576552794 ], [ -73.808415968187987, 40.871189693367555 ], [ -73.808387310463317, 40.870571621611674 ], [ -73.807540636361821, 40.87037755217343 ], [ -73.807806731947451, 40.869787520428453 ], [ -73.806952752243959, 40.869657948175849 ], [ -73.80673074905107, 40.86877001307834 ], [ -73.805931795597871, 40.868371932067781 ], [ -73.8048726616979, 40.868233303334804 ], [ -73.804646045029216, 40.866647116436852 ], [ -73.803852807814479, 40.867166484800023 ], [ -73.803003881089523, 40.867041836568788 ], [ -73.803060414183491, 40.865815133705652 ], [ -73.802258160915642, 40.865608206409661 ], [ -73.797803772193078, 40.872256132273904 ], [ -73.794790446816052, 40.873200484033973 ], [ -73.79397363837721, 40.874566594568307 ], [ -73.793572108835932, 40.876121058303397 ], [ -73.793596053305095, 40.876720732725929 ], [ -73.7931670377871, 40.877055639066462 ], [ -73.794221699909329, 40.877382370466329 ], [ -73.794402945860938, 40.877641843501507 ], [ -73.79384702788164, 40.878594459790776 ], [ -73.791745839412485, 40.879890071652447 ], [ -73.790689274788264, 40.880158864278151 ], [ -73.790430465030781, 40.880797258029204 ], [ -73.78978716776686, 40.881207560463295 ], [ -73.789261610198153, 40.881205414623615 ], [ -73.789318357804476, 40.880578670091836 ], [ -73.789120206369176, 40.880080210993434 ], [ -73.790063328607687, 40.879594661514837 ], [ -73.789523093688004, 40.87899812706052 ], [ -73.788273134709058, 40.878873573154209 ], [ -73.785884969766514, 40.879067231752593 ], [ -73.784381681075658, 40.878420531670429 ], [ -73.784177383688245, 40.877721353928472 ], [ -73.784709640264509, 40.876357994847709 ], [ -73.786684932186148, 40.874293476045004 ], [ -73.787086784790404, 40.873536242216105 ], [ -73.787190875605049, 40.87273055372912 ], [ -73.786248744526105, 40.872382846772119 ], [ -73.785447599690173, 40.873132563371023 ], [ -73.785275090314329, 40.873543713799158 ], [ -73.785081396589362, 40.873589962220549 ], [ -73.785172790449749, 40.873119375965942 ], [ -73.785680998536805, 40.872387265559659 ], [ -73.785261520757146, 40.871745322332387 ], [ -73.784393117434774, 40.872784094928718 ], [ -73.78402157839551, 40.873692422099261 ], [ -73.783587384198384, 40.873780954679042 ], [ -73.783339679227083, 40.873512621378552 ], [ -73.78343142541371, 40.873178701948802 ], [ -73.784037169056248, 40.872826601262382 ], [ -73.783809068866674, 40.872533952915006 ], [ -73.783068534260309, 40.872153575922724 ], [ -73.783201754262976, 40.870670360853786 ], [ -73.783915783055775, 40.870422651370625 ], [ -73.784288027410639, 40.870001046741315 ], [ -73.784902160777733, 40.869763973240651 ], [ -73.785602453054537, 40.868341652223684 ], [ -73.78551744321166, 40.869169565720306 ], [ -73.785986798933223, 40.869592738286343 ], [ -73.786571038610106, 40.869777899884326 ], [ -73.787954461454163, 40.869845419063587 ], [ -73.789010597965216, 40.869663275452652 ], [ -73.789681974486442, 40.869361310772653 ], [ -73.790382076929404, 40.868994425624784 ], [ -73.791390325861258, 40.86814130746609 ], [ -73.79228914014459, 40.865814377219429 ], [ -73.792650957670688, 40.864136653184723 ], [ -73.791473171198916, 40.862207106248952 ], [ -73.791880145977544, 40.861255632209634 ], [ -73.791904549275102, 40.860829562711984 ], [ -73.793510297577185, 40.860551681290829 ], [ -73.793639620167468, 40.860241278168601 ], [ -73.793399855167067, 40.859948486200928 ], [ -73.793865684694509, 40.859778774829088 ], [ -73.794545623180255, 40.858888259161247 ], [ -73.794869838667495, 40.858075551760564 ], [ -73.794475669768275, 40.857004487669087 ], [ -73.794268485215355, 40.856800709291846 ], [ -73.794350059342818, 40.856527023803828 ], [ -73.795588801729494, 40.856513236766638 ], [ -73.796854616937296, 40.856264358212201 ], [ -73.797516168323412, 40.855600944659045 ], [ -73.797985334146603, 40.854848932594514 ], [ -73.798249502273819, 40.854795985109597 ], [ -73.798532741268701, 40.855005333104415 ], [ -73.798722556000868, 40.854914401172579 ], [ -73.799024193934059, 40.853957267649882 ], [ -73.798642743304413, 40.853357459921675 ], [ -73.797955833105576, 40.852988329711074 ], [ -73.797805229909031, 40.851949597591918 ], [ -73.798193659968462, 40.850592561406614 ], [ -73.799486814864125, 40.849748448477122 ], [ -73.800099127050487, 40.848298413397387 ], [ -73.800403876289963, 40.848108221174073 ], [ -73.800936284935133, 40.848303294251195 ], [ -73.801467352807393, 40.848770214063507 ], [ -73.801830564441303, 40.850130657058401 ], [ -73.804175579324081, 40.853340120189131 ], [ -73.804525267201058, 40.854851864882782 ], [ -73.80428420522334, 40.855130807845903 ], [ -73.803671165509698, 40.855307395995275 ], [ -73.80352718254764, 40.855603446309779 ], [ -73.804137847564007, 40.857841760375628 ], [ -73.804205857265345, 40.858959048932519 ], [ -73.804642938160924, 40.859968201571178 ], [ -73.804605277688765, 40.861217181495242 ], [ -73.804843331940049, 40.861609338035151 ], [ -73.805326642837855, 40.861885588492747 ], [ -73.805927164275786, 40.86194119699033 ], [ -73.806245719307697, 40.86142748444243 ], [ -73.805820412821205, 40.860034611465395 ], [ -73.806130570389229, 40.859881000645267 ], [ -73.806556299565372, 40.859817926100071 ], [ -73.807118849366489, 40.86031733388991 ], [ -73.807811834937127, 40.860359008154653 ], [ -73.808152553828904, 40.859667377902028 ], [ -73.80762141553879, 40.858828494078409 ], [ -73.807562729567763, 40.858604611631982 ], [ -73.807680481075678, 40.858538063289529 ], [ -73.808531735187501, 40.859914837673884 ], [ -73.80967350837895, 40.860909079181596 ], [ -73.810956267297698, 40.862391750453014 ], [ -73.812254953308496, 40.862745768762927 ], [ -73.812938672874893, 40.863217854003771 ], [ -73.813274239243441, 40.863220838566527 ], [ -73.813727805216701, 40.86387136662723 ], [ -73.814040896144206, 40.863860395031359 ], [ -73.81395857420803, 40.864102704217139 ], [ -73.814228804777102, 40.863863398535528 ], [ -73.814125721866517, 40.863727556313791 ], [ -73.814379977475767, 40.863254397843249 ], [ -73.814595792800048, 40.863088165896158 ], [ -73.815103153841548, 40.863057465367731 ], [ -73.815243951880475, 40.863238061876437 ], [ -73.814881025777368, 40.863919658148191 ], [ -73.815224556219917, 40.864444024975057 ], [ -73.815088914905544, 40.865243573512195 ], [ -73.815173202192526, 40.865601207766773 ], [ -73.816621294954487, 40.86417825384391 ], [ -73.816997602664316, 40.864459031143049 ], [ -73.815787640660815, 40.865758061438655 ], [ -73.814380390825434, 40.867944920257429 ], [ -73.814500123462409, 40.868169020068187 ], [ -73.815253956412633, 40.868190830623398 ], [ -73.815532178783414, 40.869238032274019 ], [ -73.815378700332133, 40.869609329414814 ], [ -73.815837741828261, 40.870388852931391 ], [ -73.816123379328559, 40.870158696482306 ], [ -73.816285199273864, 40.869671684783626 ], [ -73.817225787450198, 40.869009273791775 ], [ -73.817749773836908, 40.869009351051943 ], [ -73.818155735168091, 40.869297013765269 ], [ -73.818330262912852, 40.869879005860696 ], [ -73.818829363646742, 40.869484735937952 ], [ -73.818639536280841, 40.868831407545926 ], [ -73.818166106620325, 40.86843821749121 ], [ -73.817788383122604, 40.868284146726658 ], [ -73.817340854906604, 40.868344752024093 ], [ -73.817104588192251, 40.867763344241297 ], [ -73.817281150425131, 40.86732198498904 ], [ -73.81773424169495, 40.867925903501281 ], [ -73.818609314266297, 40.868522181140278 ], [ -73.818926693172955, 40.86904240959317 ], [ -73.819272602765253, 40.869185429212223 ], [ -73.81999722806917, 40.868990980473654 ], [ -73.820911412498333, 40.869735869284526 ], [ -73.821013660040862, 40.870315041045394 ], [ -73.821605402639989, 40.870130946426798 ], [ -73.821956413058629, 40.870515212965728 ], [ -73.821957836154581, 40.871669815305637 ], [ -73.821762766494743, 40.87203953477033 ], [ -73.82122952671989, 40.872281963235785 ], [ -73.821020468917922, 40.872816112833902 ], [ -73.821376896068926, 40.872868056822853 ], [ -73.821562833496316, 40.872539437295679 ], [ -73.821945677017013, 40.872682233653201 ], [ -73.821635979035207, 40.873123475139053 ], [ -73.82115079655469, 40.873025307180029 ], [ -73.820467842280863, 40.873548442409835 ], [ -73.821274072124169, 40.874180097808377 ], [ -73.821561579623577, 40.874156294928895 ], [ -73.821901763202149, 40.873727007305277 ], [ -73.82209812832312, 40.874774244603344 ], [ -73.820746084265579, 40.874141591391869 ], [ -73.820727498619661, 40.874482463430176 ], [ -73.820429484546125, 40.874380926556668 ], [ -73.820164174226178, 40.874013919985231 ], [ -73.820241525270902, 40.873784490984193 ], [ -73.82007094639313, 40.87343818793439 ], [ -73.819290197936084, 40.8734027074875 ], [ -73.818946440414578, 40.873669404542198 ], [ -73.819176194918938, 40.873830791830244 ], [ -73.819695672778451, 40.873677430120409 ], [ -73.819948032340946, 40.873825146790999 ], [ -73.819905271110997, 40.87403276547326 ], [ -73.819229695760583, 40.874074130063882 ], [ -73.819184277323799, 40.874478809747025 ], [ -73.819905193966491, 40.874222256573525 ], [ -73.820304724008537, 40.874890060435312 ], [ -73.820595453845471, 40.874764909339994 ], [ -73.821249800656744, 40.874813890097826 ], [ -73.821649162171596, 40.875145077031014 ], [ -73.821354158618391, 40.875320562484333 ], [ -73.820887952454655, 40.875094271245125 ], [ -73.820363897866187, 40.875268186919257 ], [ -73.820217054257299, 40.875717503979551 ], [ -73.819760134902495, 40.876260627290783 ], [ -73.819975343132455, 40.876796959096822 ], [ -73.820680264687653, 40.877254870148562 ], [ -73.820442818803329, 40.876036329303048 ], [ -73.82116398203064, 40.876698238746407 ], [ -73.820976958102321, 40.877006298972631 ], [ -73.821056874456744, 40.877566583073971 ], [ -73.820213054745494, 40.878132996736859 ], [ -73.820337447186176, 40.879398939831255 ], [ -73.820024095046662, 40.879778518881032 ], [ -73.820262937156286, 40.879926212743833 ], [ -73.820102176225475, 40.880950368080718 ], [ -73.819117097662769, 40.881322274248745 ], [ -73.819788821900133, 40.881645379201927 ], [ -73.819688740438423, 40.881929590243665 ], [ -73.819259461457762, 40.882089945098002 ], [ -73.819728550170865, 40.882231148309799 ], [ -73.819556473129978, 40.882429594155084 ], [ -73.819772595439417, 40.882635497927424 ], [ -73.819749494898545, 40.882830749568512 ], [ -73.819344974615547, 40.883562820315177 ], [ -73.819832753043684, 40.885669254071232 ], [ -73.816707785914204, 40.886480950542548 ], [ -73.813997483660131, 40.886782132483908 ], [ -73.811406452266354, 40.88663558731109 ], [ -73.807286471225694, 40.885931813816164 ] ] ] } } +, +{ "type": "Feature", "id": 15, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820367178696415, 40.860672329519964 ], [ -73.820464419586514, 40.860313118867928 ], [ -73.819992279485092, 40.859873839858892 ], [ -73.820522105791383, 40.859746757044775 ], [ -73.821002795027852, 40.859991139093061 ], [ -73.82098853684252, 40.859327211246026 ], [ -73.821445648814958, 40.859388827942176 ], [ -73.821444602248718, 40.859778642979862 ], [ -73.821692463706086, 40.860089660604622 ], [ -73.821659018742835, 40.860595151579169 ], [ -73.822775415668403, 40.860121783750671 ], [ -73.821973119358233, 40.860138821724135 ], [ -73.821925474502905, 40.859956021107486 ], [ -73.822407243871012, 40.859798401866385 ], [ -73.821685274628337, 40.859779015190846 ], [ -73.821613676662992, 40.859553541671254 ], [ -73.821991138091136, 40.859401852821051 ], [ -73.82196739639943, 40.85927999861542 ], [ -73.820548013072482, 40.859064618952502 ], [ -73.820266967957124, 40.859161635444742 ], [ -73.820239461929987, 40.859356695013624 ], [ -73.819084916892663, 40.859347272774315 ], [ -73.818570033099405, 40.859510918757401 ], [ -73.81844281128356, 40.859829347193468 ], [ -73.818639505627203, 40.860698297068993 ], [ -73.818223948927766, 40.861060710279276 ], [ -73.817245857421995, 40.860844644696044 ], [ -73.816755430994775, 40.861245874357031 ], [ -73.815876382575041, 40.861003864611391 ], [ -73.815682042425749, 40.861109764543748 ], [ -73.815492937079213, 40.860955286737095 ], [ -73.815263214152793, 40.861117747124979 ], [ -73.814796297573494, 40.861128956746732 ], [ -73.814852060240966, 40.860900990309851 ], [ -73.813818025868741, 40.860548278670713 ], [ -73.812731464950446, 40.858877541947749 ], [ -73.812306027084176, 40.854162026473197 ], [ -73.816408709078786, 40.854082255617271 ], [ -73.81684183576192, 40.853625213366122 ], [ -73.817208283531215, 40.851828165777306 ], [ -73.816915423173157, 40.851673525567058 ], [ -73.817124090422126, 40.851269573444732 ], [ -73.816858738707495, 40.850957375998682 ], [ -73.815713784946539, 40.850816203844829 ], [ -73.816035681338235, 40.850602669116299 ], [ -73.81596528550169, 40.850389525194451 ], [ -73.816194723498, 40.850377939842495 ], [ -73.816286190942321, 40.850194576448963 ], [ -73.815652790589127, 40.84934983712575 ], [ -73.815209650661131, 40.849230762977548 ], [ -73.815141919186615, 40.849080612735015 ], [ -73.816301191523266, 40.848572171900926 ], [ -73.820140436144655, 40.848020598550626 ], [ -73.820484056174038, 40.848501025630163 ], [ -73.825582670132235, 40.845863048703436 ], [ -73.825510223104729, 40.845561537336977 ], [ -73.825731497689787, 40.846221403535914 ], [ -73.82601153990079, 40.846140331928488 ], [ -73.82672495578035, 40.847536585233968 ], [ -73.827253112516388, 40.849113817722724 ], [ -73.82724661416367, 40.850342189500786 ], [ -73.826878543486032, 40.851669910025606 ], [ -73.827184237589023, 40.851711205793777 ], [ -73.826759482485102, 40.853006819225811 ], [ -73.827378357662539, 40.852817959669302 ], [ -73.827230260601695, 40.853350756947847 ], [ -73.828601971653228, 40.855717847594697 ], [ -73.829083187060064, 40.85567601369614 ], [ -73.829916239097486, 40.856180818225276 ], [ -73.829999038307903, 40.858211136045725 ], [ -73.821567035368972, 40.861050450239098 ], [ -73.820236846595549, 40.861594655331636 ], [ -73.818954255954097, 40.862474561691158 ], [ -73.818871964361207, 40.862245545597347 ], [ -73.81937709260572, 40.861795585132008 ], [ -73.81951371932054, 40.861470910473351 ], [ -73.820261572145583, 40.861103901029999 ], [ -73.820367178696415, 40.860672329519964 ] ] ] } } +, +{ "type": "Feature", "id": 16, "properties": { "communityDistrict": 228, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/228" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.818116669097236, 40.865568970472111 ], [ -73.819102114707547, 40.865197113256819 ], [ -73.819368452942115, 40.8659447219651 ], [ -73.817988969449502, 40.86608815411433 ], [ -73.818116669097236, 40.865568970472111 ] ] ] } } +, +{ "type": "Feature", "id": 17, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.913323083105226, 40.602611643275132 ], [ -73.913000175893131, 40.602740291683936 ], [ -73.913475115442381, 40.602349295873353 ], [ -73.913298546357993, 40.602250351246404 ], [ -73.913116587996583, 40.602220255929296 ], [ -73.912738668623376, 40.602708677016409 ], [ -73.91285319795081, 40.602507405574627 ], [ -73.912723986223568, 40.602453262946085 ], [ -73.912886934853972, 40.602484703640549 ], [ -73.913096913069495, 40.602214452920414 ], [ -73.911584276893379, 40.602135488403363 ], [ -73.912541702483722, 40.602364439955899 ], [ -73.91165189296602, 40.602278257844787 ], [ -73.911544111829883, 40.602439323103887 ], [ -73.912610986765316, 40.602532006593854 ], [ -73.912572903417242, 40.60268329902901 ], [ -73.912518892580451, 40.602540309303571 ], [ -73.912488828204971, 40.602674149766628 ], [ -73.911515058570771, 40.602460243059369 ], [ -73.910940079824542, 40.60249781432195 ], [ -73.910946343467089, 40.602364642186537 ], [ -73.910865365857774, 40.602490483288435 ], [ -73.910876834441382, 40.602342354837091 ], [ -73.91151957260341, 40.602396868569848 ], [ -73.911542343691778, 40.602224540785613 ], [ -73.910939995739767, 40.602128474221928 ], [ -73.91155529140805, 40.602155464729762 ], [ -73.910758308465034, 40.602027500983375 ], [ -73.910751239722586, 40.602437299862515 ], [ -73.90903689530532, 40.60267734322013 ], [ -73.909018485670813, 40.6025248276692 ], [ -73.910711545229745, 40.602419493178793 ], [ -73.91070633053954, 40.602144515265316 ], [ -73.909409342387235, 40.602190765754784 ], [ -73.910731229473271, 40.602021376027118 ], [ -73.909796499923544, 40.602043013003993 ], [ -73.908942251380367, 40.601607040698681 ], [ -73.90767859330397, 40.602291665714738 ], [ -73.906572239358681, 40.602344003720653 ], [ -73.905387303619193, 40.602649653479247 ], [ -73.904574527674043, 40.602525481995166 ], [ -73.903934495086688, 40.602725102786415 ], [ -73.90332866108642, 40.602456303985541 ], [ -73.90319707837952, 40.602649958503889 ], [ -73.902898174107335, 40.602639059702987 ], [ -73.901430138271664, 40.603272677456545 ], [ -73.89983493364754, 40.603339791384869 ], [ -73.898921580767379, 40.603636282503757 ], [ -73.89956904192465, 40.602412570694703 ], [ -73.900880013300039, 40.601144727461488 ], [ -73.902066250183523, 40.6003727267112 ], [ -73.904661993081348, 40.599306196646161 ], [ -73.905850073500105, 40.59864709311632 ], [ -73.907015680028906, 40.597668327163234 ], [ -73.907566254868499, 40.596990830449805 ], [ -73.908179747074485, 40.595825567882109 ], [ -73.908467298364798, 40.594658205974177 ], [ -73.908063734206834, 40.591305397344236 ], [ -73.908363621879133, 40.5896826681902 ], [ -73.908844606755878, 40.58874136481694 ], [ -73.909534712230965, 40.587878983459746 ], [ -73.910397823750145, 40.58713291762222 ], [ -73.911783401795049, 40.586311865535293 ], [ -73.91195662784709, 40.586794206925674 ], [ -73.911882489600387, 40.587045267664308 ], [ -73.911676208775503, 40.587041561344442 ], [ -73.911576775157897, 40.587262624885831 ], [ -73.911910801352448, 40.588467433873632 ], [ -73.911485790056219, 40.591108753018489 ], [ -73.91202436365306, 40.593096233906437 ], [ -73.912042340156376, 40.594506954288882 ], [ -73.912578344447553, 40.595553121746448 ], [ -73.913198003375996, 40.596178950158723 ], [ -73.913645623968833, 40.597099977182289 ], [ -73.914187394823074, 40.59735702628366 ], [ -73.914485735682206, 40.59794198139339 ], [ -73.915444715695202, 40.599042194935073 ], [ -73.916903895183509, 40.599837301551631 ], [ -73.917566445215286, 40.600016547952663 ], [ -73.917836588591982, 40.600404306991507 ], [ -73.918126036009426, 40.600438631387874 ], [ -73.918591903952574, 40.600796389566781 ], [ -73.920165737981449, 40.601087838804787 ], [ -73.920180701199982, 40.60128267508793 ], [ -73.921399870129946, 40.601703002236192 ], [ -73.92151689981948, 40.601923654141125 ], [ -73.921682553138595, 40.601770058459181 ], [ -73.922674443742466, 40.601592236484933 ], [ -73.923241203678273, 40.601079393459585 ], [ -73.924003078546136, 40.599730145227909 ], [ -73.924570428667792, 40.599723602731885 ], [ -73.926280230723265, 40.600621514101952 ], [ -73.928322552373729, 40.602218382314526 ], [ -73.928786511954229, 40.602211838396776 ], [ -73.928948688134525, 40.602512604013675 ], [ -73.929506712027873, 40.602709233504306 ], [ -73.929615897491772, 40.603189639979398 ], [ -73.929011696537628, 40.603685418468331 ], [ -73.929274585377399, 40.603993574805209 ], [ -73.929874929969188, 40.603742325988733 ], [ -73.930142525818823, 40.604029594336566 ], [ -73.930565232803801, 40.60372682581901 ], [ -73.931003361431678, 40.603935803661365 ], [ -73.931962271303803, 40.603121637615807 ], [ -73.932116087738137, 40.602688516646566 ], [ -73.9317620040799, 40.602596384218188 ], [ -73.931025398878774, 40.601672099959572 ], [ -73.930730188218035, 40.601592761861333 ], [ -73.930306809869052, 40.601171674640838 ], [ -73.929649361733979, 40.601204457578781 ], [ -73.929342680392352, 40.600969151121987 ], [ -73.92941042444437, 40.600759763522717 ], [ -73.92927494215013, 40.600801237011865 ], [ -73.929366537820698, 40.600647008853727 ], [ -73.929226983256797, 40.60048810851643 ], [ -73.928652504797654, 40.600385591829124 ], [ -73.928592306000738, 40.600611615976227 ], [ -73.928376810262336, 40.600350095304492 ], [ -73.927847991663555, 40.600316057979349 ], [ -73.927202404004518, 40.599910080434135 ], [ -73.922901855339759, 40.596447563816319 ], [ -73.921775363243555, 40.595030926201105 ], [ -73.920321410523968, 40.594718846993032 ], [ -73.918674399732794, 40.593332078578698 ], [ -73.917956670352055, 40.592910465509611 ], [ -73.917263905961335, 40.591979118031276 ], [ -73.916908494439397, 40.59174368656948 ], [ -73.916559401060709, 40.591092587438105 ], [ -73.915099543282551, 40.590420492117495 ], [ -73.914858379017886, 40.590070611858046 ], [ -73.914540591210979, 40.58994422917548 ], [ -73.914619213958716, 40.589327155779593 ], [ -73.91420586362733, 40.589224387756893 ], [ -73.914344276717856, 40.588886889304987 ], [ -73.917254822306234, 40.587477879512186 ], [ -73.918092564808362, 40.586570335004716 ], [ -73.929568583093001, 40.596820264919806 ], [ -73.928131396709531, 40.597777928146151 ], [ -73.933551171536052, 40.602687280824874 ], [ -73.934262667258807, 40.60223071136695 ], [ -73.938434935758409, 40.605973863058743 ], [ -73.938098083418382, 40.606195209680678 ], [ -73.937890508110314, 40.606587861063474 ], [ -73.938347084371415, 40.607000456057875 ], [ -73.938489866191787, 40.606921943503181 ], [ -73.939049627748119, 40.607433297476042 ], [ -73.939012468730184, 40.607599477306643 ], [ -73.944055609321495, 40.611992841734242 ], [ -73.947326721606174, 40.629166566706836 ], [ -73.944155352558241, 40.629508285207962 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.944550391147104, 40.631071787088281 ], [ -73.943573087771142, 40.630994155128782 ], [ -73.940596866801016, 40.63138939981696 ], [ -73.937592735704854, 40.632267856999128 ], [ -73.924646949371436, 40.638979128753839 ], [ -73.915930862438344, 40.645774695237954 ], [ -73.901284781690606, 40.655364648675672 ], [ -73.900117158572513, 40.656754643748044 ], [ -73.899637864081498, 40.657981441794959 ], [ -73.899565589760869, 40.658956575610681 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.898806984995034, 40.657406661805041 ], [ -73.899041803889048, 40.657371657570884 ], [ -73.898002558137307, 40.653801223955682 ], [ -73.897610132424404, 40.653453815618008 ], [ -73.893546770738467, 40.655202714083629 ], [ -73.891365435872459, 40.652364719446901 ], [ -73.884948358388002, 40.646802172920793 ], [ -73.881318570509691, 40.643871119271594 ], [ -73.878647053832296, 40.641065856068501 ], [ -73.878684931736686, 40.640538552066083 ], [ -73.877973413343511, 40.63980711772134 ], [ -73.878415893479939, 40.63891218920341 ], [ -73.878656760109294, 40.63941038736008 ], [ -73.879309545371214, 40.640067074221321 ], [ -73.879894043976549, 40.640363279157192 ], [ -73.880256256660374, 40.640970109035969 ], [ -73.880483869226254, 40.640978034547473 ], [ -73.880736235465093, 40.641565957470583 ], [ -73.880292480685711, 40.641404915733119 ], [ -73.880026164262659, 40.641718113295966 ], [ -73.880067141324247, 40.64200344662671 ], [ -73.881393062306202, 40.642347339979111 ], [ -73.882241081656574, 40.643453492409051 ], [ -73.882148325625707, 40.643743727840565 ], [ -73.883245545281994, 40.644437584642581 ], [ -73.883419992690065, 40.644523815650125 ], [ -73.883995410705623, 40.644367935456771 ], [ -73.884807504111279, 40.643946303680252 ], [ -73.885577621490782, 40.644040949287195 ], [ -73.887434446424379, 40.64593668177308 ], [ -73.88766589163491, 40.646504924553206 ], [ -73.887726112332246, 40.64714302919986 ], [ -73.88751623247262, 40.64741516069423 ], [ -73.887712111560973, 40.64787443463652 ], [ -73.888636384341012, 40.64802449261564 ], [ -73.889246779360249, 40.648745653606738 ], [ -73.890088261399555, 40.649332612101858 ], [ -73.890335291412256, 40.649347769001956 ], [ -73.890137010169738, 40.649170412116426 ], [ -73.890347347597611, 40.649033605778691 ], [ -73.890822829589439, 40.649364177365939 ], [ -73.891050569773398, 40.649313177891521 ], [ -73.891205207162443, 40.649119284846883 ], [ -73.891083306053702, 40.648792575695985 ], [ -73.889450742936518, 40.647173955597054 ], [ -73.889350865998793, 40.647034698864168 ], [ -73.889481525760701, 40.646912755068207 ], [ -73.888796908486725, 40.646050258056327 ], [ -73.889413872856167, 40.646938438988954 ], [ -73.888895689493339, 40.647218818907895 ], [ -73.888610048693863, 40.647081360931907 ], [ -73.888516375685228, 40.647360691521939 ], [ -73.888200507266575, 40.647140869529082 ], [ -73.888189908388483, 40.64677356952388 ], [ -73.888449537033324, 40.646728658746333 ], [ -73.888081388840732, 40.646620569628709 ], [ -73.888094419357316, 40.646212786549306 ], [ -73.88828981420744, 40.646044215545579 ], [ -73.888000520929907, 40.646027705355245 ], [ -73.887409602224835, 40.645329280124841 ], [ -73.887916907235365, 40.645067549205365 ], [ -73.888083831649922, 40.645164230626321 ], [ -73.887964064428687, 40.645032573829319 ], [ -73.887343617316645, 40.645224153871652 ], [ -73.886912033885338, 40.64447377760721 ], [ -73.886548889559975, 40.644312490378404 ], [ -73.886236467918053, 40.643816787720972 ], [ -73.884691815025974, 40.643121146973009 ], [ -73.883735787637875, 40.642450349188387 ], [ -73.880788897257347, 40.639757432635506 ], [ -73.880551238822548, 40.639158819737261 ], [ -73.879538880170813, 40.638217839320674 ], [ -73.879117877980704, 40.638266587440519 ], [ -73.878966860711415, 40.638459543695525 ], [ -73.878700391413375, 40.638337724746442 ], [ -73.879529940553823, 40.636735475194122 ], [ -73.880855331614271, 40.6348278444787 ], [ -73.884411945355552, 40.631196435763421 ], [ -73.884713766375938, 40.630533821156703 ], [ -73.884711168378757, 40.629681606929665 ], [ -73.884861601131192, 40.629467534443293 ], [ -73.885258892262101, 40.629371448944006 ], [ -73.886509981051617, 40.62959021423152 ], [ -73.888366302384483, 40.628916235442098 ], [ -73.894238388147627, 40.625081555366457 ], [ -73.895575737927075, 40.623830567800098 ], [ -73.896324544313771, 40.622792244270393 ], [ -73.89826103023735, 40.622989159843556 ], [ -73.901146854264525, 40.625685387597379 ], [ -73.904127932076264, 40.626306200134294 ], [ -73.916331954277183, 40.632038731553166 ], [ -73.916878842111046, 40.631925102345122 ], [ -73.917460875525407, 40.631537631149719 ], [ -73.917518232095503, 40.631340259516669 ], [ -73.917319990124554, 40.631007152718503 ], [ -73.915354603015416, 40.629991694065488 ], [ -73.902693332719778, 40.624213334873239 ], [ -73.902962459204261, 40.623873423211059 ], [ -73.902881856369973, 40.623541946245076 ], [ -73.902351418311468, 40.623476698946902 ], [ -73.901973121459747, 40.622910587526071 ], [ -73.900987175163692, 40.622541386348161 ], [ -73.900704611160549, 40.621628794321403 ], [ -73.89811767568176, 40.621851561121147 ], [ -73.89692451128272, 40.621655115945117 ], [ -73.89721859912828, 40.620771582590024 ], [ -73.89741841090644, 40.619262631799373 ], [ -73.897129439496211, 40.61464003410893 ], [ -73.897310664603424, 40.610300130960375 ], [ -73.898392534810242, 40.606778889433883 ], [ -73.898647189184786, 40.605297980361108 ], [ -73.899161817246934, 40.605528085351267 ], [ -73.899868803638654, 40.605524640544026 ], [ -73.900870374187036, 40.606919460776233 ], [ -73.900565953040314, 40.607474509790052 ], [ -73.900476857148135, 40.609217469826852 ], [ -73.900251067894501, 40.609517405479053 ], [ -73.900156198705872, 40.61007643818634 ], [ -73.901349974006564, 40.611088615101949 ], [ -73.901333034586528, 40.611717882905936 ], [ -73.901614616502044, 40.611864048098319 ], [ -73.901987146031232, 40.611745400968069 ], [ -73.902289894253414, 40.611961574676791 ], [ -73.902493930512463, 40.611814999032823 ], [ -73.901192535313967, 40.610563817547117 ], [ -73.901329626594062, 40.61048104310327 ], [ -73.901248368655672, 40.610580274499064 ], [ -73.902535551210548, 40.611826211199393 ], [ -73.902650779467862, 40.611780621164144 ], [ -73.902360320962103, 40.611980412182518 ], [ -73.90271854260655, 40.611826025295905 ], [ -73.902638277474097, 40.611906522555302 ], [ -73.902926669834358, 40.612159441976388 ], [ -73.903043928125001, 40.612095214987221 ], [ -73.90291750370362, 40.612186543448558 ], [ -73.902629182453495, 40.611925809170778 ], [ -73.902422747175791, 40.612033560004718 ], [ -73.905871052773719, 40.615063313977224 ], [ -73.905734559671941, 40.614882973944304 ], [ -73.90603328990818, 40.614953389220034 ], [ -73.905879376209299, 40.615077461411374 ], [ -73.906962836450759, 40.616114017578788 ], [ -73.907172911498478, 40.616009875338371 ], [ -73.906738487323594, 40.616295919990634 ], [ -73.907256856310099, 40.616087581377279 ], [ -73.907083469683371, 40.616221367023186 ], [ -73.90722592371317, 40.616351525931819 ], [ -73.907442554120721, 40.616258535700595 ], [ -73.907021606784454, 40.616533600356725 ], [ -73.907105953990239, 40.616609860214233 ], [ -73.90752735132169, 40.616344432548892 ], [ -73.90724169448653, 40.616551501888097 ], [ -73.907475037057168, 40.616712744568424 ], [ -73.907589771735402, 40.616629376451222 ], [ -73.907652295122034, 40.616915756619228 ], [ -73.907968065386143, 40.617046586776979 ], [ -73.907764597670081, 40.617217174557318 ], [ -73.907813886033438, 40.617374067585814 ], [ -73.90815289957095, 40.617161891990783 ], [ -73.90839229831542, 40.617388428518858 ], [ -73.908603515934217, 40.617265497054177 ], [ -73.908790880836008, 40.617436396721871 ], [ -73.908633339129693, 40.617167854909361 ], [ -73.908836910448244, 40.617311646627101 ], [ -73.909071451539532, 40.617160438331808 ], [ -73.908354032146789, 40.616530998961501 ], [ -73.908794208191651, 40.616872957324595 ], [ -73.909138531866503, 40.616531621729024 ], [ -73.908105604763421, 40.615669016428463 ], [ -73.907973063905189, 40.615736844061168 ], [ -73.90815663917553, 40.615601124052056 ], [ -73.909176751053977, 40.616521946980207 ], [ -73.908814562085894, 40.616890441882397 ], [ -73.908957061287225, 40.616991484819309 ], [ -73.909644061063162, 40.616575371500019 ], [ -73.909597409103441, 40.616392669799318 ], [ -73.908650246762718, 40.615484555687146 ], [ -73.907855961970597, 40.615205954146468 ], [ -73.907405828864313, 40.614753403411832 ], [ -73.907301533842869, 40.614808913007636 ], [ -73.905443787031089, 40.613014508002877 ], [ -73.904241038593369, 40.612362273218736 ], [ -73.904374107663003, 40.612225386296942 ], [ -73.90429103725161, 40.612014856128788 ], [ -73.904043325293443, 40.611998686431654 ], [ -73.904140891451718, 40.611896139383681 ], [ -73.903509807822431, 40.611406490372566 ], [ -73.903310470125035, 40.611547163863662 ], [ -73.903494074477777, 40.611389008742627 ], [ -73.90313578772971, 40.610967538157638 ], [ -73.902745046034383, 40.61093146873197 ], [ -73.902258599662815, 40.610422772599911 ], [ -73.901642118560318, 40.605763360739431 ], [ -73.905243009921023, 40.604910090324367 ], [ -73.905424400032231, 40.605540297589343 ], [ -73.905974611778589, 40.606384028704312 ], [ -73.908110012335158, 40.606273265343567 ], [ -73.908639595354302, 40.606658722047818 ], [ -73.908829198661337, 40.606564964995272 ], [ -73.908492366851078, 40.605772137123033 ], [ -73.908241104174948, 40.605322778618245 ], [ -73.908033061637624, 40.60535860211774 ], [ -73.908403615745314, 40.605243297059779 ], [ -73.908295868972118, 40.605305501489951 ], [ -73.908885744881061, 40.606536518828904 ], [ -73.909338049831504, 40.606477603024715 ], [ -73.909845283266492, 40.606168305507104 ], [ -73.909851548454697, 40.605999722177678 ], [ -73.90885691315674, 40.605060073797084 ], [ -73.908325369011152, 40.604073373919114 ], [ -73.910922700211813, 40.603505476100665 ], [ -73.913651198255423, 40.603982513837451 ], [ -73.916735565521449, 40.606814561550628 ], [ -73.916604421479519, 40.607089393444681 ], [ -73.916721157590416, 40.607624846780119 ], [ -73.916322300175267, 40.608675662668979 ], [ -73.916783944328813, 40.608773883387016 ], [ -73.916570739834256, 40.609423539545915 ], [ -73.916839811187685, 40.608760014720509 ], [ -73.916509245359308, 40.608629754090003 ], [ -73.916889645213701, 40.608710013686427 ], [ -73.916828032437593, 40.608906057366703 ], [ -73.917088385033153, 40.608820854898525 ], [ -73.917028228078465, 40.608974877413914 ], [ -73.916819644637584, 40.608931385879508 ], [ -73.916656765334722, 40.609436749970754 ], [ -73.916799531566355, 40.609494192231516 ], [ -73.916566040658282, 40.609437822677712 ], [ -73.916385851452148, 40.610088892904862 ], [ -73.916060771325888, 40.610430509362885 ], [ -73.916164751036774, 40.610515575076569 ], [ -73.914495422059829, 40.611653223664838 ], [ -73.914934187904336, 40.613958155054931 ], [ -73.913860531267645, 40.614642268066177 ], [ -73.914079859342507, 40.614888233399455 ], [ -73.914226195958079, 40.614803351891275 ], [ -73.914112061584206, 40.614901478013294 ], [ -73.914222386659901, 40.614932456703144 ], [ -73.916420990034979, 40.613569354692672 ], [ -73.915914521106856, 40.61384537631232 ], [ -73.915768072906161, 40.613540333335273 ], [ -73.915971731754041, 40.613807835366607 ], [ -73.916247689595963, 40.61362610079118 ], [ -73.915884908521221, 40.613328587196875 ], [ -73.915745852963511, 40.613384859698321 ], [ -73.915965725002678, 40.613236396468906 ], [ -73.91588941550161, 40.613309799605631 ], [ -73.916264528326067, 40.613605612704532 ], [ -73.916395867458888, 40.613446834034669 ], [ -73.915993071975024, 40.612881939344767 ], [ -73.915870865363658, 40.612910037390506 ], [ -73.916003188494813, 40.612859738591276 ], [ -73.916499121039905, 40.613520542097959 ], [ -73.916628043711569, 40.613443589265444 ], [ -73.915731819930826, 40.611830844514259 ], [ -73.916746523893053, 40.611178455468142 ], [ -73.916589364860442, 40.61109075400428 ], [ -73.916673112740312, 40.611005823250551 ], [ -73.916829208124511, 40.611118077722899 ], [ -73.918110366790131, 40.61020839405812 ], [ -73.917731855171169, 40.609782538235258 ], [ -73.917866386269637, 40.609327233800819 ], [ -73.917678707573998, 40.609662863943683 ], [ -73.917962700830714, 40.608785937120309 ], [ -73.917819727714303, 40.609304300065872 ], [ -73.918029644532609, 40.608846696737977 ], [ -73.918556661205955, 40.608498309043348 ], [ -73.918005005671404, 40.608149778515092 ], [ -73.918187286560439, 40.608024580911184 ], [ -73.91857357570953, 40.608487946287326 ], [ -73.91900737147327, 40.608267254971075 ], [ -73.918248934341136, 40.607588872927273 ], [ -73.918138148899715, 40.607645386907613 ], [ -73.918362467376383, 40.607501369418706 ], [ -73.918307945325878, 40.607610507708422 ], [ -73.919023107653118, 40.608256868199412 ], [ -73.919353984841123, 40.608042922287694 ], [ -73.918378269401543, 40.607174021935734 ], [ -73.918252690929535, 40.607229350640552 ], [ -73.918503004139211, 40.607071236026989 ], [ -73.918401593596457, 40.607154852898063 ], [ -73.919371004958634, 40.608032641242289 ], [ -73.9195220973007, 40.607738797434308 ], [ -73.915600860384487, 40.603936252151392 ], [ -73.91541600735404, 40.603950005930187 ], [ -73.914768531639453, 40.603360221672659 ], [ -73.914893581025112, 40.603288883760023 ], [ -73.91442813396344, 40.602863919562736 ], [ -73.913894348653656, 40.602703577769148 ], [ -73.913820201628283, 40.602888180050066 ], [ -73.913687185100414, 40.602850421012633 ], [ -73.913855244580375, 40.602690251507255 ], [ -73.913640756674013, 40.602524181704261 ], [ -73.913327003990247, 40.602763777769795 ], [ -73.913470727149473, 40.602911690690441 ], [ -73.913296510964173, 40.602765614678383 ], [ -73.913660893389221, 40.602468910027405 ], [ -73.91349826413736, 40.602366975062587 ], [ -73.913323083105226, 40.602611643275132 ] ] ] } } +, +{ "type": "Feature", "id": 18, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.915133319181948, 40.586269385400662 ], [ -73.913499617113288, 40.586095825613775 ], [ -73.912829769759938, 40.585751395437839 ], [ -73.914363157380365, 40.585006824693593 ], [ -73.915828900194313, 40.584525154085185 ], [ -73.917069826937279, 40.58573698211103 ], [ -73.916975987480086, 40.585888855000192 ], [ -73.915133319181948, 40.586269385400662 ] ] ] } } +, +{ "type": "Feature", "id": 19, "properties": { "communityDistrict": 318, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/318" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.919900642701606, 40.599600521587142 ], [ -73.91998332969213, 40.599535966521771 ], [ -73.919158569027303, 40.599609280918834 ], [ -73.918658876640052, 40.599472428371115 ], [ -73.918435482830461, 40.599166390831741 ], [ -73.916263931083407, 40.598161137312736 ], [ -73.91601641815879, 40.597508438313881 ], [ -73.915074203666535, 40.596494077729304 ], [ -73.914415081730411, 40.596045016532877 ], [ -73.913817651620448, 40.595042289874698 ], [ -73.913383058171888, 40.594721552778495 ], [ -73.913063400012618, 40.594072110687009 ], [ -73.913261803404268, 40.592228776245946 ], [ -73.912951226319819, 40.592054329969521 ], [ -73.914394226777929, 40.591511657998147 ], [ -73.91524478304683, 40.591587508178527 ], [ -73.916049928296374, 40.592202597528249 ], [ -73.916010469245279, 40.592428520705624 ], [ -73.916368279630845, 40.592747071997081 ], [ -73.916441129022289, 40.59312680944047 ], [ -73.917875435580356, 40.594722181524851 ], [ -73.920199545372057, 40.596183345280501 ], [ -73.920829477087906, 40.596334690682852 ], [ -73.920896820953033, 40.596612654032633 ], [ -73.921822777319036, 40.597332932872483 ], [ -73.921864236690837, 40.597798222612703 ], [ -73.92227201543723, 40.598376818436108 ], [ -73.922130493533984, 40.598662596177299 ], [ -73.920848936826744, 40.59954139732843 ], [ -73.919900642701606, 40.599600521587142 ] ] ] } } +, +{ "type": "Feature", "id": 20, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.833422307441211, 40.626781982958533 ], [ -73.834643772909445, 40.62742707942521 ], [ -73.833041008417993, 40.628261271059564 ], [ -73.833422307441211, 40.626781982958533 ] ] ] } } +, +{ "type": "Feature", "id": 21, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.833422307441211, 40.626781982958533 ], [ -73.834018881344932, 40.614381166419641 ], [ -73.834341681223037, 40.614365437197335 ], [ -73.835422886833214, 40.614610454435812 ], [ -73.8355164942013, 40.61494874641209 ], [ -73.835855726237611, 40.615208999052925 ], [ -73.836344035609827, 40.615119337103678 ], [ -73.836284435938893, 40.615232255018945 ], [ -73.836508101646686, 40.615295842085757 ], [ -73.836636263553302, 40.615145526978331 ], [ -73.837791674841498, 40.61555965034286 ], [ -73.837711541022514, 40.615704325319804 ], [ -73.837218651088662, 40.61581026439319 ], [ -73.836909891500014, 40.616150949617747 ], [ -73.836530384724426, 40.616121410087388 ], [ -73.835941625295291, 40.616545261917032 ], [ -73.834962226455815, 40.617780308811803 ], [ -73.83496699975143, 40.617962186463657 ], [ -73.835168923913756, 40.618037024293209 ], [ -73.83500397387175, 40.618173451720985 ], [ -73.834975852294562, 40.618591855212685 ], [ -73.835356507812051, 40.618713090179781 ], [ -73.835520778115281, 40.61937899354335 ], [ -73.835747065585778, 40.619611526329756 ], [ -73.835512362934878, 40.619958106145269 ], [ -73.834958150636965, 40.619839287733718 ], [ -73.83510471828653, 40.619497833016538 ], [ -73.834772060069199, 40.619844145468207 ], [ -73.8353120185363, 40.620145370808721 ], [ -73.834942912476919, 40.620434142902717 ], [ -73.834987161653117, 40.62101129988978 ], [ -73.834751173638011, 40.621262137758649 ], [ -73.834861106703826, 40.621526647054374 ], [ -73.834645138716724, 40.621997727390685 ], [ -73.83534733990389, 40.623695778843874 ], [ -73.835143558597295, 40.625487082796596 ], [ -73.833422307441211, 40.626781982958533 ] ] ] } } +, +{ "type": "Feature", "id": 22, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.834462656861888, 40.607192532943309 ], [ -73.83587601623168, 40.605636907042943 ], [ -73.836101566288491, 40.607362793823242 ], [ -73.834283426860807, 40.609185681351356 ], [ -73.834462656861888, 40.607192532943309 ] ] ] } } +, +{ "type": "Feature", "id": 23, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836237315318655, 40.631110861230788 ], [ -73.841102054474305, 40.624556436515142 ], [ -73.844457115281983, 40.629847794440863 ], [ -73.842423745767576, 40.631532548239093 ], [ -73.837651743622843, 40.632839733458596 ], [ -73.836237315318655, 40.631110861230788 ] ] ] } } +, +{ "type": "Feature", "id": 24, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.843044212967726, 40.617737696390421 ], [ -73.842835735287878, 40.616609436163593 ], [ -73.844008501359014, 40.617041366152684 ], [ -73.844541934736924, 40.614867921675142 ], [ -73.840999425396205, 40.613029126216112 ], [ -73.83825667290786, 40.613847215211237 ], [ -73.840794424083697, 40.60564326638265 ], [ -73.847148096217126, 40.603614242191107 ], [ -73.851794022152021, 40.606897168583714 ], [ -73.851240929104534, 40.607719613414879 ], [ -73.847790134058457, 40.609235385262757 ], [ -73.848167694336311, 40.612534228298287 ], [ -73.847311055362383, 40.613438460922488 ], [ -73.846395227119331, 40.616036814801703 ], [ -73.846148045138392, 40.617728420366348 ], [ -73.843044212967726, 40.617737696390421 ] ] ] } } +, +{ "type": "Feature", "id": 25, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847218348323608, 40.631965685700877 ], [ -73.848589966439235, 40.630131986806497 ], [ -73.858558363479801, 40.630458288195591 ], [ -73.856137418759047, 40.635081546014625 ], [ -73.846679148402288, 40.638731711757067 ], [ -73.843520076313055, 40.636503685327014 ], [ -73.845048592788757, 40.633174837994446 ], [ -73.847218348323608, 40.631965685700877 ] ] ] } } +, +{ "type": "Feature", "id": 26, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847343506669901, 40.629094739716251 ], [ -73.849846302333859, 40.626224490746822 ], [ -73.847278377939475, 40.626621669792719 ], [ -73.84504991718363, 40.625411061883646 ], [ -73.843580108214738, 40.623178164185298 ], [ -73.84614754008561, 40.622223608602596 ], [ -73.848477815812799, 40.622418784790526 ], [ -73.856655102577093, 40.619993649189155 ], [ -73.859476976260282, 40.618665216838188 ], [ -73.86107132148318, 40.617712079369774 ], [ -73.863649887949336, 40.617878773642374 ], [ -73.864041062764926, 40.619207596714062 ], [ -73.863439107895033, 40.618942175130613 ], [ -73.861518254852314, 40.619049218399184 ], [ -73.861470006978479, 40.621239246179449 ], [ -73.86102883449351, 40.624138986994915 ], [ -73.863478809469996, 40.623388609315775 ], [ -73.863349556702303, 40.625924908777712 ], [ -73.861376324657158, 40.625979152987796 ], [ -73.860410822708729, 40.625166912977534 ], [ -73.85861338934734, 40.627962022328013 ], [ -73.857677790282153, 40.627983758948417 ], [ -73.857863093830019, 40.628444902668264 ], [ -73.856505509775957, 40.629097353726614 ], [ -73.856134798412384, 40.628280911272874 ], [ -73.853965441911441, 40.627610943897864 ], [ -73.854369310627746, 40.628817676543868 ], [ -73.850716961085823, 40.628002992109479 ], [ -73.848468681302037, 40.629643330752288 ], [ -73.847343506669901, 40.629094739716251 ] ] ] } } +, +{ "type": "Feature", "id": 27, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.855230676318996, 40.616131453358022 ], [ -73.855303254651133, 40.61314541357283 ], [ -73.852367043848488, 40.613155989076695 ], [ -73.853768459620767, 40.614087596516825 ], [ -73.852631951127989, 40.615094081909795 ], [ -73.849739863064869, 40.615156058143342 ], [ -73.850108574894236, 40.61021219334512 ], [ -73.855155922883498, 40.606120513001521 ], [ -73.857086381732401, 40.606468242933566 ], [ -73.857040527277292, 40.608299488876 ], [ -73.859017553182824, 40.609475753925068 ], [ -73.8592485545241, 40.611254829869118 ], [ -73.858020931463358, 40.612643816910541 ], [ -73.856483608151819, 40.613190694864585 ], [ -73.858580567827772, 40.616917087221836 ], [ -73.855230676318996, 40.616131453358022 ] ] ] } } +, +{ "type": "Feature", "id": 28, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.852433358070158, 40.597333397795225 ], [ -73.853995596653377, 40.596683486347558 ], [ -73.854658631560497, 40.596578388928357 ], [ -73.854926485816705, 40.596301663368024 ], [ -73.856733643949738, 40.596075764353991 ], [ -73.860444205340698, 40.59647190559631 ], [ -73.860549779851922, 40.597063020191605 ], [ -73.862748207928433, 40.599071204919397 ], [ -73.863286632000836, 40.599810042163973 ], [ -73.863359991476116, 40.600322202771117 ], [ -73.862975062609721, 40.601018272615569 ], [ -73.861871898472387, 40.60216432581587 ], [ -73.861128142904803, 40.602550331075065 ], [ -73.860781691668635, 40.602608400256287 ], [ -73.86048884213514, 40.602339347394647 ], [ -73.859059143279765, 40.602061430568817 ], [ -73.854825958489116, 40.601867195354465 ], [ -73.854712007292875, 40.601649025325031 ], [ -73.854273872948781, 40.601430436696212 ], [ -73.853720903406895, 40.60140066517851 ], [ -73.852768382217732, 40.600948854026711 ], [ -73.851760453056073, 40.599697513812572 ], [ -73.850767480015577, 40.598839443837313 ], [ -73.851531228937787, 40.598433936220417 ], [ -73.852433358070158, 40.597333397795225 ] ] ] } } +, +{ "type": "Feature", "id": 29, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.857745989451743, 40.64534345473534 ], [ -73.857292275994581, 40.64453058000386 ], [ -73.857169782982112, 40.643678558885966 ], [ -73.858940976021444, 40.643217036205726 ], [ -73.862013010277479, 40.642887041020067 ], [ -73.862894632903661, 40.642550679683232 ], [ -73.865311737311032, 40.640751191444558 ], [ -73.866704119737776, 40.640021763495398 ], [ -73.865353899691172, 40.638951293675724 ], [ -73.865573487437715, 40.638769566216482 ], [ -73.866815282012496, 40.639963527666708 ], [ -73.867322910067358, 40.639871983952069 ], [ -73.868672828950878, 40.640925079203399 ], [ -73.86991239405414, 40.643278202994296 ], [ -73.870017082735799, 40.644071372405413 ], [ -73.870614924610607, 40.644856741886713 ], [ -73.871191729496417, 40.645305356312434 ], [ -73.872570431028919, 40.645575612359622 ], [ -73.873465582586235, 40.646816632969191 ], [ -73.872184733324943, 40.647945070028953 ], [ -73.870185652936257, 40.649323181866038 ], [ -73.86052767845527, 40.654705962076605 ], [ -73.859755336732675, 40.654104176189733 ], [ -73.858980029791553, 40.652675457835485 ], [ -73.856958702918249, 40.650587373974275 ], [ -73.857524293743538, 40.649996190231342 ], [ -73.857834693503435, 40.648302338286832 ], [ -73.858376052516888, 40.647274415312644 ], [ -73.858317963140621, 40.646330203179751 ], [ -73.857745989451743, 40.64534345473534 ] ] ] } } +, +{ "type": "Feature", "id": 30, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867061494062, 40.582087976792614 ], [ -73.868147281910026, 40.581988903219255 ], [ -73.868962922104103, 40.581693794788585 ], [ -73.870003136429162, 40.582636614815868 ], [ -73.870505979183505, 40.583341953013694 ], [ -73.870614978603442, 40.584915351061063 ], [ -73.871159226754301, 40.586873887967243 ], [ -73.869813565480257, 40.589460926788952 ], [ -73.86849671647208, 40.590089850289559 ], [ -73.86759275775205, 40.591005791690613 ], [ -73.866350520981669, 40.591892676563944 ], [ -73.864308266925434, 40.591414744326379 ], [ -73.863272735587572, 40.590908075693349 ], [ -73.862741560945892, 40.590366407100753 ], [ -73.862723484980762, 40.590074510753354 ], [ -73.861932162217428, 40.588898945374645 ], [ -73.861494011115354, 40.588542473601962 ], [ -73.861252993773746, 40.587988085921154 ], [ -73.861674479333843, 40.586144794994475 ], [ -73.86327471071958, 40.583876848531801 ], [ -73.863834428895288, 40.583651782174115 ], [ -73.864492453356903, 40.583614938178727 ], [ -73.867061494062, 40.582087976792614 ] ] ] } } +, +{ "type": "Feature", "id": 31, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870846031282611, 40.61696742645676 ], [ -73.878247793242437, 40.615444608331543 ], [ -73.874813868650435, 40.623587189183631 ], [ -73.866843841425307, 40.627829242860287 ], [ -73.864981934959204, 40.625660706040968 ], [ -73.866065331063382, 40.621493325743927 ], [ -73.866261276659415, 40.618456347018778 ], [ -73.870846031282611, 40.61696742645676 ] ] ] } } +, +{ "type": "Feature", "id": 32, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867023994751605, 40.608068178769379 ], [ -73.868743175591732, 40.607035179279215 ], [ -73.868684688267507, 40.608241158183823 ], [ -73.867775016270826, 40.608539488779094 ], [ -73.867023994751605, 40.608068178769379 ] ] ] } } +, +{ "type": "Feature", "id": 33, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867029052515065, 40.603743388854653 ], [ -73.867681942201543, 40.603070766678101 ], [ -73.868308084648135, 40.603139160140962 ], [ -73.867935053727038, 40.603961135452899 ], [ -73.867026072870331, 40.604171584008192 ], [ -73.867029052515065, 40.603743388854653 ] ] ] } } +, +{ "type": "Feature", "id": 34, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.873270312552421, 40.643903214344888 ], [ -73.87297320666589, 40.643839231064526 ], [ -73.872756357709676, 40.643248964655484 ], [ -73.871948801165544, 40.642394084538722 ], [ -73.870845034222725, 40.640556620183141 ], [ -73.870085441584493, 40.639844181365497 ], [ -73.870079584070169, 40.639211694016971 ], [ -73.869895833862472, 40.638934528919535 ], [ -73.869524351893631, 40.638645701918662 ], [ -73.867997096681293, 40.638115265209613 ], [ -73.869609721365634, 40.637085534608715 ], [ -73.869695498189529, 40.637147389615038 ], [ -73.869208461106396, 40.637465809260981 ], [ -73.86955902490304, 40.637947484327491 ], [ -73.87123896009048, 40.637322621761044 ], [ -73.872553371192211, 40.636493365069448 ], [ -73.873479391545018, 40.636285545798785 ], [ -73.87515014178723, 40.637049704310506 ], [ -73.877169097243296, 40.638658069683245 ], [ -73.878415893479939, 40.63891218920341 ], [ -73.876199330988996, 40.643257173093566 ], [ -73.874953578076429, 40.64514158369775 ], [ -73.873901277361, 40.646368367861236 ], [ -73.873185933309543, 40.645445013361588 ], [ -73.873443445211635, 40.644671914241847 ], [ -73.873270312552421, 40.643903214344888 ] ] ] } } +, +{ "type": "Feature", "id": 35, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.869527075489316, 40.598713750354435 ], [ -73.869670707114992, 40.596688563622074 ], [ -73.870208997702946, 40.596954232788583 ], [ -73.869527075489316, 40.598713750354435 ] ] ] } } +, +{ "type": "Feature", "id": 36, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.869664428925589, 40.606540123412152 ], [ -73.871093307680823, 40.604694173994694 ], [ -73.871056567120831, 40.606285088494985 ], [ -73.872455798118807, 40.608185530348528 ], [ -73.873001227247684, 40.610555458459856 ], [ -73.87180082802044, 40.610280413579517 ], [ -73.871038701117101, 40.609723582526534 ], [ -73.870760086072281, 40.608705400908789 ], [ -73.869664428925589, 40.606540123412152 ] ] ] } } +, +{ "type": "Feature", "id": 37, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870194915558855, 40.598996405902625 ], [ -73.871081418114812, 40.598901147470094 ], [ -73.870494119807162, 40.602604446205277 ], [ -73.870262805651123, 40.601681221253372 ], [ -73.870194915558855, 40.598996405902625 ] ] ] } } +, +{ "type": "Feature", "id": 38, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.900216748183468, 40.587811296362901 ], [ -73.899952340706349, 40.58804159869684 ], [ -73.900811520622284, 40.588069101722184 ], [ -73.902099538022881, 40.587356541176923 ], [ -73.902855975575463, 40.587366270666756 ], [ -73.904260373803012, 40.586912024996224 ], [ -73.905879198392384, 40.587497876025246 ], [ -73.905887184259242, 40.587877372914328 ], [ -73.906518746780563, 40.588025473338561 ], [ -73.906859725533252, 40.587882675906322 ], [ -73.907125024723115, 40.587529702962854 ], [ -73.906493512866831, 40.587344674870486 ], [ -73.906335176127399, 40.587131926250777 ], [ -73.906473778076318, 40.587020988409812 ], [ -73.908108850359724, 40.586796505301521 ], [ -73.910885541711906, 40.585947645004453 ], [ -73.911405009060545, 40.586042676438716 ], [ -73.911783401795049, 40.586311865535293 ], [ -73.910397823750145, 40.58713291762222 ], [ -73.909534712230965, 40.587878983459746 ], [ -73.908844606755878, 40.58874136481694 ], [ -73.908363621879133, 40.5896826681902 ], [ -73.908063734206834, 40.591305397344236 ], [ -73.908467298364798, 40.594658205974177 ], [ -73.908179747074485, 40.595825567882109 ], [ -73.907566254868499, 40.596990830449805 ], [ -73.907015680028906, 40.597668327163234 ], [ -73.905850073500105, 40.59864709311632 ], [ -73.904661993081348, 40.599306196646161 ], [ -73.902066250183523, 40.6003727267112 ], [ -73.900880013300039, 40.601144727461488 ], [ -73.89956904192465, 40.602412570694703 ], [ -73.898921580767379, 40.603636282503757 ], [ -73.89843337987341, 40.603591942405608 ], [ -73.897931780982319, 40.603325340514878 ], [ -73.897383379603895, 40.603417225594455 ], [ -73.895309202854506, 40.603121080155418 ], [ -73.894678671396733, 40.603317877590953 ], [ -73.893797387988499, 40.603189292915353 ], [ -73.893264473746754, 40.60347798898237 ], [ -73.892196095557594, 40.603388483616961 ], [ -73.891170965362903, 40.603596153992335 ], [ -73.89080178893353, 40.603980913420862 ], [ -73.888976277621609, 40.6045481331631 ], [ -73.8888014129423, 40.60480845810303 ], [ -73.887644371040935, 40.605277047313571 ], [ -73.884775398474858, 40.605144843965988 ], [ -73.88398042953051, 40.605566519720711 ], [ -73.882693588590215, 40.604224970148472 ], [ -73.882969455211736, 40.603785355673054 ], [ -73.882899830553868, 40.603501613044664 ], [ -73.883326736563703, 40.603053929143421 ], [ -73.883294520201119, 40.60291610455554 ], [ -73.882595045482063, 40.601755950735651 ], [ -73.882146660712607, 40.600237396524179 ], [ -73.881627807705328, 40.599446482601266 ], [ -73.881472083136941, 40.597872095451812 ], [ -73.880714457420524, 40.59639309736496 ], [ -73.880719060394654, 40.594826329723055 ], [ -73.879907132590034, 40.592047994322421 ], [ -73.879408070135582, 40.592103406892242 ], [ -73.879899028519318, 40.592020638852063 ], [ -73.879714922939314, 40.591398891829691 ], [ -73.879357292718225, 40.590843735298165 ], [ -73.878968904387406, 40.590896773117542 ], [ -73.878924119311534, 40.590712780281464 ], [ -73.879293263772993, 40.5906614318706 ], [ -73.879234398324485, 40.590266408953994 ], [ -73.878968312590857, 40.589900935048277 ], [ -73.87913901161356, 40.589373200231236 ], [ -73.878787604105142, 40.588030460661315 ], [ -73.878202002437703, 40.586867942359859 ], [ -73.876716725479966, 40.584914430201486 ], [ -73.879702317299177, 40.580135100698826 ], [ -73.881742900220999, 40.579591700764603 ], [ -73.881867244608245, 40.579454625786937 ], [ -73.881746769838941, 40.579158807212444 ], [ -73.882069582695621, 40.579073978697224 ], [ -73.882146941433064, 40.579189970817581 ], [ -73.882873429436174, 40.579128240680213 ], [ -73.884346610864995, 40.578597975718978 ], [ -73.887348246504686, 40.578075224626211 ], [ -73.888714251396777, 40.578135914938272 ], [ -73.889755335858453, 40.577788416491956 ], [ -73.891184138246615, 40.577872112051452 ], [ -73.892075829025742, 40.577473870119974 ], [ -73.894547721192808, 40.576839509809091 ], [ -73.895523809412566, 40.576769818435793 ], [ -73.896049426728894, 40.578221367947613 ], [ -73.896941231133098, 40.579456684063992 ], [ -73.897087558386517, 40.579886959270468 ], [ -73.89703676910014, 40.580703700748892 ], [ -73.896489743418925, 40.582016519227942 ], [ -73.896555911893969, 40.583005018951113 ], [ -73.897031381981918, 40.583987579865408 ], [ -73.898135425434987, 40.585185655060386 ], [ -73.89789705159707, 40.585821255728398 ], [ -73.898305062270467, 40.586841185003401 ], [ -73.898915999088047, 40.587537436061019 ], [ -73.89973341305182, 40.587165212109873 ], [ -73.898993717351743, 40.587627946686858 ], [ -73.899527840202339, 40.587965313179623 ], [ -73.899810605250266, 40.588014457055479 ], [ -73.899906044604862, 40.58779408924822 ], [ -73.899943450593142, 40.587983416525596 ], [ -73.900009325809094, 40.587818348812398 ], [ -73.900216748183468, 40.587811296362901 ] ] ] } } +, +{ "type": "Feature", "id": 39, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.884047261493848, 40.629560118546493 ], [ -73.882632484334039, 40.628274273126877 ], [ -73.883692315715024, 40.627559373913996 ], [ -73.885129540897452, 40.628827258672004 ], [ -73.885721669712623, 40.628446715725644 ], [ -73.886041171972863, 40.628697246481572 ], [ -73.887373346266926, 40.628395565263077 ], [ -73.888168922809498, 40.627975719367313 ], [ -73.890487103961519, 40.626224779064536 ], [ -73.890904714466913, 40.625016198472672 ], [ -73.8925262599371, 40.623631912941178 ], [ -73.89300558930276, 40.623356469096578 ], [ -73.893590825939299, 40.623390049802694 ], [ -73.895470239040336, 40.622570616355276 ], [ -73.895941110311568, 40.622547127108675 ], [ -73.896024503670091, 40.622746511826399 ], [ -73.896324544313771, 40.622792244270393 ], [ -73.895575737927075, 40.623830567800098 ], [ -73.894238388147627, 40.625081555366457 ], [ -73.888366302384483, 40.628916235442098 ], [ -73.886509981051617, 40.62959021423152 ], [ -73.885258892262101, 40.629371448944006 ], [ -73.884861601131192, 40.629467534443293 ], [ -73.884711168378757, 40.629681606929665 ], [ -73.884713766375938, 40.630533821156703 ], [ -73.884411945355552, 40.631196435763421 ], [ -73.880855331614271, 40.6348278444787 ], [ -73.879529940553823, 40.636735475194122 ], [ -73.878700391413375, 40.638337724746442 ], [ -73.87843722459165, 40.637948690274534 ], [ -73.878634881363553, 40.637551781294277 ], [ -73.877836750560249, 40.636902310588937 ], [ -73.877144348685974, 40.635976498007516 ], [ -73.877493816927, 40.635390423977043 ], [ -73.878205904897825, 40.634572943662576 ], [ -73.879987675038436, 40.633514883481006 ], [ -73.880376294890993, 40.632980262363269 ], [ -73.880933201882669, 40.632587061793551 ], [ -73.883221812796364, 40.631442312589925 ], [ -73.883644517282306, 40.630943312138591 ], [ -73.883755016602507, 40.630556438012576 ], [ -73.883769327963776, 40.630221761342369 ], [ -73.883454129234707, 40.629907669934823 ], [ -73.884047261493848, 40.629560118546493 ] ] ] } } +, +{ "type": "Feature", "id": 40, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896664881957193, 40.621477350157726 ], [ -73.896441232809423, 40.621394756189495 ], [ -73.896288477369623, 40.62073649997398 ], [ -73.896222433122702, 40.620840221009459 ], [ -73.895729329956083, 40.620240915258151 ], [ -73.895777403446999, 40.620019920532073 ], [ -73.895613885019301, 40.619801287150629 ], [ -73.89571934668956, 40.619529950159304 ], [ -73.895610447436113, 40.619350533385017 ], [ -73.89585293851259, 40.619144619870369 ], [ -73.896083577459663, 40.618382791386949 ], [ -73.89645347974438, 40.61807557101038 ], [ -73.896643352913415, 40.617347712142831 ], [ -73.896453811969437, 40.616769981770169 ], [ -73.896460027079542, 40.616129873890458 ], [ -73.896170524591383, 40.616001183703645 ], [ -73.896173369775823, 40.615654491230984 ], [ -73.895734451529648, 40.6148877471201 ], [ -73.89602881667841, 40.614804600051983 ], [ -73.895861128941874, 40.614518137494748 ], [ -73.89427581474105, 40.613882643248729 ], [ -73.892499262497665, 40.613792311178592 ], [ -73.891340284519615, 40.613256206397978 ], [ -73.89095414564683, 40.612834047317094 ], [ -73.891044106447879, 40.612509560997907 ], [ -73.8914143047419, 40.612125447699476 ], [ -73.892096337686567, 40.611960578803185 ], [ -73.892152844637053, 40.612073909123751 ], [ -73.892748795211659, 40.61172983013126 ], [ -73.893932400721994, 40.611536596724171 ], [ -73.893963850609026, 40.611214222580756 ], [ -73.893580855394859, 40.611165724957999 ], [ -73.893549388530431, 40.61100089763643 ], [ -73.891893891525555, 40.611534670245319 ], [ -73.890997093231917, 40.612052452416187 ], [ -73.891159507512569, 40.612177193161607 ], [ -73.891077946326192, 40.612276861868501 ], [ -73.890333906982747, 40.612011473226673 ], [ -73.889791631960961, 40.61168591567516 ], [ -73.889696317805203, 40.611453559591595 ], [ -73.889784517761953, 40.610955244005332 ], [ -73.890302113894904, 40.610317656862499 ], [ -73.891944614468116, 40.609102252148276 ], [ -73.891968508419112, 40.609377725924951 ], [ -73.892267355249174, 40.609165273147262 ], [ -73.892372108775163, 40.60872812515516 ], [ -73.89222320475713, 40.608627086858128 ], [ -73.892423272076968, 40.608558242738695 ], [ -73.892170359374816, 40.608544721357269 ], [ -73.892483241074387, 40.608153305067908 ], [ -73.892729449992501, 40.607227192316458 ], [ -73.893346214200164, 40.606743446234631 ], [ -73.894861684343596, 40.606404763206385 ], [ -73.89591344490745, 40.60584471127703 ], [ -73.898647189184786, 40.605297980361108 ], [ -73.898392534810242, 40.606778889433883 ], [ -73.897310664603424, 40.610300130960375 ], [ -73.897129439496211, 40.61464003410893 ], [ -73.89741841090644, 40.619262631799373 ], [ -73.89721859912828, 40.620771582590024 ], [ -73.89692451128272, 40.621655115945117 ], [ -73.896664881957193, 40.621477350157726 ] ] ] } } +, +{ "type": "Feature", "id": 41, "properties": { "communityDistrict": 356, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/356" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.912367902888107, 40.584526174247223 ], [ -73.912608477191839, 40.584319948275976 ], [ -73.912635813980188, 40.583950297523209 ], [ -73.912504600356684, 40.583886356213227 ], [ -73.912690149043485, 40.583875153606506 ], [ -73.91271079739758, 40.583699941669224 ], [ -73.912406606087004, 40.583424805506446 ], [ -73.913046609504633, 40.583007548495551 ], [ -73.913054394377966, 40.583186716453817 ], [ -73.914631662753095, 40.58275763490532 ], [ -73.914897419705753, 40.582872610367573 ], [ -73.91498685614684, 40.58315284032804 ], [ -73.916141994073627, 40.582857437633351 ], [ -73.916525374471448, 40.583140338215237 ], [ -73.917310745923572, 40.583218131188922 ], [ -73.91681104385313, 40.582762048557058 ], [ -73.916326405681005, 40.58281886992296 ], [ -73.91596151080897, 40.582435758340196 ], [ -73.915412909008111, 40.582364073798658 ], [ -73.91485429686405, 40.582494093108757 ], [ -73.914386676360053, 40.582383158049318 ], [ -73.914464293027933, 40.582609277816019 ], [ -73.914236925111041, 40.582597251923154 ], [ -73.914173228160024, 40.582801361662483 ], [ -73.91372600624895, 40.582728893874226 ], [ -73.91335911446285, 40.582954021014288 ], [ -73.912969051678701, 40.582972802623949 ], [ -73.912981888790512, 40.582707197183474 ], [ -73.912890427705548, 40.582997583475631 ], [ -73.912501110839386, 40.583079193149999 ], [ -73.912220523386324, 40.582963339545948 ], [ -73.912490094645676, 40.582886169676399 ], [ -73.911936070844163, 40.582967843354794 ], [ -73.911556050379659, 40.58277088589314 ], [ -73.911273753834109, 40.582263099080521 ], [ -73.911571003472915, 40.581782987640167 ], [ -73.913711299861632, 40.58162873719516 ], [ -73.914440816093659, 40.581712697227573 ], [ -73.915014204029703, 40.581539295517018 ], [ -73.91648646817093, 40.58176142729036 ], [ -73.921653837255917, 40.583124280624475 ], [ -73.923741369444727, 40.583511631151772 ], [ -73.927125318368056, 40.583579273883316 ], [ -73.929632480749021, 40.583398808625454 ], [ -73.929983417987728, 40.584233435272964 ], [ -73.927958938223824, 40.584208058662867 ], [ -73.923501978477461, 40.583762093407728 ], [ -73.919858851711794, 40.583741239089569 ], [ -73.917135902032598, 40.584077310796957 ], [ -73.91575404754839, 40.584423268116637 ], [ -73.915828900194313, 40.584525154085185 ], [ -73.914363157380365, 40.585006824693593 ], [ -73.912829769759938, 40.585751395437839 ], [ -73.912553916912557, 40.585526336006218 ], [ -73.912505989414967, 40.58470730696645 ], [ -73.912367902888107, 40.584526174247223 ] ] ] } } +, +{ "type": "Feature", "id": 42, "properties": { "communityDistrict": 401, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.906494929233617, 40.790180990344616 ], [ -73.902063278868297, 40.789494405495212 ], [ -73.900326297438198, 40.789007662825682 ], [ -73.896939935625639, 40.786624668969687 ], [ -73.896512049136135, 40.786068659025986 ], [ -73.896352513884565, 40.786179310203849 ], [ -73.896502548339797, 40.786057467844039 ], [ -73.896378559822296, 40.785908981094423 ], [ -73.896218035229182, 40.786016022871259 ], [ -73.896043766681316, 40.785799987480438 ], [ -73.896242597932613, 40.785740432991922 ], [ -73.896140150898162, 40.785607167288276 ], [ -73.895929629755244, 40.785648944313785 ], [ -73.896126326987897, 40.785593168306868 ], [ -73.895829143770584, 40.78522152738347 ], [ -73.898748976383985, 40.782781155766017 ], [ -73.90114577552113, 40.782711106090566 ], [ -73.902178153160023, 40.781780561863449 ], [ -73.902677235821074, 40.780594131742376 ], [ -73.902579296062328, 40.780289120835 ], [ -73.902343038826785, 40.780187244804544 ], [ -73.902183037067331, 40.780359366146897 ], [ -73.902035657901152, 40.781203101962909 ], [ -73.901291276189255, 40.781858419270328 ], [ -73.900349607802639, 40.782164410529965 ], [ -73.898654378440369, 40.781995420320776 ], [ -73.894377779341355, 40.784243203484188 ], [ -73.894294823567591, 40.784117567826975 ], [ -73.896063777384313, 40.783157201805174 ], [ -73.894774291196541, 40.782253592494826 ], [ -73.895357505675136, 40.781657657133408 ], [ -73.894600917745905, 40.78225315898132 ], [ -73.895344478422928, 40.78158556631125 ], [ -73.894164691208644, 40.782472046766621 ], [ -73.893060906920638, 40.781848289707114 ], [ -73.892307502036445, 40.782466041573706 ], [ -73.892749178764134, 40.782965706684728 ], [ -73.891654591898416, 40.782194781531302 ], [ -73.892241910974491, 40.78241079906109 ], [ -73.893009862463089, 40.781798023562793 ], [ -73.892278645315614, 40.781300321679552 ], [ -73.892111488546817, 40.781395179209063 ], [ -73.892246270262362, 40.781254752297876 ], [ -73.891665855943828, 40.780843263979861 ], [ -73.891591641598353, 40.780581120521788 ], [ -73.892534844987864, 40.779770519587842 ], [ -73.892540182116662, 40.779551834272063 ], [ -73.891668597689559, 40.779492539410455 ], [ -73.891195897044014, 40.778563287887067 ], [ -73.892522599270023, 40.777404628989657 ], [ -73.892253657035397, 40.777204522526318 ], [ -73.892860400757385, 40.777159074348354 ], [ -73.89423247497794, 40.778153613229705 ], [ -73.896564775519536, 40.776247024325471 ], [ -73.893242367511419, 40.77394301864571 ], [ -73.889423743511657, 40.7730459285143 ], [ -73.888725513387399, 40.768916239120159 ], [ -73.888221093892724, 40.768592289569682 ], [ -73.887706618200212, 40.766838598051493 ], [ -73.890290345895338, 40.766345197795559 ], [ -73.891835357963473, 40.766227080049347 ], [ -73.891444897473946, 40.76607465363174 ], [ -73.89349605945462, 40.765950930000749 ], [ -73.894323719553626, 40.766146471734785 ], [ -73.89506657695074, 40.764331328290297 ], [ -73.896411384035417, 40.763150082767652 ], [ -73.899677475248268, 40.758296863879046 ], [ -73.899860475258407, 40.757337462519111 ], [ -73.899693726865962, 40.756446609266966 ], [ -73.899004381288009, 40.755203849703776 ], [ -73.898114063841007, 40.754221658567843 ], [ -73.910674748970507, 40.752995076827389 ], [ -73.910354929924694, 40.752749908536124 ], [ -73.90984318646106, 40.751638679830499 ], [ -73.91314339244947, 40.750967052175753 ], [ -73.91525600931422, 40.750845626448282 ], [ -73.920539001504366, 40.749750828355175 ], [ -73.92101480198528, 40.750972609970056 ], [ -73.921612080252757, 40.751371552124191 ], [ -73.922550430677518, 40.751576479635112 ], [ -73.924633695362473, 40.751643345661869 ], [ -73.931526606555877, 40.751166158062539 ], [ -73.933939394171531, 40.750269645776555 ], [ -73.936834805464585, 40.748394551916306 ], [ -73.93739653782103, 40.748916440465884 ], [ -73.937443629422873, 40.749735692271038 ], [ -73.943835367463777, 40.752530123056758 ], [ -73.948767078346719, 40.754904275765433 ], [ -73.949112951995133, 40.754523619821526 ], [ -73.950807638183491, 40.755263680114297 ], [ -73.945705256407351, 40.761488157056597 ], [ -73.943502820327339, 40.7644990407438 ], [ -73.941311749414496, 40.766918004769607 ], [ -73.939835593491225, 40.767988005939294 ], [ -73.939365872238881, 40.768159701376995 ], [ -73.938955024533541, 40.767958186217037 ], [ -73.938203834860715, 40.76872757186392 ], [ -73.937576325834357, 40.768923994185279 ], [ -73.936814606547287, 40.768903947478385 ], [ -73.936707379230867, 40.769252609073739 ], [ -73.936403818023152, 40.769474884014642 ], [ -73.935740214326245, 40.769367229866518 ], [ -73.93489533894558, 40.770041862889499 ], [ -73.934694990670806, 40.770425337519953 ], [ -73.935147154025984, 40.770541956058381 ], [ -73.935008138722239, 40.771162394866529 ], [ -73.934904812826503, 40.771270641186653 ], [ -73.934527301094391, 40.771176775103349 ], [ -73.93448548303904, 40.771306523218421 ], [ -73.934953987149882, 40.771372943016843 ], [ -73.93448015155154, 40.771323068200687 ], [ -73.934435257431772, 40.771462362333395 ], [ -73.934826227616995, 40.771576958073254 ], [ -73.934806814102686, 40.771734138890245 ], [ -73.937466385370769, 40.772531495125172 ], [ -73.937813359695099, 40.773562894647895 ], [ -73.937654830247027, 40.775085685383281 ], [ -73.936089196990991, 40.777184322077012 ], [ -73.935854526415042, 40.77721168462417 ], [ -73.935082325582613, 40.777944233728107 ], [ -73.93474353011284, 40.77807633537698 ], [ -73.933908403140279, 40.778117129316264 ], [ -73.932774778676674, 40.77792238877791 ], [ -73.93272210453965, 40.778034767117937 ], [ -73.931788343051565, 40.777870607104816 ], [ -73.931049642989436, 40.777441897312016 ], [ -73.931073771467538, 40.777260594398122 ], [ -73.930628565541639, 40.776590902749554 ], [ -73.929880585661977, 40.776221631902224 ], [ -73.928605150233494, 40.776592675100957 ], [ -73.926318334039053, 40.77824177518491 ], [ -73.924233630075165, 40.779101193765463 ], [ -73.922956526901373, 40.780441008122203 ], [ -73.922099654994398, 40.780851874636909 ], [ -73.919090347406623, 40.783367646004429 ], [ -73.918188630053081, 40.783932966114129 ], [ -73.917171186464302, 40.784193484371407 ], [ -73.917182006796821, 40.784552063179362 ], [ -73.91683277016422, 40.785191392487349 ], [ -73.915751728945622, 40.786107578578083 ], [ -73.915260140022198, 40.786192216641986 ], [ -73.915587102058879, 40.7864296311663 ], [ -73.912599859776151, 40.789376329634351 ], [ -73.912229524263608, 40.789179279966142 ], [ -73.911951109055735, 40.789401797220982 ], [ -73.912079750905434, 40.789521814990032 ], [ -73.911774455694072, 40.789722510408495 ], [ -73.911618312921007, 40.789586154429976 ], [ -73.911249591052751, 40.78974393630314 ], [ -73.911130568735956, 40.790114076095286 ], [ -73.909858629919043, 40.790945493782388 ], [ -73.906779914208443, 40.79037510815057 ], [ -73.906494929233617, 40.790180990344616 ] ] ] } } +, +{ "type": "Feature", "id": 43, "properties": { "communityDistrict": 401, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/401" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.88885148496334, 40.798706328958744 ], [ -73.88821348851279, 40.798665304638547 ], [ -73.888392505859969, 40.798566296265406 ], [ -73.888233533136486, 40.798242884285898 ], [ -73.887559675145184, 40.798368732436401 ], [ -73.886651085245887, 40.798038196699899 ], [ -73.883757415901599, 40.795708565419787 ], [ -73.883623475110525, 40.795672726309917 ], [ -73.883655167566602, 40.795967230065109 ], [ -73.883203943037444, 40.79554499746223 ], [ -73.882096336874682, 40.795159861042997 ], [ -73.879804933770174, 40.794892251170332 ], [ -73.878374377466315, 40.794520806766528 ], [ -73.875830754856608, 40.793150117287233 ], [ -73.874493185239601, 40.792057450589184 ], [ -73.872884574456663, 40.791452108207132 ], [ -73.871750205060849, 40.790658509529656 ], [ -73.87121154209629, 40.79003612173787 ], [ -73.870808885673341, 40.787896692185612 ], [ -73.871630653734584, 40.786797905340492 ], [ -73.872788470695184, 40.786077976353127 ], [ -73.8728092001611, 40.785903109099948 ], [ -73.873514525248552, 40.785750091197244 ], [ -73.876530899553174, 40.785837496764998 ], [ -73.878306800576482, 40.785356620508438 ], [ -73.885374422110317, 40.786669126798465 ], [ -73.887701263725305, 40.786872274573241 ], [ -73.88905212443278, 40.787372559755497 ], [ -73.88961097109059, 40.788199991008838 ], [ -73.890301355651417, 40.789876726832738 ], [ -73.89079999909832, 40.79020757619849 ], [ -73.891605871154511, 40.790160700450578 ], [ -73.892181829849392, 40.79039426960896 ], [ -73.892822836770648, 40.792817081952037 ], [ -73.891792896204464, 40.79677524575802 ], [ -73.890731390283321, 40.797660899806523 ], [ -73.890874216789967, 40.797829748226327 ], [ -73.89062148332674, 40.797748923449163 ], [ -73.890795051271482, 40.798021836850438 ], [ -73.890607858242561, 40.797767507137728 ], [ -73.890169163687148, 40.797964657929953 ], [ -73.889212838980995, 40.797801204104076 ], [ -73.888352480983627, 40.798139358695764 ], [ -73.888562045875673, 40.798353403824443 ], [ -73.888392826113417, 40.798375280868441 ], [ -73.888503646971813, 40.798588443915349 ], [ -73.888996542227574, 40.798680754990379 ], [ -73.88885148496334, 40.798706328958744 ] ] ] } } +, +{ "type": "Feature", "id": 44, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.858980029791553, 40.652675457835485 ], [ -73.857319415155118, 40.651237099007837 ], [ -73.856958702918249, 40.650587373974275 ], [ -73.858980029791553, 40.652675457835485 ] ] ] } } +, +{ "type": "Feature", "id": 45, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.858980029791553, 40.652675457835485 ], [ -73.859755336732675, 40.654104176189733 ], [ -73.859410229428022, 40.653864736919751 ], [ -73.859444740270447, 40.653637548104264 ], [ -73.859045292297978, 40.653107976083902 ], [ -73.858980029791553, 40.652675457835485 ] ] ] } } +, +{ "type": "Feature", "id": 46, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.859755336732675, 40.654104176189733 ], [ -73.86098917353911, 40.655209767105148 ], [ -73.860454631708663, 40.655067107366129 ], [ -73.859792427507358, 40.65447615737699 ], [ -73.859755336732675, 40.654104176189733 ] ] ] } } +, +{ "type": "Feature", "id": 47, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.830327253370641, 40.655132805803277 ], [ -73.830266018514934, 40.655428646784728 ], [ -73.829889199220091, 40.655522822584949 ], [ -73.830327253370641, 40.655132805803277 ] ] ] } } +, +{ "type": "Feature", "id": 48, "properties": { "communityDistrict": 410, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/410" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.801155385972294, 40.671799120843829 ], [ -73.801250796429386, 40.668385945324694 ], [ -73.801530526033375, 40.666837159491756 ], [ -73.802032076901142, 40.665248024829793 ], [ -73.804320505709427, 40.665120733367026 ], [ -73.804136996254044, 40.665074269678932 ], [ -73.806101631845792, 40.66482819089773 ], [ -73.807301763182991, 40.66064934416174 ], [ -73.807707117047059, 40.66045767119212 ], [ -73.811978652677936, 40.661247346357953 ], [ -73.81165574286338, 40.662607339097477 ], [ -73.811166087138048, 40.663177473599781 ], [ -73.812816163855132, 40.662724436132628 ], [ -73.814969224858544, 40.662472668234564 ], [ -73.823052105664587, 40.663553878135765 ], [ -73.825843937952683, 40.663388471568034 ], [ -73.829487160418353, 40.663824539974208 ], [ -73.832032188073299, 40.664838606129969 ], [ -73.832118468037351, 40.665032818438817 ], [ -73.832477682801439, 40.664968212813172 ], [ -73.829913356874101, 40.659665668181994 ], [ -73.829314202188229, 40.658898656746459 ], [ -73.828599424046956, 40.657196973015992 ], [ -73.827013243975188, 40.650859899128911 ], [ -73.829869487666528, 40.650429629639156 ], [ -73.830011722887463, 40.650917353242733 ], [ -73.830994418680191, 40.65176986404429 ], [ -73.831331514692621, 40.65274755744359 ], [ -73.831292142957295, 40.653470924468422 ], [ -73.831613147936949, 40.653748953236189 ], [ -73.829014175579744, 40.656107884452439 ], [ -73.829666775861511, 40.655599040015325 ], [ -73.830150326207459, 40.655664602843395 ], [ -73.830443281379146, 40.655519472445441 ], [ -73.830602459747709, 40.654806889777511 ], [ -73.831708144775362, 40.653931174297838 ], [ -73.832054451305424, 40.654046418067587 ], [ -73.832000528707468, 40.65444081896505 ], [ -73.832216985185795, 40.654460386292961 ], [ -73.831493301030093, 40.654979820539722 ], [ -73.831161008098817, 40.655919232731982 ], [ -73.830212132269992, 40.656337192506477 ], [ -73.830033014565558, 40.656567168336082 ], [ -73.82937603410717, 40.65650633521588 ], [ -73.829236537990496, 40.656664527519006 ], [ -73.829309746953385, 40.656932457535163 ], [ -73.828967787402959, 40.657205247920054 ], [ -73.829179198005733, 40.657799778545254 ], [ -73.830130287406448, 40.65840264271597 ], [ -73.8295998696928, 40.65865680591115 ], [ -73.830149501047586, 40.659808684957298 ], [ -73.830012141849878, 40.659163163878787 ], [ -73.829695201493919, 40.658655928692433 ], [ -73.830199107209282, 40.658508969065096 ], [ -73.830244270393905, 40.65834996934813 ], [ -73.829223938368727, 40.65770651238293 ], [ -73.829094348911966, 40.657334218664261 ], [ -73.829498261079621, 40.656905907954389 ], [ -73.829502651858405, 40.65664743198424 ], [ -73.830091725696818, 40.656736357448622 ], [ -73.830505320573778, 40.656342367316157 ], [ -73.831271125655846, 40.656003271480358 ], [ -73.831553091773017, 40.655242971869569 ], [ -73.831852384792839, 40.654885038266954 ], [ -73.832181861340146, 40.654894751955723 ], [ -73.832903095245953, 40.657483771623035 ], [ -73.832781943614734, 40.657548460383488 ], [ -73.832084971008584, 40.656131028511304 ], [ -73.831943946442465, 40.656171427254378 ], [ -73.83260036370605, 40.657826591627277 ], [ -73.832014917081622, 40.658077531631555 ], [ -73.830969079966678, 40.658230294172334 ], [ -73.831284461836205, 40.6584066826304 ], [ -73.833384394725442, 40.658051859207973 ], [ -73.831270550940246, 40.650067831824579 ], [ -73.835722754121917, 40.649378229928423 ], [ -73.838785175031305, 40.661088448434775 ], [ -73.838058010146199, 40.662006063339959 ], [ -73.838736085559617, 40.662454060021062 ], [ -73.839979499756197, 40.66190427386222 ], [ -73.839725403531006, 40.660950658874675 ], [ -73.839787526129271, 40.660485998048003 ], [ -73.836813345751565, 40.649249415001961 ], [ -73.837387788457477, 40.649118149467526 ], [ -73.836330747212955, 40.645321149279546 ], [ -73.840006464643693, 40.64513606888876 ], [ -73.840583946775922, 40.6448630260453 ], [ -73.840892586851211, 40.644969036711764 ], [ -73.845996083007051, 40.644568319494461 ], [ -73.849506990841746, 40.644133765678745 ], [ -73.85183280803858, 40.645860055708248 ], [ -73.852286533930908, 40.646588210517749 ], [ -73.852416686220792, 40.64738809796718 ], [ -73.851590891323511, 40.649096478442104 ], [ -73.850905524614092, 40.649168196000353 ], [ -73.850781859960165, 40.649806092222747 ], [ -73.85058099294757, 40.649862205947777 ], [ -73.850586656335423, 40.650337980994941 ], [ -73.850377083496539, 40.6502744998756 ], [ -73.850422610127211, 40.650476994825411 ], [ -73.849257268408238, 40.651031532550874 ], [ -73.849397664063218, 40.651434878950354 ], [ -73.84992253250303, 40.651657963602808 ], [ -73.85078499726184, 40.651532851904271 ], [ -73.851491163699208, 40.651197973179862 ], [ -73.851786065770938, 40.650815639458479 ], [ -73.852509496121542, 40.650551403708079 ], [ -73.85403329487967, 40.650660311574136 ], [ -73.855492467953567, 40.651281160672092 ], [ -73.855919329685904, 40.651309261732408 ], [ -73.856276127155638, 40.651654533706605 ], [ -73.856327639638934, 40.652128334634689 ], [ -73.85671288994665, 40.652801664474126 ], [ -73.857053883475899, 40.652966700127728 ], [ -73.857723317739669, 40.652726229071639 ], [ -73.85828132383817, 40.652994872151808 ], [ -73.858520266581451, 40.653311189403738 ], [ -73.858758079915916, 40.654161627335029 ], [ -73.859154983800366, 40.654402468870231 ], [ -73.859305735544226, 40.654972383384226 ], [ -73.860840306999151, 40.656171574779137 ], [ -73.861363819503893, 40.656414754165247 ], [ -73.861360383612606, 40.656594205207035 ], [ -73.860674145860571, 40.656584591665592 ], [ -73.860616693956814, 40.656464657207714 ], [ -73.86061557040891, 40.656640542174522 ], [ -73.860208395010588, 40.657010374446457 ], [ -73.860067778195386, 40.6567798610495 ], [ -73.860055696404459, 40.65697225515617 ], [ -73.859833635214883, 40.656977063220438 ], [ -73.860074997982238, 40.657048611079986 ], [ -73.859810276096766, 40.657322411493674 ], [ -73.859938973455343, 40.657720177151162 ], [ -73.859572048222887, 40.658035349762315 ], [ -73.859635586693756, 40.658457772056451 ], [ -73.860258478900818, 40.658629711739039 ], [ -73.860232363275529, 40.658897130559993 ], [ -73.860451829914268, 40.658796719827869 ], [ -73.86051208601954, 40.658497671521033 ], [ -73.860980775124304, 40.658381303196599 ], [ -73.860857730767876, 40.658719926940364 ], [ -73.860490004522958, 40.658994143157507 ], [ -73.860612073772174, 40.659326534605924 ], [ -73.861249434390288, 40.658720910027128 ], [ -73.861272803153568, 40.658265167666364 ], [ -73.860958920979996, 40.658060942981727 ], [ -73.860112216392679, 40.658326815089417 ], [ -73.859768396548986, 40.658281936346533 ], [ -73.86021363811534, 40.657913469551566 ], [ -73.860575516926374, 40.657836051942695 ], [ -73.860407142018786, 40.657761341568133 ], [ -73.860341646388733, 40.657247905697162 ], [ -73.860623724034753, 40.657205456083666 ], [ -73.86087597606182, 40.656908162030184 ], [ -73.861613711636181, 40.65699651025276 ], [ -73.861703012764409, 40.658024889422251 ], [ -73.86269778299534, 40.657618309012356 ], [ -73.863170833405064, 40.658276512446257 ], [ -73.860359782060087, 40.659645829012177 ], [ -73.857615372515767, 40.6601189331546 ], [ -73.858429508573025, 40.663453360931832 ], [ -73.855684612211434, 40.663867492372923 ], [ -73.857633231743705, 40.671656194038832 ], [ -73.860389379181342, 40.671268775444425 ], [ -73.862345805351268, 40.679164785644275 ], [ -73.853923891622188, 40.679686155801697 ], [ -73.846714643074961, 40.681858493694463 ], [ -73.810632983108889, 40.6919473825767 ], [ -73.807336218687112, 40.686125446991142 ], [ -73.803230276536013, 40.677681057005721 ], [ -73.801428368462453, 40.673666833941454 ], [ -73.801155385972294, 40.671799120843829 ] ] ] } } +, +{ "type": "Feature", "id": 49, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.805097201750854, 40.596755816302348 ], [ -73.8051340625276, 40.596607588970514 ], [ -73.805192434942171, 40.597190375995567 ], [ -73.805097201750854, 40.596755816302348 ] ] ] } } +, +{ "type": "Feature", "id": 50, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.804991988551109, 40.596752358877495 ], [ -73.804875652149164, 40.596748535931631 ], [ -73.805111854799122, 40.597151047998082 ], [ -73.804711122261523, 40.597674663184449 ], [ -73.803933389224028, 40.597943498583902 ], [ -73.802979433257462, 40.598844304552955 ], [ -73.801670926801776, 40.598896309269414 ], [ -73.800948678628203, 40.599151664619853 ], [ -73.800915006239649, 40.599390761135751 ], [ -73.800776547076225, 40.599162360478289 ], [ -73.800495263719782, 40.599204368068541 ], [ -73.800473792277955, 40.599331559123712 ], [ -73.800451317956899, 40.599182567873989 ], [ -73.799160400091949, 40.599258137594539 ], [ -73.79914327503613, 40.599418798862885 ], [ -73.799140241966754, 40.599258494215867 ], [ -73.798430786553936, 40.599173714084209 ], [ -73.795546376870618, 40.599496762150217 ], [ -73.794573615957191, 40.599419024301199 ], [ -73.793875581522741, 40.5995994554969 ], [ -73.793309073876785, 40.599968465598728 ], [ -73.792332564495126, 40.599954391425754 ], [ -73.790254616867159, 40.601241996459954 ], [ -73.787857555675942, 40.603111171928859 ], [ -73.786353328118238, 40.603194659038429 ], [ -73.786178840413839, 40.60303206237181 ], [ -73.787162418552043, 40.602326431574852 ], [ -73.78792994192969, 40.600995302045931 ], [ -73.789534621966183, 40.599971814927841 ], [ -73.790340066169207, 40.599191676361279 ], [ -73.790432337711863, 40.598649089022807 ], [ -73.791070793707505, 40.597198362371721 ], [ -73.790931898041805, 40.59598317572511 ], [ -73.791025366527634, 40.595527157215884 ], [ -73.790838268301428, 40.594996876518053 ], [ -73.790152637147472, 40.594768202273954 ], [ -73.790316254762288, 40.596048198939393 ], [ -73.790424814722712, 40.596053932153865 ], [ -73.79017830067248, 40.596071319705622 ], [ -73.790281511773571, 40.596051416106185 ], [ -73.790131194916199, 40.59482287479846 ], [ -73.789739018898231, 40.594743668554557 ], [ -73.789873606483951, 40.596204443784551 ], [ -73.78999909505022, 40.596208943504472 ], [ -73.789698723608154, 40.596228039911331 ], [ -73.789841102328836, 40.596206946879811 ], [ -73.789673896758288, 40.594860475900141 ], [ -73.789402427099745, 40.594949785523696 ], [ -73.789113066673167, 40.595474756332102 ], [ -73.789268580962712, 40.596453723748787 ], [ -73.789068291215017, 40.598019927382602 ], [ -73.787102312265887, 40.599443300892389 ], [ -73.786624094636437, 40.600018633178273 ], [ -73.785971098321568, 40.600316491815896 ], [ -73.785793788135976, 40.600568927993244 ], [ -73.786143586986356, 40.60064861875167 ], [ -73.785780066178773, 40.600593261894268 ], [ -73.785642052732683, 40.600797194520837 ], [ -73.785983591177867, 40.600918237941904 ], [ -73.785632764392275, 40.600816383629677 ], [ -73.785393580870348, 40.601518021708451 ], [ -73.784482332363382, 40.601800098584157 ], [ -73.783505609053122, 40.60256343874272 ], [ -73.78312802406073, 40.603760991847885 ], [ -73.783481382715877, 40.604047835811038 ], [ -73.783947649711962, 40.604824425116817 ], [ -73.783666962925693, 40.60532443592912 ], [ -73.779401439223918, 40.609226260682348 ], [ -73.77856806939954, 40.609643663428983 ], [ -73.77727898274847, 40.60984911309189 ], [ -73.776265383302572, 40.609649037889106 ], [ -73.775351647457171, 40.6097374069643 ], [ -73.774222344113966, 40.608893231635228 ], [ -73.774222693634329, 40.60860112864026 ], [ -73.774814410089164, 40.608399563112322 ], [ -73.774217376874077, 40.607636638970106 ], [ -73.774325414813433, 40.607456943493247 ], [ -73.774602945990722, 40.607417648882524 ], [ -73.774849519697497, 40.60785731537004 ], [ -73.774590094698425, 40.607297656090211 ], [ -73.774584476756345, 40.606525967320714 ], [ -73.775187113272779, 40.604500256319753 ], [ -73.774687989646367, 40.604324648389188 ], [ -73.774913738996631, 40.604112513232366 ], [ -73.775376083168453, 40.604157308867805 ], [ -73.77588140582175, 40.603471681753412 ], [ -73.776053918270051, 40.60275289440353 ], [ -73.775588955005418, 40.603040299589189 ], [ -73.775688143627008, 40.602814740670482 ], [ -73.776057935551094, 40.602513317422172 ], [ -73.776479242549897, 40.602448176643371 ], [ -73.776625458024839, 40.602207778288083 ], [ -73.776489886229839, 40.602171725685167 ], [ -73.777803023878405, 40.600966552222047 ], [ -73.778083277655284, 40.60079984370023 ], [ -73.778368729431392, 40.600838780122686 ], [ -73.778075652814223, 40.600700774367887 ], [ -73.778180869783085, 40.600385541085771 ], [ -73.780109000851084, 40.600727429033746 ], [ -73.780810832315808, 40.599947754024384 ], [ -73.781906810076435, 40.599114165342222 ], [ -73.781936013570103, 40.598531144243289 ], [ -73.781358744407939, 40.597969371289565 ], [ -73.781329739981246, 40.597753037446907 ], [ -73.780183344260735, 40.597212569703231 ], [ -73.780054936955622, 40.596861344908795 ], [ -73.779718402451806, 40.597352548285215 ], [ -73.779043644052436, 40.597649399323501 ], [ -73.777421748107642, 40.598812404361318 ], [ -73.777198506293203, 40.599576959253007 ], [ -73.776001638509683, 40.601394323904813 ], [ -73.775600496330185, 40.601648453143056 ], [ -73.774972073537811, 40.601744487091899 ], [ -73.774742127256189, 40.600963426437694 ], [ -73.774481340306949, 40.600987703852027 ], [ -73.77474724721813, 40.600949790343257 ], [ -73.774640336297324, 40.600837656349505 ], [ -73.774742850289243, 40.600743783092135 ], [ -73.774119950970515, 40.599881381289961 ], [ -73.774223385237789, 40.599005217739162 ], [ -73.773744328390791, 40.598670153981473 ], [ -73.77358545236558, 40.598120473145563 ], [ -73.773005924908361, 40.597867499657163 ], [ -73.771676253985262, 40.597985021223622 ], [ -73.771109414685327, 40.598307584199212 ], [ -73.770372914473057, 40.598091768117563 ], [ -73.769477251095211, 40.598257769449894 ], [ -73.768122854422586, 40.59782435947605 ], [ -73.767935922888, 40.598139706381495 ], [ -73.768265494831368, 40.598332444290641 ], [ -73.769700719870357, 40.598640130523684 ], [ -73.770336348164733, 40.598984223332735 ], [ -73.770930865400771, 40.598857599126355 ], [ -73.771160524363367, 40.599422452073753 ], [ -73.771111034458613, 40.600546028547377 ], [ -73.770737333848331, 40.601535502254812 ], [ -73.770839175946023, 40.601810916097534 ], [ -73.770743833186785, 40.601945318621048 ], [ -73.77061758814915, 40.601868730479012 ], [ -73.77018588340033, 40.602748823326387 ], [ -73.770399644079518, 40.602944060431383 ], [ -73.770162237800221, 40.603090072501153 ], [ -73.770468295182653, 40.603919326498534 ], [ -73.770565214128652, 40.604840409258301 ], [ -73.770009324522022, 40.605336715807816 ], [ -73.770063423237488, 40.605656345789498 ], [ -73.76983622747764, 40.606278008427658 ], [ -73.770015200373052, 40.607215570508998 ], [ -73.769772268766403, 40.607537749989511 ], [ -73.76977547704135, 40.607933144519848 ], [ -73.769218982221446, 40.608449891166863 ], [ -73.76893999327109, 40.609130768376403 ], [ -73.769000780349543, 40.609391552984825 ], [ -73.769179765608271, 40.609700873756218 ], [ -73.769818183886201, 40.610087875416802 ], [ -73.771251018138898, 40.610389836095294 ], [ -73.771846622792879, 40.610824244209553 ], [ -73.772234503004654, 40.611501676751587 ], [ -73.773403890789879, 40.611090448779038 ], [ -73.772962686865483, 40.61015276294571 ], [ -73.773767677531254, 40.611256222475461 ], [ -73.773938277539102, 40.612120151753672 ], [ -73.774171846797032, 40.611829669946303 ], [ -73.773837381283514, 40.612907640396337 ], [ -73.773385979719876, 40.613675066322834 ], [ -73.77296761790663, 40.613559360790745 ], [ -73.771741567079445, 40.613961050127415 ], [ -73.769330851312233, 40.613974525075875 ], [ -73.768354650177827, 40.614227148473475 ], [ -73.766691397711782, 40.614254655450026 ], [ -73.765164008292018, 40.613754202686593 ], [ -73.76501580220102, 40.613475187493172 ], [ -73.765154294791216, 40.613085895213516 ], [ -73.765117372500185, 40.612482972482681 ], [ -73.764977724859378, 40.612331642578326 ], [ -73.765059617451229, 40.612035230611767 ], [ -73.762299440904286, 40.611359206045904 ], [ -73.761724137888805, 40.61184724275769 ], [ -73.760236357569767, 40.610820864950277 ], [ -73.761782429606043, 40.609151670054459 ], [ -73.761550519058929, 40.609031365800782 ], [ -73.7599844704079, 40.610879377848072 ], [ -73.759491198333848, 40.610815795910852 ], [ -73.759720990736824, 40.610151597645192 ], [ -73.759280121246817, 40.6103686383845 ], [ -73.756550624785874, 40.61015521257152 ], [ -73.755855316302629, 40.610317659811784 ], [ -73.75560837015594, 40.610077919637384 ], [ -73.755874129121437, 40.610385185054774 ], [ -73.755563690841555, 40.610118427946269 ], [ -73.754995010860256, 40.610132208028936 ], [ -73.754732195725722, 40.610405241678407 ], [ -73.753458361310578, 40.610519862404715 ], [ -73.7500877107679, 40.611640553827151 ], [ -73.74821585882674, 40.612011077589457 ], [ -73.747993073172537, 40.612310157967791 ], [ -73.747614189291866, 40.61199801088484 ], [ -73.747215678851958, 40.612178838650685 ], [ -73.746855390243553, 40.611574100059599 ], [ -73.745761501786774, 40.611991654748707 ], [ -73.74386981848707, 40.608892484481096 ], [ -73.743072479393803, 40.607886097386661 ], [ -73.743324933339352, 40.607536869922171 ], [ -73.743146552147536, 40.607259865593235 ], [ -73.740291389763399, 40.604598231778397 ], [ -73.739225125630739, 40.604142366826849 ], [ -73.738151431246237, 40.602710440166767 ], [ -73.737997026891563, 40.601601233656858 ], [ -73.738308718854157, 40.598208373679491 ], [ -73.738089252424317, 40.597688297089732 ], [ -73.738648719086015, 40.597344265996696 ], [ -73.738489004667414, 40.59735889424168 ], [ -73.738719681428336, 40.596948817327913 ], [ -73.738584667376315, 40.597253194615618 ], [ -73.738787975276821, 40.596975355326471 ], [ -73.739380236726618, 40.597239072903385 ], [ -73.739927472153823, 40.597054949536492 ], [ -73.740117735878343, 40.596727747135958 ], [ -73.739798757236002, 40.596428603789164 ], [ -73.740097142626709, 40.596208647291704 ], [ -73.740391538349769, 40.596182195673151 ], [ -73.740360127495279, 40.596774995540095 ], [ -73.740643843108202, 40.597001198658269 ], [ -73.741083153429429, 40.59682306657745 ], [ -73.741573803524233, 40.596903946084851 ], [ -73.741830835398147, 40.596695551418819 ], [ -73.741512392350501, 40.596528612515918 ], [ -73.740520598247656, 40.596571855970808 ], [ -73.740547013623981, 40.59611968571793 ], [ -73.739927930509324, 40.596061587314807 ], [ -73.739579049975021, 40.596376337848689 ], [ -73.73949353556857, 40.5970071106861 ], [ -73.73912307710917, 40.596784519793061 ], [ -73.738584314032565, 40.596860947776136 ], [ -73.738122208752728, 40.59738610213892 ], [ -73.738037491250012, 40.595913151336106 ], [ -73.737636793795659, 40.594415399676095 ], [ -73.738170245434347, 40.594539628279222 ], [ -73.738487439717758, 40.594352263490826 ], [ -73.738771531460458, 40.594525207029328 ], [ -73.738816625826047, 40.594359763952333 ], [ -73.738786450446568, 40.594529565561693 ], [ -73.739072124175294, 40.594596476534612 ], [ -73.739294306281224, 40.594453005560659 ], [ -73.739564653313906, 40.594561578577427 ], [ -73.73958763363882, 40.594426524607414 ], [ -73.739619651565164, 40.594580041877308 ], [ -73.739958015923634, 40.59450076878705 ], [ -73.739986787493251, 40.594632859899633 ], [ -73.740135803645757, 40.594511572738874 ], [ -73.740628319981909, 40.594721652270586 ], [ -73.740901705963793, 40.594488248750601 ], [ -73.740895202749371, 40.594611579191884 ], [ -73.741318206253254, 40.594792592881127 ], [ -73.741620916923381, 40.594786493135167 ], [ -73.741697663002824, 40.594641744052772 ], [ -73.74222603163004, 40.594905883325737 ], [ -73.742429263343823, 40.594868517806461 ], [ -73.742387425848761, 40.594729256060141 ], [ -73.743349516691524, 40.594795148277733 ], [ -73.743484422820444, 40.594590516990564 ], [ -73.744624997931837, 40.594661774797856 ], [ -73.746629178791196, 40.594301493560657 ], [ -73.748951162481305, 40.593412875624963 ], [ -73.750226047963494, 40.592710867784824 ], [ -73.751557564859723, 40.59141760314229 ], [ -73.753542419444358, 40.590945287751623 ], [ -73.755954636230655, 40.590874198049775 ], [ -73.757891898618723, 40.591356988277667 ], [ -73.761343116783237, 40.591726633850392 ], [ -73.762952755721358, 40.591611177431027 ], [ -73.767969730065033, 40.590729482964342 ], [ -73.76872708525147, 40.590870068955567 ], [ -73.7708802041345, 40.590553839080009 ], [ -73.775930428218601, 40.590181408327943 ], [ -73.775836886611941, 40.590324598758976 ], [ -73.776662435467372, 40.590066332167815 ], [ -73.777613520768597, 40.590053471208655 ], [ -73.779184954220341, 40.589593108896565 ], [ -73.780430361018958, 40.589596621429031 ], [ -73.784533110484915, 40.588478055217863 ], [ -73.787683707157456, 40.587922937712015 ], [ -73.78878406873126, 40.587450288867238 ], [ -73.789450655917847, 40.587623242907014 ], [ -73.794344605232823, 40.586756677983445 ], [ -73.796020465766929, 40.586319047176985 ], [ -73.796701744175493, 40.586367271524558 ], [ -73.798466405460132, 40.585843680652943 ], [ -73.799491749932074, 40.585814180978304 ], [ -73.800915112417471, 40.585407060934237 ], [ -73.801840184001662, 40.585351710846219 ], [ -73.803302295477792, 40.584886156490391 ], [ -73.803775571031679, 40.585014696486219 ], [ -73.80562313030147, 40.584511183784208 ], [ -73.806517542775126, 40.584464685756608 ], [ -73.807835029654626, 40.584014950352874 ], [ -73.808870342033572, 40.584023970841656 ], [ -73.809514919591194, 40.58382343175392 ], [ -73.813524487275586, 40.583473149046696 ], [ -73.8192881203056, 40.581766974354117 ], [ -73.822227513099222, 40.58111503216292 ], [ -73.827173788849834, 40.579444512955192 ], [ -73.831460933314546, 40.578419437622735 ], [ -73.83386923172182, 40.577649897608943 ], [ -73.837784912390674, 40.575923683474464 ], [ -73.843783591410968, 40.573887452042634 ], [ -73.852202023996654, 40.570745103001478 ], [ -73.853965565770864, 40.570312548872685 ], [ -73.857134221297514, 40.569126875589227 ], [ -73.86022276711229, 40.567921097324401 ], [ -73.862552860950544, 40.566810012301602 ], [ -73.862868922773117, 40.566830571546319 ], [ -73.863169302136242, 40.567739271748323 ], [ -73.864309695511167, 40.567391616473806 ], [ -73.865334325933745, 40.568784783429223 ], [ -73.864466329331336, 40.569141785522433 ], [ -73.866628120238744, 40.573057648924618 ], [ -73.863611329523778, 40.573823057018551 ], [ -73.863406293712146, 40.574114331255878 ], [ -73.863992097390479, 40.575060722125805 ], [ -73.862803619928798, 40.575933034765349 ], [ -73.862883018909045, 40.576059761254719 ], [ -73.853055495851152, 40.581255267855006 ], [ -73.850443851491946, 40.582130243581354 ], [ -73.848610535384182, 40.582188141641041 ], [ -73.845210168651917, 40.581579826263678 ], [ -73.839295979822523, 40.581863544472959 ], [ -73.838971793019255, 40.582484991432921 ], [ -73.838553065170373, 40.582791714300129 ], [ -73.835840800314998, 40.582878939361152 ], [ -73.828524712614694, 40.584854219377185 ], [ -73.828036924068158, 40.586052538385907 ], [ -73.824764278750962, 40.587039215772236 ], [ -73.824813339071213, 40.587151322035965 ], [ -73.824743523558126, 40.587045141974613 ], [ -73.822936885655992, 40.587491649726466 ], [ -73.821459719917726, 40.586769924921221 ], [ -73.817415861474373, 40.588917014109661 ], [ -73.817638004505142, 40.589285799485154 ], [ -73.816741975823589, 40.589319169845879 ], [ -73.815248323752286, 40.589989055790241 ], [ -73.814747846724543, 40.590588126172214 ], [ -73.814058031641721, 40.590624239258318 ], [ -73.813409833446386, 40.59091782311171 ], [ -73.813256715664281, 40.591046302490938 ], [ -73.81358856612637, 40.591697685823519 ], [ -73.813234744325968, 40.591070740017607 ], [ -73.813129917356505, 40.591246626342773 ], [ -73.812243382913024, 40.59132582310334 ], [ -73.811703448363474, 40.591593746637905 ], [ -73.811513031827104, 40.591783490316779 ], [ -73.811494235858689, 40.592901326696804 ], [ -73.811325545678187, 40.591746495140569 ], [ -73.811007666510378, 40.591768297260813 ], [ -73.810817918746423, 40.592090268695991 ], [ -73.810950189527318, 40.592503059144519 ], [ -73.811385930861022, 40.592442318453436 ], [ -73.811407512271629, 40.592871257238656 ], [ -73.811072870210452, 40.593022330572055 ], [ -73.811373839358097, 40.592861101607589 ], [ -73.81137331289645, 40.592703054284186 ], [ -73.810749749133308, 40.592792113552541 ], [ -73.811373473214886, 40.592684499634153 ], [ -73.811358293157838, 40.592462584044938 ], [ -73.810939658945998, 40.592546847806624 ], [ -73.810805379044211, 40.592092095735104 ], [ -73.809911300159968, 40.59225371768246 ], [ -73.810061845699863, 40.593077610898355 ], [ -73.809903403660741, 40.593080776052787 ], [ -73.809731383937134, 40.592404186053301 ], [ -73.809807497824437, 40.59271040950582 ], [ -73.809709824363892, 40.592439608339404 ], [ -73.809505568667603, 40.592775197356815 ], [ -73.809611963788569, 40.593576984263677 ], [ -73.806874567465215, 40.592264953369614 ], [ -73.806028073939217, 40.592009309003394 ], [ -73.805727703930117, 40.590758738264448 ], [ -73.805822015347431, 40.591864571006582 ], [ -73.804339542428764, 40.591310584081207 ], [ -73.804165691030391, 40.591854709832766 ], [ -73.807818704742004, 40.593365437837399 ], [ -73.808046886839676, 40.59365031287615 ], [ -73.807811428310686, 40.593907379875425 ], [ -73.807976875983016, 40.594161415948129 ], [ -73.807112539520276, 40.595284075424281 ], [ -73.806041498073853, 40.595554555213525 ], [ -73.80485298477258, 40.595056336043314 ], [ -73.804114598887352, 40.594319170452238 ], [ -73.804008833519234, 40.593767724911018 ], [ -73.804125679493424, 40.593513805102035 ], [ -73.803809022312024, 40.592891163925337 ], [ -73.803617394554379, 40.592941337743781 ], [ -73.803031539993597, 40.592577189489987 ], [ -73.802438463562396, 40.592640063836221 ], [ -73.802509650872821, 40.593948128041497 ], [ -73.803135034407248, 40.593757943071175 ], [ -73.803180821249597, 40.59394537812981 ], [ -73.802513042829872, 40.593966851792352 ], [ -73.802568375351385, 40.59427226699303 ], [ -73.80324253171004, 40.594087239865395 ], [ -73.803287938930197, 40.594282115891687 ], [ -73.80260442851133, 40.594287751039829 ], [ -73.802709839250042, 40.594306433033239 ], [ -73.802345139115943, 40.59449597525802 ], [ -73.803185744044143, 40.5946630028416 ], [ -73.803440170414518, 40.594434209176832 ], [ -73.803196753649559, 40.594678199883226 ], [ -73.803364588713151, 40.594855366109407 ], [ -73.803200106891296, 40.59487284642524 ], [ -73.803384723494716, 40.594949579585069 ], [ -73.803207044072423, 40.59500968361705 ], [ -73.803390972619724, 40.595006512492979 ], [ -73.803214942512568, 40.595145648450575 ], [ -73.803895069408043, 40.594990875366086 ], [ -73.803314537952971, 40.595179560935421 ], [ -73.803684687616553, 40.59519779018494 ], [ -73.804991988551109, 40.596752358877495 ] ] ] } } +, +{ "type": "Feature", "id": 51, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.739558565710183, 40.596980387153806 ], [ -73.739883060073041, 40.596770974189518 ], [ -73.739648533722729, 40.596567152060764 ], [ -73.739747240887922, 40.596542604836564 ], [ -73.739909946901903, 40.596772744520273 ], [ -73.739558565710183, 40.596980387153806 ] ] ] } } +, +{ "type": "Feature", "id": 52, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.790549485544929, 40.595201020105094 ], [ -73.790806262076217, 40.596093395885447 ], [ -73.790594429740352, 40.596108384772755 ], [ -73.790549485544929, 40.595201020105094 ] ] ] } } +, +{ "type": "Feature", "id": 53, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820758925048892, 40.61523267901503 ], [ -73.816526811785394, 40.614947009154939 ], [ -73.816547527966193, 40.614470136259079 ], [ -73.816233666846472, 40.614231046198611 ], [ -73.814718126278621, 40.614496088551924 ], [ -73.814440323452345, 40.614749038670666 ], [ -73.814080624329307, 40.614558409236245 ], [ -73.814164498977007, 40.614291069640778 ], [ -73.814682626764906, 40.613975157855023 ], [ -73.814867259721311, 40.614010649752792 ], [ -73.81485722289095, 40.614299226214804 ], [ -73.815495266375777, 40.614039815133161 ], [ -73.814795632553185, 40.61319402998128 ], [ -73.815036384946268, 40.612976213749398 ], [ -73.815239565604784, 40.612983579258277 ], [ -73.815469483171881, 40.613342929008397 ], [ -73.816156266324995, 40.612942115509753 ], [ -73.815598588452843, 40.610672516330631 ], [ -73.815403662557813, 40.610384802016526 ], [ -73.814502615667081, 40.611058473505409 ], [ -73.814498768277858, 40.610735453659274 ], [ -73.814968306882463, 40.610420655016895 ], [ -73.815205675961337, 40.609896894749745 ], [ -73.814770737924761, 40.608851028780172 ], [ -73.814865399224217, 40.608020598483087 ], [ -73.815061298787299, 40.607317030279894 ], [ -73.815741740638231, 40.606465245235491 ], [ -73.815460664833509, 40.60642813700737 ], [ -73.815528166563425, 40.606163069944003 ], [ -73.815525367236631, 40.606407380281972 ], [ -73.815959620025453, 40.606262483353412 ], [ -73.815888297784625, 40.605929034359178 ], [ -73.816425299890341, 40.605224123574907 ], [ -73.817391921065138, 40.605158124286795 ], [ -73.817253705935258, 40.603940324189246 ], [ -73.817720327046359, 40.602224999742049 ], [ -73.818311211203877, 40.601339711710835 ], [ -73.818490661207505, 40.599389559479164 ], [ -73.81928142201636, 40.597529610876578 ], [ -73.819735918315686, 40.597516843269069 ], [ -73.820384063784601, 40.596568761663583 ], [ -73.820533858165987, 40.596136840072852 ], [ -73.820446056590313, 40.595748414779912 ], [ -73.82071206778113, 40.595170514924312 ], [ -73.821357582862362, 40.594691009243327 ], [ -73.824802511925313, 40.595083161352946 ], [ -73.825899747351542, 40.594861457270653 ], [ -73.829136261177098, 40.594806869296526 ], [ -73.830482059614525, 40.594585938270122 ], [ -73.832412096649904, 40.59461849262108 ], [ -73.834655995149873, 40.595168458652232 ], [ -73.834846828131802, 40.595543436106873 ], [ -73.834396127032733, 40.59646420544253 ], [ -73.833517482123568, 40.596983091348413 ], [ -73.833360877221878, 40.59723551139863 ], [ -73.832150952054278, 40.597679598291968 ], [ -73.83239364453685, 40.597803353382325 ], [ -73.831541059401516, 40.597951026055036 ], [ -73.830628521790189, 40.597433425724198 ], [ -73.830389225482065, 40.597734019585268 ], [ -73.829483418232513, 40.598133941902582 ], [ -73.829097774223385, 40.597763455220644 ], [ -73.828061596754267, 40.597680402648805 ], [ -73.827846915054309, 40.597999837760881 ], [ -73.827220929986353, 40.598331194068038 ], [ -73.827103145590627, 40.598688685509686 ], [ -73.826895272580117, 40.598705251807601 ], [ -73.825979859898936, 40.599472066988668 ], [ -73.82584854764572, 40.599440239578854 ], [ -73.825906295311071, 40.599109957895514 ], [ -73.825567907404334, 40.598548147853805 ], [ -73.825076108345229, 40.598214643589344 ], [ -73.82465420663263, 40.598149246703848 ], [ -73.824317337071818, 40.598313104974878 ], [ -73.823958710582957, 40.598876896677218 ], [ -73.824522712764107, 40.598951263990536 ], [ -73.824770890584247, 40.598391843875142 ], [ -73.824526248585457, 40.59912902722327 ], [ -73.824390043150629, 40.599098113026429 ], [ -73.824517336554592, 40.598965808733041 ], [ -73.824077913550155, 40.598909203832996 ], [ -73.824218704432923, 40.599074487919353 ], [ -73.824165698886688, 40.599299379667059 ], [ -73.823766123471813, 40.600040070821855 ], [ -73.823117409747809, 40.600079492525346 ], [ -73.823031951668838, 40.599930516884278 ], [ -73.822927578112072, 40.600061428163038 ], [ -73.823004365507828, 40.599925619397304 ], [ -73.821944417597919, 40.599801155978447 ], [ -73.821469298338329, 40.599993722267676 ], [ -73.822343622818678, 40.600225661407706 ], [ -73.824436438284138, 40.600344983350595 ], [ -73.824452180748864, 40.600796962689479 ], [ -73.823989001242523, 40.601001986624425 ], [ -73.823511302942592, 40.601545771160659 ], [ -73.823577998264938, 40.602271895751457 ], [ -73.823049063577642, 40.602344916155658 ], [ -73.822944847404813, 40.602582909467806 ], [ -73.822765634779145, 40.60420260456651 ], [ -73.82290283003627, 40.60468726854139 ], [ -73.822467467684234, 40.605524982823674 ], [ -73.822904633777881, 40.605851276424389 ], [ -73.822360008762317, 40.606469260660056 ], [ -73.82211377846275, 40.606471956171156 ], [ -73.821264703428525, 40.60700285041046 ], [ -73.820904561260789, 40.607781246218202 ], [ -73.820032434977733, 40.608923655757238 ], [ -73.819982279473635, 40.609560385707859 ], [ -73.819617953621545, 40.610479041064274 ], [ -73.820518879430779, 40.611949948725474 ], [ -73.820434036152335, 40.612066786503547 ], [ -73.820878417901426, 40.612257345820069 ], [ -73.821284210530294, 40.611096928280915 ], [ -73.821062285333539, 40.610763848370802 ], [ -73.820626981522594, 40.610529995216034 ], [ -73.820487006215586, 40.610224379293498 ], [ -73.820858785058661, 40.609231058271199 ], [ -73.821146370184891, 40.609062411070283 ], [ -73.821382681256324, 40.608545544946793 ], [ -73.821614600891323, 40.608480319227709 ], [ -73.821825313399287, 40.608963997185924 ], [ -73.821667978390025, 40.609232316607368 ], [ -73.821862052414858, 40.609869212065874 ], [ -73.822330798471327, 40.610287703255707 ], [ -73.822892333485754, 40.610337022194045 ], [ -73.823346542136051, 40.611154638919864 ], [ -73.823824685953213, 40.611498664910194 ], [ -73.823798479832121, 40.612129421391451 ], [ -73.822349611034923, 40.614260025694712 ], [ -73.821639219398293, 40.614870614894677 ], [ -73.820758925048892, 40.61523267901503 ] ] ] } } +, +{ "type": "Feature", "id": 54, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.890502353004464, 40.568183235403161 ], [ -73.890164959211916, 40.5682285247753 ], [ -73.889594924492002, 40.567941890234025 ], [ -73.888790007804076, 40.567931334052794 ], [ -73.888368030309763, 40.568144925425216 ], [ -73.888056609833143, 40.568016918935612 ], [ -73.887473784750966, 40.568130238724478 ], [ -73.886546839364428, 40.568470978109382 ], [ -73.88536860326866, 40.566857011351175 ], [ -73.895540627401388, 40.564020699657355 ], [ -73.896132624453045, 40.565358427566814 ], [ -73.895332594197484, 40.566340904173956 ], [ -73.895659806615086, 40.567059460980218 ], [ -73.895312104179681, 40.567022188552968 ], [ -73.893454678476061, 40.568235018557957 ], [ -73.892610134456206, 40.568587247286672 ], [ -73.890502353004464, 40.568183235403161 ] ] ] } } +, +{ "type": "Feature", "id": 55, "properties": { "communityDistrict": 414, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/414" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.911925519097821, 40.565813862377183 ], [ -73.911858090293947, 40.564995438003244 ], [ -73.910798176830681, 40.565110995831496 ], [ -73.910100845491669, 40.564956201652386 ], [ -73.910037629057854, 40.564793710601897 ], [ -73.909716849259581, 40.565287425461172 ], [ -73.910621846301268, 40.563810518111225 ], [ -73.909810705132671, 40.561501916940301 ], [ -73.908353957480756, 40.560754480086381 ], [ -73.90923653142832, 40.560756522500952 ], [ -73.909267706566482, 40.560450279142728 ], [ -73.909282997928784, 40.556997241629283 ], [ -73.908797305577167, 40.55482950838892 ], [ -73.9194812221196, 40.550624815346517 ], [ -73.926419093968107, 40.548155780319931 ], [ -73.931775808843369, 40.557899562384854 ], [ -73.926157232754193, 40.561552609723073 ], [ -73.924214612366782, 40.562001318824393 ], [ -73.921078228813826, 40.562079852884835 ], [ -73.920368102804517, 40.562218832467586 ], [ -73.920259631730588, 40.562612292555905 ], [ -73.920098401484069, 40.562571180609986 ], [ -73.920331201426691, 40.562226054886516 ], [ -73.917660819000858, 40.56282614968643 ], [ -73.914553369612861, 40.564353432433784 ], [ -73.91386749626399, 40.564608096141825 ], [ -73.913131801280045, 40.564638243946 ], [ -73.91220200769321, 40.56505456984992 ], [ -73.911883196630029, 40.564990405238653 ], [ -73.911954643661858, 40.565811322672808 ], [ -73.91216181893266, 40.565836251568051 ], [ -73.911736153400696, 40.56587265348567 ], [ -73.911925519097821, 40.565813862377183 ] ] ] } } +, +{ "type": "Feature", "id": 56, "properties": { "communityDistrict": 483, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/483" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.800728892362457, 40.665269376517465 ], [ -73.795822963931485, 40.664953255151815 ], [ -73.785025138063148, 40.663421072397398 ], [ -73.783939817926694, 40.6627828314193 ], [ -73.778799852846348, 40.660562153298919 ], [ -73.776413927202583, 40.659870722897544 ], [ -73.775253079707582, 40.659320044127135 ], [ -73.769743641745009, 40.655948254796364 ], [ -73.768327401635787, 40.655600115136018 ], [ -73.767390970865605, 40.655838168699717 ], [ -73.766695938389375, 40.655802847501583 ], [ -73.748069339703548, 40.645214897211616 ], [ -73.743990632320248, 40.641247069543333 ], [ -73.744597963429428, 40.639521173264775 ], [ -73.746815510650123, 40.637893389559757 ], [ -73.746855526383953, 40.638060511478443 ], [ -73.746588368896525, 40.638385914697793 ], [ -73.746541325441498, 40.638696787983321 ], [ -73.746669358640474, 40.638706040635917 ], [ -73.746528714952277, 40.638726508213743 ], [ -73.746323680185355, 40.639327794567528 ], [ -73.74634658524856, 40.639879572067358 ], [ -73.74617119726274, 40.640388755690743 ], [ -73.746354914280602, 40.640678793985636 ], [ -73.746314678679468, 40.64139431318155 ], [ -73.747291538998795, 40.643186686373788 ], [ -73.748135607144548, 40.644070010510177 ], [ -73.748751212616085, 40.644471103350313 ], [ -73.748781033322445, 40.645118880997387 ], [ -73.749002487134987, 40.645168209712786 ], [ -73.749452742805218, 40.644931234224877 ], [ -73.751713024669144, 40.64650059076871 ], [ -73.753270905585765, 40.647333762520518 ], [ -73.753403654221103, 40.647162374608811 ], [ -73.75323328269441, 40.647052114686126 ], [ -73.753541919018645, 40.647196312320638 ], [ -73.753292106749029, 40.647343402721916 ], [ -73.753889643709442, 40.647542603555351 ], [ -73.754278098565848, 40.647886422581436 ], [ -73.754755924859637, 40.647812198891934 ], [ -73.754927686429099, 40.647572721038436 ], [ -73.75461208504008, 40.647200458956853 ], [ -73.753792894355072, 40.646705604184277 ], [ -73.753737708263486, 40.646960423577781 ], [ -73.75340189507159, 40.646807461209242 ], [ -73.753611341704342, 40.646856182257849 ], [ -73.753761463613714, 40.646686322658034 ], [ -73.750570328119565, 40.644728556673847 ], [ -73.748707014965262, 40.643343492337415 ], [ -73.747420958996273, 40.641413643684459 ], [ -73.74754412782535, 40.641132167984523 ], [ -73.74743443985416, 40.640238928133542 ], [ -73.747528778547562, 40.639324434692718 ], [ -73.748124885188162, 40.636872731643294 ], [ -73.748398155361713, 40.63665363731986 ], [ -73.748554783949118, 40.63541155957563 ], [ -73.749354469661213, 40.634947256339679 ], [ -73.750696070401133, 40.63462797576701 ], [ -73.752437585727677, 40.633676780243277 ], [ -73.753483977247441, 40.633514291079059 ], [ -73.754791003049206, 40.63288248836318 ], [ -73.755500137490301, 40.632760973905889 ], [ -73.755680219128678, 40.632585029175225 ], [ -73.757388100559879, 40.632107760630781 ], [ -73.757735576201711, 40.631823811050481 ], [ -73.759009554007022, 40.631489296882449 ], [ -73.76053159775509, 40.630663317188194 ], [ -73.762194078137867, 40.630259432956471 ], [ -73.763087896708427, 40.629658898501972 ], [ -73.764530026372881, 40.629221136356946 ], [ -73.765002226606342, 40.629416298671856 ], [ -73.764742896690706, 40.629168084896222 ], [ -73.766398630952693, 40.628350134062543 ], [ -73.767000061817015, 40.627527790061855 ], [ -73.767777029884328, 40.625918463915689 ], [ -73.768276749971989, 40.625335218515225 ], [ -73.768782363293354, 40.624322796032764 ], [ -73.768842284403519, 40.6239348217523 ], [ -73.768553089207842, 40.623187208766346 ], [ -73.768686610750109, 40.622681953217416 ], [ -73.769446523564, 40.622015448432059 ], [ -73.769521349574944, 40.622118488458298 ], [ -73.769815580974694, 40.621377350999772 ], [ -73.771563827241664, 40.621360526782418 ], [ -73.770914999462732, 40.62240388815033 ], [ -73.770820697079657, 40.623282997944855 ], [ -73.771438836640115, 40.623284616704936 ], [ -73.771727602851385, 40.623585028030327 ], [ -73.771699083400179, 40.623438988204526 ], [ -73.771973183249045, 40.623272116308378 ], [ -73.77188149343587, 40.623203602050609 ], [ -73.772145469706487, 40.623046105200409 ], [ -73.772031313654097, 40.622991212901702 ], [ -73.772188240280315, 40.62299579379507 ], [ -73.773500672940273, 40.621343909174371 ], [ -73.772209507038269, 40.623005232487024 ], [ -73.772403136391745, 40.623095302298807 ], [ -73.772168978669896, 40.623055547338588 ], [ -73.772004605753082, 40.623261929018994 ], [ -73.772170183347725, 40.623359631169123 ], [ -73.771996692703979, 40.623281559487609 ], [ -73.771818828377349, 40.623499017984308 ], [ -73.771987765145695, 40.623597581460785 ], [ -73.77173897581244, 40.6236057260734 ], [ -73.77323537306475, 40.624994162478217 ], [ -73.773486164790853, 40.625085118325693 ], [ -73.773832586605849, 40.624944848252142 ], [ -73.773494616145911, 40.625142569370908 ], [ -73.774841892209537, 40.626554650782616 ], [ -73.776408845460551, 40.627534615323164 ], [ -73.777366895851884, 40.627693821486389 ], [ -73.77850001189644, 40.627583743917782 ], [ -73.779239523448268, 40.627317034407348 ], [ -73.779994207638438, 40.626689298072549 ], [ -73.780776882033848, 40.625808503671628 ], [ -73.781361958916335, 40.624842746114815 ], [ -73.784878887408908, 40.626631470707885 ], [ -73.783465583752346, 40.628118140757195 ], [ -73.782843352402566, 40.629405706177543 ], [ -73.782645434359353, 40.630247968083616 ], [ -73.783777286090398, 40.630634115647759 ], [ -73.784347642421466, 40.631373320433489 ], [ -73.785702938064233, 40.632094989481992 ], [ -73.786906667504653, 40.632261900730128 ], [ -73.788323394405111, 40.63342507906026 ], [ -73.789354064345488, 40.634010308818432 ], [ -73.789427172616541, 40.634263034959979 ], [ -73.789716000367491, 40.634067249776564 ], [ -73.79076947464462, 40.633848725717314 ], [ -73.790664495089445, 40.634152939444888 ], [ -73.790792842990996, 40.634282043205047 ], [ -73.798037518347144, 40.631196239807494 ], [ -73.797968294379473, 40.631101307473635 ], [ -73.798118722262046, 40.631037509261098 ], [ -73.798276154152958, 40.631252179365795 ], [ -73.798055371690992, 40.631224458598119 ], [ -73.79081111250504, 40.634310355510713 ], [ -73.791081328386269, 40.634232634366981 ], [ -73.791308778542017, 40.634401300656009 ], [ -73.791228985097376, 40.634857064069848 ], [ -73.792223179716558, 40.635890088278771 ], [ -73.7934336926225, 40.636086690345898 ], [ -73.794259643337256, 40.636564203549703 ], [ -73.794743874990942, 40.636629367395663 ], [ -73.797257429330486, 40.638007613758838 ], [ -73.79863891856661, 40.638403779071048 ], [ -73.799237119838622, 40.63842010970356 ], [ -73.801772201854504, 40.639760283951532 ], [ -73.804659302414393, 40.640905209496616 ], [ -73.805659395866542, 40.641601983125142 ], [ -73.806702006757646, 40.641776184672835 ], [ -73.808645686505727, 40.642814927879265 ], [ -73.810757494440978, 40.643492391255826 ], [ -73.812033336832954, 40.64430357504574 ], [ -73.813506850931759, 40.644636653826815 ], [ -73.816430716134306, 40.645998005631185 ], [ -73.817612540643339, 40.64614028670853 ], [ -73.81830607821486, 40.646386982850117 ], [ -73.818953648171046, 40.646864599411764 ], [ -73.820154351221277, 40.64826502638541 ], [ -73.821247972839984, 40.64913861606 ], [ -73.821921568602534, 40.650111834874359 ], [ -73.822627236846131, 40.652885188905955 ], [ -73.823149183736035, 40.654022771066593 ], [ -73.823483811107465, 40.655369912718655 ], [ -73.823404069826324, 40.656080242093545 ], [ -73.822336881096575, 40.659363084259319 ], [ -73.821611255101359, 40.659935285598202 ], [ -73.821691394394207, 40.660035086743051 ], [ -73.821568935755749, 40.659958693873207 ], [ -73.81970074186691, 40.660724086809722 ], [ -73.819714199092246, 40.660873726175851 ], [ -73.819657252870172, 40.660741919045357 ], [ -73.818695315586893, 40.661105051055159 ], [ -73.817644023338019, 40.660949032430004 ], [ -73.817672964986983, 40.661059722777054 ], [ -73.817504914315435, 40.661048326201481 ], [ -73.817567271191436, 40.660936734262023 ], [ -73.816567593080663, 40.66074251661712 ], [ -73.81598180388724, 40.660835816548563 ], [ -73.816052030347123, 40.660711574205116 ], [ -73.814681487913788, 40.660515214761716 ], [ -73.81457011758252, 40.66063459763906 ], [ -73.814625339698452, 40.660506673653096 ], [ -73.812621255836689, 40.660157049899404 ], [ -73.811438337780274, 40.660254210772422 ], [ -73.811244353571055, 40.660544639567767 ], [ -73.811514484121844, 40.660767142802158 ], [ -73.818671843741612, 40.662132776928665 ], [ -73.823383242857503, 40.660205747027625 ], [ -73.824080064698649, 40.658488346812213 ], [ -73.824095096450506, 40.658316524229107 ], [ -73.823879515199479, 40.658257808338846 ], [ -73.824086253494556, 40.658289354849266 ], [ -73.824264108676573, 40.657779092686539 ], [ -73.824059291337164, 40.657695954020156 ], [ -73.824267759743677, 40.657746511637463 ], [ -73.824980703785471, 40.655431971183667 ], [ -73.823706050165313, 40.651106718909737 ], [ -73.823392852371612, 40.649354073094571 ], [ -73.823181059388915, 40.649157488027498 ], [ -73.82290717766891, 40.648093446005717 ], [ -73.823194441115561, 40.648011161680266 ], [ -73.823903647256657, 40.648866720139452 ], [ -73.823927499132722, 40.649165548068609 ], [ -73.824662300205844, 40.64972399750841 ], [ -73.824827621318732, 40.649668474784704 ], [ -73.824743880789924, 40.64943427558304 ], [ -73.824998465161983, 40.649376930882873 ], [ -73.825361847913527, 40.649913565692387 ], [ -73.825487708808538, 40.649892156942471 ], [ -73.825600897366655, 40.649528486982902 ], [ -73.825859621020726, 40.649475601539343 ], [ -73.826144830596633, 40.650081840942562 ], [ -73.826300148118193, 40.650022985779664 ], [ -73.826172045928232, 40.649526935747048 ], [ -73.826439319693762, 40.649238243912009 ], [ -73.826272599719687, 40.648405025855141 ], [ -73.826392428444905, 40.648324348615581 ], [ -73.828599424046956, 40.657196973015992 ], [ -73.829314202188229, 40.658898656746459 ], [ -73.829913356874101, 40.659665668181994 ], [ -73.832477682801439, 40.664968212813172 ], [ -73.832118468037351, 40.665032818438817 ], [ -73.832032188073299, 40.664838606129969 ], [ -73.829487160418353, 40.663824539974208 ], [ -73.825843937952683, 40.663388471568034 ], [ -73.823052105664587, 40.663553878135765 ], [ -73.814969224858544, 40.662472668234564 ], [ -73.812816163855132, 40.662724436132628 ], [ -73.811166087138048, 40.663177473599781 ], [ -73.81165574286338, 40.662607339097477 ], [ -73.811978652677936, 40.661247346357953 ], [ -73.807707117047059, 40.66045767119212 ], [ -73.807301763182991, 40.66064934416174 ], [ -73.806101631845792, 40.66482819089773 ], [ -73.804136996254044, 40.665074269678932 ], [ -73.804320505709427, 40.665120733367026 ], [ -73.800728892362457, 40.665269376517465 ] ] ] } } +, +{ "type": "Feature", "id": 57, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.766708277815923, 40.614910865180356 ], [ -73.768252880033941, 40.614877725169357 ], [ -73.773976920847829, 40.616003575672757 ], [ -73.768734548220266, 40.62090086721642 ], [ -73.767459268845869, 40.620511322061184 ], [ -73.766708277815923, 40.614910865180356 ] ] ] } } +, +{ "type": "Feature", "id": 58, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.770770167543517, 40.620031182310008 ], [ -73.771281602701947, 40.620084812749766 ], [ -73.771654546884108, 40.620416427319391 ], [ -73.771716994473039, 40.620961678797983 ], [ -73.771563827241664, 40.621360526782418 ], [ -73.769815580974694, 40.621377350999772 ], [ -73.769755856302879, 40.621106620392709 ], [ -73.770084670568053, 40.620912927335517 ], [ -73.770461550241293, 40.620197779244613 ], [ -73.770770167543517, 40.620031182310008 ] ] ] } } +, +{ "type": "Feature", "id": 59, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.781361958916335, 40.624842746114815 ], [ -73.784194832978713, 40.620892669910248 ], [ -73.78511041590447, 40.620281221956162 ], [ -73.785208702659432, 40.619237347917803 ], [ -73.785159200060193, 40.618647282483352 ], [ -73.784781118167928, 40.618335676678662 ], [ -73.784811064750059, 40.618015042893305 ], [ -73.784518826787476, 40.617982670589299 ], [ -73.784581849887175, 40.617855050601207 ], [ -73.784355690211029, 40.617764490587398 ], [ -73.784452737345617, 40.617556590931514 ], [ -73.784299192876873, 40.617353117964207 ], [ -73.784460870682111, 40.617027834124478 ], [ -73.783900609388525, 40.616431913460453 ], [ -73.783818029213393, 40.616140444208952 ], [ -73.783445971759704, 40.615958589860782 ], [ -73.783225545300184, 40.615578730723236 ], [ -73.782489931275109, 40.615567549886762 ], [ -73.782310426569907, 40.615447257365311 ], [ -73.782295274714372, 40.615168153677551 ], [ -73.781890902838029, 40.615047433891085 ], [ -73.781717009124677, 40.615176848796558 ], [ -73.780793765035241, 40.61458756709235 ], [ -73.780708871952882, 40.614026809005857 ], [ -73.78114906073202, 40.613998270977177 ], [ -73.780883608343572, 40.613640354636296 ], [ -73.781159997780847, 40.613601712787045 ], [ -73.781260511018743, 40.61331793350503 ], [ -73.782615574676214, 40.612497968636781 ], [ -73.782879014151121, 40.612488674791607 ], [ -73.783024505639958, 40.612200083190437 ], [ -73.783552214374041, 40.611924451980869 ], [ -73.783943736042986, 40.612040244785 ], [ -73.784474375672815, 40.611850295948472 ], [ -73.784640866528932, 40.612019520908184 ], [ -73.784975234192913, 40.611929570089337 ], [ -73.78522423150612, 40.611415951242975 ], [ -73.785778093158072, 40.610993477070728 ], [ -73.786218432451605, 40.610911064583924 ], [ -73.786469728009379, 40.610678968981574 ], [ -73.786845186972897, 40.610794723588171 ], [ -73.787198974124848, 40.610655841164551 ], [ -73.787199848103768, 40.610381664913326 ], [ -73.787415445683294, 40.610262110594398 ], [ -73.787707426376429, 40.610365467259747 ], [ -73.787913262145324, 40.610285062197889 ], [ -73.787858943300833, 40.610194384978328 ], [ -73.788659106275574, 40.610090594226783 ], [ -73.788760116609609, 40.609637895678915 ], [ -73.789081601659035, 40.609552805967276 ], [ -73.789018403046072, 40.609222206945802 ], [ -73.789953893623576, 40.608981566325944 ], [ -73.790111671493037, 40.608859453331682 ], [ -73.790012643385936, 40.608685463308149 ], [ -73.790472694918137, 40.608456187914328 ], [ -73.790380206145684, 40.608245490172983 ], [ -73.790856213913827, 40.608048067246578 ], [ -73.790876591000625, 40.607695589287474 ], [ -73.791338996044473, 40.607738045853857 ], [ -73.79139721012227, 40.607610854244768 ], [ -73.791598950081109, 40.607809510119282 ], [ -73.791511146905904, 40.6081545214168 ], [ -73.791157513044581, 40.608251801389201 ], [ -73.791172876726378, 40.608474598606151 ], [ -73.791474100746925, 40.608702811509161 ], [ -73.792749486264782, 40.608646365872914 ], [ -73.793651040956462, 40.608985814969103 ], [ -73.793948936171418, 40.609255631536136 ], [ -73.793896884610689, 40.609468516216808 ], [ -73.794541665147051, 40.609748744979655 ], [ -73.794467468786749, 40.609851429330277 ], [ -73.794806339413157, 40.610378359477203 ], [ -73.795660269392272, 40.610546345846572 ], [ -73.796965819916437, 40.611143529178555 ], [ -73.797367317226758, 40.611154028935601 ], [ -73.797456761956994, 40.611318204396184 ], [ -73.798378692403531, 40.611312481263603 ], [ -73.79852584053728, 40.611515924285683 ], [ -73.798985293946416, 40.611482456713979 ], [ -73.799173180598146, 40.612026245926614 ], [ -73.800257000702388, 40.611597282888134 ], [ -73.800539516772304, 40.611651630324424 ], [ -73.800801259194785, 40.611933904481582 ], [ -73.800239489191554, 40.612081960169185 ], [ -73.799990670713726, 40.612573580330768 ], [ -73.800089789901591, 40.612727977608898 ], [ -73.799934352716051, 40.613143870030349 ], [ -73.799316941432821, 40.613358220592694 ], [ -73.79968510153104, 40.613777474043054 ], [ -73.799517670332108, 40.613906926584448 ], [ -73.799402243669547, 40.614903069234934 ], [ -73.799002520536234, 40.615362599332336 ], [ -73.799039035353061, 40.615550542545627 ], [ -73.798786725820364, 40.615544826071122 ], [ -73.798544656714625, 40.61588959617427 ], [ -73.798163006777045, 40.615716090284735 ], [ -73.798065997171904, 40.615926450481766 ], [ -73.798210992948114, 40.616060366080433 ], [ -73.798060903937483, 40.616326916562805 ], [ -73.797275925503186, 40.616660412961487 ], [ -73.797433340878925, 40.61691923278687 ], [ -73.797410338274062, 40.617146713217906 ], [ -73.797133173535684, 40.617381379159319 ], [ -73.797242981463924, 40.617593763471909 ], [ -73.796783043015438, 40.617704722747298 ], [ -73.79700484712896, 40.618379943956811 ], [ -73.796355679042406, 40.618454684535351 ], [ -73.796188308909194, 40.619609853029196 ], [ -73.795595343085751, 40.620211012602105 ], [ -73.795545309774042, 40.620929798485754 ], [ -73.795011888011814, 40.621330743657417 ], [ -73.795237513433932, 40.621657155463311 ], [ -73.794819379792486, 40.621891449970164 ], [ -73.794440154822979, 40.62185157331524 ], [ -73.794435371238066, 40.622061632956715 ], [ -73.794697012275492, 40.62226136198732 ], [ -73.794466577571228, 40.622691306554799 ], [ -73.793390009177386, 40.62275300952426 ], [ -73.792263513520282, 40.622369089072997 ], [ -73.791428026324567, 40.622277657342764 ], [ -73.789678702058964, 40.62261481917205 ], [ -73.784878887408908, 40.626631470707885 ], [ -73.781361958916335, 40.624842746114815 ] ] ] } } +, +{ "type": "Feature", "id": 60, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.7942017268998, 40.607730675614519 ], [ -73.793521526495354, 40.606327591394695 ], [ -73.793997549525926, 40.606080153462585 ], [ -73.79509002319466, 40.607271059100455 ], [ -73.794247990991664, 40.605900380032772 ], [ -73.796963277950383, 40.604117848767729 ], [ -73.801200197338218, 40.603912200653262 ], [ -73.801802851167906, 40.604211431452249 ], [ -73.80428530744544, 40.604519279531651 ], [ -73.805206765173736, 40.606739538099035 ], [ -73.804196956564184, 40.608744198031538 ], [ -73.801592067441149, 40.610230962501213 ], [ -73.798781987460444, 40.610333275690245 ], [ -73.796306542154369, 40.609338032538169 ], [ -73.796094539816792, 40.608826483942622 ], [ -73.795598327396277, 40.608725356302216 ], [ -73.795299779144713, 40.608229878318468 ], [ -73.7942017268998, 40.607730675614519 ] ] ] } } +, +{ "type": "Feature", "id": 61, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.797835333985176, 40.627408716571502 ], [ -73.797838480913057, 40.627013465297303 ], [ -73.79744863612693, 40.627110476260938 ], [ -73.795662567260948, 40.626114004327739 ], [ -73.799214934277671, 40.624084712988463 ], [ -73.796983476504252, 40.624864689744726 ], [ -73.794037417545738, 40.625635195956107 ], [ -73.793629274813441, 40.625156476194896 ], [ -73.798090931071741, 40.623062948244311 ], [ -73.799510856737413, 40.62117553302096 ], [ -73.799920576986594, 40.618575240167075 ], [ -73.801724986401652, 40.619967008731727 ], [ -73.800962923082935, 40.617772369398182 ], [ -73.801280495040928, 40.6158798397475 ], [ -73.802703438678122, 40.613580652321716 ], [ -73.80339821027151, 40.613172104349616 ], [ -73.805089060122967, 40.613432560419461 ], [ -73.804669689868064, 40.614301826295602 ], [ -73.804765926825112, 40.615800991372005 ], [ -73.80575302222276, 40.616694857538306 ], [ -73.805659450605575, 40.617600255343717 ], [ -73.807641169620737, 40.621199654693342 ], [ -73.807283313292842, 40.62166643562194 ], [ -73.807689177631573, 40.622277660423599 ], [ -73.806985023151, 40.623871998828832 ], [ -73.805571478884474, 40.624969001573788 ], [ -73.805162488469563, 40.624656224185962 ], [ -73.802713449636173, 40.625934787346893 ], [ -73.802515779469118, 40.626329137692345 ], [ -73.800111772116225, 40.626927441988194 ], [ -73.80092841499382, 40.627524103889321 ], [ -73.797835333985176, 40.627408716571502 ] ] ] } } +, +{ "type": "Feature", "id": 62, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.813396652892891, 40.60436407224644 ], [ -73.811841302647963, 40.603134665085676 ], [ -73.810853651866509, 40.603223713014252 ], [ -73.810536367586735, 40.602495988814688 ], [ -73.809863337912333, 40.601895790006751 ], [ -73.81003425937601, 40.601610908460422 ], [ -73.809912581665984, 40.601320209932737 ], [ -73.810042932313465, 40.600954710545167 ], [ -73.809850645023943, 40.600365616758531 ], [ -73.810001329484464, 40.600028682815221 ], [ -73.810144175230306, 40.600054855642156 ], [ -73.809974653176781, 40.599836702804964 ], [ -73.810188964345883, 40.599860400365998 ], [ -73.810294938573207, 40.599689389650045 ], [ -73.810290115860653, 40.59899167007233 ], [ -73.810961697245546, 40.59855703088099 ], [ -73.811387196123263, 40.5985032621372 ], [ -73.811575503455316, 40.598141199259501 ], [ -73.81222073287762, 40.598553908477733 ], [ -73.813293730271823, 40.599816592704812 ], [ -73.814447381362342, 40.600543168853648 ], [ -73.815014715687084, 40.602056290558394 ], [ -73.814286936326482, 40.604455666220517 ], [ -73.813396652892891, 40.60436407224644 ] ] ] } } +, +{ "type": "Feature", "id": 63, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.813072338926176, 40.629261099642676 ], [ -73.813525021228912, 40.627306172685863 ], [ -73.812585561040919, 40.628371916184761 ], [ -73.811294322736117, 40.624703779001401 ], [ -73.811355819958663, 40.622937515040668 ], [ -73.81185181296344, 40.6220976183739 ], [ -73.812100453342993, 40.621100596814898 ], [ -73.811714504186654, 40.620703573736179 ], [ -73.811719236618018, 40.620094234140481 ], [ -73.811505425397925, 40.619796809946244 ], [ -73.811094511578759, 40.617910252281831 ], [ -73.81024066504996, 40.616487640654213 ], [ -73.810899904816168, 40.616218471340915 ], [ -73.812007178393188, 40.617179371484418 ], [ -73.812113445243426, 40.617925546835458 ], [ -73.812882139145046, 40.618910919655669 ], [ -73.813703540002933, 40.621386744586061 ], [ -73.814495433027133, 40.622394944300147 ], [ -73.814182786255998, 40.623694631559125 ], [ -73.815182032212078, 40.624744171144378 ], [ -73.81612703184858, 40.62534899918068 ], [ -73.81679073502562, 40.626348918121131 ], [ -73.813832885963151, 40.625926233996523 ], [ -73.813828994934539, 40.626135076638931 ], [ -73.816270260439921, 40.627145805917088 ], [ -73.817209356614313, 40.629106351151314 ], [ -73.817305769936084, 40.630621973798867 ], [ -73.81637181200449, 40.631372727243971 ], [ -73.815067884414589, 40.631164058577959 ], [ -73.813917332200802, 40.630776391212969 ], [ -73.813072338926176, 40.629261099642676 ] ] ] } } +, +{ "type": "Feature", "id": 64, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.82337597260657, 40.638987047176713 ], [ -73.822771054386862, 40.635576914085021 ], [ -73.822098680837911, 40.63407230114656 ], [ -73.821846042528037, 40.632040188437323 ], [ -73.821075055995564, 40.629733773562052 ], [ -73.819910140681529, 40.627840653116984 ], [ -73.817964147736035, 40.6271055656957 ], [ -73.818007522949401, 40.626476343857767 ], [ -73.81769796593268, 40.625961622496213 ], [ -73.81611483429549, 40.62460465517298 ], [ -73.816086434707955, 40.624315410309308 ], [ -73.816729980585762, 40.623871514072555 ], [ -73.81795284720684, 40.624093280117371 ], [ -73.818917080398336, 40.623090267163292 ], [ -73.818893890474627, 40.622629158032559 ], [ -73.818253036973459, 40.622094238585781 ], [ -73.817786332880971, 40.621937777634699 ], [ -73.817787183106887, 40.621626331776085 ], [ -73.81697007886828, 40.621491557102146 ], [ -73.816910650598174, 40.621869647095309 ], [ -73.816530742595788, 40.622002518747934 ], [ -73.815714680446263, 40.621489551516952 ], [ -73.815431747042794, 40.620116531242161 ], [ -73.817180538784584, 40.61926727449319 ], [ -73.81744426111274, 40.618911754906527 ], [ -73.817446451391106, 40.618110895991165 ], [ -73.817774298345128, 40.617501121695639 ], [ -73.817517178801467, 40.616396411662905 ], [ -73.817168462030352, 40.615843197723251 ], [ -73.817118936222116, 40.61528219234544 ], [ -73.816526811785394, 40.614947009154939 ], [ -73.820758925048892, 40.61523267901503 ], [ -73.821570601597116, 40.614908690828926 ], [ -73.822349611034923, 40.614260025694712 ], [ -73.823798479832121, 40.612129421391451 ], [ -73.823824685953213, 40.611498664910194 ], [ -73.824100484590318, 40.612319568794369 ], [ -73.824321663829522, 40.612588470368202 ], [ -73.824448212399176, 40.612341126657874 ], [ -73.824674516379474, 40.612419914122576 ], [ -73.824685844134748, 40.613076418757572 ], [ -73.825753221052878, 40.614192081540033 ], [ -73.82725636567055, 40.613378714123492 ], [ -73.827581929048634, 40.613667659283571 ], [ -73.827875254717938, 40.613697628598395 ], [ -73.827241537270012, 40.6140650205719 ], [ -73.827502226095433, 40.614204666720191 ], [ -73.828455031825015, 40.61421603915165 ], [ -73.830919960014242, 40.615005487033436 ], [ -73.832029709067726, 40.614897699357961 ], [ -73.834018881344932, 40.614381166419641 ], [ -73.833422307441211, 40.626781982958533 ], [ -73.833041008417993, 40.628261271059564 ], [ -73.832865287316821, 40.628408350262525 ], [ -73.832895489567733, 40.62890347873293 ], [ -73.832360366712265, 40.629142257747247 ], [ -73.83196080768144, 40.629652729879275 ], [ -73.831896663981922, 40.630572394052074 ], [ -73.83114086389277, 40.632749395288428 ], [ -73.831331128641423, 40.633617691427617 ], [ -73.831938784067233, 40.634236225427472 ], [ -73.831957877866927, 40.634978880565782 ], [ -73.832490944357133, 40.635578551835529 ], [ -73.833406079792184, 40.638501355899017 ], [ -73.832899743611975, 40.638862685066805 ], [ -73.832216588191812, 40.638928490220756 ], [ -73.82866782109744, 40.636614718447966 ], [ -73.828085673532783, 40.635879726836556 ], [ -73.825916579632008, 40.635747412819988 ], [ -73.825050982906006, 40.635905260443749 ], [ -73.824430325632861, 40.636216520036534 ], [ -73.82413577690069, 40.638787996704544 ], [ -73.824573798903302, 40.639353873239195 ], [ -73.824193272931581, 40.639953274487731 ], [ -73.82337597260657, 40.638987047176713 ] ] ] } } +, +{ "type": "Feature", "id": 65, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.827182821070537, 40.607919778091201 ], [ -73.826795374971454, 40.60772044059307 ], [ -73.82629763015818, 40.607817072229679 ], [ -73.826173610758204, 40.607554111783294 ], [ -73.826391178187762, 40.607357433652211 ], [ -73.825982128424016, 40.607157997600353 ], [ -73.825900927207712, 40.606465930649414 ], [ -73.826496187957787, 40.606224463717723 ], [ -73.826905245846845, 40.606423897977251 ], [ -73.828616714576626, 40.60583848413755 ], [ -73.828660600902253, 40.606256158374755 ], [ -73.82815085191217, 40.607950289832957 ], [ -73.827182821070537, 40.607919778091201 ] ] ] } } +, +{ "type": "Feature", "id": 66, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.826074726045476, 40.608437799546074 ], [ -73.826610510087889, 40.608196205841651 ], [ -73.827711042359923, 40.608398668130668 ], [ -73.828050772600591, 40.610046296865278 ], [ -73.826883264807563, 40.609596678070396 ], [ -73.826074726045476, 40.608437799546074 ] ] ] } } +, +{ "type": "Feature", "id": 67, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.826719435468533, 40.649578819319281 ], [ -73.826392428444905, 40.648324348615581 ], [ -73.826869574645244, 40.6487990451825 ], [ -73.828598743519819, 40.649169794434549 ], [ -73.829869487666528, 40.650429629639156 ], [ -73.827013243975188, 40.650859899128911 ], [ -73.826719435468533, 40.649578819319281 ] ] ] } } +, +{ "type": "Feature", "id": 68, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.832442073584232, 40.605929448531562 ], [ -73.834541441096718, 40.605477383765837 ], [ -73.83587601623168, 40.605636907042943 ], [ -73.834462656861888, 40.607192532943309 ], [ -73.834283426860807, 40.609185681351356 ], [ -73.833732759732015, 40.609286033073346 ], [ -73.833803115155916, 40.609550591858003 ], [ -73.832521923413054, 40.61038499360474 ], [ -73.830329479060268, 40.608487878911355 ], [ -73.830458153927424, 40.606669201403157 ], [ -73.832442073584232, 40.605929448531562 ] ] ] } } +, +{ "type": "Feature", "id": 69, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.831669027678075, 40.647972211017652 ], [ -73.834480693621742, 40.648109047247502 ], [ -73.835278773069163, 40.648283844700721 ], [ -73.835676748637013, 40.648612360146451 ], [ -73.835722754121917, 40.649378229928423 ], [ -73.831270550940246, 40.650067831824579 ], [ -73.831046725155105, 40.648634775422813 ], [ -73.831222092058482, 40.648276844993312 ], [ -73.831669027678075, 40.647972211017652 ] ] ] } } +, +{ "type": "Feature", "id": 70, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836682741067051, 40.5949466970158 ], [ -73.836709208259379, 40.594711963293435 ], [ -73.836244564860706, 40.594496397754135 ], [ -73.835271993899497, 40.594473517514437 ], [ -73.835117203194415, 40.594365843590147 ], [ -73.835113485986497, 40.593968265053959 ], [ -73.834332126848892, 40.593660767746748 ], [ -73.834224631394008, 40.593348241995777 ], [ -73.833611639525699, 40.593277512302294 ], [ -73.833295450780128, 40.592890225452791 ], [ -73.833083773965058, 40.592986625446372 ], [ -73.833124343233067, 40.592264069064825 ], [ -73.832574981063743, 40.592118209113977 ], [ -73.832675969852147, 40.591895394119966 ], [ -73.833067018018994, 40.591936256584773 ], [ -73.833141905317703, 40.591581773930606 ], [ -73.833440300342659, 40.592036192044155 ], [ -73.833757288409018, 40.592101122149245 ], [ -73.833782583954488, 40.591848646617308 ], [ -73.834081531194059, 40.592082786090323 ], [ -73.834226383582802, 40.591932562815465 ], [ -73.833924213031239, 40.591577534575535 ], [ -73.834227770673266, 40.591373813822607 ], [ -73.833114412373902, 40.591302358495739 ], [ -73.832835633422519, 40.591460444804774 ], [ -73.832561110359904, 40.591325729777552 ], [ -73.832535695509648, 40.590218935799292 ], [ -73.833427726754167, 40.590013387771485 ], [ -73.833589565666514, 40.590115701568266 ], [ -73.834002327386344, 40.589922884840057 ], [ -73.834639808756606, 40.590052746674161 ], [ -73.834954227677045, 40.589728155617955 ], [ -73.834055631282439, 40.589742979420819 ], [ -73.833829656434034, 40.589925321265312 ], [ -73.833227415183046, 40.589795506083398 ], [ -73.833478667112772, 40.589368748711827 ], [ -73.834588835529857, 40.589292449605921 ], [ -73.835222669372016, 40.589470656034564 ], [ -73.835947054550061, 40.589366926730968 ], [ -73.836934535836491, 40.589747101007937 ], [ -73.837195411358607, 40.589699117362954 ], [ -73.837412896569433, 40.59010505698776 ], [ -73.838654801292478, 40.590928816163128 ], [ -73.838667436476968, 40.591533251750882 ], [ -73.83946303752542, 40.592256568488203 ], [ -73.839963400872662, 40.591873539011893 ], [ -73.83943345801903, 40.59243960947456 ], [ -73.839890701909241, 40.592800211493802 ], [ -73.840810160810221, 40.592919686203714 ], [ -73.840987566265497, 40.592412220518852 ], [ -73.841358238350168, 40.592133357919657 ], [ -73.841463776137417, 40.592208719980825 ], [ -73.841166508523813, 40.59244606437192 ], [ -73.841840224417368, 40.592713368098053 ], [ -73.842205074437217, 40.593158004692768 ], [ -73.843046605900199, 40.59345196410186 ], [ -73.843858940180127, 40.593425311959727 ], [ -73.84358788589671, 40.594160675791443 ], [ -73.843311537734692, 40.594423032976096 ], [ -73.842916021710977, 40.594447384027504 ], [ -73.842643253652795, 40.594729103032336 ], [ -73.842208030239803, 40.594667662710265 ], [ -73.840319738252703, 40.595870355646724 ], [ -73.839029642480895, 40.596253484748651 ], [ -73.83743435500341, 40.5958004430138 ], [ -73.836623772040127, 40.595062851868427 ], [ -73.836682741067051, 40.5949466970158 ] ] ] } } +, +{ "type": "Feature", "id": 71, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.836261097903744, 40.645351677049206 ], [ -73.836589550426282, 40.6458924647579 ], [ -73.837387788457477, 40.649118149467526 ], [ -73.836813345751565, 40.649249415001961 ], [ -73.835923200732836, 40.645499790674947 ], [ -73.836261097903744, 40.645351677049206 ] ] ] } } +, +{ "type": "Feature", "id": 72, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.865334325933745, 40.568784783429223 ], [ -73.864309695511167, 40.567391616473806 ], [ -73.863169302136242, 40.567739271748323 ], [ -73.862676080486921, 40.566513013806166 ], [ -73.863004829437855, 40.566875957730836 ], [ -73.863493063602093, 40.567034311733984 ], [ -73.865537572574112, 40.566571610437293 ], [ -73.866617205546305, 40.566091942910305 ], [ -73.866309412324398, 40.565546064124852 ], [ -73.86663005715063, 40.566090111654034 ], [ -73.866884009939341, 40.566083976275301 ], [ -73.868486948458781, 40.565527010301508 ], [ -73.86825117550174, 40.565069489459624 ], [ -73.86862321827094, 40.565538008774986 ], [ -73.870622148152492, 40.564813309494113 ], [ -73.870275884646986, 40.564174653597355 ], [ -73.870640942165053, 40.564809945218073 ], [ -73.870913162064838, 40.564764585510702 ], [ -73.87263971280457, 40.564084184026747 ], [ -73.872378780474875, 40.563575115556318 ], [ -73.872749255476037, 40.564109556041863 ], [ -73.87321952896157, 40.564063906186348 ], [ -73.874593375738584, 40.563631163057003 ], [ -73.874644819210516, 40.563501462300337 ], [ -73.876330399683312, 40.563086553272896 ], [ -73.880284025952221, 40.561511408315269 ], [ -73.880296751109597, 40.561374955249477 ], [ -73.881282492213131, 40.561372133879573 ], [ -73.882415867282972, 40.560910897001527 ], [ -73.882374416797418, 40.560760430809786 ], [ -73.882520569346909, 40.560881395412721 ], [ -73.883247415622392, 40.560855921485079 ], [ -73.88488436886675, 40.560182368041154 ], [ -73.884859494798661, 40.560042807457975 ], [ -73.885112777329837, 40.560150961736582 ], [ -73.886111096844729, 40.559921919029136 ], [ -73.886961706830817, 40.559558154144504 ], [ -73.886975108011583, 40.559400482998484 ], [ -73.887071829972456, 40.559542104885786 ], [ -73.88789256106385, 40.559510651379519 ], [ -73.889385921666658, 40.558920400147862 ], [ -73.889639475428964, 40.558664351794015 ], [ -73.890216535536695, 40.558811548619012 ], [ -73.890795896962629, 40.558619378907785 ], [ -73.89192354828397, 40.558160421525031 ], [ -73.892138643962753, 40.557871540991428 ], [ -73.892527450993938, 40.558119293542525 ], [ -73.893470650505563, 40.557945578638559 ], [ -73.894951424994204, 40.557293925409397 ], [ -73.894918172664831, 40.55707879529308 ], [ -73.895184586969549, 40.55738503715083 ], [ -73.895511887710853, 40.557414270149657 ], [ -73.896995229426608, 40.556891791638733 ], [ -73.897079561167672, 40.556657433084581 ], [ -73.897356886193151, 40.55699842304179 ], [ -73.897995147968118, 40.557102137180223 ], [ -73.899117184923, 40.556800353794728 ], [ -73.899129952148897, 40.556641173154262 ], [ -73.900275959850873, 40.556603894283498 ], [ -73.900585817868091, 40.556422209024262 ], [ -73.90070115515833, 40.556633568543205 ], [ -73.901299152569791, 40.556767815604125 ], [ -73.903018294732988, 40.556701743189244 ], [ -73.906585749210876, 40.55571062532816 ], [ -73.908797305577167, 40.55482950838892 ], [ -73.909282997928784, 40.556997241629283 ], [ -73.909267706566482, 40.560450279142728 ], [ -73.90923653142832, 40.560756522500952 ], [ -73.908353957480756, 40.560754480086381 ], [ -73.909810705132671, 40.561501916940301 ], [ -73.910621846301268, 40.563810518111225 ], [ -73.910032339741406, 40.564788804202941 ], [ -73.909811035714327, 40.564327155477528 ], [ -73.909277082149558, 40.563997124153524 ], [ -73.908515835745405, 40.563939048431287 ], [ -73.907948214866508, 40.564158323984337 ], [ -73.907996023468201, 40.563614657179869 ], [ -73.907699461610832, 40.563289628091567 ], [ -73.906976141944369, 40.562899705722351 ], [ -73.90611446821741, 40.562743210897715 ], [ -73.904223748765304, 40.562995158675477 ], [ -73.902922955789151, 40.56347776231528 ], [ -73.90220568634598, 40.5629654858012 ], [ -73.901086926736454, 40.563038115470661 ], [ -73.899055797342982, 40.563812948642855 ], [ -73.896132624453045, 40.565358427566814 ], [ -73.895540627401388, 40.564020699657355 ], [ -73.88536860326866, 40.566857011351175 ], [ -73.886546839364428, 40.568470978109382 ], [ -73.885341830196779, 40.568599348654601 ], [ -73.884896782201992, 40.568499584876847 ], [ -73.884309731052852, 40.568696119538657 ], [ -73.884887071247249, 40.568470205668682 ], [ -73.88475594832849, 40.568289139187421 ], [ -73.884707910774409, 40.568429673593911 ], [ -73.884336847748187, 40.568487934477972 ], [ -73.884736898650431, 40.568268513241271 ], [ -73.884456657761845, 40.567895763405943 ], [ -73.88416646626051, 40.568001951563964 ], [ -73.884256054500042, 40.568157133402345 ], [ -73.88414806727036, 40.56800897730114 ], [ -73.883989074502139, 40.568060160694188 ], [ -73.884071719351468, 40.568195014133465 ], [ -73.883974125313131, 40.568064973133488 ], [ -73.88379103703096, 40.568123911324527 ], [ -73.884023400924065, 40.568503115610817 ], [ -73.883780867561157, 40.568127185959867 ], [ -73.883576706068169, 40.568209769753544 ], [ -73.883691950437196, 40.568395359723333 ], [ -73.883478500156542, 40.568473114104222 ], [ -73.883904278844128, 40.568906204259243 ], [ -73.883687280963358, 40.568843404832307 ], [ -73.883369273162856, 40.568331859248289 ], [ -73.882629706406789, 40.568368929825084 ], [ -73.88192258910145, 40.568731441525557 ], [ -73.878674673616985, 40.568639939837951 ], [ -73.877400179667973, 40.568926178831227 ], [ -73.86663956227197, 40.574099218934428 ], [ -73.862883018909045, 40.576059761254719 ], [ -73.862803619928798, 40.575933034765349 ], [ -73.863992097390479, 40.575060722125805 ], [ -73.863406293712146, 40.574114331255878 ], [ -73.863611329523778, 40.573823057018551 ], [ -73.866628120238744, 40.573057648924618 ], [ -73.864466329331336, 40.569141785522433 ], [ -73.865334325933745, 40.568784783429223 ] ] ] } } +, +{ "type": "Feature", "id": 73, "properties": { "communityDistrict": 484, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/484" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.931775808843369, 40.557899562384854 ], [ -73.926419093968107, 40.548155780319931 ], [ -73.930546822433598, 40.546421979128752 ], [ -73.936120220423533, 40.544507415973499 ], [ -73.938899459428356, 40.543228013576652 ], [ -73.940474038573043, 40.542850072149172 ], [ -73.940559058617026, 40.541846776959794 ], [ -73.940736817313052, 40.541820087155529 ], [ -73.940129757299161, 40.548002561293096 ], [ -73.940128090006269, 40.549516289012665 ], [ -73.940652732456144, 40.552497817408472 ], [ -73.940171109941161, 40.554075540252313 ], [ -73.938997162970708, 40.555425499740892 ], [ -73.936650812011209, 40.556816174391713 ], [ -73.935433777460617, 40.557305667247839 ], [ -73.933226850549801, 40.55737939674038 ], [ -73.931775808843369, 40.557899562384854 ] ] ] } } +, +{ "type": "Feature", "id": 74, "properties": { "communityDistrict": 501, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/501" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.15945602371967, 40.641448332319776 ], [ -74.159978756996153, 40.641446480836365 ], [ -74.161112425881512, 40.64183545373627 ], [ -74.161460360052928, 40.644294969764857 ], [ -74.157987595406453, 40.643861788966056 ], [ -74.157433492009872, 40.643302857778991 ], [ -74.157915893407846, 40.643082694453689 ], [ -74.158134516033471, 40.642632530662979 ], [ -74.158550437705401, 40.642497501306387 ], [ -74.158810938112723, 40.641758634739404 ], [ -74.15945602371967, 40.641448332319776 ] ] ] } } +, +{ "type": "Feature", "id": 75, "properties": { "communityDistrict": 501, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/501" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.082212729149362, 40.648280162290064 ], [ -74.08142228269665, 40.648504724943756 ], [ -74.080728387623722, 40.648274873846255 ], [ -74.079809964287037, 40.648383312987917 ], [ -74.078995463992428, 40.648142554421945 ], [ -74.076506571528583, 40.646968818183339 ], [ -74.074452825635859, 40.645067487718052 ], [ -74.073958399764663, 40.645193205445509 ], [ -74.073591079192767, 40.64499892804298 ], [ -74.073498514336009, 40.645083373474655 ], [ -74.073856536847245, 40.645424816099599 ], [ -74.073338139229662, 40.645783116161816 ], [ -74.073245394648524, 40.645704925269506 ], [ -74.073690118064434, 40.645305724054779 ], [ -74.073238538107603, 40.644963863909808 ], [ -74.073025205731824, 40.645131238319735 ], [ -74.073202259546974, 40.644943941243504 ], [ -74.073055598817206, 40.6448079178409 ], [ -74.073425908135121, 40.645000567509591 ], [ -74.073121841835089, 40.644714799468929 ], [ -74.072798503414944, 40.644910123768732 ], [ -74.072587754878882, 40.644790863174045 ], [ -74.072703082676014, 40.644645595627509 ], [ -74.072564682329528, 40.644719748858144 ], [ -74.072666308371851, 40.644620920659086 ], [ -74.072532219597477, 40.64455679217064 ], [ -74.072724670790976, 40.644620883766493 ], [ -74.072698287990249, 40.644441273467329 ], [ -74.071687373767304, 40.645050328200554 ], [ -74.072309191127175, 40.644577753051713 ], [ -74.072018432132381, 40.644411932940834 ], [ -74.072291902818208, 40.644266047820402 ], [ -74.072184886016672, 40.644110465395116 ], [ -74.071860809368559, 40.644201761769722 ], [ -74.071756480877809, 40.644011845498589 ], [ -74.072058174400553, 40.643900427699009 ], [ -74.071649694085195, 40.643786885724602 ], [ -74.071596792011576, 40.643460157488612 ], [ -74.071356121766328, 40.643497304556021 ], [ -74.071482024326187, 40.643292625063495 ], [ -74.070937844714763, 40.643345963840545 ], [ -74.071443317063157, 40.643270561330581 ], [ -74.071131057209342, 40.643205263678269 ], [ -74.071502631474019, 40.643129304192875 ], [ -74.071477773885945, 40.642808293774557 ], [ -74.071648921989933, 40.642679931679616 ], [ -74.071703519672667, 40.642796335279961 ], [ -74.072184349030593, 40.642714093289484 ], [ -74.072109524446319, 40.642463216792741 ], [ -74.070374309905972, 40.642691403053135 ], [ -74.070329237153899, 40.642526128132289 ], [ -74.073238292495745, 40.64218473608193 ], [ -74.073144005859206, 40.641852973474933 ], [ -74.070246587646395, 40.642206974296464 ], [ -74.070193995592192, 40.642007502805278 ], [ -74.073086898193836, 40.641636814969594 ], [ -74.072890056096284, 40.640922672876023 ], [ -74.070018491487403, 40.641278132237495 ], [ -74.069983546539504, 40.641068943116778 ], [ -74.072850411949361, 40.640803688445011 ], [ -74.072776900770862, 40.640528963146913 ], [ -74.073077258377438, 40.640513311796305 ], [ -74.073090355787841, 40.638618999685832 ], [ -74.072929333847483, 40.638592649838223 ], [ -74.073014445621524, 40.638409383616214 ], [ -74.072379411293809, 40.638162726074071 ], [ -74.072606327975492, 40.638136308346994 ], [ -74.072572752126078, 40.637871909875891 ], [ -74.073483538017243, 40.637787357935579 ], [ -74.073487373035618, 40.637233529236205 ], [ -74.070539597051976, 40.637471404624279 ], [ -74.070494122138385, 40.637161886839557 ], [ -74.073415626987909, 40.636893950965103 ], [ -74.073373428880359, 40.636610725639386 ], [ -74.072094838075088, 40.636647277624547 ], [ -74.073358220455944, 40.636536094165137 ], [ -74.072831843444632, 40.633666032826071 ], [ -74.073328213823743, 40.632058442989894 ], [ -74.07298474612324, 40.630308978981432 ], [ -74.068021735439515, 40.628787585185442 ], [ -74.068130192479913, 40.628539046091475 ], [ -74.072911779365583, 40.629996379406478 ], [ -74.072292230800102, 40.627151707706574 ], [ -74.072783822049217, 40.62704855517876 ], [ -74.072255009557722, 40.624608750193943 ], [ -74.071061793964915, 40.622793154505416 ], [ -74.070719940369244, 40.622577481823278 ], [ -74.069755430883276, 40.621208139872358 ], [ -74.066493352963832, 40.618897601595144 ], [ -74.06596065271782, 40.619359015593702 ], [ -74.066409890192546, 40.618864467566667 ], [ -74.06619908020825, 40.618722481288387 ], [ -74.065572808412114, 40.619274543599914 ], [ -74.065445861354391, 40.61920262828891 ], [ -74.066682079829235, 40.618067495938504 ], [ -74.066415587151766, 40.617872498165553 ], [ -74.066049915359073, 40.618195410352712 ], [ -74.065698647441423, 40.617956415586576 ], [ -74.065465499527548, 40.618107070280772 ], [ -74.064961892804305, 40.617772398565229 ], [ -74.064357051586668, 40.618245944865585 ], [ -74.064257217515916, 40.618171687585544 ], [ -74.065099084072074, 40.617510956125443 ], [ -74.064436620050259, 40.617062414602543 ], [ -74.064012117679468, 40.617402225630514 ], [ -74.063908922403627, 40.617328825149038 ], [ -74.064327458580493, 40.616988503022149 ], [ -74.063761299297369, 40.61679875004328 ], [ -74.063766687440761, 40.616603630839904 ], [ -74.061307095502713, 40.614192250765576 ], [ -74.060336807920152, 40.611901880219641 ], [ -74.059854443286241, 40.612102958608112 ], [ -74.060016251162338, 40.612763687895388 ], [ -74.060197727296526, 40.612786375932281 ], [ -74.059999197116355, 40.612783899618634 ], [ -74.059769307381828, 40.612056647139333 ], [ -74.060272248099452, 40.611819639939192 ], [ -74.059533067489113, 40.611714254064239 ], [ -74.059270762436427, 40.611493132507562 ], [ -74.058901334215236, 40.61100228648629 ], [ -74.059123339398155, 40.610822289089086 ], [ -74.059085843087047, 40.610633677254484 ], [ -74.057163838789791, 40.608742783103651 ], [ -74.056858123804815, 40.608056357545159 ], [ -74.065170912507782, 40.604213508846286 ], [ -74.063640585538337, 40.602541948797345 ], [ -74.063505655942024, 40.602150054328227 ], [ -74.065506631910367, 40.602719880932405 ], [ -74.072066828498649, 40.605186347263952 ], [ -74.073999653080435, 40.605725567455515 ], [ -74.076567346693892, 40.606121664158529 ], [ -74.082809497974466, 40.606410978567631 ], [ -74.085427562483389, 40.607022390529522 ], [ -74.093056856199297, 40.610119935737288 ], [ -74.095558297685201, 40.6106247780369 ], [ -74.108344179355655, 40.610234767859801 ], [ -74.110009340522865, 40.610336205547725 ], [ -74.113274079507065, 40.611097937548465 ], [ -74.115087453690194, 40.611209431432336 ], [ -74.116874581820213, 40.610971825929809 ], [ -74.12452618721494, 40.609022318954672 ], [ -74.128748974405028, 40.608391741032456 ], [ -74.14287916669754, 40.60758543877516 ], [ -74.144561010299299, 40.607615025580579 ], [ -74.146281773651552, 40.607886273731602 ], [ -74.148396149821664, 40.608555443501373 ], [ -74.150186665170978, 40.60949781115437 ], [ -74.157926737964715, 40.615457424605061 ], [ -74.162354577564145, 40.61833563791938 ], [ -74.168080862736844, 40.620936256187974 ], [ -74.172362609579181, 40.62163579886596 ], [ -74.17459706258596, 40.62236401199165 ], [ -74.176100527930913, 40.62340624288138 ], [ -74.178883905737052, 40.625932871736872 ], [ -74.179937060479205, 40.626601296520917 ], [ -74.183687910928427, 40.628737925050686 ], [ -74.195559752592104, 40.635023985627974 ], [ -74.195185772436517, 40.635415781046561 ], [ -74.195200969000993, 40.635707944646256 ], [ -74.194422568546429, 40.636582105207943 ], [ -74.194542126457549, 40.637070027626741 ], [ -74.194786897484448, 40.63713151166305 ], [ -74.19462310145191, 40.637391183563665 ], [ -74.193973086275008, 40.637309114196334 ], [ -74.19358317694855, 40.637469116884624 ], [ -74.193719646219492, 40.637566814230084 ], [ -74.186524968975974, 40.643388662171425 ], [ -74.186232097436843, 40.643187396856327 ], [ -74.185908966678539, 40.643631439501739 ], [ -74.185114316148841, 40.643806238289976 ], [ -74.185247936632621, 40.643943526192238 ], [ -74.184835945808473, 40.644128266338718 ], [ -74.184424449663439, 40.643650691575999 ], [ -74.184113190644339, 40.643530083625755 ], [ -74.184064832320573, 40.643323990445751 ], [ -74.18437046839783, 40.643099576888872 ], [ -74.184214440660014, 40.643116895768415 ], [ -74.1839549073662, 40.642494160700039 ], [ -74.183650671300413, 40.642239641049599 ], [ -74.184026111920147, 40.643100408569687 ], [ -74.183845759369106, 40.643266156807364 ], [ -74.183474271664551, 40.642949209571711 ], [ -74.183242122791384, 40.642963677097839 ], [ -74.183800449424226, 40.64443190122303 ], [ -74.18366745872008, 40.644610485050038 ], [ -74.182889316218336, 40.644800282946029 ], [ -74.181184342439266, 40.644586159244859 ], [ -74.180872125132211, 40.644851429678326 ], [ -74.180481739536589, 40.644278924776472 ], [ -74.180040780152098, 40.644288140672614 ], [ -74.179906714553951, 40.644378720664236 ], [ -74.179965072740217, 40.645266982302886 ], [ -74.179884063614196, 40.645110240366471 ], [ -74.179774527332953, 40.645166679847954 ], [ -74.179729878180169, 40.644380702110858 ], [ -74.179331172494315, 40.64440051177251 ], [ -74.179251234066442, 40.645041876969223 ], [ -74.179074665838939, 40.644646507056514 ], [ -74.179035559945405, 40.643394787019638 ], [ -74.179404828020324, 40.643128966476397 ], [ -74.179587137873881, 40.641917683463006 ], [ -74.179187280672934, 40.642987538991306 ], [ -74.178790784368701, 40.642498503459507 ], [ -74.178483138270849, 40.642521174727875 ], [ -74.178256621460278, 40.642129227868175 ], [ -74.178341269459821, 40.642589475996779 ], [ -74.177812376087743, 40.642599844142083 ], [ -74.177686362998415, 40.642948596519531 ], [ -74.177211186369306, 40.643122778602034 ], [ -74.176823868959005, 40.642859145983287 ], [ -74.176704891511747, 40.642416911283973 ], [ -74.176357866175337, 40.642327220562848 ], [ -74.176687237912247, 40.64255213862117 ], [ -74.176667955382442, 40.643386844771591 ], [ -74.175981831919231, 40.643463622280727 ], [ -74.175602509544291, 40.643311298672387 ], [ -74.175471662552781, 40.644123105461098 ], [ -74.175684707425773, 40.644710284895076 ], [ -74.175466911571974, 40.644646521102288 ], [ -74.175296915450573, 40.645075076818912 ], [ -74.174896205251343, 40.645146047962854 ], [ -74.174586215433052, 40.645016931528538 ], [ -74.1743657300959, 40.645136258644435 ], [ -74.172941238916536, 40.644204522855837 ], [ -74.173001546516318, 40.643585405078611 ], [ -74.172447844850666, 40.643421570750803 ], [ -74.172361653865792, 40.643256267551841 ], [ -74.172721453711674, 40.642948498995587 ], [ -74.172440278618851, 40.64281204715865 ], [ -74.171963305659915, 40.642858132693299 ], [ -74.17150811099728, 40.643134442090826 ], [ -74.171335872818062, 40.642855765051948 ], [ -74.171860425825784, 40.642522928518844 ], [ -74.171750128528785, 40.642516755691176 ], [ -74.171849273111008, 40.642380402707083 ], [ -74.17172186950495, 40.64193954418144 ], [ -74.171478789894493, 40.641702509993578 ], [ -74.171587219237338, 40.641029593394471 ], [ -74.172023159181975, 40.640989214656706 ], [ -74.172979905820711, 40.640486067195631 ], [ -74.172062005806751, 40.640941613388478 ], [ -74.171569946854234, 40.641011532092747 ], [ -74.171386518592243, 40.641422735518901 ], [ -74.171373823505107, 40.642085015268052 ], [ -74.171050172398921, 40.642593819129949 ], [ -74.171275245115865, 40.642111682766703 ], [ -74.171192609512076, 40.641739626513946 ], [ -74.17028635441109, 40.641775308255845 ], [ -74.170078786510445, 40.642086160575445 ], [ -74.169152955691374, 40.641872859874347 ], [ -74.169064316288654, 40.642130016798554 ], [ -74.167740940513568, 40.641727774498477 ], [ -74.167576070925065, 40.641844793608016 ], [ -74.166533757928363, 40.641422637883643 ], [ -74.166215999170504, 40.642424100227899 ], [ -74.16609989896034, 40.64240658700119 ], [ -74.166318872924606, 40.641436675004918 ], [ -74.16580110755902, 40.641224511449465 ], [ -74.165634098297758, 40.641214371374701 ], [ -74.165443100823978, 40.642280546708534 ], [ -74.164941390411826, 40.64220899988927 ], [ -74.165190418242133, 40.640642305778407 ], [ -74.164734265368068, 40.640391467024799 ], [ -74.164571324327042, 40.64141866159494 ], [ -74.164414596491127, 40.641396784726048 ], [ -74.164596565974563, 40.640315745042379 ], [ -74.164168868136315, 40.639994110230305 ], [ -74.164001790673964, 40.641065860005838 ], [ -74.16386249420357, 40.641052797343782 ], [ -74.164047315166428, 40.639946658799516 ], [ -74.163849765838691, 40.639891508927292 ], [ -74.163454456819991, 40.639856560398229 ], [ -74.163228558441304, 40.640948510329906 ], [ -74.162793560280207, 40.641029624006705 ], [ -74.161675346942346, 40.640610784766757 ], [ -74.162284652520839, 40.638765652772292 ], [ -74.161818566122577, 40.638646278777607 ], [ -74.161449178267702, 40.639428336668288 ], [ -74.161302218015479, 40.639393734457009 ], [ -74.161660107729688, 40.638664993312332 ], [ -74.16124015814863, 40.638595010611006 ], [ -74.160904907044156, 40.639386140816924 ], [ -74.160736549384524, 40.639351014474506 ], [ -74.161081618248801, 40.638567768311582 ], [ -74.1608112684074, 40.638632958888806 ], [ -74.160348199931647, 40.63844372645346 ], [ -74.159864103990643, 40.639927823693668 ], [ -74.16023470596285, 40.638410316923874 ], [ -74.160057540660986, 40.638722352749845 ], [ -74.159856977678999, 40.638729202219416 ], [ -74.159577123979133, 40.637992583211876 ], [ -74.159319540370362, 40.637810404740293 ], [ -74.159056223788937, 40.63803931031979 ], [ -74.15900957887429, 40.638822577909771 ], [ -74.158895324168228, 40.63881527713027 ], [ -74.158932992266401, 40.638264017818067 ], [ -74.157892629538807, 40.637965051231099 ], [ -74.157841222729132, 40.638873914966119 ], [ -74.157733525063719, 40.638879035166184 ], [ -74.157773659367919, 40.637957159243463 ], [ -74.157187827165458, 40.637950805229806 ], [ -74.157101266907091, 40.639277718600141 ], [ -74.156977232942552, 40.639275401191803 ], [ -74.157070773715589, 40.637947135640061 ], [ -74.156102765568633, 40.637939590885196 ], [ -74.156114883307126, 40.637530747163517 ], [ -74.155698620531524, 40.637517938904132 ], [ -74.155618293261497, 40.638470220024672 ], [ -74.155492690002774, 40.63846677952548 ], [ -74.155586437589122, 40.637730775865379 ], [ -74.154829323958822, 40.637723855419651 ], [ -74.154692638645258, 40.639193968114199 ], [ -74.154778290119864, 40.63772154555086 ], [ -74.154596701633267, 40.637343344069009 ], [ -74.154252701394924, 40.637172310887372 ], [ -74.153414065977898, 40.637272719079263 ], [ -74.152797035773759, 40.637132754851656 ], [ -74.152697004496673, 40.63764184172463 ], [ -74.152218069504514, 40.637692581715953 ], [ -74.152297861755002, 40.638274288263553 ], [ -74.152136758999148, 40.638290747955637 ], [ -74.152046392332664, 40.637667215315453 ], [ -74.151195450071768, 40.637730788536139 ], [ -74.151395176136489, 40.639396513057427 ], [ -74.151248280325476, 40.639409342885038 ], [ -74.151129650904835, 40.638500680073882 ], [ -74.150556389080592, 40.638559330666375 ], [ -74.149967820905445, 40.638150075249214 ], [ -74.149678898308863, 40.637517674260572 ], [ -74.149458182203119, 40.637410320840566 ], [ -74.149312356633075, 40.637525958139513 ], [ -74.149418817743154, 40.6382916405461 ], [ -74.149194181556865, 40.638668331371903 ], [ -74.148881754777946, 40.638705207974063 ], [ -74.148558150922057, 40.637437837527223 ], [ -74.148777920058848, 40.638876251127691 ], [ -74.146021731017186, 40.639094549700694 ], [ -74.146057336183873, 40.639229257689863 ], [ -74.145192794815401, 40.639378497654711 ], [ -74.144671332341687, 40.639304267726772 ], [ -74.143861635958729, 40.638887962516513 ], [ -74.143749599189036, 40.638961577750599 ], [ -74.143817345302693, 40.63920747892395 ], [ -74.143573085937888, 40.639226785257094 ], [ -74.143361030768105, 40.639709845180249 ], [ -74.142577694020247, 40.639534137500974 ], [ -74.142387951493262, 40.639641210829893 ], [ -74.142297669809651, 40.64030580709364 ], [ -74.141556230383287, 40.640366768816186 ], [ -74.141480474694248, 40.640092194294624 ], [ -74.140762536452783, 40.640589396911182 ], [ -74.137575749044601, 40.641001152370336 ], [ -74.137344015292967, 40.641148322830105 ], [ -74.137370018159558, 40.641295463488142 ], [ -74.134352696396093, 40.641886797404375 ], [ -74.134302812513468, 40.64175379490851 ], [ -74.133497197666713, 40.64171690148109 ], [ -74.133415392332793, 40.641547116550989 ], [ -74.132991724594632, 40.641416936663838 ], [ -74.132402836431027, 40.641704388983726 ], [ -74.131255811802561, 40.64159683076381 ], [ -74.131461998307955, 40.641310104074272 ], [ -74.130183700791861, 40.640723826082287 ], [ -74.129677851002484, 40.641385312553595 ], [ -74.129490576373669, 40.64135483519582 ], [ -74.129977401967466, 40.640729872856312 ], [ -74.129307131868501, 40.640337411210957 ], [ -74.129229772610614, 40.640484372352375 ], [ -74.128933012099012, 40.640413929487828 ], [ -74.128907290334524, 40.641194827586133 ], [ -74.12881201847128, 40.640226977503893 ], [ -74.127526773068567, 40.640155304715712 ], [ -74.127147745638979, 40.639311056850197 ], [ -74.127027360209041, 40.639319077984275 ], [ -74.127053622052642, 40.640241737638952 ], [ -74.126448239190239, 40.640377994199007 ], [ -74.126069828621993, 40.64025447268741 ], [ -74.126199962916516, 40.641264314302909 ], [ -74.126368086889812, 40.641332380486901 ], [ -74.12564026804624, 40.641418492082984 ], [ -74.12613276551231, 40.641264388028233 ], [ -74.12599542488428, 40.640231242627998 ], [ -74.124155784450096, 40.640134716640013 ], [ -74.122856305552446, 40.640820508346273 ], [ -74.122572804791574, 40.640622340094168 ], [ -74.122907248985683, 40.641019266617086 ], [ -74.12276203509289, 40.641426635297123 ], [ -74.121841470615479, 40.641405894773463 ], [ -74.121990838075391, 40.641554639499418 ], [ -74.121853295978212, 40.64158069227954 ], [ -74.121806610820684, 40.641412159075522 ], [ -74.121779111975115, 40.641592547116957 ], [ -74.121558865605863, 40.641621632250015 ], [ -74.121760526686245, 40.641574314056548 ], [ -74.121723753188704, 40.64142866444385 ], [ -74.121326171116507, 40.641606569228848 ], [ -74.121311948296679, 40.641452531325015 ], [ -74.121194889577779, 40.641675009060279 ], [ -74.121280747943644, 40.64143249598709 ], [ -74.121077274050251, 40.641607419583508 ], [ -74.121180394417195, 40.641383445380214 ], [ -74.120713175886905, 40.64104578219083 ], [ -74.119934800889112, 40.641197604383819 ], [ -74.119971112135858, 40.641314814562264 ], [ -74.119607167478691, 40.641380309354147 ], [ -74.119956998757644, 40.642209453429054 ], [ -74.119854439420948, 40.642235613904766 ], [ -74.119529861057543, 40.641469914321874 ], [ -74.119097205597001, 40.641473466522669 ], [ -74.119400295324553, 40.642379378532716 ], [ -74.11900348200308, 40.641464614510056 ], [ -74.11861635170294, 40.641530365029681 ], [ -74.11896077402352, 40.642504515993195 ], [ -74.118836246169423, 40.642541864060327 ], [ -74.118401850835497, 40.641529800542855 ], [ -74.118007670936564, 40.641805497533284 ], [ -74.118156357438579, 40.642131298298722 ], [ -74.118048911563619, 40.642157461011791 ], [ -74.117917286831343, 40.641825876952097 ], [ -74.117288144803766, 40.641594377204576 ], [ -74.117112356995563, 40.641655967138846 ], [ -74.117507025232882, 40.642420408430098 ], [ -74.117137064693367, 40.641898064630418 ], [ -74.116721876638877, 40.642031756096564 ], [ -74.117224700825446, 40.643027359962574 ], [ -74.11666607646228, 40.642106766333903 ], [ -74.116300000827437, 40.642202665102246 ], [ -74.116670413826867, 40.643189824892815 ], [ -74.1161420863572, 40.642216454150315 ], [ -74.115719170422963, 40.642351819214007 ], [ -74.116226918394361, 40.643307105862725 ], [ -74.11564823433703, 40.642374682329233 ], [ -74.11535082182931, 40.642470540158172 ], [ -74.115117148180389, 40.642784992677186 ], [ -74.113796660860089, 40.643609515807867 ], [ -74.114040531460219, 40.644042502119753 ], [ -74.113950941344626, 40.64413659167456 ], [ -74.112888065109672, 40.644532444637527 ], [ -74.113890108903234, 40.643989669126007 ], [ -74.11354450863908, 40.643954120067256 ], [ -74.113330232584374, 40.643723496580492 ], [ -74.111161294692565, 40.645096423181258 ], [ -74.111766466500242, 40.64470616034491 ], [ -74.109739325644838, 40.645463728184716 ], [ -74.104722215997626, 40.645563657399435 ], [ -74.104123563017453, 40.645740432200093 ], [ -74.10168264441667, 40.645406732986693 ], [ -74.101618289547375, 40.645526538871444 ], [ -74.1016426644115, 40.645396548926129 ], [ -74.100100073566978, 40.645059416094547 ], [ -74.098800668198265, 40.645047034311347 ], [ -74.098499816255071, 40.645370361953738 ], [ -74.096045553475619, 40.645372747442117 ], [ -74.092988282536297, 40.645972780751919 ], [ -74.093005072963066, 40.646076314816817 ], [ -74.09135697876026, 40.646700724101017 ], [ -74.08940351627777, 40.647305776658257 ], [ -74.087674426814999, 40.648235293614761 ], [ -74.085707543782121, 40.648880553370446 ], [ -74.084844032157164, 40.64889114733942 ], [ -74.082212729149362, 40.648280162290064 ] ] ] } } +, +{ "type": "Feature", "id": 76, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.073466270662578, 40.578385685897373 ], [ -74.073304267553226, 40.578437855716786 ], [ -74.073551466574784, 40.578198393000477 ], [ -74.073496696754617, 40.578327959714429 ], [ -74.075082881926207, 40.579160158755549 ], [ -74.074994130735135, 40.579236557416301 ], [ -74.073466270662578, 40.578385685897373 ] ] ] } } +, +{ "type": "Feature", "id": 77, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.054988678394466, 40.606660696911753 ], [ -74.055287196971321, 40.606538890078674 ], [ -74.055160011223208, 40.606730491350852 ], [ -74.054988678394466, 40.606660696911753 ] ] ] } } +, +{ "type": "Feature", "id": 78, "properties": { "communityDistrict": 502, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/502" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.195686092233828, 40.635016864640079 ], [ -74.183687910928427, 40.628737925050686 ], [ -74.179937060479205, 40.626601296520917 ], [ -74.178883905737052, 40.625932871736872 ], [ -74.176100527930913, 40.62340624288138 ], [ -74.17459706258596, 40.62236401199165 ], [ -74.172362609579181, 40.62163579886596 ], [ -74.168080862736844, 40.620936256187974 ], [ -74.164841903853699, 40.619572404903359 ], [ -74.161630103265651, 40.617934935404165 ], [ -74.157926737964715, 40.615457424605061 ], [ -74.150186665170978, 40.60949781115437 ], [ -74.148869613388399, 40.60877157754846 ], [ -74.147243818170523, 40.608142117747342 ], [ -74.145499035237336, 40.607730377977234 ], [ -74.143550365070041, 40.607574723911554 ], [ -74.128748974405028, 40.608391741032456 ], [ -74.12452618721494, 40.609022318954672 ], [ -74.116874581820213, 40.610971825929809 ], [ -74.115087453690194, 40.611209431432336 ], [ -74.113274079507065, 40.611097937548465 ], [ -74.110479565020825, 40.610418656144716 ], [ -74.108901462239771, 40.610251584996156 ], [ -74.097769686979348, 40.610623592940705 ], [ -74.094824891188239, 40.610548057360035 ], [ -74.093056856199297, 40.610119935737288 ], [ -74.085427562483389, 40.607022390529522 ], [ -74.082809497974466, 40.606410978567631 ], [ -74.076567346693892, 40.606121664158529 ], [ -74.073999653080435, 40.605725567455515 ], [ -74.072066828498649, 40.605186347263952 ], [ -74.065506631910367, 40.602719880932405 ], [ -74.062564742929581, 40.601768091639556 ], [ -74.061956178680347, 40.601236455949824 ], [ -74.061055178967933, 40.599825891891832 ], [ -74.063759332922046, 40.59893485952216 ], [ -74.060560175404959, 40.594911514274571 ], [ -74.062793646958696, 40.593418545407623 ], [ -74.063164153052256, 40.593313809432964 ], [ -74.063360505573101, 40.592906556906662 ], [ -74.066625595022956, 40.590342019201351 ], [ -74.069391458526098, 40.587608032507489 ], [ -74.07144369874274, 40.585058382216687 ], [ -74.07275277759048, 40.584061527877466 ], [ -74.075251617283882, 40.581519567163788 ], [ -74.079150923809053, 40.578049972735876 ], [ -74.08853447613059, 40.572558506073889 ], [ -74.09204451514826, 40.56889233874098 ], [ -74.092770582239822, 40.567943410603036 ], [ -74.104709791417761, 40.574005939404699 ], [ -74.105242903772805, 40.573094039890904 ], [ -74.102958492987696, 40.571720971899971 ], [ -74.103939495406848, 40.570683061496204 ], [ -74.103681941735786, 40.570207754278179 ], [ -74.105303581836907, 40.57012777121389 ], [ -74.10660439327259, 40.568778268768853 ], [ -74.097631534169039, 40.564483335819247 ], [ -74.101737326858654, 40.559905578356037 ], [ -74.110139471719478, 40.564310666831886 ], [ -74.112112397874341, 40.565505557758527 ], [ -74.11429866700621, 40.562675724084087 ], [ -74.124899043723033, 40.568949142444467 ], [ -74.122789672075257, 40.570429844769556 ], [ -74.121502136573639, 40.57172155879838 ], [ -74.121343520823828, 40.572675734242111 ], [ -74.121830798297381, 40.57421708896559 ], [ -74.1217262391975, 40.574906985080723 ], [ -74.123183664838706, 40.575751816185644 ], [ -74.125133339042605, 40.57587998803136 ], [ -74.127087213660431, 40.576371608635171 ], [ -74.127653582682726, 40.575234942562744 ], [ -74.132610229910227, 40.57353016327037 ], [ -74.145804742060221, 40.571847768978088 ], [ -74.146990577390923, 40.572013320979188 ], [ -74.147235683628423, 40.571461058997379 ], [ -74.150145947937858, 40.571274061782518 ], [ -74.16256475586016, 40.56672939998014 ], [ -74.164386651215594, 40.565624861530104 ], [ -74.164996165540586, 40.561446970875082 ], [ -74.165894046428647, 40.560283362649464 ], [ -74.171462961420787, 40.561375429472051 ], [ -74.174887504223975, 40.562826419265335 ], [ -74.176593660742427, 40.563241329320675 ], [ -74.177945442082788, 40.563983366606685 ], [ -74.179306524568119, 40.569063994948522 ], [ -74.181230616124168, 40.569683482121739 ], [ -74.183065345501376, 40.571039242206346 ], [ -74.184284852693679, 40.571232751339103 ], [ -74.186099217618988, 40.572528016968889 ], [ -74.18918024989307, 40.575525564952748 ], [ -74.188989105236971, 40.573088766867933 ], [ -74.189195379703634, 40.570931206773466 ], [ -74.190251823459448, 40.571057138069015 ], [ -74.189896371152869, 40.57328262168204 ], [ -74.18998091618559, 40.574494878995075 ], [ -74.190462070348673, 40.576679119717888 ], [ -74.191768442451163, 40.576623635620471 ], [ -74.197628736767314, 40.579135411352787 ], [ -74.199298456486517, 40.579121899043635 ], [ -74.200726270672561, 40.579324901293269 ], [ -74.203546719545116, 40.579999792220157 ], [ -74.205957711403229, 40.579310888059489 ], [ -74.205992550814912, 40.580410383935892 ], [ -74.205724032897137, 40.580965688932132 ], [ -74.20541737056935, 40.581069486480246 ], [ -74.205081369872346, 40.581599468802622 ], [ -74.205088544746687, 40.582208190070169 ], [ -74.204709119027257, 40.582797669406794 ], [ -74.204739011926392, 40.58317590192997 ], [ -74.204400764996123, 40.583712945840752 ], [ -74.204633902740255, 40.584323238800081 ], [ -74.204364338990828, 40.58463414937065 ], [ -74.204414717297013, 40.585523675326144 ], [ -74.204119403242558, 40.585895541074571 ], [ -74.204274942826004, 40.586110054126955 ], [ -74.204265330028932, 40.58732053504292 ], [ -74.204580656947968, 40.588217603682608 ], [ -74.204272704020738, 40.588482555463038 ], [ -74.204122009644706, 40.588881474420035 ], [ -74.204323021423932, 40.589136617473308 ], [ -74.204574220727864, 40.588719138822881 ], [ -74.204705298486275, 40.588772370830547 ], [ -74.204435484007817, 40.589218397291695 ], [ -74.204646089432089, 40.589285745465801 ], [ -74.204408926175176, 40.589706763810376 ], [ -74.204203006091618, 40.589642971741675 ], [ -74.203858866092759, 40.590249525361621 ], [ -74.203699743358015, 40.590199906474787 ], [ -74.203885504562166, 40.589786109736252 ], [ -74.20265866971728, 40.59072214527977 ], [ -74.202377636097225, 40.590644712479786 ], [ -74.20201405533291, 40.590895798622427 ], [ -74.202467759565849, 40.590838824857329 ], [ -74.203052549115029, 40.591140541809821 ], [ -74.202963401956453, 40.591230922776631 ], [ -74.202454950631363, 40.590951125851966 ], [ -74.202027339207007, 40.590999079291961 ], [ -74.202123782333885, 40.591253326955652 ], [ -74.201840929244383, 40.591636483358869 ], [ -74.202003498130267, 40.591780764795011 ], [ -74.202316457683239, 40.591523965102695 ], [ -74.200925404963584, 40.59286637930483 ], [ -74.200471268808357, 40.592811752116404 ], [ -74.19974061000579, 40.59356466927909 ], [ -74.199362123456254, 40.594094082794371 ], [ -74.199483449275874, 40.594320936252963 ], [ -74.198732326196634, 40.595011798309336 ], [ -74.198561371435872, 40.595552781012294 ], [ -74.197950028516019, 40.596470354803671 ], [ -74.197513576527768, 40.596798986037868 ], [ -74.19749670863952, 40.597724259604533 ], [ -74.197306197797545, 40.598059522239787 ], [ -74.198759582052986, 40.601711975176229 ], [ -74.200148667599109, 40.603683350098684 ], [ -74.201385274065814, 40.604636966209604 ], [ -74.202218498510561, 40.605969679616479 ], [ -74.202816283745918, 40.608270827967296 ], [ -74.202301790141078, 40.611875642039003 ], [ -74.202443744495241, 40.613284693931924 ], [ -74.200383484286689, 40.616428097238582 ], [ -74.200589865119795, 40.617028927388283 ], [ -74.200828043861975, 40.617094288048229 ], [ -74.200914232382829, 40.617798822398584 ], [ -74.200874787401318, 40.618100410855853 ], [ -74.200541563318183, 40.617997639493566 ], [ -74.200352038562485, 40.618342198554707 ], [ -74.200839915165957, 40.618804302606122 ], [ -74.200680713488723, 40.619168454348056 ], [ -74.201069974031242, 40.620381539773575 ], [ -74.200505881958662, 40.620299672100074 ], [ -74.200428001919192, 40.620495411016812 ], [ -74.200873315820488, 40.620591154721112 ], [ -74.201258473101177, 40.621554830872171 ], [ -74.201432399980391, 40.621612608965307 ], [ -74.201230891375275, 40.622074210990583 ], [ -74.201275342631334, 40.622688276286041 ], [ -74.201545533347684, 40.622698052023075 ], [ -74.201632010381573, 40.62312156545854 ], [ -74.201584944355631, 40.623498333681397 ], [ -74.201344089053492, 40.623552568644286 ], [ -74.20139733073573, 40.62373612103805 ], [ -74.201076627903333, 40.624078346589755 ], [ -74.201060800332996, 40.625895179006818 ], [ -74.201182523538165, 40.626110215709417 ], [ -74.201416706679112, 40.626070513895712 ], [ -74.200986254994461, 40.62934414810745 ], [ -74.200804796812804, 40.629332571444237 ], [ -74.200754838954396, 40.629594634113431 ], [ -74.20047681715856, 40.629657077505016 ], [ -74.200425737851162, 40.629821165953324 ], [ -74.200408127716173, 40.630250100694539 ], [ -74.200787299827866, 40.630346273462649 ], [ -74.200403115770925, 40.630292362268506 ], [ -74.200184621590523, 40.631328669464182 ], [ -74.200403803732854, 40.6314458206799 ], [ -74.200172654077321, 40.631361080530979 ], [ -74.198500805625883, 40.632797911274352 ], [ -74.198343583296847, 40.633141487706276 ], [ -74.197959390075354, 40.63326685737902 ], [ -74.19759109214786, 40.633081284581166 ], [ -74.197286752228678, 40.633291931082091 ], [ -74.197193196760679, 40.633882317445554 ], [ -74.196469651591343, 40.634135533685338 ], [ -74.196029046914518, 40.634995848806987 ], [ -74.195686092233828, 40.635016864640079 ] ] ] } } +, +{ "type": "Feature", "id": 79, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.133195801013827, 40.536306742050556 ], [ -74.13301207668799, 40.536256065042828 ], [ -74.133383128530525, 40.536324420329031 ], [ -74.133195801013827, 40.536306742050556 ] ] ] } } +, +{ "type": "Feature", "id": 80, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.133075857686634, 40.536397488039498 ], [ -74.132942664536216, 40.536322033081916 ], [ -74.133172359750915, 40.536355197218271 ], [ -74.133075857686634, 40.536397488039498 ] ] ] } } +, +{ "type": "Feature", "id": 81, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.131415827643934, 40.538039545740887 ], [ -74.13181387201773, 40.538307358685685 ], [ -74.132112444955595, 40.53805229667767 ], [ -74.13169767667948, 40.5378571233149 ], [ -74.131846272134752, 40.537734643798721 ], [ -74.132135605124574, 40.5380331271827 ], [ -74.132424385792007, 40.537774960734161 ], [ -74.13191182124632, 40.537532840976937 ], [ -74.132079522796616, 40.537395034140332 ], [ -74.132453027641674, 40.537760281363965 ], [ -74.13275480490114, 40.537504536479908 ], [ -74.132235962692448, 40.537262550736571 ], [ -74.132398016499479, 40.537118863926686 ], [ -74.13277603711704, 40.537484010915854 ], [ -74.13307445571553, 40.537229123304009 ], [ -74.132557862049481, 40.536991407756553 ], [ -74.132735602333057, 40.536854535243158 ], [ -74.133094575113702, 40.537212016922552 ], [ -74.133391873773434, 40.536957984347538 ], [ -74.132874382810044, 40.536719632302329 ], [ -74.133035088395317, 40.536574875625867 ], [ -74.133410043653669, 40.536939721870915 ], [ -74.133860542062592, 40.536597962493047 ], [ -74.129938431897855, 40.539947135558201 ], [ -74.130208693615856, 40.539702663817231 ], [ -74.129683755086958, 40.539471719592427 ], [ -74.129845555034976, 40.539326856961551 ], [ -74.130227543637304, 40.539683717555505 ], [ -74.130521643489232, 40.539425558118857 ], [ -74.130002728808307, 40.539172393657736 ], [ -74.130169357325897, 40.539032878024102 ], [ -74.130541765211632, 40.539409306255664 ], [ -74.130839068518938, 40.539147592892448 ], [ -74.130322448992999, 40.538900471244453 ], [ -74.130485282947404, 40.538758916255979 ], [ -74.130859188541024, 40.53913133980231 ], [ -74.131153287152671, 40.538873574103619 ], [ -74.130654281077085, 40.538617311132228 ], [ -74.130799719621692, 40.538492490313338 ], [ -74.131174370507509, 40.538855160392629 ], [ -74.131474242153288, 40.538598314882712 ], [ -74.130975091159897, 40.538341749902081 ], [ -74.131119622826859, 40.53821889282775 ], [ -74.131497401382603, 40.538581380372193 ], [ -74.131793508156591, 40.538325991991705 ], [ -74.131415827643934, 40.538039545740887 ] ] ] } } +, +{ "type": "Feature", "id": 82, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.131298618201498, 40.537950649956692 ], [ -74.131195456893906, 40.537872408774533 ], [ -74.13152564883184, 40.537718542638316 ], [ -74.131298618201498, 40.537950649956692 ] ] ] } } +, +{ "type": "Feature", "id": 83, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.127753756744383, 40.543566025183466 ], [ -74.128030684975002, 40.543550558278895 ], [ -74.127629940380828, 40.543608893115554 ], [ -74.127753756744383, 40.543566025183466 ] ] ] } } +, +{ "type": "Feature", "id": 84, "properties": { "communityDistrict": 503, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/503" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.200726270672561, 40.579324901293269 ], [ -74.199298456486517, 40.579121899043635 ], [ -74.197628736767314, 40.579135411352787 ], [ -74.191768442451163, 40.576623635620471 ], [ -74.190462070348673, 40.576679119717888 ], [ -74.18998091618559, 40.574494878995075 ], [ -74.189896371152869, 40.57328262168204 ], [ -74.190251823459448, 40.571057138069015 ], [ -74.189195379703634, 40.570931206773466 ], [ -74.188989105236971, 40.573088766867933 ], [ -74.18918024989307, 40.575525564952748 ], [ -74.186099217618988, 40.572528016968889 ], [ -74.184284852693679, 40.571232751339103 ], [ -74.183065345501376, 40.571039242206346 ], [ -74.181230616124168, 40.569683482121739 ], [ -74.179306524568119, 40.569063994948522 ], [ -74.177945442082788, 40.563983366606685 ], [ -74.176593660742427, 40.563241329320675 ], [ -74.174887504223975, 40.562826419265335 ], [ -74.17085970519922, 40.561234430690405 ], [ -74.165894046428647, 40.560283362649464 ], [ -74.164996165540586, 40.561446970875082 ], [ -74.164386651215594, 40.565624861530104 ], [ -74.16256475586016, 40.56672939998014 ], [ -74.150145947937858, 40.571274061782518 ], [ -74.147235683628423, 40.571461058997379 ], [ -74.146990577390923, 40.572013320979188 ], [ -74.145804742060221, 40.571847768978088 ], [ -74.132953228990914, 40.573444774952655 ], [ -74.127653582682726, 40.575234942562744 ], [ -74.127087213660431, 40.576371608635171 ], [ -74.125133339042605, 40.57587998803136 ], [ -74.123183664838706, 40.575751816185644 ], [ -74.1217262391975, 40.574906985080723 ], [ -74.121830798297381, 40.57421708896559 ], [ -74.121343520823828, 40.572675734242111 ], [ -74.121502136573639, 40.57172155879838 ], [ -74.122789672075257, 40.570429844769556 ], [ -74.124899043723033, 40.568949142444467 ], [ -74.11429866700621, 40.562675724084087 ], [ -74.112112397874341, 40.565505557758527 ], [ -74.110139471719478, 40.564310666831886 ], [ -74.101737326858654, 40.559905578356037 ], [ -74.102505970611759, 40.559003251481698 ], [ -74.105728424764209, 40.556195227033406 ], [ -74.106461777747839, 40.5552783983727 ], [ -74.108910796341036, 40.553423629089828 ], [ -74.108852076983197, 40.553006299401069 ], [ -74.109447925597848, 40.552378801196859 ], [ -74.112749551671939, 40.55143532523725 ], [ -74.111652681883271, 40.55037651255796 ], [ -74.11252568934222, 40.549858451684074 ], [ -74.113684352105182, 40.550948084608379 ], [ -74.116762688174788, 40.548991391102973 ], [ -74.119574803796326, 40.551630751913834 ], [ -74.119458592911627, 40.552221906044522 ], [ -74.12730057821922, 40.557295172447724 ], [ -74.130424595729252, 40.554437042058417 ], [ -74.134558682258472, 40.551255078203482 ], [ -74.137697315929699, 40.549383546429411 ], [ -74.138617985475591, 40.548492384772743 ], [ -74.137006296887094, 40.546967771006322 ], [ -74.135857125660365, 40.546451695709621 ], [ -74.136411531190305, 40.546252350041833 ], [ -74.136516134391726, 40.545914747132521 ], [ -74.137096278087512, 40.545952217654381 ], [ -74.137179871957542, 40.545792864659795 ], [ -74.136260852809329, 40.544963297435942 ], [ -74.136115406581752, 40.545019845680606 ], [ -74.136383798019608, 40.544854671506251 ], [ -74.136284333069426, 40.544947040588518 ], [ -74.137192875197158, 40.545784294700034 ], [ -74.137508335088512, 40.545577557238666 ], [ -74.136733702272622, 40.544803742023028 ], [ -74.1365890713694, 40.544845486095127 ], [ -74.136873486308659, 40.544682593910004 ], [ -74.136748888229093, 40.544782584479712 ], [ -74.137949660505484, 40.546000336575453 ], [ -74.138869512745345, 40.545130197608046 ], [ -74.137624307451389, 40.544253566418256 ], [ -74.137756207556691, 40.544144928778152 ], [ -74.137679182441829, 40.544258625718768 ], [ -74.138755347034603, 40.544933958426824 ], [ -74.139019650793117, 40.544715561029903 ], [ -74.137989900985417, 40.543990043790089 ], [ -74.137867985245393, 40.544052544130921 ], [ -74.138043468977017, 40.543904561961156 ], [ -74.139033071786272, 40.544704910300027 ], [ -74.139539379816284, 40.544295140871327 ], [ -74.139432530026482, 40.544217217516142 ], [ -74.139145413461264, 40.5445095801199 ], [ -74.139032659903179, 40.544428097333082 ], [ -74.139420693378824, 40.544205943537179 ], [ -74.139287672952904, 40.544116589404581 ], [ -74.138974542267647, 40.544376101819672 ], [ -74.139220328597077, 40.544066699668619 ], [ -74.13908266920896, 40.543968224883123 ], [ -74.138875703883599, 40.544243557934806 ], [ -74.138728124459604, 40.544130022535029 ], [ -74.139077506586446, 40.543960153165628 ], [ -74.138834605855138, 40.543791358387857 ], [ -74.138585812249914, 40.544104638489486 ], [ -74.13841535772832, 40.543978427317093 ], [ -74.138823254616597, 40.543784054895831 ], [ -74.138539963341046, 40.543587927686737 ], [ -74.138206673329549, 40.543773678359244 ], [ -74.138279645219455, 40.543866694569722 ], [ -74.138150686211034, 40.543772036757112 ], [ -74.138526498104639, 40.543578542305248 ], [ -74.138341512886143, 40.54355182780882 ], [ -74.138522828351412, 40.543401550749273 ], [ -74.138459720337551, 40.543506285990695 ], [ -74.138590053062742, 40.54345034036659 ], [ -74.138533145425541, 40.543544367340843 ], [ -74.13956971698569, 40.544272274830497 ], [ -74.139836977860995, 40.544052462340794 ], [ -74.138706323972798, 40.543291410834378 ], [ -74.138906365394533, 40.543131777602298 ], [ -74.138771402268389, 40.543291332202919 ], [ -74.139036719229651, 40.543226993940607 ], [ -74.138983556086032, 40.543384411372891 ], [ -74.139676404806892, 40.543888995858616 ], [ -74.1398889740626, 40.543752471884915 ], [ -74.139703506941842, 40.543908777186225 ], [ -74.139865272643448, 40.544026844009466 ], [ -74.140012838359254, 40.543830426844771 ], [ -74.140385730736227, 40.544033185007827 ], [ -74.140328486944938, 40.543802087271068 ], [ -74.139349948419081, 40.543096085094135 ], [ -74.139219934858858, 40.543166085137841 ], [ -74.139408100773892, 40.543016584082643 ], [ -74.140295719471681, 40.543640457155497 ], [ -74.140126382196044, 40.543513393416866 ], [ -74.140287346049973, 40.543385071118294 ], [ -74.139361328040323, 40.542825863998644 ], [ -74.139536815480199, 40.542682150869759 ], [ -74.13947877271562, 40.542768492576869 ], [ -74.140306342581368, 40.54336711011436 ], [ -74.140627155669534, 40.543113029692485 ], [ -74.139755848904471, 40.542481155655167 ], [ -74.139631690741666, 40.542541097566179 ], [ -74.139858598916788, 40.542357175129133 ], [ -74.139774847764841, 40.542464047798703 ], [ -74.140646148698224, 40.543094214902098 ], [ -74.140845203697253, 40.542938844978202 ], [ -74.141324267942451, 40.543094133830195 ], [ -74.140406853347756, 40.542360855450418 ], [ -74.140165100374617, 40.542366218433486 ], [ -74.140335282297514, 40.542228209259491 ], [ -74.140207236065791, 40.542365224298329 ], [ -74.140406562348133, 40.542327082552873 ], [ -74.141410735604069, 40.543022415080344 ], [ -74.141078921849413, 40.542791171850759 ], [ -74.14108436804699, 40.542638913703847 ], [ -74.141326531058169, 40.54274704748731 ], [ -74.141143112990719, 40.542587658851346 ], [ -74.141335471929779, 40.542588792470205 ], [ -74.140262904007017, 40.541961511522587 ], [ -74.140495810113123, 40.542060855323918 ], [ -74.140679980930472, 40.541908592971026 ], [ -74.14061919911957, 40.542056021643823 ], [ -74.141349014454804, 40.542577523130745 ], [ -74.141461515854417, 40.542483902223871 ], [ -74.141294421236935, 40.542335875885676 ], [ -74.14148097474451, 40.542467709070451 ], [ -74.141348546945508, 40.542290464870867 ], [ -74.141549579059784, 40.54241061750453 ], [ -74.14179720022932, 40.542200415381544 ], [ -74.140894510246355, 40.541571110188322 ], [ -74.140639842380125, 40.541694542036439 ], [ -74.140958168328922, 40.541432077964956 ], [ -74.140894775834056, 40.541537094860487 ], [ -74.141873079719289, 40.542166658129382 ], [ -74.141672262430845, 40.542335464095203 ], [ -74.142292974326395, 40.542263372587776 ], [ -74.142183442866795, 40.542017861051676 ], [ -74.142476622359553, 40.541333709774797 ], [ -74.141776613832604, 40.540088456334708 ], [ -74.142004592824776, 40.53956795916433 ], [ -74.141728926512968, 40.53933948409702 ], [ -74.142303512758517, 40.539069975289628 ], [ -74.142338315774893, 40.538949190408331 ], [ -74.141765878596431, 40.538542040998934 ], [ -74.14226513073875, 40.53814035366387 ], [ -74.141837893882652, 40.538421620426753 ], [ -74.142229922946555, 40.538114452874623 ], [ -74.142078935782365, 40.538003964285885 ], [ -74.14216718019145, 40.537932761068127 ], [ -74.141218653355523, 40.537253998432462 ], [ -74.141041579163385, 40.53734688446206 ], [ -74.141298254718251, 40.537138177948336 ], [ -74.141241131174667, 40.537234691733246 ], [ -74.142185749075452, 40.537917777285458 ], [ -74.142389636895999, 40.537753260002191 ], [ -74.141582876908927, 40.537087577952377 ], [ -74.143701200154382, 40.537211482642043 ], [ -74.144182834205608, 40.536794031387394 ], [ -74.14474069813582, 40.535801044211155 ], [ -74.145363246527637, 40.535856356896431 ], [ -74.146020082847699, 40.53555352822287 ], [ -74.145996695492187, 40.53539039281268 ], [ -74.146255129277151, 40.535538684733424 ], [ -74.147015251838084, 40.535324472444607 ], [ -74.149217332639694, 40.534241587760867 ], [ -74.14977717489235, 40.533887868801514 ], [ -74.149758464892486, 40.533424302752941 ], [ -74.150695536182781, 40.532545838937075 ], [ -74.151120256905244, 40.532741382506636 ], [ -74.151757988316177, 40.532401794028019 ], [ -74.151682412700112, 40.532276422862083 ], [ -74.151853377444851, 40.532164021023299 ], [ -74.152456609366894, 40.532067944000872 ], [ -74.154131107911027, 40.530722911256341 ], [ -74.154047499498077, 40.530594564841628 ], [ -74.154214677686397, 40.530665367090272 ], [ -74.154641119999013, 40.530334638424307 ], [ -74.15454357374459, 40.530062136303606 ], [ -74.154928948493989, 40.53022548357562 ], [ -74.155647824051854, 40.529642984094743 ], [ -74.1555035725126, 40.529438026337672 ], [ -74.155731534349243, 40.529600904029813 ], [ -74.155990003215535, 40.529419602722839 ], [ -74.156448681501359, 40.528931842203903 ], [ -74.156187319183175, 40.528611371593342 ], [ -74.15667105208162, 40.528993311607181 ], [ -74.157018619462718, 40.528977655809541 ], [ -74.15826103107301, 40.528300499162917 ], [ -74.157972394579062, 40.528067085844384 ], [ -74.158326451269886, 40.528278426783096 ], [ -74.159701345202066, 40.527295992831519 ], [ -74.160304263795837, 40.52755574681855 ], [ -74.161582174235221, 40.527013477776677 ], [ -74.162271961086446, 40.527194261805704 ], [ -74.163720015948641, 40.526350032996007 ], [ -74.164746570686106, 40.52608034550147 ], [ -74.168844318197671, 40.523590681151397 ], [ -74.169997112273322, 40.523045772451368 ], [ -74.170488598100206, 40.523084171644676 ], [ -74.171102636961692, 40.52354970667362 ], [ -74.172063201754753, 40.523320569364707 ], [ -74.17601245544931, 40.520875962828022 ], [ -74.177582955221055, 40.519230866865989 ], [ -74.178318766924733, 40.519945785601138 ], [ -74.179243813604344, 40.519984216896972 ], [ -74.17939137555561, 40.520278278914645 ], [ -74.179810168830699, 40.520552337707066 ], [ -74.181040812088867, 40.520705036287126 ], [ -74.182335556210873, 40.520352238061292 ], [ -74.183148109621271, 40.519870832266172 ], [ -74.183423705834059, 40.519889724567996 ], [ -74.184831165456174, 40.519341358599746 ], [ -74.18656733191348, 40.518115850404868 ], [ -74.18849353678938, 40.516340024578327 ], [ -74.189268755573266, 40.515344976872342 ], [ -74.18884297863984, 40.515087166607557 ], [ -74.189712184983989, 40.515320378534291 ], [ -74.191789226636246, 40.51305164412549 ], [ -74.193443183641023, 40.511567309612047 ], [ -74.194096438022214, 40.51064124236111 ], [ -74.195213400649209, 40.509977652954525 ], [ -74.196499369914235, 40.509923530610259 ], [ -74.198608317073791, 40.511197023110867 ], [ -74.199672053615387, 40.51142685045631 ], [ -74.200037123128538, 40.512677598824574 ], [ -74.198925727938686, 40.512777305998362 ], [ -74.199361274081028, 40.513010194415095 ], [ -74.200828982542419, 40.513030703958414 ], [ -74.207597017286147, 40.511835156151754 ], [ -74.208618656886273, 40.511448235147107 ], [ -74.209687893974404, 40.510797369342384 ], [ -74.209189968250399, 40.510499056955176 ], [ -74.209322004642004, 40.510398628895395 ], [ -74.20971374205881, 40.510777703242951 ], [ -74.209853381943944, 40.51067192532355 ], [ -74.210519496438764, 40.509991368889487 ], [ -74.211791831979937, 40.508173273494968 ], [ -74.213381699327996, 40.506766288192786 ], [ -74.213531308036693, 40.50639747722785 ], [ -74.213855338227177, 40.506607024534247 ], [ -74.214342501297224, 40.506518911287245 ], [ -74.215108158616331, 40.506059755681747 ], [ -74.215912420643122, 40.505371087983754 ], [ -74.217582401605483, 40.503341392601186 ], [ -74.217945702554999, 40.503360090191769 ], [ -74.219770164173994, 40.502742688470335 ], [ -74.223046578555454, 40.502478179081756 ], [ -74.225002321943251, 40.501770295065306 ], [ -74.227294135107513, 40.502297499484285 ], [ -74.229715842370666, 40.502085687587616 ], [ -74.23033892500186, 40.501804178371934 ], [ -74.230538045497326, 40.501946091311268 ], [ -74.2311449502442, 40.501851215880635 ], [ -74.233599041855769, 40.500912531599873 ], [ -74.235264959918837, 40.500606028517716 ], [ -74.236788456515754, 40.500000835335342 ], [ -74.237667704255927, 40.499123254932378 ], [ -74.237987373799754, 40.499165980869343 ], [ -74.238513216353454, 40.498896075363632 ], [ -74.239880172796916, 40.497573626399522 ], [ -74.244327982506704, 40.497546740156288 ], [ -74.245489389405321, 40.497044773874713 ], [ -74.24676102774194, 40.496133987611785 ], [ -74.248027474200029, 40.496190036869436 ], [ -74.24917156868959, 40.496567297053339 ], [ -74.250854894222471, 40.498006163595143 ], [ -74.251167732457546, 40.498993090653308 ], [ -74.252599827399848, 40.499643075886254 ], [ -74.25335537967338, 40.500413197913403 ], [ -74.253845906621052, 40.501635669316968 ], [ -74.254274076567199, 40.502161180509617 ], [ -74.25530969808149, 40.504136410744337 ], [ -74.255307103776204, 40.506536454118979 ], [ -74.255542691639405, 40.507837742496136 ], [ -74.255248177531726, 40.508243230712992 ], [ -74.254628567099076, 40.508674825727006 ], [ -74.254972903709643, 40.50880566213322 ], [ -74.254618507282132, 40.508683909302434 ], [ -74.253997530795829, 40.508970314985028 ], [ -74.254038045678541, 40.509252671645669 ], [ -74.254388778028684, 40.509344184133134 ], [ -74.254314541693105, 40.509413694648956 ], [ -74.254020695053384, 40.509272975787439 ], [ -74.253689118810598, 40.509425596439115 ], [ -74.254646512629094, 40.509826245924366 ], [ -74.254526217322365, 40.509973014880948 ], [ -74.253648125182551, 40.509470530436268 ], [ -74.253315798051304, 40.509861504540929 ], [ -74.253063945530855, 40.511055257369726 ], [ -74.253258068856695, 40.511088689380777 ], [ -74.253008472775534, 40.511193989705362 ], [ -74.253526850767102, 40.511677766031831 ], [ -74.253036353815546, 40.511433160458736 ], [ -74.253089508793749, 40.512121961416213 ], [ -74.25195197554325, 40.512997002545767 ], [ -74.252125913970602, 40.513710379799946 ], [ -74.251353314148872, 40.514392897558395 ], [ -74.250545004972395, 40.514716839715405 ], [ -74.25004587756581, 40.515108510494251 ], [ -74.250555264135556, 40.515716342428838 ], [ -74.250455099238252, 40.515772007109007 ], [ -74.250156265826206, 40.515361188197971 ], [ -74.249888248749983, 40.515521545192932 ], [ -74.250560073376747, 40.516106740528372 ], [ -74.250415359213875, 40.516188335025859 ], [ -74.249356609239001, 40.515005928193688 ], [ -74.249337752436915, 40.515140814379315 ], [ -74.249215287419545, 40.515084861297822 ], [ -74.249632201750941, 40.515545377949586 ], [ -74.249513936786784, 40.51569398097643 ], [ -74.249941588080418, 40.516137488190971 ], [ -74.249430968990893, 40.515687885597472 ], [ -74.248647646321061, 40.516112628496771 ], [ -74.24875958315144, 40.516356221134217 ], [ -74.248545892916752, 40.51616991714841 ], [ -74.248600808230506, 40.516313331917836 ], [ -74.248284220838897, 40.516486949553666 ], [ -74.248946245997573, 40.5171945397881 ], [ -74.249407707889091, 40.516980830418461 ], [ -74.248514491218913, 40.517475626263582 ], [ -74.24891910653055, 40.517208433692424 ], [ -74.247518118355316, 40.515735864778598 ], [ -74.246930480084771, 40.516066454417739 ], [ -74.24664175789384, 40.516121936076615 ], [ -74.246440396509527, 40.515965027503306 ], [ -74.24612857679287, 40.516137392573704 ], [ -74.246749971940659, 40.51649561324043 ], [ -74.246510402676776, 40.516669855305942 ], [ -74.246995569965947, 40.517182085195529 ], [ -74.246478997053288, 40.516687327210789 ], [ -74.246377365012961, 40.516739093357486 ], [ -74.246536829001187, 40.516959960378045 ], [ -74.24634969801771, 40.51675337193489 ], [ -74.245208615283545, 40.517289743624097 ], [ -74.245669890672389, 40.517789708049847 ], [ -74.245634731699454, 40.51807558074573 ], [ -74.245088044605396, 40.518066839404177 ], [ -74.24429835217606, 40.518515003107723 ], [ -74.243652285115999, 40.518294614623123 ], [ -74.242324778332758, 40.518326525021742 ], [ -74.241259686752144, 40.519180469822921 ], [ -74.241031229185424, 40.519542512687885 ], [ -74.240490696218444, 40.519191628971384 ], [ -74.239822583167765, 40.520090711443757 ], [ -74.240732846146173, 40.52056915165241 ], [ -74.24117293552203, 40.521060131431966 ], [ -74.241332195755234, 40.520894517580196 ], [ -74.242932351023697, 40.521227161131364 ], [ -74.242583757053083, 40.522198648999165 ], [ -74.24276246783721, 40.522726789127518 ], [ -74.242613978384341, 40.523080937524476 ], [ -74.242801570095736, 40.524007296286648 ], [ -74.243357926854998, 40.524818912815192 ], [ -74.243965008247216, 40.524905366336405 ], [ -74.243338839497198, 40.525853805178542 ], [ -74.242828607906958, 40.527418880173265 ], [ -74.242886713153439, 40.528200130827386 ], [ -74.242510289315049, 40.528445934764704 ], [ -74.242455410252418, 40.528954699545892 ], [ -74.242188017623107, 40.529437551660209 ], [ -74.242245280714556, 40.529822779506333 ], [ -74.241507333228967, 40.531041342795142 ], [ -74.241810616215332, 40.532562675421495 ], [ -74.242177995973634, 40.532576138477971 ], [ -74.242282003381547, 40.533387496517719 ], [ -74.241964589363278, 40.533633718431766 ], [ -74.242045702860082, 40.534346377050404 ], [ -74.242366102673031, 40.534734232561931 ], [ -74.242580242530238, 40.534767541105666 ], [ -74.242857762382698, 40.535353440320286 ], [ -74.243663480908481, 40.536074719267091 ], [ -74.2441249598849, 40.536196295728971 ], [ -74.243976551065742, 40.536460498559144 ], [ -74.244147826045733, 40.536881409915587 ], [ -74.244587539107243, 40.536932927072797 ], [ -74.244936930485935, 40.536663876918517 ], [ -74.24533651176057, 40.536905994434612 ], [ -74.245261339131503, 40.537152213112961 ], [ -74.244800695993305, 40.537409145437984 ], [ -74.24444259737659, 40.538066765991516 ], [ -74.245271007033836, 40.539241870191226 ], [ -74.245602056324458, 40.540949594578699 ], [ -74.245992847905612, 40.541278932157802 ], [ -74.246486148157899, 40.542213392655597 ], [ -74.247677781054904, 40.543125403301389 ], [ -74.248034637356938, 40.543093240441387 ], [ -74.246184223835186, 40.545633624849131 ], [ -74.243363466186551, 40.547865135234417 ], [ -74.243584476513547, 40.54762399087852 ], [ -74.242935859290199, 40.547113219245205 ], [ -74.242203184630725, 40.546948677294942 ], [ -74.24039182810057, 40.547663310173725 ], [ -74.238371913701172, 40.549141566812921 ], [ -74.237619635332194, 40.550123468577198 ], [ -74.236416234489695, 40.550508626843339 ], [ -74.236174624446562, 40.55142706190513 ], [ -74.23652110289828, 40.552020815905308 ], [ -74.236415597951648, 40.552328066310814 ], [ -74.234898658666978, 40.553005216669895 ], [ -74.233777550774789, 40.552514199512324 ], [ -74.233324000803222, 40.552509143565857 ], [ -74.232291129331657, 40.553363697975662 ], [ -74.231933314449435, 40.554149830117133 ], [ -74.23071036198121, 40.555557594258914 ], [ -74.230249520876214, 40.55538674616394 ], [ -74.229319541857137, 40.55549158696271 ], [ -74.229352538255455, 40.555750600620364 ], [ -74.229051621876366, 40.556107082105058 ], [ -74.228332143720053, 40.55639035431139 ], [ -74.227436827305326, 40.556038533516393 ], [ -74.226404945429508, 40.556255712845854 ], [ -74.223903341344936, 40.555897065544464 ], [ -74.223864214980864, 40.556097694082837 ], [ -74.223442650404166, 40.556046569904765 ], [ -74.223786067087914, 40.555880267004532 ], [ -74.223161290086352, 40.555787142690463 ], [ -74.222972196328627, 40.555503373622606 ], [ -74.22257486867268, 40.55540620977834 ], [ -74.22179863887051, 40.555417070759034 ], [ -74.221570066131989, 40.555648982957671 ], [ -74.221298646044602, 40.55536622468555 ], [ -74.220867150934012, 40.555940202277704 ], [ -74.220553401510614, 40.555885284170301 ], [ -74.220297118748434, 40.555597921061462 ], [ -74.220106271647779, 40.554928812423157 ], [ -74.219743569307226, 40.554612672072437 ], [ -74.219080608993451, 40.554847002197931 ], [ -74.21933701278985, 40.55569136698103 ], [ -74.219217163709331, 40.555796969878585 ], [ -74.218958326330622, 40.554857582913186 ], [ -74.218593257828076, 40.55467421024774 ], [ -74.218750368805601, 40.556027740537253 ], [ -74.218173601933955, 40.555600523248472 ], [ -74.217753423258443, 40.555005284777387 ], [ -74.21604246060636, 40.555544118782983 ], [ -74.214740531988184, 40.556242389132088 ], [ -74.214992570306649, 40.556794932794659 ], [ -74.21462340478287, 40.556913362220882 ], [ -74.214226987883535, 40.556557317918198 ], [ -74.213955374495612, 40.556657154294328 ], [ -74.213764673175888, 40.556396943325282 ], [ -74.213274572913832, 40.556624934276563 ], [ -74.21313586263048, 40.557051009892199 ], [ -74.212643437989115, 40.55728972655433 ], [ -74.212673026654826, 40.557647560008029 ], [ -74.211998432303091, 40.558378067479701 ], [ -74.211756204551293, 40.559124757276152 ], [ -74.211970292347104, 40.559297737575712 ], [ -74.211880423216812, 40.559596937861762 ], [ -74.211178266081816, 40.560446842907183 ], [ -74.211340053472242, 40.561230353084035 ], [ -74.211096003550736, 40.562131470789168 ], [ -74.211379978587786, 40.563492205274827 ], [ -74.210962774012273, 40.564290450150224 ], [ -74.210623437439438, 40.565520200174497 ], [ -74.209541259233049, 40.567514584873244 ], [ -74.209534672329085, 40.567928048658032 ], [ -74.209321752683351, 40.568025300756887 ], [ -74.209241685472435, 40.568409858879768 ], [ -74.20886661112192, 40.568909793929137 ], [ -74.208926363286693, 40.569624298449973 ], [ -74.208017053814189, 40.570517957400732 ], [ -74.208168511021881, 40.570719423414239 ], [ -74.207835590149756, 40.572610000446446 ], [ -74.207262982732203, 40.574113027771538 ], [ -74.207078004104162, 40.574266340216582 ], [ -74.207226502060522, 40.574486796411705 ], [ -74.207070243002704, 40.574743025323485 ], [ -74.207284314131755, 40.575254532872584 ], [ -74.206812056267751, 40.575922020188194 ], [ -74.206886555877631, 40.576217271059569 ], [ -74.207089171794976, 40.576305590338762 ], [ -74.20655509342086, 40.576711094171273 ], [ -74.206531254956033, 40.576901637367683 ], [ -74.206816167047521, 40.577154042628074 ], [ -74.206230057073981, 40.577739435727366 ], [ -74.205917325093964, 40.578616647553616 ], [ -74.205957711403229, 40.579310888059489 ], [ -74.203546719545116, 40.579999792220157 ], [ -74.200726270672561, 40.579324901293269 ] ] ] } } +, +{ "type": "Feature", "id": 85, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.118341692271045, 40.550459695296496 ], [ -74.116762688174788, 40.548991391102973 ], [ -74.113684352105182, 40.550948084608379 ], [ -74.11252568934222, 40.549858451684074 ], [ -74.111652681883271, 40.55037651255796 ], [ -74.112749551671939, 40.55143532523725 ], [ -74.109447925597848, 40.552378801196859 ], [ -74.110284573216532, 40.551496357418159 ], [ -74.112788469578973, 40.547884262221665 ], [ -74.113010461044652, 40.547780065430068 ], [ -74.113383406162768, 40.548073375150679 ], [ -74.114737811652688, 40.547996610676556 ], [ -74.115461778211795, 40.547515362250195 ], [ -74.116080047490129, 40.547864946834189 ], [ -74.116545321769834, 40.547872393146555 ], [ -74.117299888803487, 40.547464026193026 ], [ -74.118041330178258, 40.547306612895241 ], [ -74.119778100831297, 40.545470456741306 ], [ -74.121580703280799, 40.545208604005694 ], [ -74.122453060503901, 40.544770545629802 ], [ -74.124244497127776, 40.543110380910733 ], [ -74.12638185131074, 40.540520755459198 ], [ -74.130711842726697, 40.534535075436182 ], [ -74.133564434321698, 40.531511174806326 ], [ -74.136188489933488, 40.529620796687219 ], [ -74.136907990104831, 40.529281918883385 ], [ -74.13728504251867, 40.529740467984801 ], [ -74.138146354877321, 40.52967775847403 ], [ -74.138830307305511, 40.52988935670605 ], [ -74.139017859847655, 40.530270923920916 ], [ -74.139150760138222, 40.531520111621703 ], [ -74.140270152695919, 40.533300017195849 ], [ -74.140610927031204, 40.534130600190132 ], [ -74.140586071933313, 40.534699936841122 ], [ -74.140324753935673, 40.535284579722322 ], [ -74.13995163489804, 40.535457088527622 ], [ -74.138224291190653, 40.535208267323917 ], [ -74.135075093257001, 40.53524117062301 ], [ -74.133810051556324, 40.535642939339226 ], [ -74.128133262740079, 40.540552966012825 ], [ -74.12756314969576, 40.541453976706059 ], [ -74.127387895879167, 40.542295429661387 ], [ -74.127731434273556, 40.543423084803656 ], [ -74.127557605144531, 40.543480354726803 ], [ -74.127638968544574, 40.543628190093472 ], [ -74.127818934465552, 40.543564399644538 ], [ -74.129018646331659, 40.545059241749136 ], [ -74.130114047150812, 40.545975725630484 ], [ -74.131550261918889, 40.54652452900347 ], [ -74.133086643400929, 40.546834295077929 ], [ -74.134355033650678, 40.546788934314158 ], [ -74.135857125660365, 40.546451695709621 ], [ -74.137006296887094, 40.546967771006322 ], [ -74.138617985475591, 40.548492384772743 ], [ -74.137697315929699, 40.549383546429411 ], [ -74.134558682258472, 40.551255078203482 ], [ -74.130424595729252, 40.554437042058417 ], [ -74.12730057821922, 40.557295172447724 ], [ -74.119458592911627, 40.552221906044522 ], [ -74.119574803796326, 40.551630751913834 ], [ -74.118341692271045, 40.550459695296496 ] ] ] } } +, +{ "type": "Feature", "id": 86, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.050508064032456, 40.566422034160802 ], [ -74.049983525625734, 40.566395924928266 ], [ -74.049316403620864, 40.56588774778043 ], [ -74.049236298420439, 40.565362736368094 ], [ -74.050026200927391, 40.565318180621404 ], [ -74.050906017050877, 40.566094342130583 ], [ -74.050679167486123, 40.566310845736389 ], [ -74.051071598037751, 40.566722493397791 ], [ -74.050508064032456, 40.566422034160802 ] ] ] } } +, +{ "type": "Feature", "id": 87, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.053140367551109, 40.577702714540862 ], [ -74.054060449398733, 40.577116445238865 ], [ -74.054897781448872, 40.577782440920132 ], [ -74.054693169074852, 40.579691632229419 ], [ -74.054851346253884, 40.579707593077593 ], [ -74.05484560052173, 40.579945791427598 ], [ -74.053686291504178, 40.580548759614402 ], [ -74.052931906398157, 40.579902474665836 ], [ -74.053140367551109, 40.577702714540862 ] ] ] } } +, +{ "type": "Feature", "id": 88, "properties": { "communityDistrict": 595, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/595" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.055521261223674, 40.606482892568643 ], [ -74.055287196971321, 40.606538890078674 ], [ -74.055059740958058, 40.606265420452822 ], [ -74.053810698054406, 40.605912718852977 ], [ -74.053607296748808, 40.60523880941804 ], [ -74.054020399589731, 40.604934719911071 ], [ -74.053539644801134, 40.603633557567207 ], [ -74.053033306933116, 40.601466470680279 ], [ -74.053383967571051, 40.600895213818603 ], [ -74.053407058394598, 40.600522661043833 ], [ -74.052245317332876, 40.599748014152865 ], [ -74.052871538433891, 40.599867255467061 ], [ -74.054474223339042, 40.598755539548435 ], [ -74.057193698387195, 40.596395078812293 ], [ -74.059726906431635, 40.59390821671235 ], [ -74.059641205961526, 40.593709388392959 ], [ -74.059766606876437, 40.593835257510129 ], [ -74.060553537029875, 40.5933797554232 ], [ -74.062152744325459, 40.592025040541969 ], [ -74.065033323561806, 40.588990997865274 ], [ -74.064541861337744, 40.588433992394222 ], [ -74.064778330329943, 40.588488310725658 ], [ -74.067222768168875, 40.586734449257492 ], [ -74.070963101820453, 40.583181990402586 ], [ -74.071491805871489, 40.582168782652033 ], [ -74.070657815378155, 40.581625625037709 ], [ -74.071466708670883, 40.582027243898501 ], [ -74.073353895248744, 40.580678939139332 ], [ -74.075082881926207, 40.579160158755549 ], [ -74.075798195407131, 40.578309250650612 ], [ -74.075234536179607, 40.577998803253159 ], [ -74.075346225824049, 40.577887969571719 ], [ -74.076015969779007, 40.578244912290231 ], [ -74.076399283985182, 40.577994855052509 ], [ -74.076297410184395, 40.57789862509334 ], [ -74.076492830772963, 40.577960846125308 ], [ -74.076882264720226, 40.577636788906311 ], [ -74.07673747682658, 40.577372509324988 ], [ -74.076938815286425, 40.577534344586134 ], [ -74.077374724565132, 40.57728215840342 ], [ -74.079263212569074, 40.575671292205683 ], [ -74.078679339389154, 40.575081825223322 ], [ -74.079336405382577, 40.575627204016868 ], [ -74.080906832830635, 40.574689804751543 ], [ -74.084690759914295, 40.571477913939738 ], [ -74.086548587606771, 40.569632319135032 ], [ -74.08691263719129, 40.568985842683055 ], [ -74.086216322242592, 40.568532698147088 ], [ -74.087250783161068, 40.569081678192831 ], [ -74.088356998476343, 40.568266707590865 ], [ -74.089249060751357, 40.5670155705347 ], [ -74.08998259932838, 40.567380011533089 ], [ -74.090999054670405, 40.566737129097518 ], [ -74.094049684097314, 40.562981647611039 ], [ -74.09407071109429, 40.562731619461154 ], [ -74.095110633612919, 40.563173273434572 ], [ -74.095423718622285, 40.563154635568011 ], [ -74.095671980613716, 40.562775598245366 ], [ -74.096118471354586, 40.562587574490067 ], [ -74.098197671960264, 40.559836476805167 ], [ -74.098290308236997, 40.559332614156808 ], [ -74.097821270899061, 40.559053466217158 ], [ -74.098764154150018, 40.559423551651427 ], [ -74.099380314327362, 40.558964193361156 ], [ -74.099717845473364, 40.559141300031079 ], [ -74.099929141354139, 40.559070685653047 ], [ -74.100799639281107, 40.558321821115825 ], [ -74.101243541398716, 40.557660831315509 ], [ -74.101846376747048, 40.556216988779987 ], [ -74.101840329648994, 40.555944639241218 ], [ -74.101374775957126, 40.555692372106684 ], [ -74.101405168449404, 40.55553852616503 ], [ -74.102650763602455, 40.556134404785205 ], [ -74.10309839177431, 40.555904641450532 ], [ -74.10465943491397, 40.554120467311208 ], [ -74.105089079474538, 40.553235468010655 ], [ -74.104844476363382, 40.553025814556236 ], [ -74.106428220651679, 40.553853373621237 ], [ -74.106481508123196, 40.554156828372925 ], [ -74.107047384495033, 40.554195450541982 ], [ -74.10768623398171, 40.553976671478146 ], [ -74.109286477685686, 40.552606897257768 ], [ -74.108852076983197, 40.553006299401069 ], [ -74.108910796341036, 40.553423629089828 ], [ -74.106461777747839, 40.5552783983727 ], [ -74.105728424764209, 40.556195227033406 ], [ -74.102505970611759, 40.559003251481698 ], [ -74.097631534169039, 40.564483335819247 ], [ -74.10660439327259, 40.568778268768853 ], [ -74.105303581836907, 40.57012777121389 ], [ -74.103681941735786, 40.570207754278179 ], [ -74.103939495406848, 40.570683061496204 ], [ -74.102958492987696, 40.571720971899971 ], [ -74.105242903772805, 40.573094039890904 ], [ -74.104709791417761, 40.574005939404699 ], [ -74.092770582239822, 40.567943410603036 ], [ -74.09204451514826, 40.56889233874098 ], [ -74.08853447613059, 40.572558506073889 ], [ -74.079150923809053, 40.578049972735876 ], [ -74.075251617283882, 40.581519567163788 ], [ -74.07275277759048, 40.584061527877466 ], [ -74.07144369874274, 40.585058382216687 ], [ -74.069391458526098, 40.587608032507489 ], [ -74.066625595022956, 40.590342019201351 ], [ -74.063360505573101, 40.592906556906662 ], [ -74.063164153052256, 40.593313809432964 ], [ -74.062793646958696, 40.593418545407623 ], [ -74.060560175404959, 40.594911514274571 ], [ -74.063759332922046, 40.59893485952216 ], [ -74.061055178967933, 40.599825891891832 ], [ -74.061956178680347, 40.601236455949824 ], [ -74.062564742929581, 40.601768091639556 ], [ -74.063505655942024, 40.602150054328227 ], [ -74.063640585538337, 40.602541948797345 ], [ -74.065170912507782, 40.604213508846286 ], [ -74.056858123804815, 40.608056357545159 ], [ -74.05649565936767, 40.607247648256205 ], [ -74.055521261223674, 40.606482892568643 ] ] ] } } +, +{ "type": "Feature", "id": 89, "properties": { "communityDistrict": 315, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/315" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.937044800018953, 40.583124991022267 ], [ -73.937124597984507, 40.583346730164195 ], [ -73.938119176950934, 40.583340478995126 ], [ -73.938094206277697, 40.583116810716952 ], [ -73.938552763024276, 40.583337984991608 ], [ -73.938477128858722, 40.583177897271135 ], [ -73.93866846657744, 40.58316442817501 ], [ -73.938627557651174, 40.583067021797454 ], [ -73.939296404506692, 40.583167268735288 ], [ -73.939301530189695, 40.583333215054104 ], [ -73.939825389164895, 40.583331446250838 ], [ -73.939828840505442, 40.583170535692517 ], [ -73.939858516427236, 40.583331334095774 ], [ -73.940577458289098, 40.58332822557346 ], [ -73.940566089477699, 40.583087368308057 ], [ -73.940109036170483, 40.583075068681325 ], [ -73.940676578022732, 40.583065805567323 ], [ -73.940588728099328, 40.583206947456418 ], [ -73.940700194488329, 40.583327624731751 ], [ -73.940916454907381, 40.583302406531288 ], [ -73.940897105433365, 40.583087607080088 ], [ -73.940738406046293, 40.583075612817524 ], [ -73.941025179186852, 40.583070361906188 ], [ -73.940934220853563, 40.5833023064367 ], [ -73.941156996754884, 40.583299227468054 ], [ -73.941201557288863, 40.583090465204968 ], [ -73.941209298239841, 40.583298504883025 ], [ -73.941440508572043, 40.583340147476164 ], [ -73.94157408083575, 40.583607555939359 ], [ -73.942551335652936, 40.583514476170805 ], [ -73.942020333527509, 40.583110423782443 ], [ -73.942701678289026, 40.583508797614286 ], [ -73.943047097119248, 40.583492129464553 ], [ -73.942563161909774, 40.583127347516431 ], [ -73.943195062239454, 40.583489662633575 ], [ -73.943544675309226, 40.583471014361066 ], [ -73.943093348473809, 40.583134545214705 ], [ -73.943691530045712, 40.583467754265953 ], [ -73.94406764167104, 40.583472009110366 ], [ -73.943635897957421, 40.583145573909533 ], [ -73.944234035871347, 40.583479951646517 ], [ -73.944618286662347, 40.583496626087666 ], [ -73.944174584578462, 40.583158291217906 ], [ -73.944320597521582, 40.583159424877294 ], [ -73.944775440812947, 40.583507804409805 ], [ -73.945174777816149, 40.583521378244193 ], [ -73.944712710301502, 40.583165044530588 ], [ -73.944845129409146, 40.583164234340913 ], [ -73.945349925034748, 40.583529052110372 ], [ -73.945730148645495, 40.583544874558406 ], [ -73.945266701246254, 40.583182518567234 ], [ -73.945376052378805, 40.5831819316505 ], [ -73.945899118880888, 40.583552662610209 ], [ -73.946286346919536, 40.583568684702762 ], [ -73.945799412588912, 40.583194640230253 ], [ -73.946434290593515, 40.583563152592404 ], [ -73.946789450687774, 40.583550467614117 ], [ -73.946316036487531, 40.583206940210658 ], [ -73.946917962761049, 40.583546033249696 ], [ -73.947268327053067, 40.58353318156928 ], [ -73.946822029471946, 40.583191191871023 ], [ -73.947468678613191, 40.583528195362383 ], [ -73.953493220486791, 40.582988198260963 ], [ -73.953301359956768, 40.58200274963346 ], [ -73.94969672499397, 40.582319401066641 ], [ -73.94274062592514, 40.580995589559244 ], [ -73.933812806639096, 40.581132925742033 ], [ -73.935134076389716, 40.58118378955735 ], [ -73.935108791151904, 40.581303817020974 ], [ -73.93340042885238, 40.581215388869218 ], [ -73.933758013561231, 40.581132041605827 ], [ -73.933003489164122, 40.58114467541715 ], [ -73.932971619566004, 40.581283630075156 ], [ -73.932909587448179, 40.581145767361072 ], [ -73.932872950224024, 40.581286000473149 ], [ -73.932806364933853, 40.581147418686825 ], [ -73.932580066339554, 40.581264741203796 ], [ -73.931062884016683, 40.576163099718514 ], [ -73.931502567440589, 40.575660505126763 ], [ -73.934860928304303, 40.57552779666814 ], [ -73.934893564551913, 40.575221646500196 ], [ -73.935078618963487, 40.575509466010551 ], [ -73.936471075865896, 40.575860496356356 ], [ -73.936707525374729, 40.575418427216235 ], [ -73.936831162282289, 40.575560016725824 ], [ -73.942509078284274, 40.575373554531744 ], [ -73.942557122617387, 40.575564330899105 ], [ -73.944279114060762, 40.575800511747424 ], [ -73.944633191296063, 40.575691196747087 ], [ -73.944596428809746, 40.57524561778304 ], [ -73.944748418059618, 40.575512024748612 ], [ -73.945723520466885, 40.575559439722625 ], [ -73.946182376011237, 40.575298836219396 ], [ -73.945923903017515, 40.575115432309694 ], [ -73.952077916478672, 40.574398602865294 ], [ -73.952543410273947, 40.574223979504254 ], [ -73.953994234050796, 40.574266317041776 ], [ -73.954083334518174, 40.574073272183533 ], [ -73.95428546787106, 40.575731336515922 ], [ -73.953651717053447, 40.575823980895507 ], [ -73.954438286024342, 40.579599959422239 ], [ -73.955071116580399, 40.581680175764198 ], [ -73.954940242385263, 40.581968904738119 ], [ -73.955919977208097, 40.582447832319147 ], [ -73.956041468004543, 40.582736254319975 ], [ -73.956457291257294, 40.582658850555148 ], [ -73.957031342462898, 40.583035332919756 ], [ -73.959007400390789, 40.582838127802084 ], [ -73.960047986674823, 40.583269872406589 ], [ -73.960516672384173, 40.589452911647577 ], [ -73.97433591765278, 40.587941518707822 ], [ -73.974216992455439, 40.590111555499078 ], [ -73.983721526152465, 40.595821078217057 ], [ -73.9732398353256, 40.596978818056797 ], [ -73.972177428008635, 40.604194711537346 ], [ -73.972994340048416, 40.60881414180237 ], [ -73.953598887869589, 40.610949865606109 ], [ -73.951667768069612, 40.611313185999862 ], [ -73.950777930201639, 40.611635456791277 ], [ -73.949119702127703, 40.613053217667755 ], [ -73.944827709962937, 40.616046209109363 ], [ -73.944055609321495, 40.611992841734242 ], [ -73.939012468730184, 40.607599477306643 ], [ -73.939049627748119, 40.607433297476042 ], [ -73.938489866191787, 40.606921943503181 ], [ -73.938347084371415, 40.607000456057875 ], [ -73.937890508110314, 40.606587861063474 ], [ -73.938098083418382, 40.606195209680678 ], [ -73.938434935758409, 40.605973863058743 ], [ -73.934262667258807, 40.60223071136695 ], [ -73.933551171536052, 40.602687280824874 ], [ -73.928131396709531, 40.597777928146151 ], [ -73.929568583093001, 40.596820264919806 ], [ -73.91805568651229, 40.586436545676733 ], [ -73.91919033106555, 40.585962493141999 ], [ -73.919611163540722, 40.58616907889423 ], [ -73.92017117347487, 40.585939908784958 ], [ -73.920404982311013, 40.586089779645668 ], [ -73.920821568760772, 40.585995773200665 ], [ -73.920669808659596, 40.585773626519611 ], [ -73.92089145806905, 40.585903061300435 ], [ -73.920906038363853, 40.585590581533602 ], [ -73.921012183320244, 40.585753595858655 ], [ -73.921899551879449, 40.58569317567391 ], [ -73.921848191077729, 40.585838421436357 ], [ -73.922118512898621, 40.585810514153025 ], [ -73.922353373772992, 40.586023936562341 ], [ -73.922964098263606, 40.585894457063759 ], [ -73.92353515890872, 40.585977723872134 ], [ -73.923895018840881, 40.585800713812297 ], [ -73.924042621471685, 40.585899717842175 ], [ -73.924021820754263, 40.585773535332557 ], [ -73.924679452837736, 40.585637746453415 ], [ -73.925203615142465, 40.58580627115542 ], [ -73.925418357534781, 40.586196514062841 ], [ -73.927207741889035, 40.58772275918674 ], [ -73.927682877473231, 40.587361600134038 ], [ -73.927247505213728, 40.587753274719788 ], [ -73.927356809288938, 40.588022176276155 ], [ -73.927945983511307, 40.587658820005039 ], [ -73.927916257411638, 40.587548735386818 ], [ -73.92807906817859, 40.58770246052319 ], [ -73.927369357535397, 40.588044598802959 ], [ -73.927404523116664, 40.588206445198104 ], [ -73.927901758069154, 40.587953409280338 ], [ -73.928021852764232, 40.588068756350872 ], [ -73.927923180483148, 40.587996187276786 ], [ -73.927454677909921, 40.588299564074042 ], [ -73.927761436391137, 40.588660609758797 ], [ -73.92395294850094, 40.591139850525039 ], [ -73.924199633926591, 40.591364280188685 ], [ -73.924601299385657, 40.591199325003124 ], [ -73.928159051230963, 40.588825249589981 ], [ -73.928620264991991, 40.58912043629617 ], [ -73.928881396844318, 40.588853719575326 ], [ -73.928631587027041, 40.589126361638932 ], [ -73.928734264673039, 40.589147165167702 ], [ -73.929258352174131, 40.588932373437252 ], [ -73.928757034994192, 40.589152966924985 ], [ -73.929981878661906, 40.589515997878614 ], [ -73.929361283544694, 40.589250661977275 ], [ -73.929766157734122, 40.589292068442461 ], [ -73.930577057182575, 40.589890641203155 ], [ -73.930103259887659, 40.589606105071411 ], [ -73.930375432473355, 40.589940459710405 ], [ -73.930297880916754, 40.590035167629964 ], [ -73.93058940447365, 40.589952591132516 ], [ -73.930628493644264, 40.59025299033776 ], [ -73.930467689171536, 40.590061372588018 ], [ -73.930674343554628, 40.590590721315145 ], [ -73.9305250722865, 40.590333113429786 ], [ -73.930471350802236, 40.590859601196989 ], [ -73.930623441806503, 40.590918694275757 ], [ -73.930647499486284, 40.590619683169187 ], [ -73.930641067665022, 40.590944566419722 ], [ -73.930460136618791, 40.591001219020896 ], [ -73.930696415921219, 40.591018541399791 ], [ -73.930449601729251, 40.591079691929131 ], [ -73.930725787957527, 40.591089860265519 ], [ -73.930371977849546, 40.591211400876297 ], [ -73.930604443069598, 40.591186176220965 ], [ -73.930600669062329, 40.591484582041666 ], [ -73.930574953010165, 40.591229731613936 ], [ -73.930465367658201, 40.591273407596098 ], [ -73.930405416622051, 40.591730942142931 ], [ -73.930605806565865, 40.59154136250843 ], [ -73.930450919227113, 40.59224503726179 ], [ -73.930399056021386, 40.591755596428975 ], [ -73.930364436033003, 40.592480093513544 ], [ -73.930362216339915, 40.59231177060942 ], [ -73.930176166341994, 40.592406220970382 ], [ -73.930353645245049, 40.592554950294414 ], [ -73.930265108613881, 40.592619404932535 ], [ -73.930189706582809, 40.592454118288771 ], [ -73.930023010262047, 40.592683046384785 ], [ -73.930212514893668, 40.592678370292404 ], [ -73.929912502223758, 40.592853394873416 ], [ -73.93009899390043, 40.592872440452723 ], [ -73.93005244539404, 40.59300024352072 ], [ -73.929890669643669, 40.592870791368057 ], [ -73.929712820366021, 40.593120048248032 ], [ -73.930042384195886, 40.593060879318038 ], [ -73.92995591843642, 40.593308572326194 ], [ -73.929975936292905, 40.593173815413437 ], [ -73.929741473226528, 40.593143922445535 ], [ -73.92982317336849, 40.593372695598802 ], [ -73.930039224626, 40.593348430884191 ], [ -73.929780817420578, 40.593436741471585 ], [ -73.930016509521863, 40.594094535056954 ], [ -73.930215194703152, 40.593972944184507 ], [ -73.930081594531387, 40.593595462871228 ], [ -73.930227562800411, 40.593930620896849 ], [ -73.930524887278011, 40.593880240701182 ], [ -73.930359688756027, 40.593975941323578 ], [ -73.930546790707112, 40.594199304085528 ], [ -73.930299344703215, 40.593938054510616 ], [ -73.930040119476928, 40.594104887330424 ], [ -73.930432460636794, 40.594402674949485 ], [ -73.930761229054937, 40.594381900521164 ], [ -73.930623056186292, 40.594204497659469 ], [ -73.930834465024674, 40.594413571304578 ], [ -73.930663035101119, 40.594463950932813 ], [ -73.930935161146081, 40.594459949860976 ], [ -73.931220560048402, 40.594183317263102 ], [ -73.931325121460702, 40.594276256189993 ], [ -73.930954634264012, 40.594465945206167 ], [ -73.931184257461297, 40.594501165706284 ], [ -73.930781313796189, 40.594498955276755 ], [ -73.931933649839792, 40.59469240430235 ], [ -73.932308263954042, 40.594916340487096 ], [ -73.932563438393345, 40.594763472296982 ], [ -73.932477028886822, 40.594916096675931 ], [ -73.932671473270631, 40.594911753314058 ], [ -73.932826549188206, 40.594803744969504 ], [ -73.932676539757509, 40.594236417967579 ], [ -73.931758907430861, 40.592830104899178 ], [ -73.9317109079429, 40.593050300520481 ], [ -73.931534952933262, 40.592692830518892 ], [ -73.931740875119829, 40.59279439369439 ], [ -73.931436756138055, 40.592167134518093 ], [ -73.931139561234943, 40.592008928747859 ], [ -73.931399979863869, 40.59180489056213 ], [ -73.931009893431579, 40.591931042480915 ], [ -73.930994659732264, 40.591818198986061 ], [ -73.931353010206649, 40.591791193962251 ], [ -73.931425654397444, 40.591604184147364 ], [ -73.93104847941612, 40.591726290866369 ], [ -73.931076021598102, 40.591597592767727 ], [ -73.931230571089529, 40.591641983133421 ], [ -73.93130541636036, 40.591360358668304 ], [ -73.931245924948186, 40.591636976995822 ], [ -73.931422527160365, 40.591588570390883 ], [ -73.931543347331072, 40.591350471183389 ], [ -73.931432724208165, 40.591239241307946 ], [ -73.931559394416198, 40.59129296407076 ], [ -73.931212948589547, 40.589531308119263 ], [ -73.930685680598131, 40.588821954226788 ], [ -73.930091382132943, 40.588988862378528 ], [ -73.930650219275236, 40.588669869770712 ], [ -73.930399675975096, 40.588465520415262 ], [ -73.929728463801865, 40.588613915829733 ], [ -73.930385452562675, 40.588441616078839 ], [ -73.929722326467314, 40.587560082903785 ], [ -73.931349178240637, 40.587328167229479 ], [ -73.93118073044306, 40.586798733713387 ], [ -73.928573940023924, 40.587061502371817 ], [ -73.928082329715892, 40.586697693937623 ], [ -73.928149693795206, 40.586178107762912 ], [ -73.927919337858469, 40.586135806046094 ], [ -73.928276724976143, 40.586106943570066 ], [ -73.92815700695617, 40.585864523066064 ], [ -73.927743111531484, 40.586050065209321 ], [ -73.927369557858881, 40.586006585316326 ], [ -73.927586418299001, 40.586254135332325 ], [ -73.927516219296891, 40.58639826671498 ], [ -73.927304338238798, 40.585865928419864 ], [ -73.926380419469922, 40.585295756348145 ], [ -73.926548209633268, 40.58557531538758 ], [ -73.925493543583087, 40.585019292003146 ], [ -73.926345420747182, 40.585276154753124 ], [ -73.925305275572356, 40.584641788088561 ], [ -73.924553439264201, 40.584611818712624 ], [ -73.92344966315008, 40.584817853965369 ], [ -73.921012555475045, 40.584575018612249 ], [ -73.920195630533783, 40.58463453786981 ], [ -73.918841775393432, 40.585043116291097 ], [ -73.918795907379931, 40.585223868594795 ], [ -73.918422224994771, 40.585371996276294 ], [ -73.918246860347239, 40.585423445237751 ], [ -73.918240285134715, 40.585316704032117 ], [ -73.917069826937279, 40.58573698211103 ], [ -73.91575404754839, 40.584423268116637 ], [ -73.918310079023996, 40.583889113218525 ], [ -73.921163825588323, 40.583694549307914 ], [ -73.929983417987728, 40.584233435272964 ], [ -73.929632480749021, 40.583398808625454 ], [ -73.930671919416767, 40.583159811896472 ], [ -73.930890532312461, 40.582930194084 ], [ -73.930740694334773, 40.582758947695154 ], [ -73.930960032104991, 40.582728610786468 ], [ -73.93171422041415, 40.582811778842334 ], [ -73.931942589519693, 40.583109750227074 ], [ -73.931928111867549, 40.58286976893524 ], [ -73.932376957428247, 40.5829185099781 ], [ -73.932013799611525, 40.582925981744872 ], [ -73.93201839411536, 40.583111124618526 ], [ -73.932598770539386, 40.582919267816408 ], [ -73.93349145637734, 40.583058717260258 ], [ -73.934209714869667, 40.582979798893412 ], [ -73.934379702092329, 40.583139033674037 ], [ -73.934559929029476, 40.583165413126302 ], [ -73.934560571019816, 40.583020173832239 ], [ -73.935690716397673, 40.583275093189116 ], [ -73.935673531459869, 40.58301942441252 ], [ -73.935824392098567, 40.583021115551659 ], [ -73.935766572110879, 40.58327750984968 ], [ -73.936132335907573, 40.58331447456537 ], [ -73.936287231894042, 40.5830009035583 ], [ -73.936096686913586, 40.582948745832866 ], [ -73.936566070950661, 40.582957648786788 ], [ -73.936300312726843, 40.583002955675838 ], [ -73.936317161954562, 40.583179051201462 ], [ -73.936575924407833, 40.583240505589949 ], [ -73.93697427463762, 40.583230326411289 ], [ -73.936987678970041, 40.583016272171555 ], [ -73.936633074225071, 40.582972211904064 ], [ -73.93763269743296, 40.583096268284059 ], [ -73.937044800018953, 40.583124991022267 ] ] ] } } +, +{ "type": "Feature", "id": 90, "properties": { "communityDistrict": 303, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/303" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.918046068924596, 40.687213247770437 ], [ -73.916301198615528, 40.678577111931439 ], [ -73.916464860322691, 40.676647040549057 ], [ -73.952063452586728, 40.67858633071836 ], [ -73.958292168077833, 40.679831133494801 ], [ -73.960292816681118, 40.690346249915414 ], [ -73.961749948352178, 40.696846168402978 ], [ -73.961898378242424, 40.698188332531487 ], [ -73.957019931894408, 40.698973914349807 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.918046068924596, 40.687213247770437 ] ] ] } } +, +{ "type": "Feature", "id": 91, "properties": { "communityDistrict": 311, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/311" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.972994340048416, 40.60881414180237 ], [ -73.972177428008635, 40.604194711537346 ], [ -73.9732398353256, 40.596978818056797 ], [ -73.9850613649743, 40.595670918819373 ], [ -73.985200273048463, 40.596398126116434 ], [ -73.991539344444476, 40.590390903081278 ], [ -73.993308549669493, 40.589583898580422 ], [ -73.994215546083012, 40.588868530985344 ], [ -73.997956397392883, 40.587269506365622 ], [ -73.994876776953689, 40.588771746675121 ], [ -73.995347376612173, 40.589331380439951 ], [ -74.000114495384025, 40.586951640902576 ], [ -74.000108860195041, 40.586560729096725 ], [ -74.000317343032677, 40.586453335023251 ], [ -74.000489120678509, 40.587042855123975 ], [ -74.000382071157219, 40.58713305734944 ], [ -73.997883112510394, 40.588343437922781 ], [ -73.99867293309633, 40.589195549939632 ], [ -73.999236903969589, 40.588935328269052 ], [ -73.99946446811073, 40.589233269380699 ], [ -73.998378348821092, 40.58977044508854 ], [ -73.99883618014573, 40.589625489542264 ], [ -73.998443870794901, 40.589860399177489 ], [ -73.998778006555142, 40.590314355341867 ], [ -73.998443259368671, 40.590240105494416 ], [ -73.9977597276729, 40.590952469613761 ], [ -73.997111685715367, 40.591277977443738 ], [ -73.997189827457603, 40.59160618053734 ], [ -73.99806438267683, 40.591209464731477 ], [ -73.998128693953362, 40.591288664257938 ], [ -73.997282697697145, 40.59171481486807 ], [ -73.997548510584039, 40.591917578170403 ], [ -73.999167618620803, 40.591149134810472 ], [ -73.999573291993897, 40.591092566583306 ], [ -74.000043149870848, 40.591204286761624 ], [ -74.000230752858585, 40.591478489805247 ], [ -73.999012172191215, 40.592335117001213 ], [ -73.999483049383045, 40.592969199897588 ], [ -73.998388310836191, 40.59353139160627 ], [ -73.998544213158269, 40.593596761754178 ], [ -74.001057484457178, 40.592537005062248 ], [ -74.001933202083251, 40.593894695412757 ], [ -74.001844151354732, 40.593977667237873 ], [ -74.003458755732638, 40.595924684008843 ], [ -74.005526220520593, 40.597539154070653 ], [ -74.009217239049079, 40.599844045152338 ], [ -74.011150366434961, 40.600830664233975 ], [ -74.012998870333746, 40.601559207546529 ], [ -74.015824048287158, 40.602294980866354 ], [ -74.017590780265849, 40.602503018992188 ], [ -74.018323472168518, 40.60241765113043 ], [ -74.019135639688301, 40.602612754504833 ], [ -74.019427608897502, 40.602871578347951 ], [ -74.015498550096368, 40.606841524276888 ], [ -74.017019101547376, 40.607654416971123 ], [ -73.997181753413983, 40.626710155836285 ], [ -73.995858841456965, 40.626001434103557 ], [ -73.99473485679259, 40.625614741105977 ], [ -73.974972646644076, 40.613668110171787 ], [ -73.97489295756634, 40.613186368916608 ], [ -73.973993194613954, 40.614029893739918 ], [ -73.972994340048416, 40.60881414180237 ] ] ] } } +, +{ "type": "Feature", "id": 92, "properties": { "communityDistrict": 404, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/404" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.847508202780645, 40.739007807039158 ], [ -73.851303526722035, 40.737511727542568 ], [ -73.856285677109298, 40.736426042505471 ], [ -73.864470862450929, 40.734007274929702 ], [ -73.876283024266357, 40.730313093919648 ], [ -73.879693540885071, 40.729010159418607 ], [ -73.881309176877039, 40.728680826521192 ], [ -73.88559330979848, 40.728274440980165 ], [ -73.886288846014665, 40.730601703116925 ], [ -73.88838317163345, 40.735758382811248 ], [ -73.891270179531759, 40.741428249292163 ], [ -73.894446887503449, 40.746535270812807 ], [ -73.861117076624396, 40.750024228366328 ], [ -73.852204505658563, 40.752660682362709 ], [ -73.850864397100324, 40.749995641874605 ], [ -73.854425752537722, 40.748851726381922 ], [ -73.850115566364181, 40.740723562798379 ], [ -73.847801646205241, 40.740049676962151 ], [ -73.847579807180352, 40.739721354438394 ], [ -73.847778442173137, 40.739344835748881 ], [ -73.847508202780645, 40.739007807039158 ] ] ] } } +, +{ "type": "Feature", "id": 93, "properties": { "communityDistrict": 226, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/226" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.867890437136481, 40.902986954152283 ], [ -73.868202703053413, 40.902355382773607 ], [ -73.870103695755844, 40.900741946981086 ], [ -73.874820415511664, 40.898445438024375 ], [ -73.875894654551544, 40.897559458644736 ], [ -73.876437430650199, 40.896870593459653 ], [ -73.87711974105801, 40.895468663643506 ], [ -73.880042130590851, 40.895222284586509 ], [ -73.880397478720596, 40.893313814019997 ], [ -73.880340936250946, 40.892482417609223 ], [ -73.879189418923602, 40.890307031497287 ], [ -73.878004672029277, 40.887321997061434 ], [ -73.878149446345148, 40.886873807364744 ], [ -73.881244225415543, 40.882709633005554 ], [ -73.882748332946534, 40.883397386800993 ], [ -73.883683368565229, 40.883157615331406 ], [ -73.884216964431815, 40.883197728058455 ], [ -73.886834866747876, 40.884342025562752 ], [ -73.887586126088365, 40.884255619662973 ], [ -73.899782521419539, 40.886529123507984 ], [ -73.896757900749378, 40.892645443571681 ], [ -73.896431707170763, 40.893655279926804 ], [ -73.897157171654328, 40.899371826677211 ], [ -73.896357859714925, 40.90320013158378 ], [ -73.896633337970684, 40.911417374845669 ], [ -73.867890437136481, 40.902986954152283 ] ] ] } } +, +{ "type": "Feature", "id": 94, "properties": { "communityDistrict": 203, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/203" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.880720815142809, 40.837521264519715 ], [ -73.881935889571224, 40.835462124985533 ], [ -73.884246295471797, 40.832592072106017 ], [ -73.885097701531322, 40.831152824784617 ], [ -73.885423176302581, 40.830116849951096 ], [ -73.885783262303434, 40.82789690839796 ], [ -73.88789510901421, 40.826743185296529 ], [ -73.892932260349824, 40.82678703602916 ], [ -73.897569587585892, 40.829423000830893 ], [ -73.901292776271063, 40.820475442111587 ], [ -73.909908941380024, 40.822551107614807 ], [ -73.911816157567358, 40.82203502241245 ], [ -73.917565994430134, 40.823883672432409 ], [ -73.916087827917409, 40.824837851830807 ], [ -73.916613685086176, 40.824992308005278 ], [ -73.912169826444909, 40.827902220983532 ], [ -73.905979403756234, 40.83850519529944 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.900939994262416, 40.844384982674271 ], [ -73.901511519957126, 40.843367968965346 ], [ -73.900333303501938, 40.842989379513547 ], [ -73.899637495566893, 40.844233825028809 ], [ -73.894819425613477, 40.843683770968212 ], [ -73.895378361807317, 40.84293877895653 ], [ -73.889417248691998, 40.839422733380196 ], [ -73.88869040830879, 40.839158026467977 ], [ -73.888137521593393, 40.839862002384741 ], [ -73.886598023451214, 40.839279050108473 ], [ -73.88610978780433, 40.840470994132311 ], [ -73.880720815142809, 40.837521264519715 ] ] ] } } +, +{ "type": "Feature", "id": 95, "properties": { "communityDistrict": 308, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/308" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.958292168077833, 40.679831133494801 ], [ -73.952063452586728, 40.67858633071836 ], [ -73.921823610157915, 40.676938358472917 ], [ -73.922752572204345, 40.667097332962072 ], [ -73.928722045946031, 40.664495569685258 ], [ -73.92834967165949, 40.668647194188125 ], [ -73.955269636547627, 40.67012490485407 ], [ -73.962575314326202, 40.671644198394539 ], [ -73.966602780071014, 40.672797589726898 ], [ -73.968172958547754, 40.673029414357451 ], [ -73.968942063512657, 40.67288749127016 ], [ -73.968718221691745, 40.673924233914761 ], [ -73.96907731857624, 40.674839670814826 ], [ -73.969545567592618, 40.675276968647239 ], [ -73.970089425133466, 40.675502122885774 ], [ -73.970561113766706, 40.675488575617806 ], [ -73.97104919104342, 40.675237112802613 ], [ -73.975143167228509, 40.680871905306589 ], [ -73.974104486558176, 40.680649672443714 ], [ -73.973977575889506, 40.680983275465891 ], [ -73.974391442014991, 40.681046170246681 ], [ -73.973951353597755, 40.682280730693151 ], [ -73.967678283782007, 40.680955455311469 ], [ -73.967531966996447, 40.681768783617386 ], [ -73.958292168077833, 40.679831133494801 ] ] ] } } +, +{ "type": "Feature", "id": 96, "properties": { "communityDistrict": 403, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/403" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.862754901969751, 40.766764524925783 ], [ -73.862157856617117, 40.766191757929498 ], [ -73.859490724013014, 40.762562615399062 ], [ -73.858920563126119, 40.762406401185167 ], [ -73.858922981827305, 40.76212234551636 ], [ -73.858645104879514, 40.762514395909015 ], [ -73.858887226601666, 40.762133609397758 ], [ -73.858691102683196, 40.762221190500853 ], [ -73.85884371440261, 40.762058766275757 ], [ -73.858619152818733, 40.761935596998889 ], [ -73.857654736162289, 40.763079823351106 ], [ -73.858415386829904, 40.763453130422633 ], [ -73.858500812554723, 40.763376432579889 ], [ -73.85834319309086, 40.76356256045537 ], [ -73.858395314095347, 40.763477059121733 ], [ -73.857638965359143, 40.763099448633781 ], [ -73.856838887017759, 40.764000179114866 ], [ -73.856963559398054, 40.764074427863086 ], [ -73.856674822962489, 40.763930188325318 ], [ -73.856802909562902, 40.763980845460821 ], [ -73.857582854707033, 40.763072900626561 ], [ -73.856690352230004, 40.762635632858732 ], [ -73.85658675388774, 40.762722840114236 ], [ -73.856782368973924, 40.76250827740575 ], [ -73.856711693994811, 40.762615686952479 ], [ -73.85760424037187, 40.76305328178897 ], [ -73.858176310705304, 40.762396294223826 ], [ -73.856627729414726, 40.761629062393183 ], [ -73.858194331325322, 40.762374107984542 ], [ -73.858585262183468, 40.761917008596093 ], [ -73.857476624355371, 40.761308916687319 ], [ -73.856273206400701, 40.760902408430319 ], [ -73.855376334539542, 40.760669385032251 ], [ -73.855209871879779, 40.760809300774767 ], [ -73.855334545940195, 40.760658154889434 ], [ -73.854782737595954, 40.759848300268381 ], [ -73.853440252213829, 40.75916843724049 ], [ -73.852582524700622, 40.758283451187701 ], [ -73.852165079894235, 40.757459673296168 ], [ -73.85382000610656, 40.757185697572261 ], [ -73.852617253522425, 40.753405065527922 ], [ -73.852204505658563, 40.752660682362709 ], [ -73.861117076624396, 40.750024228366328 ], [ -73.894446887503449, 40.746535270812807 ], [ -73.897339428810128, 40.75141956802932 ], [ -73.897456323526626, 40.752736715644019 ], [ -73.898052843905987, 40.753802473148923 ], [ -73.898114063841007, 40.754221658567843 ], [ -73.899235837136814, 40.755530017451171 ], [ -73.89976862080843, 40.756664237360127 ], [ -73.899845926539342, 40.757562153543596 ], [ -73.899567439398879, 40.758545262512868 ], [ -73.896411384035417, 40.763150082767652 ], [ -73.89506657695074, 40.764331328290297 ], [ -73.894323719553626, 40.766146471734785 ], [ -73.89349605945462, 40.765950930000749 ], [ -73.891444897473946, 40.76607465363174 ], [ -73.891835357963473, 40.766227080049347 ], [ -73.888816539324708, 40.76659534946171 ], [ -73.886025541989028, 40.767282958202564 ], [ -73.882772418262519, 40.768529441437451 ], [ -73.878549156737705, 40.77077199556588 ], [ -73.877045371828999, 40.771316529076699 ], [ -73.873805246241815, 40.771767978456097 ], [ -73.872235776965908, 40.771695659019592 ], [ -73.870714474925975, 40.771390690036839 ], [ -73.868893827245572, 40.770649021897334 ], [ -73.867281938151308, 40.769650003291389 ], [ -73.865092940828532, 40.768015315239843 ], [ -73.863402148656107, 40.766455512262858 ], [ -73.862754901969751, 40.766764524925783 ] ] ] } } +, +{ "type": "Feature", "id": 97, "properties": { "communityDistrict": 102, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/102" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.996839939264902, 40.737360889398197 ], [ -73.989902959700501, 40.734434790136874 ], [ -73.989868521395636, 40.733527114554889 ], [ -73.990505586035965, 40.730564956235149 ], [ -73.991363881381531, 40.727559783459121 ], [ -73.994807790213102, 40.718457426350312 ], [ -73.996058727443753, 40.7162316402109 ], [ -73.998589255680329, 40.7170995115371 ], [ -73.999312417001448, 40.717550241777381 ], [ -74.010812382607256, 40.725789802555752 ], [ -74.011150343389346, 40.725777216880076 ], [ -74.011457631035512, 40.726155689262022 ], [ -74.015170840858616, 40.726579390657555 ], [ -74.015123565494619, 40.726793942564534 ], [ -74.011542018976044, 40.726447346927067 ], [ -74.01138323604755, 40.728229272367152 ], [ -74.014390699323883, 40.728463047520115 ], [ -74.014037969247994, 40.730694218843873 ], [ -74.011161956964756, 40.730450676349022 ], [ -74.010941274402015, 40.733020313341193 ], [ -74.014002202806751, 40.733068001795353 ], [ -74.013999571748954, 40.733332277517789 ], [ -74.010903898832851, 40.733297617139542 ], [ -74.010737738232308, 40.733419854772428 ], [ -74.010869999225406, 40.733594693906447 ], [ -74.010832846292743, 40.734007093508339 ], [ -74.012017920104739, 40.734063744456307 ], [ -74.012001242223832, 40.734338400663589 ], [ -74.010813594130397, 40.734283443647627 ], [ -74.010476598144194, 40.738063940595033 ], [ -74.01108706635948, 40.738092750081265 ], [ -74.011139156025621, 40.738389862813037 ], [ -74.01045432864592, 40.738364505222982 ], [ -74.010393031345544, 40.739174296059154 ], [ -74.01158045502315, 40.739264536111989 ], [ -74.011527450203985, 40.739873770444717 ], [ -74.011612580173406, 40.739707600549352 ], [ -74.012369174000341, 40.739751646372113 ], [ -74.012310012788447, 40.740194756203955 ], [ -74.011576869242319, 40.740160099501516 ], [ -74.011514917365346, 40.73997286369876 ], [ -74.011460739553399, 40.740584214752488 ], [ -74.012659282084897, 40.74074763849741 ], [ -74.009631455717553, 40.740645367374221 ], [ -74.009411403322076, 40.741154093312794 ], [ -74.012162329092163, 40.741491889682614 ], [ -74.012117458721391, 40.741758516211554 ], [ -74.009519472110711, 40.741490301193359 ], [ -74.009166082830475, 40.742416591463353 ], [ -74.008699022963597, 40.742361723963327 ], [ -73.996839939264902, 40.737360889398197 ] ] ] } } +, +{ "type": "Feature", "id": 98, "properties": { "communityDistrict": 205, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/205" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.891380233802607, 40.861700588263041 ], [ -73.893215207578095, 40.859874206155673 ], [ -73.893948930790927, 40.858779697027487 ], [ -73.900690100968845, 40.848310096566706 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.906646755595673, 40.844916314067184 ], [ -73.913382939714481, 40.845187232536539 ], [ -73.923540020115283, 40.8447589441123 ], [ -73.927301944986283, 40.846506867376107 ], [ -73.926830232167944, 40.847289760188538 ], [ -73.9246537993034, 40.849785043513052 ], [ -73.923847789458293, 40.851182608715959 ], [ -73.923947894352978, 40.851221784616094 ], [ -73.922561789464751, 40.853188912029864 ], [ -73.921740354030078, 40.854221237840456 ], [ -73.921542618039197, 40.8541168833817 ], [ -73.92134207683867, 40.854317435657634 ], [ -73.921515437055263, 40.854510063891318 ], [ -73.920800702893359, 40.855380814394486 ], [ -73.920300272134298, 40.855246371341451 ], [ -73.92056655954363, 40.855513898313603 ], [ -73.920526531328505, 40.855686668401802 ], [ -73.919566208784985, 40.856840183687666 ], [ -73.917760412511058, 40.858708097958257 ], [ -73.91720664647049, 40.858928922734535 ], [ -73.915762132109379, 40.860644637292928 ], [ -73.914674807120662, 40.859712405659558 ], [ -73.914036078877231, 40.85994195282678 ], [ -73.910721042564745, 40.85870623223358 ], [ -73.910308808511346, 40.858409326604963 ], [ -73.90980269932912, 40.857607548833386 ], [ -73.909567200764997, 40.85759162415976 ], [ -73.907773205133822, 40.859607537685449 ], [ -73.90390816669435, 40.858367585815898 ], [ -73.901079670177253, 40.862756383422955 ], [ -73.899436708404068, 40.862116912065531 ], [ -73.896939613042107, 40.862442856758733 ], [ -73.892851691553773, 40.861832192993191 ], [ -73.891771887992022, 40.861871716750073 ], [ -73.891380233802607, 40.861700588263041 ] ] ] } } +, +{ "type": "Feature", "id": 99, "properties": { "communityDistrict": 405, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/405" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.88770199270428, 40.734291322758573 ], [ -73.886288846014665, 40.730601703116925 ], [ -73.88559330979848, 40.728274440980165 ], [ -73.880088774891078, 40.728906274716742 ], [ -73.875091540895426, 40.730671363218896 ], [ -73.871460741835079, 40.729326374137671 ], [ -73.870845394241812, 40.727484593440543 ], [ -73.869292704890839, 40.724435929474879 ], [ -73.865238706777987, 40.719976710027446 ], [ -73.85992523558788, 40.714749736033646 ], [ -73.859629209701808, 40.713975295194537 ], [ -73.859776180519688, 40.711226356945232 ], [ -73.859141491551455, 40.706874064141147 ], [ -73.858833712667888, 40.706238897115306 ], [ -73.858232798457479, 40.705591689884926 ], [ -73.855597710146185, 40.703726225652169 ], [ -73.855394235022985, 40.703348637534212 ], [ -73.855295715092595, 40.701991009610488 ], [ -73.857166882525092, 40.701674104892042 ], [ -73.857253514786606, 40.701212177233693 ], [ -73.858932243991106, 40.701320344758884 ], [ -73.858198906347013, 40.702911073862325 ], [ -73.859224121070923, 40.702532945915884 ], [ -73.860130733537147, 40.702422189787669 ], [ -73.862792958108031, 40.702787292454957 ], [ -73.864489836411764, 40.702798334608907 ], [ -73.866855445455272, 40.702213736301431 ], [ -73.867695993750615, 40.701660727142944 ], [ -73.868185026987803, 40.701093055724549 ], [ -73.868867307405594, 40.699023015297335 ], [ -73.869150517428054, 40.698583517911167 ], [ -73.869903301636398, 40.697976624361125 ], [ -73.870573931660374, 40.697688900665028 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.874020533067977, 40.694191294715573 ], [ -73.879506412208997, 40.691146768843161 ], [ -73.883776986493643, 40.687863410682333 ], [ -73.884522509574225, 40.686684749095555 ], [ -73.888083418425452, 40.685293632171053 ], [ -73.88962787578852, 40.684236453750309 ], [ -73.890154187389186, 40.685003989805089 ], [ -73.892523168982663, 40.683424532804615 ], [ -73.894174632671792, 40.68528324817057 ], [ -73.895779455030052, 40.683497183358057 ], [ -73.896466251289269, 40.682336422475885 ], [ -73.90116154994368, 40.68787793535499 ], [ -73.900424650470654, 40.688183898876233 ], [ -73.901804671539708, 40.690766298769027 ], [ -73.901232906600811, 40.691442278638164 ], [ -73.905795970753104, 40.694127155011522 ], [ -73.904260184116879, 40.695700371443174 ], [ -73.911808200384499, 40.699938002621316 ], [ -73.910678826713834, 40.701045969063564 ], [ -73.912904041219576, 40.702361891296647 ], [ -73.91180710003394, 40.703434952026086 ], [ -73.921891846986938, 40.709396096710805 ], [ -73.920745196554748, 40.710529686490297 ], [ -73.921546016956825, 40.711043283534813 ], [ -73.921686635675101, 40.711894317397928 ], [ -73.922232946648109, 40.712854424853191 ], [ -73.924040113340226, 40.714008312628891 ], [ -73.924059097370503, 40.714111559644898 ], [ -73.923683521525248, 40.714082841408185 ], [ -73.924122415754965, 40.715138048445155 ], [ -73.92352547251086, 40.715616608367824 ], [ -73.922329701677015, 40.716076545172392 ], [ -73.920642588745466, 40.715773192028337 ], [ -73.92056905602162, 40.716003708341063 ], [ -73.922237611903924, 40.71638244049452 ], [ -73.922794147453942, 40.717534576143962 ], [ -73.923466026541632, 40.71813033432224 ], [ -73.923938673293534, 40.719042756786983 ], [ -73.923835754717061, 40.720148164078587 ], [ -73.924227162475731, 40.720887344591866 ], [ -73.924243649210055, 40.721429498758546 ], [ -73.925152072720437, 40.722335338815647 ], [ -73.92452702584292, 40.723540911975078 ], [ -73.92433693392303, 40.723603840273817 ], [ -73.922143309612849, 40.72370755701872 ], [ -73.920733560941329, 40.723309812770459 ], [ -73.920370642357895, 40.723681112815882 ], [ -73.920520297691283, 40.72297935048126 ], [ -73.920067122394769, 40.722743048951862 ], [ -73.916554680126907, 40.722005506982967 ], [ -73.912571877438509, 40.723239634949856 ], [ -73.905180579197705, 40.728956576973715 ], [ -73.900628932814598, 40.734463286243781 ], [ -73.899632579618668, 40.735002358303582 ], [ -73.898308127427455, 40.735194184440978 ], [ -73.895101334704705, 40.735021183089998 ], [ -73.892784056659934, 40.734495962751495 ], [ -73.889103189824539, 40.734592396462403 ], [ -73.88770199270428, 40.734291322758573 ] ] ] } } +, +{ "type": "Feature", "id": 100, "properties": { "communityDistrict": 412, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/412" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.801682665533647, 40.66632235257088 ], [ -73.801250796429386, 40.668385945324694 ], [ -73.80113236214261, 40.670548667618164 ], [ -73.80119461549117, 40.672422464604402 ], [ -73.801681947598723, 40.674383848457268 ], [ -73.807336218687112, 40.686125446991142 ], [ -73.814923432672259, 40.69942244007531 ], [ -73.817097387564516, 40.704029801587659 ], [ -73.814439318654323, 40.70440215056346 ], [ -73.795616689618569, 40.70975307917503 ], [ -73.789012095879585, 40.712072709100696 ], [ -73.788688403626438, 40.712330032624834 ], [ -73.788472460251171, 40.712218530483391 ], [ -73.788434811837149, 40.711984687608989 ], [ -73.787846784799811, 40.711810833167561 ], [ -73.786575285614788, 40.711972493275468 ], [ -73.773571351684041, 40.71512009536869 ], [ -73.767332280868814, 40.717289796810576 ], [ -73.764469517897751, 40.718890392377823 ], [ -73.759441429410103, 40.721063443753103 ], [ -73.753708345570089, 40.713324636235697 ], [ -73.751212469699198, 40.70730658007804 ], [ -73.744846105650581, 40.693139056115278 ], [ -73.748569930944782, 40.687803738207059 ], [ -73.750089911311093, 40.685923446358679 ], [ -73.752258286195811, 40.681491410970018 ], [ -73.755234578055294, 40.677288409747391 ], [ -73.755817710871824, 40.675752742227324 ], [ -73.756362391936634, 40.672429237108844 ], [ -73.756437342919526, 40.669666378742065 ], [ -73.756995333616061, 40.667741268061768 ], [ -73.757956436648485, 40.665955403396751 ], [ -73.770174819819616, 40.667315464264462 ], [ -73.77445107675409, 40.667471577021139 ], [ -73.780316672390697, 40.667176372328825 ], [ -73.78948089661391, 40.666367651621606 ], [ -73.793059808035736, 40.666193204080379 ], [ -73.801682665533647, 40.66632235257088 ] ] ] } } +, +{ "type": "Feature", "id": 101, "properties": { "communityDistrict": 305, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/305" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.868424897789154, 40.694718119012549 ], [ -73.868684543705783, 40.6940346919056 ], [ -73.867460888910415, 40.688415017596441 ], [ -73.866598483492695, 40.68526955906988 ], [ -73.866026668716259, 40.681918051772897 ], [ -73.864100966791327, 40.682372850292609 ], [ -73.863286408446143, 40.67907719656106 ], [ -73.862345805351268, 40.679164785644275 ], [ -73.860389379181342, 40.671268775444425 ], [ -73.857633231743705, 40.671656194038832 ], [ -73.855684612211434, 40.663867492372923 ], [ -73.858429508573025, 40.663453360931832 ], [ -73.857615372515767, 40.6601189331546 ], [ -73.860359782060087, 40.659645829012177 ], [ -73.863170833405064, 40.658276512446257 ], [ -73.86269778299534, 40.657618309012356 ], [ -73.863002022012893, 40.657488116627256 ], [ -73.863276230686068, 40.656941215328139 ], [ -73.86300171715267, 40.656653757370201 ], [ -73.862999209617413, 40.656357333815244 ], [ -73.863201989732573, 40.656359553934081 ], [ -73.863051322802988, 40.65610609837676 ], [ -73.862641173431655, 40.655667537007659 ], [ -73.861733555475908, 40.65529522177399 ], [ -73.86098917353911, 40.655209767105148 ], [ -73.86052767845527, 40.654705962076605 ], [ -73.870185652936257, 40.649323181866038 ], [ -73.872184733324943, 40.647945070028953 ], [ -73.873465582586235, 40.646816632969191 ], [ -73.879216581649061, 40.654591083772281 ], [ -73.8796386550232, 40.654499091804226 ], [ -73.879719790343032, 40.654375929776307 ], [ -73.876761939563124, 40.650560954495113 ], [ -73.876721924918982, 40.650323221967831 ], [ -73.873901277361, 40.646368367861236 ], [ -73.875963090713597, 40.643644484254786 ], [ -73.877973413343511, 40.63980711772134 ], [ -73.878684931736686, 40.640538552066083 ], [ -73.878647053832296, 40.641065856068501 ], [ -73.881318570509691, 40.643871119271594 ], [ -73.884948358388002, 40.646802172920793 ], [ -73.891365435872459, 40.652364719446901 ], [ -73.893546770738467, 40.655202714083629 ], [ -73.897610132424404, 40.653453815618008 ], [ -73.898002558137307, 40.653801223955682 ], [ -73.899041803889048, 40.657371657570884 ], [ -73.898806984995034, 40.657406661805041 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.903474223424965, 40.675506683277689 ], [ -73.903315996370367, 40.677869223399128 ], [ -73.903490500370751, 40.678898048534748 ], [ -73.904046398088894, 40.679220598019157 ], [ -73.90262262346468, 40.68066450291613 ], [ -73.900245377055157, 40.679422791011412 ], [ -73.898899282875462, 40.679560934398964 ], [ -73.897862999396963, 40.679875011118256 ], [ -73.897383813046474, 40.680168812622249 ], [ -73.896959138460176, 40.680699581824157 ], [ -73.896749659511244, 40.681492026062003 ], [ -73.896581586979721, 40.681574718432479 ], [ -73.896419090737822, 40.68247987574113 ], [ -73.895997273821322, 40.683196878777899 ], [ -73.894174632671792, 40.68528324817057 ], [ -73.892523168982663, 40.683424532804615 ], [ -73.890154187389186, 40.685003989805089 ], [ -73.88962787578852, 40.684236453750309 ], [ -73.888083418425452, 40.685293632171053 ], [ -73.884522509574225, 40.686684749095555 ], [ -73.883776986493643, 40.687863410682333 ], [ -73.879506412208997, 40.691146768843161 ], [ -73.874020533067977, 40.694191294715573 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.868424897789154, 40.694718119012549 ] ] ] } } +, +{ "type": "Feature", "id": 102, "properties": { "communityDistrict": 402, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/402" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.898114063841007, 40.754221658567843 ], [ -73.898052843905987, 40.753802473148923 ], [ -73.897456323526626, 40.752736715644019 ], [ -73.897339428810128, 40.75141956802932 ], [ -73.891270179531759, 40.741428249292163 ], [ -73.88770199270428, 40.734291322758573 ], [ -73.889103189824539, 40.734592396462403 ], [ -73.892784056659934, 40.734495962751495 ], [ -73.894924217743636, 40.735007722183958 ], [ -73.898307996827228, 40.735194184325657 ], [ -73.899229447688981, 40.735111598774061 ], [ -73.900153434399726, 40.734796405449266 ], [ -73.900628980466351, 40.734463231838753 ], [ -73.905180579197705, 40.728956576973715 ], [ -73.907167052443782, 40.727388654289854 ], [ -73.912571877438509, 40.723239634949856 ], [ -73.916554680126907, 40.722005506982967 ], [ -73.920067122394769, 40.722743048951862 ], [ -73.920520297691283, 40.72297935048126 ], [ -73.920275383406747, 40.723660786038479 ], [ -73.922286202808905, 40.724181286434828 ], [ -73.924192179251506, 40.724275741190368 ], [ -73.924903161651812, 40.72450657567142 ], [ -73.926556639123973, 40.7256690652872 ], [ -73.92853805222326, 40.727882449936722 ], [ -73.92923485876166, 40.728260165761036 ], [ -73.931315093600659, 40.72872944648487 ], [ -73.934531763756894, 40.729104806534941 ], [ -73.936445639671263, 40.72967214559857 ], [ -73.938044785732316, 40.730509967846409 ], [ -73.93911054574815, 40.731379806525538 ], [ -73.939910498958085, 40.733276327859507 ], [ -73.940032009911022, 40.733245044305704 ], [ -73.940164948021547, 40.733486026666867 ], [ -73.940017680329362, 40.733540430685558 ], [ -73.940067093270372, 40.733762152980077 ], [ -73.940864985927035, 40.735070409091044 ], [ -73.941624726364736, 40.735841442338192 ], [ -73.943594804087098, 40.736717789773863 ], [ -73.945940960532909, 40.73750507655425 ], [ -73.944638601309208, 40.738138352039819 ], [ -73.942578858121962, 40.738816020268516 ], [ -73.942803842676611, 40.738861546456199 ], [ -73.942556128052914, 40.739020865746632 ], [ -73.941461734631673, 40.739248583627123 ], [ -73.940508888057252, 40.740113941753087 ], [ -73.940361592850479, 40.740335345658188 ], [ -73.940561449690819, 40.740418322934161 ], [ -73.939108740720599, 40.742617035176309 ], [ -73.938669917531954, 40.74253408202491 ], [ -73.938587869767858, 40.74293088268746 ], [ -73.940019229756658, 40.743208272210694 ], [ -73.940148585873033, 40.742832441460365 ], [ -73.939653015213779, 40.742731087095613 ], [ -73.941188166962505, 40.740290217289349 ], [ -73.941835049927604, 40.739692620211471 ], [ -73.942596668448786, 40.739395147802824 ], [ -73.942790456400715, 40.739193721204309 ], [ -73.942706089921117, 40.739115062978634 ], [ -73.943822722995534, 40.738871537883433 ], [ -73.945482365901157, 40.738207031293726 ], [ -73.947150871811743, 40.737900123344723 ], [ -73.951380715179155, 40.739336477295311 ], [ -73.95379878808717, 40.73981986527194 ], [ -73.957414707659993, 40.739556582011524 ], [ -73.960067579018414, 40.738483749623711 ], [ -73.960725803736779, 40.738080170179131 ], [ -73.962165056193115, 40.738272538258947 ], [ -73.962131461129545, 40.738451070650711 ], [ -73.962608198169079, 40.738795539056753 ], [ -73.962430790713668, 40.739671480082919 ], [ -73.962209165578557, 40.740006175498273 ], [ -73.961592047829782, 40.740003968231591 ], [ -73.961450139104187, 40.740337834680602 ], [ -73.961629825638397, 40.740458929457496 ], [ -73.961293399232574, 40.740432799367952 ], [ -73.961265813022507, 40.740537471108489 ], [ -73.961850098112521, 40.740724481630515 ], [ -73.96190930217675, 40.740867833243847 ], [ -73.961803974890955, 40.741097673472176 ], [ -73.961218628520129, 40.741107860130128 ], [ -73.961077085397619, 40.741697324617817 ], [ -73.96136466826195, 40.741835179027582 ], [ -73.961108145675396, 40.741828024902929 ], [ -73.961552531689563, 40.741993261407146 ], [ -73.961190297890226, 40.74264485525967 ], [ -73.960971684515584, 40.742754054263898 ], [ -73.960519514036164, 40.743495778485887 ], [ -73.959784685522763, 40.743497716583946 ], [ -73.959751238509881, 40.743902276657813 ], [ -73.96064863700721, 40.744130317614029 ], [ -73.959632250239608, 40.743934631914101 ], [ -73.959391066095492, 40.744283324743819 ], [ -73.960126009623863, 40.744443936991445 ], [ -73.959233690117657, 40.744310043026701 ], [ -73.958775370705609, 40.744555599863624 ], [ -73.95946329058691, 40.744654877347081 ], [ -73.958763725813213, 40.744592619164123 ], [ -73.9586409667628, 40.744948314954939 ], [ -73.959652297559813, 40.745216588173456 ], [ -73.958493893031203, 40.744987864916219 ], [ -73.958452522696817, 40.745119011319566 ], [ -73.959273970906651, 40.745328954936383 ], [ -73.959324202658692, 40.745543322753697 ], [ -73.959059356740283, 40.745753368346563 ], [ -73.958398615472362, 40.745719419445592 ], [ -73.95837927085158, 40.745953090093046 ], [ -73.958994272266125, 40.746064646435379 ], [ -73.95867072374395, 40.746643109693849 ], [ -73.956794532905093, 40.74883951695557 ], [ -73.954853942680359, 40.748040794640943 ], [ -73.954651782206113, 40.748232644095424 ], [ -73.954320068357006, 40.748103917082133 ], [ -73.954705613077763, 40.748013620452667 ], [ -73.953183824928573, 40.747734811960925 ], [ -73.953053755713995, 40.74808748722927 ], [ -73.954783878698066, 40.74842768777318 ], [ -73.956485687946696, 40.749111690155708 ], [ -73.955760392070232, 40.74959665953044 ], [ -73.95619953007305, 40.749670714925344 ], [ -73.956120664113612, 40.749759885369613 ], [ -73.955464370024913, 40.749674213082869 ], [ -73.955349285144464, 40.750013856903919 ], [ -73.955132391524785, 40.749926424332287 ], [ -73.955202750408731, 40.749676537409442 ], [ -73.955066525601694, 40.749632730375396 ], [ -73.954515845733866, 40.75058669897674 ], [ -73.954650004131182, 40.750831040959469 ], [ -73.953993534605246, 40.751786195016166 ], [ -73.952971520222661, 40.752746501426415 ], [ -73.950807638183491, 40.755263680114297 ], [ -73.949112951995133, 40.754523619821526 ], [ -73.948767078346719, 40.754904275765433 ], [ -73.943835367463777, 40.752530123056758 ], [ -73.937443629422873, 40.749735692271038 ], [ -73.93739653782103, 40.748916440465884 ], [ -73.936834805464585, 40.748394551916306 ], [ -73.933939394171531, 40.750269645776555 ], [ -73.931526606555877, 40.751166158062539 ], [ -73.924633695362473, 40.751643345661869 ], [ -73.922550430677518, 40.751576479635112 ], [ -73.921612080252757, 40.751371552124191 ], [ -73.92101480198528, 40.750972609970056 ], [ -73.920539001504366, 40.749750828355175 ], [ -73.91525600931422, 40.750845626448282 ], [ -73.91314339244947, 40.750967052175753 ], [ -73.90984318646106, 40.751638679830499 ], [ -73.910354929924694, 40.752749908536124 ], [ -73.910674748970507, 40.752995076827389 ], [ -73.898114063841007, 40.754221658567843 ] ] ] } } +, +{ "type": "Feature", "id": 103, "properties": { "communityDistrict": 316, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/316" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.904046398088894, 40.679220598019157 ], [ -73.903490500370751, 40.678898048534748 ], [ -73.903315996370367, 40.677869223399128 ], [ -73.903474223424965, 40.675506683277689 ], [ -73.899217608282456, 40.659111403689977 ], [ -73.899565589760869, 40.658956575610681 ], [ -73.899637864081498, 40.657981441794959 ], [ -73.900117158572513, 40.656754643748044 ], [ -73.901045459677817, 40.655570598609394 ], [ -73.907552095075175, 40.651185925730168 ], [ -73.910709746433369, 40.654178733806091 ], [ -73.910934871825631, 40.654173279907809 ], [ -73.924390993847524, 40.666381423277812 ], [ -73.922752572204345, 40.667097332962072 ], [ -73.921823610157915, 40.676938358472917 ], [ -73.916464860322691, 40.676647040549057 ], [ -73.916301198615528, 40.678577111931439 ], [ -73.918046068924596, 40.687213247770437 ], [ -73.904046398088894, 40.679220598019157 ] ] ] } } +, +{ "type": "Feature", "id": 104, "properties": { "communityDistrict": 104, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/104" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.993935876811207, 40.773179512586104 ], [ -73.984763692632328, 40.769226401206481 ], [ -73.984314913071373, 40.769848183213369 ], [ -73.98209271243384, 40.768892298929721 ], [ -73.982043416681321, 40.768408210312678 ], [ -73.981631495061436, 40.768367928152948 ], [ -73.981432823028214, 40.768083021330717 ], [ -73.981710079509341, 40.767745115759418 ], [ -73.982110615330981, 40.767744476546319 ], [ -73.997099029203909, 40.747205102042237 ], [ -73.991418585606979, 40.7448026824962 ], [ -73.996839939264902, 40.737360889398197 ], [ -74.008699022963597, 40.742361723963327 ], [ -74.009166082830475, 40.742416591463353 ], [ -74.009091568461869, 40.742886148569781 ], [ -74.009620153489053, 40.742951247887142 ], [ -74.009568434117654, 40.74325778472636 ], [ -74.012148131835929, 40.743559301547521 ], [ -74.012020850063976, 40.743939770208804 ], [ -74.009512017673671, 40.743676093760243 ], [ -74.009438008708571, 40.743971254970468 ], [ -74.008900329628403, 40.743917927096 ], [ -74.008729864255002, 40.744881537829585 ], [ -74.009612279244124, 40.744997903150519 ], [ -74.009558329297491, 40.74528882529868 ], [ -74.009916607473741, 40.745327255007105 ], [ -74.009998226017132, 40.744955059302079 ], [ -74.009872110854801, 40.74491650212574 ], [ -74.010167905353924, 40.744942329709552 ], [ -74.010038483846117, 40.744963458078132 ], [ -74.009973950219205, 40.745323135109189 ], [ -74.010469200779482, 40.745386766028894 ], [ -74.010550447558813, 40.745013056704842 ], [ -74.010419372093793, 40.744976823668445 ], [ -74.010764197146116, 40.745005032020835 ], [ -74.010585792009309, 40.745020446561554 ], [ -74.010531065377037, 40.745382050389438 ], [ -74.011103598048834, 40.745447670243927 ], [ -74.01117183119824, 40.745078258283336 ], [ -74.011044591508309, 40.745046212401995 ], [ -74.011387700402622, 40.745073112682519 ], [ -74.011230380572215, 40.745075830160083 ], [ -74.011154191769094, 40.745446378083912 ], [ -74.011739586188966, 40.745519918190105 ], [ -74.011795277118154, 40.745154666984909 ], [ -74.011670675837877, 40.74511397683721 ], [ -74.011836428724152, 40.74512596367871 ], [ -74.011782757620097, 40.745601572255453 ], [ -74.011678855055976, 40.745979461815928 ], [ -74.009463898559702, 40.745750143659414 ], [ -74.009365504957756, 40.746337200862044 ], [ -74.011585283619439, 40.746609050951491 ], [ -74.01147606347044, 40.746996685639502 ], [ -74.009243145925922, 40.746762790753749 ], [ -74.009137362599262, 40.747359762802986 ], [ -74.011406739355095, 40.74763054956545 ], [ -74.011303529937507, 40.748014571908875 ], [ -74.009058479674266, 40.747785645332762 ], [ -74.008946065684071, 40.748411893168637 ], [ -74.011215618134159, 40.748677992243529 ], [ -74.01110891182978, 40.749049875416993 ], [ -74.00994818004115, 40.748931988005609 ], [ -74.009560049786785, 40.749935041791517 ], [ -74.010751186035122, 40.750293977204834 ], [ -74.010756579678429, 40.750410852957543 ], [ -74.009253409840099, 40.749985206224437 ], [ -74.008532569250221, 40.751883609304294 ], [ -74.00914082120002, 40.752097594099027 ], [ -74.008651159368029, 40.751939512113026 ], [ -74.009057740096623, 40.752214351243175 ], [ -74.00858095826554, 40.752043882411535 ], [ -74.009327952062293, 40.752373503046122 ], [ -74.008478955727995, 40.752018571919869 ], [ -74.008426364472243, 40.752157850239243 ], [ -74.009990558197501, 40.752816187149072 ], [ -74.009970587970216, 40.752933564153139 ], [ -74.008792100908465, 40.7523521383795 ], [ -74.008687922195719, 40.752493998628374 ], [ -74.00835352838844, 40.75235073934229 ], [ -74.007620132963154, 40.754281475520109 ], [ -74.007744786056406, 40.754336542719372 ], [ -74.007596643258481, 40.754530449686065 ], [ -74.00747193016376, 40.754476814511662 ], [ -74.007284999443229, 40.754735568203138 ], [ -74.007413621029968, 40.754789302669359 ], [ -74.007271811747671, 40.754985594535206 ], [ -74.007144683609724, 40.754932481173412 ], [ -74.005418859071028, 40.757323140851717 ], [ -74.005211877057732, 40.757231998539879 ], [ -74.004803925601834, 40.757809843164686 ], [ -74.005278948639855, 40.75802855492821 ], [ -74.005031051366402, 40.758357016473099 ], [ -74.007003588379192, 40.759231870341097 ], [ -74.006506876401829, 40.759892032317168 ], [ -74.004504830939126, 40.759084996552687 ], [ -74.004206291253894, 40.759501707688372 ], [ -74.003907420988639, 40.759375692183475 ], [ -74.00380657835008, 40.75951073146598 ], [ -74.004246971941569, 40.759699214171356 ], [ -74.004148638146887, 40.759835914170758 ], [ -74.004318894911719, 40.759910685763387 ], [ -74.00366891453541, 40.759705969576551 ], [ -74.003572510400758, 40.759846558973116 ], [ -74.003928548674665, 40.760003019720429 ], [ -74.003133389913998, 40.76107834509628 ], [ -74.002786916187091, 40.760928969703293 ], [ -74.00233528130056, 40.761543727001602 ], [ -74.004556415609215, 40.762524265025036 ], [ -74.004399762035192, 40.762671359098782 ], [ -74.002200820732696, 40.761728432226455 ], [ -74.001533090669824, 40.762644598127579 ], [ -74.003757349715968, 40.763582241640563 ], [ -74.003612147941752, 40.763777043909698 ], [ -74.001386036986005, 40.762850095001873 ], [ -74.000973080220163, 40.76342027172565 ], [ -74.003149769889902, 40.764332888184619 ], [ -74.002948095157194, 40.764616835428725 ], [ -74.003222755853614, 40.764638037670203 ], [ -74.003146529659844, 40.764736281371995 ], [ -73.999927123677296, 40.763406528479315 ], [ -73.999622634581868, 40.763559081210445 ], [ -73.999150981540069, 40.764205259582688 ], [ -74.002288023714783, 40.76556154329262 ], [ -74.002024543964367, 40.765893266570359 ], [ -73.998884731749882, 40.764569377048488 ], [ -73.998576385305384, 40.764998607270762 ], [ -73.9986887069456, 40.765208570449829 ], [ -73.998270903744498, 40.765552233413246 ], [ -74.001573353852663, 40.766977192210675 ], [ -74.001314696360026, 40.767251120049906 ], [ -73.998066759053543, 40.765871881135688 ], [ -73.997378084479678, 40.76682338537438 ], [ -74.000649505304182, 40.768245236105543 ], [ -74.000385864229713, 40.76850419542928 ], [ -73.997155889492106, 40.767128696172776 ], [ -73.99645715471145, 40.768098815795639 ], [ -73.999735902478534, 40.769506177331515 ], [ -73.999472537340225, 40.769764214969129 ], [ -73.997071761054144, 40.768732643576854 ], [ -73.99715035543251, 40.768847387713393 ], [ -73.996571265056801, 40.769424568273827 ], [ -73.999026828329036, 40.770463272982049 ], [ -73.99876206914314, 40.770825056709192 ], [ -73.996313270881913, 40.769798836336427 ], [ -73.995880043516877, 40.770400579012232 ], [ -73.996016931961975, 40.770454848886168 ], [ -73.995900774911391, 40.770613123500951 ], [ -73.995767332836209, 40.77055459545128 ], [ -73.995424744363035, 40.771031615167942 ], [ -73.996001757490504, 40.77130746533053 ], [ -73.995899901670441, 40.77145029858211 ], [ -73.995305663653568, 40.771196004909498 ], [ -73.994925821206365, 40.771516042405473 ], [ -73.994976885608367, 40.771658774923331 ], [ -73.997112185386072, 40.772553236699508 ], [ -73.996909469027869, 40.772832945659943 ], [ -73.994774079308215, 40.771929547530185 ], [ -73.994445013594913, 40.772377126588331 ], [ -73.996448946676338, 40.77305684199672 ], [ -73.99614329133081, 40.773247541563457 ], [ -73.996685444311666, 40.77350368804624 ], [ -73.994163284563086, 40.772487190518689 ], [ -73.993831082030908, 40.772931787850638 ], [ -73.994136652588608, 40.772901870174245 ], [ -73.994376552750978, 40.773039551101355 ], [ -73.994294029823806, 40.773156243991799 ], [ -73.99502327652182, 40.773481196576192 ], [ -73.995050285360264, 40.773297153189866 ], [ -73.996240651898802, 40.773789791397654 ], [ -73.99606316808179, 40.773886886610057 ], [ -73.996179459973774, 40.773986954351493 ], [ -73.996095245226186, 40.774086186940181 ], [ -73.993935876811207, 40.773179512586104 ] ] ] } } +, +{ "type": "Feature", "id": 105, "properties": { "communityDistrict": 105, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/105" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.973014871761208, 40.764278879445193 ], [ -73.968186878036107, 40.762226821325882 ], [ -73.976985707283106, 40.7501569597583 ], [ -73.980220899700072, 40.751521979626759 ], [ -73.980673452491104, 40.750905101457384 ], [ -73.982956909551802, 40.747764353690854 ], [ -73.979723464370466, 40.74640287633833 ], [ -73.985232246112872, 40.738840230794956 ], [ -73.986471949786832, 40.739362820927028 ], [ -73.986649696771138, 40.73910091152284 ], [ -73.987035927871261, 40.739266378549431 ], [ -73.98730154868953, 40.738903026036418 ], [ -73.986853452032989, 40.738714752172037 ], [ -73.987288637460722, 40.73813078597442 ], [ -73.987101005187782, 40.738053501438763 ], [ -73.98752047473161, 40.737462697305688 ], [ -73.986535000019614, 40.737050010973675 ], [ -73.988779316840834, 40.733965399235885 ], [ -73.996839939264902, 40.737360889398197 ], [ -73.991418585606979, 40.7448026824962 ], [ -73.997099029203909, 40.747205102042237 ], [ -73.982110615330981, 40.767744476546319 ], [ -73.981791746128081, 40.767713756832023 ], [ -73.981512762813324, 40.767890167529167 ], [ -73.973014871761208, 40.764278879445193 ] ] ] } } +, +{ "type": "Feature", "id": 106, "properties": { "communityDistrict": 212, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/212" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.793855272090696, 40.883643311333458 ], [ -73.794165557614448, 40.882993216348616 ], [ -73.805505767435776, 40.886092949181226 ], [ -73.807641395017228, 40.885953252900471 ], [ -73.811406452266354, 40.88663558731109 ], [ -73.814427621260975, 40.886771964675148 ], [ -73.816707785914204, 40.886480950542548 ], [ -73.823997350874336, 40.884542136931238 ], [ -73.826513452040672, 40.88358666577458 ], [ -73.830071706276016, 40.881747101681533 ], [ -73.831378261993521, 40.880797607787855 ], [ -73.832656381580705, 40.879598674687841 ], [ -73.833482313011515, 40.878627801564114 ], [ -73.834046665239029, 40.877579113262613 ], [ -73.834491419494981, 40.876066407299554 ], [ -73.83446892238014, 40.873409139489084 ], [ -73.83394979344439, 40.871329433577039 ], [ -73.83268524802601, 40.868550693047354 ], [ -73.830714236956254, 40.864810602435178 ], [ -73.828122989443273, 40.861182113388551 ], [ -73.828343474975767, 40.860892026675806 ], [ -73.829508926921164, 40.861841213446603 ], [ -73.830893296615912, 40.862212849091911 ], [ -73.835784366576917, 40.865016011497033 ], [ -73.847926140692365, 40.871342233077883 ], [ -73.8536363872702, 40.873300599208925 ], [ -73.855549091608694, 40.871813167563765 ], [ -73.85745013526693, 40.869532520523478 ], [ -73.870537385861923, 40.869674031412217 ], [ -73.870561925246619, 40.871510778453704 ], [ -73.875188028222823, 40.871576828949657 ], [ -73.872552509003341, 40.875175183325894 ], [ -73.87160577396476, 40.876921927761565 ], [ -73.87024100052578, 40.880229352906312 ], [ -73.870840770138798, 40.88043889400528 ], [ -73.874945897555889, 40.879947668792724 ], [ -73.874792407319035, 40.880075128890361 ], [ -73.874676015084802, 40.881562851686247 ], [ -73.878125944269257, 40.882153826231246 ], [ -73.877728176615122, 40.883454195084482 ], [ -73.87760676546273, 40.884523043619716 ], [ -73.877870681121365, 40.887254058345292 ], [ -73.879189418923602, 40.890307031497287 ], [ -73.88026939926651, 40.892281498910712 ], [ -73.880397478720596, 40.893313814019997 ], [ -73.880042130590851, 40.895222284586509 ], [ -73.87711974105801, 40.895468663643506 ], [ -73.876437430650199, 40.896870593459653 ], [ -73.875894654551544, 40.897559458644736 ], [ -73.874820415511664, 40.898445438024375 ], [ -73.870103695755844, 40.900741946981086 ], [ -73.868202703053413, 40.902355382773607 ], [ -73.867890437136481, 40.902986954152283 ], [ -73.859467787670013, 40.900517209267683 ], [ -73.859076922748088, 40.901007993099839 ], [ -73.859419840913219, 40.901393125012483 ], [ -73.859376964588165, 40.901565218163491 ], [ -73.859027040859871, 40.901444909752669 ], [ -73.858864013163526, 40.901711695049556 ], [ -73.859463898918833, 40.901933877632771 ], [ -73.859578830144969, 40.90244084277218 ], [ -73.859264324755372, 40.902669480398288 ], [ -73.858728247672204, 40.902288970569387 ], [ -73.858160000048557, 40.902305710202718 ], [ -73.858164602995657, 40.902595860558918 ], [ -73.857969322621273, 40.90285090768684 ], [ -73.857559676576471, 40.902917795958587 ], [ -73.857110905462122, 40.903649532696754 ], [ -73.857171762363151, 40.904082065435446 ], [ -73.856991574128813, 40.904584210069125 ], [ -73.857434576181348, 40.904841544202981 ], [ -73.857177660759646, 40.905286541661447 ], [ -73.856654368890133, 40.905055000280562 ], [ -73.856010233230279, 40.905305983626057 ], [ -73.856011608393445, 40.905482083440681 ], [ -73.856502516281253, 40.905563848794927 ], [ -73.856923981800776, 40.905974170111023 ], [ -73.856810136385363, 40.906155828325986 ], [ -73.855804637959451, 40.906264364126521 ], [ -73.85552697672837, 40.906380251458295 ], [ -73.855137921493281, 40.906866889141824 ], [ -73.854237766868806, 40.907032868254362 ], [ -73.853741035645172, 40.907787916734712 ], [ -73.853833609995888, 40.90797434981959 ], [ -73.854710782734159, 40.908006309942124 ], [ -73.854911096737425, 40.908354869331617 ], [ -73.85458940455753, 40.908939499296636 ], [ -73.85360061654039, 40.909606741449934 ], [ -73.852956184876774, 40.910353044180056 ], [ -73.85258474750411, 40.910310617064077 ], [ -73.852660358257452, 40.910015194162462 ], [ -73.852274516827322, 40.909854099644015 ], [ -73.85149242502591, 40.910271640499644 ], [ -73.851447539028044, 40.910449671201924 ], [ -73.851071161838306, 40.910371520221922 ], [ -73.853475223999467, 40.907530293024102 ], [ -73.85092059296592, 40.906616494488688 ], [ -73.850173175520965, 40.907507865651361 ], [ -73.847080329143736, 40.906156732530313 ], [ -73.844818869187719, 40.905529949673763 ], [ -73.844892649754939, 40.904190866797059 ], [ -73.841386893046604, 40.904172741533955 ], [ -73.840679663904254, 40.901517031463889 ], [ -73.839194866047421, 40.899350692443392 ], [ -73.839209400579335, 40.898810677100073 ], [ -73.839664332118375, 40.897885515105678 ], [ -73.83964812812998, 40.897330535340636 ], [ -73.838391991897439, 40.894067008048992 ], [ -73.838042772198293, 40.894142330884272 ], [ -73.835257905700189, 40.893391644055725 ], [ -73.822677087139155, 40.889619469070304 ], [ -73.822486204131948, 40.890098054404312 ], [ -73.823264898792289, 40.88998702106101 ], [ -73.823366013412908, 40.891075135707418 ], [ -73.822853350726902, 40.891206829096198 ], [ -73.818277381002787, 40.889847130528402 ], [ -73.793855272090696, 40.883643311333458 ] ] ] } } +, +{ "type": "Feature", "id": 107, "properties": { "communityDistrict": 306, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/306" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.001743621110407, 40.692406749705455 ], [ -74.001105193250609, 40.692056595339189 ], [ -73.992363670432468, 40.68969012377697 ], [ -73.993929296158825, 40.68645287164901 ], [ -73.989128407289869, 40.684589453073421 ], [ -73.988711560327573, 40.685224618479538 ], [ -73.986563034256491, 40.684388756141708 ], [ -73.986995200094256, 40.683765010822732 ], [ -73.984796946915068, 40.682908865516787 ], [ -73.984374107978155, 40.683542455374401 ], [ -73.982422837554779, 40.682782995732666 ], [ -73.982854360751816, 40.682148963461714 ], [ -73.980461554436758, 40.6812225467568 ], [ -73.978760224629411, 40.683765443980533 ], [ -73.976568723558799, 40.682827059545659 ], [ -73.973951353597755, 40.682280730693151 ], [ -73.974391442014991, 40.681046170246681 ], [ -73.973977575889506, 40.680983275465891 ], [ -73.974104486558176, 40.680649672443714 ], [ -73.975143167228509, 40.680871905306589 ], [ -73.97104919104342, 40.675237112802613 ], [ -73.971412332992642, 40.674600579521702 ], [ -73.971439194751909, 40.673704506970445 ], [ -73.970913919008396, 40.672792586686548 ], [ -73.970412894844742, 40.672593723023965 ], [ -73.971815946547849, 40.670629475305191 ], [ -73.979653534103278, 40.661243233730893 ], [ -73.980171611037022, 40.661154658980422 ], [ -73.99696465059327, 40.669234549028936 ], [ -73.998618879700672, 40.671830172564718 ], [ -73.999311010989203, 40.670772639046668 ], [ -74.000303378748882, 40.668716892497045 ], [ -74.001056641131854, 40.668945681717233 ], [ -74.001415271031604, 40.668359414346988 ], [ -74.002215068165441, 40.668578637441186 ], [ -74.002894838769492, 40.667348465949374 ], [ -74.003190752748409, 40.667263199814862 ], [ -74.003694620005277, 40.667427611208367 ], [ -74.003630263515362, 40.667567523356482 ], [ -74.005102273462668, 40.667975647728184 ], [ -74.005863661806842, 40.667993762585667 ], [ -74.006869481278841, 40.666023782718518 ], [ -74.006967990010324, 40.666099546141687 ], [ -74.00475388758332, 40.670721358944974 ], [ -74.005439265293532, 40.670921468238433 ], [ -74.007548216183878, 40.667051745733538 ], [ -74.007796533496233, 40.667159770777189 ], [ -74.007087242218063, 40.668591358535764 ], [ -74.009854119216314, 40.668523628335322 ], [ -74.011540175433311, 40.665085919756642 ], [ -74.015748728826594, 40.664568336291616 ], [ -74.016902673610673, 40.664846602338862 ], [ -74.017887192153907, 40.665850466285242 ], [ -74.018576050108763, 40.670392413869941 ], [ -74.018763368786736, 40.671075874494385 ], [ -74.019339468717774, 40.671624948422611 ], [ -74.018882833633327, 40.671601666205405 ], [ -74.017510371526996, 40.671034530984024 ], [ -74.016687683688616, 40.665437066264275 ], [ -74.016486656204975, 40.664930508953702 ], [ -74.016025517760113, 40.664863048788078 ], [ -74.015936985345505, 40.66547079172144 ], [ -74.012279678727907, 40.665732414158839 ], [ -74.010876640289752, 40.668601615763514 ], [ -74.010356836673139, 40.668642835388482 ], [ -74.010338459479357, 40.669078195447995 ], [ -74.01091024340414, 40.669190492369474 ], [ -74.010873439781875, 40.669710115558388 ], [ -74.011542880315673, 40.669784342750305 ], [ -74.011625275213561, 40.670581028275834 ], [ -74.014249269978819, 40.669728604737017 ], [ -74.011753505756872, 40.670657756573085 ], [ -74.012078317324509, 40.670933614677843 ], [ -74.012619634167834, 40.67084190894041 ], [ -74.013551986714418, 40.671256934377091 ], [ -74.01393626690006, 40.671179076857939 ], [ -74.014274071917242, 40.671379299181872 ], [ -74.015080064710759, 40.670685673295466 ], [ -74.015199805700703, 40.670754027664309 ], [ -74.013872737632454, 40.671880761760427 ], [ -74.014232894527822, 40.672130000513008 ], [ -74.015596444895536, 40.670970477517301 ], [ -74.015686254975151, 40.671038834928808 ], [ -74.012975877921903, 40.673327918720936 ], [ -74.013363782181429, 40.673591536934367 ], [ -74.015119186639609, 40.672156995969104 ], [ -74.016320999223069, 40.672908269563692 ], [ -74.014579467209543, 40.67441401707157 ], [ -74.014963921845748, 40.674677630294198 ], [ -74.018168392807866, 40.671939240601077 ], [ -74.018800947109099, 40.672250764848798 ], [ -74.01727138470126, 40.673608645805515 ], [ -74.017752471623766, 40.674047722892354 ], [ -74.018010773205404, 40.673913181052349 ], [ -74.017801872032038, 40.674095441412369 ], [ -74.018176182746572, 40.674464177036675 ], [ -74.017834475726886, 40.675258223014254 ], [ -74.018298026553353, 40.67545917918136 ], [ -74.018412357557324, 40.675365449934219 ], [ -74.018182106328823, 40.675291431407601 ], [ -74.018392908960237, 40.675107724147793 ], [ -74.018518871965611, 40.67527388964001 ], [ -74.018881013509343, 40.675092480930836 ], [ -74.018408694548626, 40.675524021071467 ], [ -74.018503326423755, 40.675841558730809 ], [ -74.018018008056131, 40.675889522763249 ], [ -74.017911982261822, 40.676510462801936 ], [ -74.019769256792472, 40.676613224917141 ], [ -74.019951978646773, 40.677103010449976 ], [ -74.019082573863301, 40.677139564047515 ], [ -74.01917743946899, 40.677826949006963 ], [ -74.018430407276057, 40.677908320859586 ], [ -74.018411031831619, 40.678407121278411 ], [ -74.019663126515027, 40.678388201270572 ], [ -74.018252670705778, 40.67855288672579 ], [ -74.01857882788785, 40.67898307947236 ], [ -74.01954011580527, 40.678968206456098 ], [ -74.019281281020298, 40.679648140595354 ], [ -74.017725325724371, 40.68066190267357 ], [ -74.017469289031325, 40.680614731700793 ], [ -74.015200822791442, 40.681979419930641 ], [ -74.015320598647591, 40.682110728780522 ], [ -74.012820003988665, 40.683622416497258 ], [ -74.012134816887894, 40.682905928025086 ], [ -74.014105497139909, 40.681712519375374 ], [ -74.013608632702827, 40.68122194672813 ], [ -74.013873987779803, 40.68100981281632 ], [ -74.013018354881211, 40.680412374014217 ], [ -74.009671085588835, 40.68326872771501 ], [ -74.010773123393804, 40.68435861554088 ], [ -74.011782722012086, 40.683759995499258 ], [ -74.012175966146444, 40.684095186131053 ], [ -74.008354465321744, 40.686400200250681 ], [ -74.008164145278869, 40.686174717161506 ], [ -74.007019886826527, 40.686526417194059 ], [ -74.00588224183231, 40.68619576889359 ], [ -74.005629863303994, 40.686784206043605 ], [ -74.007832937666834, 40.687385055162693 ], [ -74.00742012154096, 40.688206290435893 ], [ -74.005003733150716, 40.687605984898255 ], [ -74.004592705217703, 40.688215222986578 ], [ -74.006784385058353, 40.688826879958214 ], [ -74.00636461225271, 40.689669669139555 ], [ -74.003820388537051, 40.688929644196733 ], [ -74.003409216245203, 40.689613261160098 ], [ -74.005759006703428, 40.690236400016168 ], [ -74.005342096249151, 40.691091602977842 ], [ -74.001963219268362, 40.690136379460725 ], [ -74.001853045246193, 40.690387986741811 ], [ -74.0009615685494, 40.690128768350064 ], [ -74.00069905775851, 40.690611858419054 ], [ -74.004794152945522, 40.691761620374393 ], [ -74.004409413260063, 40.692528800891857 ], [ -74.001969385921072, 40.691843208317465 ], [ -74.001743621110407, 40.692406749705455 ] ] ] } } +, +{ "type": "Feature", "id": 108, "properties": { "communityDistrict": 317, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/317" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.907552095075175, 40.651185925730168 ], [ -73.915930862438344, 40.645774695237954 ], [ -73.923326545213897, 40.639900215591638 ], [ -73.925591859705051, 40.638422574182655 ], [ -73.938014537373164, 40.63209046662783 ], [ -73.941131597420394, 40.631291638088712 ], [ -73.943573087771142, 40.630994155128782 ], [ -73.944550391147104, 40.631071787088281 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.945867735272003, 40.634117548159495 ], [ -73.947773303283824, 40.633998156194416 ], [ -73.948264995908715, 40.638607190209093 ], [ -73.953600047193774, 40.638422347449996 ], [ -73.95404358590126, 40.638877549190198 ], [ -73.954730247044338, 40.644772578361398 ], [ -73.9556519617487, 40.64663041014429 ], [ -73.955825184397298, 40.650529808078822 ], [ -73.956300351227114, 40.655048281831135 ], [ -73.930903549322721, 40.656610355984142 ], [ -73.931602186067863, 40.663230444400178 ], [ -73.924390993847524, 40.666381423277812 ], [ -73.910934871825631, 40.654173279907809 ], [ -73.910709746433369, 40.654178733806091 ], [ -73.907552095075175, 40.651185925730168 ] ] ] } } +, +{ "type": "Feature", "id": 109, "properties": { "communityDistrict": 406, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/406" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.82606003226816, 40.715399348602219 ], [ -73.831238554001303, 40.714148221539155 ], [ -73.835900722077483, 40.711641370769733 ], [ -73.83611476516883, 40.711825146370728 ], [ -73.837708941993696, 40.711036484271276 ], [ -73.841339365430443, 40.709946234362214 ], [ -73.844537388463976, 40.708661054970904 ], [ -73.846657241116105, 40.708318642340849 ], [ -73.8493315614799, 40.708388333679913 ], [ -73.854732404775376, 40.706764142594842 ], [ -73.854739573446622, 40.705184850609015 ], [ -73.852520189884061, 40.702291723616682 ], [ -73.855292759047501, 40.70259550128506 ], [ -73.855597710146185, 40.703726225652169 ], [ -73.858232798457479, 40.705591689884926 ], [ -73.859081983691567, 40.706710790722916 ], [ -73.859776180519688, 40.711226356945232 ], [ -73.859629209701808, 40.713975295194537 ], [ -73.860037898757739, 40.714932235723943 ], [ -73.865238706777987, 40.719976710027446 ], [ -73.869292704890839, 40.724435929474879 ], [ -73.870845394241812, 40.727484593440543 ], [ -73.871460741835079, 40.729326374137671 ], [ -73.875091540895426, 40.730671363218896 ], [ -73.856285677109298, 40.736426042505471 ], [ -73.851303526722035, 40.737511727542568 ], [ -73.847508202780645, 40.739007807039158 ], [ -73.847213615878815, 40.738643986683861 ], [ -73.846748819699542, 40.738651789501517 ], [ -73.845910939477719, 40.738307055412641 ], [ -73.845470895005548, 40.737873221949435 ], [ -73.844675955828748, 40.735112344198463 ], [ -73.843715762791177, 40.733225729946035 ], [ -73.84284582578421, 40.732067642742273 ], [ -73.84055003848917, 40.729844729907995 ], [ -73.839200938937779, 40.728266863029113 ], [ -73.836557629259431, 40.723373963168477 ], [ -73.83412823313644, 40.720230532396293 ], [ -73.831853055232642, 40.717912143304176 ], [ -73.830429023525909, 40.716962770431863 ], [ -73.82695834371026, 40.715935281893671 ], [ -73.82606003226816, 40.715399348602219 ] ] ] } } +, +{ "type": "Feature", "id": 110, "properties": { "communityDistrict": 207, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/207" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.875188028222823, 40.871576828949657 ], [ -73.876192249125197, 40.870476710929672 ], [ -73.876943519588707, 40.869954681571386 ], [ -73.888014693883406, 40.86388894909858 ], [ -73.889272736550836, 40.862916399208004 ], [ -73.890674550969536, 40.861320040883491 ], [ -73.891771887992022, 40.861871716750073 ], [ -73.892851691553773, 40.861832192993191 ], [ -73.896939613042107, 40.862442856758733 ], [ -73.899436708404068, 40.862116912065531 ], [ -73.901079670177253, 40.862756383422955 ], [ -73.90390816669435, 40.858367585815898 ], [ -73.907773205133822, 40.859607537685449 ], [ -73.909567200764997, 40.85759162415976 ], [ -73.90980269932912, 40.857607548833386 ], [ -73.910308808511346, 40.858409326604963 ], [ -73.910721042564745, 40.85870623223358 ], [ -73.914036078877231, 40.85994195282678 ], [ -73.914674807120662, 40.859712405659558 ], [ -73.915762132109379, 40.860644637292928 ], [ -73.914809343254817, 40.861714189645724 ], [ -73.914818173391055, 40.861899088982398 ], [ -73.913414621936539, 40.863367493700679 ], [ -73.912762719954614, 40.86302917415756 ], [ -73.912272789769787, 40.863632148996672 ], [ -73.912797621951398, 40.863898875433328 ], [ -73.91252604516805, 40.863795223837748 ], [ -73.912676340203859, 40.864021111602405 ], [ -73.910442827503289, 40.866527868562336 ], [ -73.909496643123177, 40.868831156640354 ], [ -73.908937149298978, 40.871019840308804 ], [ -73.908649431113773, 40.871385783802737 ], [ -73.908932351753805, 40.872157347970081 ], [ -73.909511362618105, 40.87297738359792 ], [ -73.910654392496312, 40.873975943060529 ], [ -73.910269710887178, 40.874271814544123 ], [ -73.909689484029713, 40.874602273754043 ], [ -73.90855579588731, 40.873775444425469 ], [ -73.905714252962994, 40.873138322101234 ], [ -73.904677282084094, 40.872619878995792 ], [ -73.904440073250186, 40.87233032825165 ], [ -73.904488604897097, 40.870578548547648 ], [ -73.903749758939654, 40.869595627140072 ], [ -73.902358047802338, 40.868696120952848 ], [ -73.899965756483837, 40.868017301510321 ], [ -73.899338511723883, 40.869228028104736 ], [ -73.897789622704778, 40.870856643398511 ], [ -73.891406962661179, 40.878969446245762 ], [ -73.889975375540757, 40.880233131422152 ], [ -73.888364875387865, 40.882267541861218 ], [ -73.887069627837747, 40.882476896066123 ], [ -73.887165051991502, 40.882576510892207 ], [ -73.886970075228717, 40.882795642716843 ], [ -73.887231940098275, 40.883054978428362 ], [ -73.887051425361179, 40.88434957584596 ], [ -73.884216964431815, 40.883197728058455 ], [ -73.883683368565229, 40.883157615331406 ], [ -73.882748332946534, 40.883397386800993 ], [ -73.881244225415543, 40.882709633005554 ], [ -73.878149446345148, 40.886873807364744 ], [ -73.878000236497797, 40.88742445934291 ], [ -73.877838570010638, 40.887094521176337 ], [ -73.87760676546273, 40.884523043619716 ], [ -73.877728176615122, 40.883454195084482 ], [ -73.878125944269257, 40.882153826231246 ], [ -73.874676015084802, 40.881562851686247 ], [ -73.874792407319035, 40.880075128890361 ], [ -73.874945897555889, 40.879947668792724 ], [ -73.870840770138798, 40.88043889400528 ], [ -73.87024100052578, 40.880229352906312 ], [ -73.87160577396476, 40.876921927761565 ], [ -73.872552509003341, 40.875175183325894 ], [ -73.875188028222823, 40.871576828949657 ] ] ] } } +, +{ "type": "Feature", "id": 111, "properties": { "communityDistrict": 313, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/313" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.983721526152465, 40.595821078217057 ], [ -73.974216992455439, 40.590111555499078 ], [ -73.97433591765278, 40.587941518707822 ], [ -73.960516672384173, 40.589452911647577 ], [ -73.960047986674823, 40.583269872406589 ], [ -73.959007400390789, 40.582838127802084 ], [ -73.957031342462898, 40.583035332919756 ], [ -73.956457291257294, 40.582658850555148 ], [ -73.956041468004543, 40.582736254319975 ], [ -73.955919977208097, 40.582447832319147 ], [ -73.954940242385263, 40.581968904738119 ], [ -73.955071116580399, 40.581680175764198 ], [ -73.954438286024342, 40.579599959422239 ], [ -73.953651717053447, 40.575823980895507 ], [ -73.95428546787106, 40.575731336515922 ], [ -73.954133608034539, 40.574333267495142 ], [ -73.956208165951267, 40.574265470675137 ], [ -73.956369041736508, 40.574173312056949 ], [ -73.956345334546072, 40.573797578291838 ], [ -73.956567509059084, 40.574170778492942 ], [ -73.958651471390809, 40.574051523771196 ], [ -73.958966342186514, 40.573947268768698 ], [ -73.958987189726116, 40.573430654726742 ], [ -73.959096421286503, 40.573863820433026 ], [ -73.959828649112396, 40.573929309635673 ], [ -73.96720294103956, 40.573326317397424 ], [ -73.967435678590405, 40.573208969671462 ], [ -73.9674262847454, 40.57298510896922 ], [ -73.967531497537252, 40.573190731882022 ], [ -73.968185060985917, 40.573177868546146 ], [ -73.969451262682838, 40.57285728036333 ], [ -73.969246212155667, 40.572304075654522 ], [ -73.969558951517385, 40.572808580460709 ], [ -73.969755803368841, 40.572846924690324 ], [ -73.971329896263413, 40.572643810384029 ], [ -73.971183063557177, 40.571941899084152 ], [ -73.971607064523894, 40.572628223919821 ], [ -73.972934761627371, 40.572474601642661 ], [ -73.973345022298105, 40.572321214006102 ], [ -73.973249901151632, 40.571626685606411 ], [ -73.973448053256831, 40.572272106969329 ], [ -73.975285649011894, 40.572049832668384 ], [ -73.975470819686947, 40.571969003817038 ], [ -73.975405640942185, 40.571421040640494 ], [ -73.975679180292659, 40.571955984497315 ], [ -73.975925520915297, 40.572018657437525 ], [ -73.977301100927306, 40.571862385946275 ], [ -73.977663845222338, 40.571729387798953 ], [ -73.977568200912074, 40.5712466666591 ], [ -73.977670875897331, 40.571171020079184 ], [ -73.978075997982245, 40.571229570128672 ], [ -73.977715330724891, 40.571251913842204 ], [ -73.977807965370516, 40.571756200609322 ], [ -73.9784548651146, 40.571892204247035 ], [ -73.979100015568946, 40.571840698017972 ], [ -73.97984694469406, 40.571539319610125 ], [ -73.97944328367619, 40.571220925948012 ], [ -73.979754647456801, 40.571249682581978 ], [ -73.980103515518977, 40.571727226484469 ], [ -73.982040758525159, 40.571480370522458 ], [ -73.981571554234293, 40.571249988424803 ], [ -73.982026629187516, 40.571276152089091 ], [ -73.982177106251882, 40.571560578454381 ], [ -73.98308044496568, 40.571508531433359 ], [ -73.983672701532626, 40.571407057687367 ], [ -73.983404407376767, 40.570165544510743 ], [ -73.983043288837123, 40.570145860987935 ], [ -73.983391685025467, 40.570094685019548 ], [ -73.983360580392727, 40.569529994486707 ], [ -73.9834852186614, 40.570089015062742 ], [ -73.983839494892607, 40.570112467157912 ], [ -73.983488421466973, 40.570156029543888 ], [ -73.983757903827424, 40.571396227250823 ], [ -73.988037167444446, 40.57098510876876 ], [ -73.988620254155521, 40.570896051314065 ], [ -73.988577720388719, 40.570697909504929 ], [ -73.9887214578292, 40.570883692082539 ], [ -73.990262675274394, 40.570708340117214 ], [ -73.990773103898334, 40.570599421837841 ], [ -73.990792647669423, 40.570248648755516 ], [ -73.990863746848731, 40.570602016242361 ], [ -73.991193375236165, 40.570611874968193 ], [ -73.992728548311632, 40.570433788037356 ], [ -73.992969230148518, 40.570366732042253 ], [ -73.99298098138074, 40.570196773309185 ], [ -73.993157418867384, 40.570379789438825 ], [ -73.994937632299468, 40.570354674512359 ], [ -73.995138544368032, 40.570314661206666 ], [ -73.995187260857335, 40.570021877633096 ], [ -73.99529301203259, 40.570321282713799 ], [ -73.995764696771019, 40.570392961357264 ], [ -73.997194938258417, 40.570348649043794 ], [ -73.997369449485078, 40.570137307542872 ], [ -73.997667121352009, 40.570374751166142 ], [ -73.998467779001587, 40.570497396972954 ], [ -74.001064386672681, 40.57040154143597 ], [ -74.002011670539048, 40.570208758524096 ], [ -74.00208547639734, 40.569585983984915 ], [ -74.002487077377097, 40.571738388872433 ], [ -74.003031861675382, 40.572185594726179 ], [ -74.00373431084688, 40.572286844482505 ], [ -74.00440185902319, 40.572797892590479 ], [ -74.006669156325955, 40.573393648375315 ], [ -74.008708657301966, 40.573759818587639 ], [ -74.010074107854265, 40.573830809517624 ], [ -74.011156687951768, 40.574166761858727 ], [ -74.012015401911299, 40.574885052474201 ], [ -74.012321835206748, 40.575652682365046 ], [ -74.01245951831028, 40.576681770667378 ], [ -74.013031134855041, 40.57785701813642 ], [ -74.01235035995137, 40.579221820653757 ], [ -74.011761242976803, 40.579854082026202 ], [ -74.010860355718165, 40.580462245271107 ], [ -74.007453660081651, 40.581803522847892 ], [ -74.006047343017357, 40.58198365303577 ], [ -74.003980235505111, 40.581721295663904 ], [ -74.002943741578065, 40.581432835520999 ], [ -74.001240326995969, 40.581426265375875 ], [ -74.000260554245259, 40.581252386322966 ], [ -73.998318391502764, 40.581488204362607 ], [ -73.997955705455382, 40.581287408266526 ], [ -73.997991474122045, 40.580765720885992 ], [ -73.997849725398808, 40.580608959713189 ], [ -73.991829127902761, 40.579247080928766 ], [ -73.99036206466559, 40.579424580120467 ], [ -73.988990935563393, 40.578835099968813 ], [ -73.988428337694288, 40.57881584261947 ], [ -73.987390643884055, 40.579086983063661 ], [ -73.986695399970728, 40.579814908132533 ], [ -73.987021385117885, 40.580022764875189 ], [ -73.985885673948516, 40.581144424564741 ], [ -73.986045099162297, 40.581720685151566 ], [ -73.986945069294578, 40.581136421808658 ], [ -73.987574002281733, 40.580031451227399 ], [ -73.988009733767598, 40.579670687155726 ], [ -73.988903539238194, 40.580008678684663 ], [ -73.989955049217727, 40.580661669531381 ], [ -73.991742734170018, 40.58120016258745 ], [ -73.991825295758701, 40.581738520302707 ], [ -73.990337625044575, 40.584218254885847 ], [ -73.990262447143721, 40.584619148205299 ], [ -73.995396674352946, 40.582227790089235 ], [ -73.996055288864383, 40.582128903854134 ], [ -74.000179228594078, 40.583073949742413 ], [ -74.000417395037061, 40.583545921503251 ], [ -74.000436854239666, 40.584048969486503 ], [ -73.999339763758584, 40.584860814817176 ], [ -73.998085237760137, 40.585364721581485 ], [ -73.998088992543174, 40.585470740763292 ], [ -73.999705970995123, 40.585689819858544 ], [ -73.999525679903627, 40.585758544659889 ], [ -73.999565115703192, 40.586243920095654 ], [ -73.998145304490038, 40.586531693907119 ], [ -73.994173056383758, 40.58838285782074 ], [ -73.995598574103511, 40.587841707554126 ], [ -73.995660545781945, 40.587936207343823 ], [ -73.994079046217806, 40.588693441990529 ], [ -73.994215546083012, 40.588868530985344 ], [ -73.993308549669493, 40.589583898580422 ], [ -73.991539344444476, 40.590390903081278 ], [ -73.985200273048463, 40.596398126116434 ], [ -73.9850613649743, 40.595670918819373 ], [ -73.983721526152465, 40.595821078217057 ] ] ] } } +, +{ "type": "Feature", "id": 112, "properties": { "communityDistrict": 312, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/312" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.971396316881737, 40.648257785611484 ], [ -73.967627362927928, 40.635238621822609 ], [ -73.97241481651271, 40.632993834268341 ], [ -73.972557215954396, 40.63371337992691 ], [ -73.97761642303297, 40.633153642403919 ], [ -73.976514621001982, 40.6272944899913 ], [ -73.972581653622655, 40.627917967359245 ], [ -73.965906868800076, 40.628654481308331 ], [ -73.962379478247911, 40.609986374023229 ], [ -73.972994340048416, 40.60881414180237 ], [ -73.973993194613954, 40.614029893739918 ], [ -73.97489295756634, 40.613186368916608 ], [ -73.974972646644076, 40.613668110171787 ], [ -73.99473485679259, 40.625614741105977 ], [ -73.998490042017337, 40.627200639256763 ], [ -74.010583402798758, 40.634501852847713 ], [ -73.996045653746492, 40.648340654426384 ], [ -73.989058724595978, 40.644119240536661 ], [ -73.98834986737009, 40.644562243887307 ], [ -73.981805338572073, 40.647127799262265 ], [ -73.975272134355095, 40.647830604067259 ], [ -73.973266890058781, 40.647583072125762 ], [ -73.971396316881737, 40.648257785611484 ] ] ] } } +, +{ "type": "Feature", "id": 113, "properties": { "communityDistrict": 206, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/206" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.871846102910098, 40.843760777855778 ], [ -73.873127281585923, 40.838335096918485 ], [ -73.873773088060872, 40.836358751438269 ], [ -73.877227625522892, 40.836583182273763 ], [ -73.879651823506777, 40.837126026934385 ], [ -73.881696749419774, 40.837987113460869 ], [ -73.88610978780433, 40.840470994132311 ], [ -73.886598023451214, 40.839279050108473 ], [ -73.888137521593393, 40.839862002384741 ], [ -73.88869040830879, 40.839158026467977 ], [ -73.889417248691998, 40.839422733380196 ], [ -73.895378361807317, 40.84293877895653 ], [ -73.894819425613477, 40.843683770968212 ], [ -73.899637495566893, 40.844233825028809 ], [ -73.900333303501938, 40.842989379513547 ], [ -73.901511519957126, 40.843367968965346 ], [ -73.900939994262416, 40.844384982674271 ], [ -73.90268810050182, 40.84458147228532 ], [ -73.900690100968845, 40.848310096566706 ], [ -73.893215207578095, 40.859874206155673 ], [ -73.891380233802607, 40.861700588263041 ], [ -73.890674550969536, 40.861320040883491 ], [ -73.889272736550836, 40.862916399208004 ], [ -73.888014693883406, 40.86388894909858 ], [ -73.883090031041945, 40.866591509791832 ], [ -73.882627913877272, 40.865858738650267 ], [ -73.883614298905584, 40.865294850620074 ], [ -73.883835149304986, 40.864758597542853 ], [ -73.883713162903717, 40.86429198447177 ], [ -73.88186568671162, 40.862123761957804 ], [ -73.880562139513984, 40.861197229525743 ], [ -73.88035438798083, 40.860569362507142 ], [ -73.880833876202104, 40.858183125616939 ], [ -73.880592251500204, 40.856739973287922 ], [ -73.88263584800417, 40.847914303764277 ], [ -73.877160535872378, 40.844085199803487 ], [ -73.877981313447265, 40.842804416075822 ], [ -73.87456845016807, 40.841642720122273 ], [ -73.873992955209772, 40.842561505617518 ], [ -73.872807082059936, 40.84342426412389 ], [ -73.871846102910098, 40.843760777855778 ] ] ] } } +, +{ "type": "Feature", "id": 114, "properties": { "communityDistrict": 211, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/211" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.828343474975767, 40.860892026675806 ], [ -73.831114492216741, 40.857524329623871 ], [ -73.834583217162276, 40.854432336831373 ], [ -73.835519046747692, 40.853019577561206 ], [ -73.83614279002083, 40.851041758573309 ], [ -73.836470550498007, 40.847149372782837 ], [ -73.836711796906599, 40.846057369667832 ], [ -73.838390562912494, 40.840676814135101 ], [ -73.839367942506499, 40.840882973481769 ], [ -73.841247853876254, 40.840621628762499 ], [ -73.843276558603833, 40.843541805945087 ], [ -73.844910342553277, 40.845427460748908 ], [ -73.848068340003266, 40.843072001370466 ], [ -73.86347232379066, 40.841305932707215 ], [ -73.867822581813499, 40.840166499016853 ], [ -73.870094731821638, 40.839245704964 ], [ -73.870214507449845, 40.8396179421215 ], [ -73.872772046585297, 40.839751282336003 ], [ -73.871846102910098, 40.843760777855778 ], [ -73.871092078653859, 40.844324780835031 ], [ -73.868892433407908, 40.848112322126454 ], [ -73.869414027571338, 40.848788024629854 ], [ -73.868234660812561, 40.850913737216231 ], [ -73.869903795785604, 40.855873021615913 ], [ -73.868188305588333, 40.858063833808266 ], [ -73.868602785191243, 40.858083100544775 ], [ -73.868896227883951, 40.857772772945061 ], [ -73.86954868104695, 40.85772602967981 ], [ -73.870889838986443, 40.857272817811328 ], [ -73.871082625789796, 40.857377040135908 ], [ -73.870388547273706, 40.864053876300375 ], [ -73.870537385861923, 40.869674031412217 ], [ -73.85745013526693, 40.869532520523478 ], [ -73.855549091608694, 40.871813167563765 ], [ -73.8536363872702, 40.873300599208925 ], [ -73.847926140692365, 40.871342233077883 ], [ -73.835784366576917, 40.865016011497033 ], [ -73.830893296615912, 40.862212849091911 ], [ -73.829508926921164, 40.861841213446603 ], [ -73.828343474975767, 40.860892026675806 ] ] ] } } +, +{ "type": "Feature", "id": 115, "properties": { "communityDistrict": 227, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/227" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.870537385861923, 40.869674031412217 ], [ -73.870388547273706, 40.864053876300375 ], [ -73.871082625789796, 40.857377040135908 ], [ -73.870889838986443, 40.857272817811328 ], [ -73.86954868104695, 40.85772602967981 ], [ -73.868896227883951, 40.857772772945061 ], [ -73.868602785191243, 40.858083100544775 ], [ -73.868188305588333, 40.858063833808266 ], [ -73.869903795785604, 40.855873021615913 ], [ -73.868234660812561, 40.850913737216231 ], [ -73.869414027571338, 40.848788024629854 ], [ -73.868892433407908, 40.848112322126454 ], [ -73.871092078653859, 40.844324780835031 ], [ -73.87190185099935, 40.84372143399213 ], [ -73.872807082059936, 40.84342426412389 ], [ -73.873992955209772, 40.842561505617518 ], [ -73.87456845016807, 40.841642720122273 ], [ -73.877981313447265, 40.842804416075822 ], [ -73.877160535872378, 40.844085199803487 ], [ -73.88263584800417, 40.847914303764277 ], [ -73.880592251500204, 40.856739973287922 ], [ -73.880833876202104, 40.858183125616939 ], [ -73.88035438798083, 40.860569362507142 ], [ -73.880562139513984, 40.861197229525743 ], [ -73.882193563819655, 40.862456612722333 ], [ -73.883713162903717, 40.86429198447177 ], [ -73.883835149304986, 40.864758597542853 ], [ -73.883515202134546, 40.865399532828519 ], [ -73.882627913877272, 40.865858738650267 ], [ -73.883090031041945, 40.866591509791832 ], [ -73.876943519588707, 40.869954681571386 ], [ -73.876192249125197, 40.870476710929672 ], [ -73.875188028222823, 40.871576828949657 ], [ -73.870561925246619, 40.871510778453704 ], [ -73.870537385861923, 40.869674031412217 ] ] ] } } +, +{ "type": "Feature", "id": 116, "properties": { "communityDistrict": 482, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/482" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.835900722077483, 40.711641370769733 ], [ -73.834051103436607, 40.710027882253115 ], [ -73.836657203108103, 40.708584270057372 ], [ -73.837982802802316, 40.70675198796021 ], [ -73.838042772945016, 40.705956459962259 ], [ -73.836962377449964, 40.704212452332193 ], [ -73.839478151754136, 40.702690194330657 ], [ -73.841563780944213, 40.701100598717581 ], [ -73.842756641805778, 40.7006576953058 ], [ -73.845024729431415, 40.699359377017053 ], [ -73.849138373090511, 40.698282740700151 ], [ -73.850708423224148, 40.700203124602638 ], [ -73.854434556776525, 40.700602952131028 ], [ -73.852711308770878, 40.698414961501221 ], [ -73.852609659869856, 40.69780503974782 ], [ -73.852772385843949, 40.697557111441142 ], [ -73.857444477396186, 40.696912984716768 ], [ -73.868424897789154, 40.694718119012549 ], [ -73.868917043081368, 40.695150423196331 ], [ -73.870573931660374, 40.697688900665028 ], [ -73.869903301636398, 40.697976624361125 ], [ -73.869150517428054, 40.698583517911167 ], [ -73.868867307405594, 40.699023015297335 ], [ -73.868112913876786, 40.701204312500515 ], [ -73.867506860550108, 40.701816776459175 ], [ -73.866616773232764, 40.70231894576407 ], [ -73.865237876339862, 40.702697761282487 ], [ -73.863570925091835, 40.702820004849919 ], [ -73.859775008757126, 40.70244509805795 ], [ -73.858198906347013, 40.702911073862325 ], [ -73.858932243991106, 40.701320344758884 ], [ -73.857253514786606, 40.701212177233693 ], [ -73.857166882525092, 40.701674104892042 ], [ -73.855295715092595, 40.701991009610488 ], [ -73.855292759047501, 40.70259550128506 ], [ -73.852520189884061, 40.702291723616682 ], [ -73.854739573446622, 40.705184850609015 ], [ -73.854732404775376, 40.706764142594842 ], [ -73.8493315614799, 40.708388333679913 ], [ -73.846657241116105, 40.708318642340849 ], [ -73.844910111697914, 40.708560330867826 ], [ -73.841339365430443, 40.709946234362214 ], [ -73.837708941993696, 40.711036484271276 ], [ -73.83611476516883, 40.711825146370728 ], [ -73.835900722077483, 40.711641370769733 ] ] ] } } +, +{ "type": "Feature", "id": 117, "properties": { "communityDistrict": 307, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/307" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.980171611037022, 40.661154658980422 ], [ -73.980210052904525, 40.660923322437974 ], [ -73.980001138906843, 40.660757564209916 ], [ -73.979578700956395, 40.660853242153919 ], [ -73.975157381000074, 40.658722794114951 ], [ -73.974367012264977, 40.658187903512044 ], [ -73.971396316881737, 40.648257785611484 ], [ -73.973266890058781, 40.647583072125762 ], [ -73.975272134355095, 40.647830604067259 ], [ -73.981805338572073, 40.647127799262265 ], [ -73.98834986737009, 40.644562243887307 ], [ -73.989058724595978, 40.644119240536661 ], [ -73.996045653746492, 40.648340654426384 ], [ -74.010583402798758, 40.634501852847713 ], [ -74.012740591018073, 40.635406476275641 ], [ -74.016067907983739, 40.636138451094787 ], [ -74.019764960437811, 40.637217434927393 ], [ -74.021160298333569, 40.63828079800588 ], [ -74.021646850826869, 40.63909104800689 ], [ -74.022970093908526, 40.639934604478512 ], [ -74.023105932084846, 40.639995325926826 ], [ -74.023316830243843, 40.639797781724845 ], [ -74.023549391547306, 40.639320333692282 ], [ -74.025723770674631, 40.64063051910798 ], [ -74.026097891295706, 40.640270020325374 ], [ -74.032310843001014, 40.644039214480358 ], [ -74.031897085603191, 40.643889349369566 ], [ -74.030518308633717, 40.645274424203841 ], [ -74.029080909517575, 40.644403596930175 ], [ -74.028997625347486, 40.644471961492734 ], [ -74.029154189945288, 40.644581445419526 ], [ -74.028862411270381, 40.644866023722997 ], [ -74.029086542892401, 40.644583001799596 ], [ -74.028501161846236, 40.644177564702787 ], [ -74.02819053049322, 40.644414330206267 ], [ -74.028457210957811, 40.644156059248161 ], [ -74.028205695450055, 40.644015982890274 ], [ -74.026049484003195, 40.646261350326149 ], [ -74.029740782770588, 40.648486026210222 ], [ -74.029389904866207, 40.648804055113864 ], [ -74.025717588048124, 40.646615492290927 ], [ -74.025162026067264, 40.647138748494129 ], [ -74.024839574067869, 40.64694442476538 ], [ -74.024614871031105, 40.647151125118775 ], [ -74.026296888582181, 40.648168926521002 ], [ -74.026221024755785, 40.648248427809207 ], [ -74.024883054911328, 40.647410523024213 ], [ -74.024683904508905, 40.64760566521803 ], [ -74.024354969367195, 40.647399278153451 ], [ -74.024145660505681, 40.647615101259831 ], [ -74.025129119552389, 40.648323181457236 ], [ -74.024967921171367, 40.648605962267496 ], [ -74.025538645780429, 40.649782159348028 ], [ -74.024844363634429, 40.650599638056967 ], [ -74.025205812535617, 40.650818467899178 ], [ -74.025415539294613, 40.650618697082486 ], [ -74.026051331967977, 40.6509943007431 ], [ -74.025529715436548, 40.651478550692808 ], [ -74.024911228489998, 40.651106284788113 ], [ -74.02510257190238, 40.650893305576858 ], [ -74.02477160495674, 40.650687707435374 ], [ -74.024240213475281, 40.651133516313358 ], [ -74.025501391117317, 40.651839851034033 ], [ -74.025416040285918, 40.651933806855055 ], [ -74.024177529733961, 40.651191773212147 ], [ -74.023594002951896, 40.651315663253719 ], [ -74.023059910470309, 40.650974304134749 ], [ -74.022851417959814, 40.651169195161721 ], [ -74.025368902165084, 40.652721436927095 ], [ -74.025226629726603, 40.652829856959634 ], [ -74.021541383192258, 40.650671622911212 ], [ -74.021246523734106, 40.65083497256429 ], [ -74.021391882106727, 40.650967757988333 ], [ -74.021127077838273, 40.650943212115429 ], [ -74.021052303922147, 40.651098282927713 ], [ -74.022337346668337, 40.651910605381595 ], [ -74.022251731997102, 40.651981601506776 ], [ -74.020982612258621, 40.65115682265769 ], [ -74.020898628708338, 40.651247275218275 ], [ -74.023807039031254, 40.65304472851146 ], [ -74.023594344975564, 40.653216368961743 ], [ -74.021959000905966, 40.652222781970742 ], [ -74.021621533676168, 40.652319951290501 ], [ -74.021186700278903, 40.652839836895325 ], [ -74.023204647271413, 40.65409611681784 ], [ -74.023062191552214, 40.654233236291795 ], [ -74.022101951624506, 40.653587953807623 ], [ -74.021629462954991, 40.65364516521602 ], [ -74.021149634844946, 40.654210755211558 ], [ -74.021824797454983, 40.654656175785377 ], [ -74.0216448641536, 40.654878982377276 ], [ -74.020894697316052, 40.654433575413634 ], [ -74.020639692249816, 40.654439333329357 ], [ -74.020474618861755, 40.654216589227005 ], [ -74.019192030254203, 40.654022598494109 ], [ -74.018726865886833, 40.653474310524388 ], [ -74.018118978764718, 40.653885271105246 ], [ -74.020255889869347, 40.655118262881238 ], [ -74.020051824542975, 40.655335948874452 ], [ -74.017874072238172, 40.654061502330812 ], [ -74.017153195810266, 40.654775104362081 ], [ -74.019800816519975, 40.656487210584636 ], [ -74.019705963442391, 40.656581163751113 ], [ -74.017267159365872, 40.655194187986474 ], [ -74.016916179170636, 40.655483274957639 ], [ -74.016650480257539, 40.65533879657206 ], [ -74.016394375337768, 40.655620642850742 ], [ -74.019108438031225, 40.657368884303445 ], [ -74.018605694609974, 40.65784587402284 ], [ -74.015853701227954, 40.656213239550127 ], [ -74.015436323356425, 40.656632396759562 ], [ -74.017742327274931, 40.658098916724924 ], [ -74.017666444095198, 40.658185638771485 ], [ -74.017865731096791, 40.658308447298516 ], [ -74.01768549175469, 40.658452992761198 ], [ -74.015047382218555, 40.656950386693396 ], [ -74.014421304845527, 40.657608021951368 ], [ -74.017458030879027, 40.659450197386697 ], [ -74.015541653890068, 40.660758355476105 ], [ -74.014004283924152, 40.659811963440099 ], [ -74.013662739266081, 40.660028780636914 ], [ -74.011838620565513, 40.658912837274698 ], [ -74.011107504763061, 40.65970627458055 ], [ -74.014022477440207, 40.661529747439978 ], [ -74.013155549388159, 40.661981597725926 ], [ -74.012653588114944, 40.661981654037561 ], [ -74.008599569682886, 40.659520923098235 ], [ -74.007458581638957, 40.660558476209893 ], [ -74.010372013632121, 40.662398879227297 ], [ -74.010463317244941, 40.662642119790036 ], [ -74.00955074208035, 40.663267694130305 ], [ -74.008683715913008, 40.663372012840213 ], [ -74.006161411363209, 40.661845068990473 ], [ -74.005685948228901, 40.662274740360459 ], [ -74.004283583161225, 40.661444894101251 ], [ -74.00414624826216, 40.661561635681302 ], [ -74.006226982479248, 40.662787827860939 ], [ -74.005923605030333, 40.663108250739057 ], [ -74.00380815470885, 40.661907945728146 ], [ -74.003488011006482, 40.662240556128488 ], [ -74.004554984887136, 40.662816372912694 ], [ -74.004732981217771, 40.66249650399665 ], [ -74.005358128642513, 40.66286912973171 ], [ -74.004971577586119, 40.663068213242063 ], [ -74.005192338410865, 40.663201553096549 ], [ -74.00538014413921, 40.662883926452778 ], [ -74.005997487486923, 40.663258610828478 ], [ -74.005613486817481, 40.663458390254732 ], [ -74.007721335067032, 40.664718633019767 ], [ -74.007305161928358, 40.664597590752535 ], [ -74.007125326467403, 40.66491521847427 ], [ -74.006524696661117, 40.664547226657731 ], [ -74.00688215307305, 40.664340372942924 ], [ -74.006629378595704, 40.664187930124427 ], [ -74.006449799807925, 40.664506206799039 ], [ -74.005841576324855, 40.664138020674557 ], [ -74.006203065853754, 40.663930168210477 ], [ -74.006046085189794, 40.663840005635521 ], [ -74.005757810454867, 40.663922756801618 ], [ -74.005849247706109, 40.664503298619657 ], [ -74.005641407544744, 40.66453149089061 ], [ -74.005650259595853, 40.663900337843721 ], [ -74.003628625085668, 40.662734847534544 ], [ -74.003403485956312, 40.662985726598237 ], [ -74.004592386367534, 40.663735199832836 ], [ -74.004322949633774, 40.664052319975234 ], [ -74.005281321773424, 40.664657003523956 ], [ -74.004861937926592, 40.665064821938167 ], [ -74.001135194436586, 40.662901723049927 ], [ -74.000944243316098, 40.6630763919839 ], [ -74.000834011084422, 40.663006441686541 ], [ -73.999531526099162, 40.664397485936902 ], [ -74.002924635163879, 40.666462312163368 ], [ -74.002240310573796, 40.666793835145164 ], [ -74.001619500210921, 40.666766279174453 ], [ -74.00120611414313, 40.667018107202786 ], [ -74.001464709327081, 40.66716956870755 ], [ -74.000687748687653, 40.667545951898767 ], [ -73.999981493391232, 40.667450274908639 ], [ -73.999026009983893, 40.668442972126961 ], [ -73.999026332641748, 40.669007888400671 ], [ -73.999240491050344, 40.668306286559968 ], [ -73.999079353279754, 40.669038271861567 ], [ -73.998655807576171, 40.669514795547904 ], [ -73.998911601678898, 40.669648578639517 ], [ -73.99891684904766, 40.669804563217738 ], [ -73.99855824468392, 40.671335501669915 ], [ -73.998769410589219, 40.671602047105061 ], [ -73.998618879700672, 40.671830172564718 ], [ -73.99696465059327, 40.669234549028936 ], [ -73.980171611037022, 40.661154658980422 ] ] ] } } +, +{ "type": "Feature", "id": 118, "properties": { "communityDistrict": 310, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/310" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -74.032310843001014, 40.644039214480358 ], [ -74.026097891295706, 40.640270020325374 ], [ -74.025723770674631, 40.64063051910798 ], [ -74.023549391547306, 40.639320333692282 ], [ -74.023316830243843, 40.639797781724845 ], [ -74.023105932084846, 40.639995325926826 ], [ -74.022970093908526, 40.639934604478512 ], [ -74.021646850826869, 40.63909104800689 ], [ -74.021160298333569, 40.63828079800588 ], [ -74.019764960437811, 40.637217434927393 ], [ -74.016067907983739, 40.636138451094787 ], [ -74.012740591018073, 40.635406476275641 ], [ -74.010918344655252, 40.63468251965682 ], [ -73.998490042017337, 40.627200639256763 ], [ -73.997181753413983, 40.626710155836285 ], [ -74.017019101547376, 40.607654416971123 ], [ -74.015498550096368, 40.606841524276888 ], [ -74.019427608897502, 40.602871578347951 ], [ -74.021016629496316, 40.603555553061256 ], [ -74.030051466136257, 40.604759173811786 ], [ -74.03213159551315, 40.605901836264231 ], [ -74.034272805394494, 40.607717478230313 ], [ -74.034958308299366, 40.608659489086641 ], [ -74.036039777779152, 40.60929563900185 ], [ -74.036815426504205, 40.611037721554638 ], [ -74.039205576473947, 40.61343951273367 ], [ -74.040476120214549, 40.615625262658888 ], [ -74.041375228256328, 40.619993552965468 ], [ -74.041617407735998, 40.62056271454572 ], [ -74.041710158124687, 40.623305320611784 ], [ -74.041888492598176, 40.624409312969057 ], [ -74.041063204689081, 40.630190337193341 ], [ -74.03680662048852, 40.638984221545485 ], [ -74.038762979207561, 40.63958825898051 ], [ -74.038688046907339, 40.639738256029574 ], [ -74.036724843748829, 40.639141190206679 ], [ -74.035712761507298, 40.64064015404648 ], [ -74.036734426851581, 40.641458421718845 ], [ -74.03674294096578, 40.641631829699861 ], [ -74.034073292942608, 40.644313932963897 ], [ -74.032842920138606, 40.643563710350584 ], [ -74.032620556401795, 40.643765402259241 ], [ -74.032310706641724, 40.643574585612399 ], [ -74.032235244367783, 40.643643370155345 ], [ -74.032541738616018, 40.643825483849135 ], [ -74.032310843001014, 40.644039214480358 ] ] ] } } +, +{ "type": "Feature", "id": 119, "properties": { "communityDistrict": 314, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/314" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.956300351227114, 40.655048281831135 ], [ -73.955825184397298, 40.650529808078822 ], [ -73.9556519617487, 40.64663041014429 ], [ -73.954730247044338, 40.644772578361398 ], [ -73.95404358590126, 40.638877549190198 ], [ -73.953600047193774, 40.638422347449996 ], [ -73.948264995908715, 40.638607190209093 ], [ -73.947773303283824, 40.633998156194416 ], [ -73.945867735272003, 40.634117548159495 ], [ -73.94551095521949, 40.630791482901316 ], [ -73.944155352558241, 40.629508285207962 ], [ -73.947326721606174, 40.629166566706836 ], [ -73.944827709962937, 40.616046209109363 ], [ -73.949119702127703, 40.613053217667755 ], [ -73.950777930201639, 40.611635456791277 ], [ -73.951667768069612, 40.611313185999862 ], [ -73.953598887869589, 40.610949865606109 ], [ -73.962379478247911, 40.609986374023229 ], [ -73.965906868800076, 40.628654481308331 ], [ -73.972581653622655, 40.627917967359245 ], [ -73.976514621001982, 40.6272944899913 ], [ -73.97761642303297, 40.633153642403919 ], [ -73.972557215954396, 40.63371337992691 ], [ -73.97241481651271, 40.632993834268341 ], [ -73.967627362927928, 40.635238621822609 ], [ -73.972222286057303, 40.6510469517657 ], [ -73.971456203085324, 40.651140312462367 ], [ -73.959861031131027, 40.655634789439297 ], [ -73.959696658630605, 40.654839214726195 ], [ -73.956300351227114, 40.655048281831135 ] ] ] } } +, +{ "type": "Feature", "id": 120, "properties": { "communityDistrict": 411, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/411" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.713518281059919, 40.759837730830796 ], [ -73.716854404449265, 40.759525514019671 ], [ -73.718319718187516, 40.759082075675337 ], [ -73.719982969884953, 40.758160821512952 ], [ -73.721110014829279, 40.757111525815716 ], [ -73.7224109479736, 40.754920189248402 ], [ -73.723266734112798, 40.753947599496982 ], [ -73.726414721371526, 40.751915877812721 ], [ -73.727378891401585, 40.751029567399691 ], [ -73.728253810495048, 40.749693728645596 ], [ -73.729145938101581, 40.747273799812717 ], [ -73.730628018362623, 40.745364158239383 ], [ -73.732269180563506, 40.743818962745351 ], [ -73.734369658431717, 40.742351598559608 ], [ -73.738160479203913, 40.740376435816998 ], [ -73.739012103523919, 40.739746479175146 ], [ -73.74151636839602, 40.73686036104047 ], [ -73.742947857899594, 40.735456551528806 ], [ -73.746721402966443, 40.732477150642502 ], [ -73.750482956498644, 40.729221294393867 ], [ -73.752970287172531, 40.727705620131594 ], [ -73.756703291674768, 40.726229432660404 ], [ -73.7578714145791, 40.727106851486425 ], [ -73.762342098391528, 40.729538290701278 ], [ -73.764350715262154, 40.73115119213589 ], [ -73.765643744656387, 40.732533126738993 ], [ -73.76369979170164, 40.732864116847814 ], [ -73.764709290881811, 40.734084854795164 ], [ -73.762495338772496, 40.734734559472997 ], [ -73.762733034679158, 40.7352621626722 ], [ -73.762486092774552, 40.736730981449632 ], [ -73.765568498107683, 40.743258154524618 ], [ -73.766878535967948, 40.744093579206236 ], [ -73.767729913594749, 40.745776225670049 ], [ -73.772414610026615, 40.743884845221935 ], [ -73.780366035437737, 40.742591663146563 ], [ -73.795886816956127, 40.738376374997962 ], [ -73.796402186404435, 40.738282357687652 ], [ -73.796439400484999, 40.738438947644617 ], [ -73.79672497858914, 40.738416642621935 ], [ -73.796292972916092, 40.738552306431508 ], [ -73.797256707929805, 40.740213043295192 ], [ -73.797230850381595, 40.741695506635992 ], [ -73.79543059287569, 40.743264290405541 ], [ -73.794535073550804, 40.744507638214664 ], [ -73.794458691576153, 40.745436953712691 ], [ -73.794815314152785, 40.748422226715448 ], [ -73.794577269899989, 40.753563011339054 ], [ -73.792375179985399, 40.75307044775694 ], [ -73.793439911464574, 40.760764127961266 ], [ -73.792167893840372, 40.770976689467666 ], [ -73.792712593167664, 40.773787527360469 ], [ -73.791635260664592, 40.774238655585854 ], [ -73.775839583323403, 40.778612372112015 ], [ -73.775598853663681, 40.779323365621018 ], [ -73.770609744548594, 40.782079793940667 ], [ -73.768580585494689, 40.779876824912144 ], [ -73.768159154444035, 40.779635958694875 ], [ -73.768200555261402, 40.779444179192289 ], [ -73.767161936875922, 40.779782875660651 ], [ -73.767023923465061, 40.780086234158304 ], [ -73.766889947038393, 40.779779433943396 ], [ -73.766775704400487, 40.779812458699681 ], [ -73.768161730515814, 40.779396821241981 ], [ -73.767091134847348, 40.776844841109174 ], [ -73.766328233242191, 40.775843054332121 ], [ -73.765727969039276, 40.774603328092049 ], [ -73.764176331145222, 40.772829990442659 ], [ -73.761263012598405, 40.770395965074243 ], [ -73.759600780928238, 40.768723256713002 ], [ -73.758935120936954, 40.768334328515841 ], [ -73.758642643580785, 40.767357170035446 ], [ -73.757870305674103, 40.766946427446968 ], [ -73.757390208038743, 40.7671666723584 ], [ -73.756410842897509, 40.766514222767583 ], [ -73.756500720039284, 40.766344505019376 ], [ -73.75602210333291, 40.766464421210159 ], [ -73.755473104397922, 40.76636558041649 ], [ -73.75493674407366, 40.766093252140251 ], [ -73.754100654884411, 40.765349353964517 ], [ -73.753770365306337, 40.765304631484341 ], [ -73.753804413791201, 40.76506822784313 ], [ -73.753409947264316, 40.764692659656511 ], [ -73.752192615365217, 40.763830418515063 ], [ -73.751074322525596, 40.761763671336205 ], [ -73.748612250725614, 40.760927803075973 ], [ -73.747535134089603, 40.759857196185848 ], [ -73.746425463105382, 40.759223542143566 ], [ -73.746289044913738, 40.759059244817507 ], [ -73.74642482955997, 40.758209665279772 ], [ -73.746277005397687, 40.757796784403311 ], [ -73.746131434549511, 40.757676883358215 ], [ -73.745760142955518, 40.757836644816933 ], [ -73.744635990572093, 40.756891175867104 ], [ -73.744657486468725, 40.756558104977302 ], [ -73.744576396428528, 40.756907272386371 ], [ -73.744866184047524, 40.75720430488041 ], [ -73.745759849542097, 40.757913517108626 ], [ -73.746046681746094, 40.757809942869265 ], [ -73.746311967054908, 40.758054814022742 ], [ -73.746062149421917, 40.758761500449225 ], [ -73.74616224371907, 40.759024799276915 ], [ -73.746553780988265, 40.759450174035813 ], [ -73.747494241534966, 40.759976686852134 ], [ -73.748158659046211, 40.760726377280193 ], [ -73.748374564394837, 40.761558789630769 ], [ -73.749362033490613, 40.761844520340276 ], [ -73.749173944623834, 40.761377744827918 ], [ -73.750040421305769, 40.761576082739609 ], [ -73.750570493653058, 40.761915474821542 ], [ -73.751420487896056, 40.762761694366731 ], [ -73.751695235218094, 40.763651827370133 ], [ -73.752510927501035, 40.764527376918657 ], [ -73.753045711561057, 40.764817227436524 ], [ -73.755072108490467, 40.76753310678734 ], [ -73.754859158293186, 40.768404252958412 ], [ -73.754393882693449, 40.768753462748627 ], [ -73.754713916878629, 40.768795143897506 ], [ -73.754705936505744, 40.769741522945267 ], [ -73.75533279459188, 40.770998154653263 ], [ -73.755534986627879, 40.770985526492957 ], [ -73.75534216256267, 40.771022152241187 ], [ -73.755573327154224, 40.771529125924097 ], [ -73.755082677136457, 40.77171322899477 ], [ -73.755115236284269, 40.771834906488358 ], [ -73.755059203860483, 40.771719174693374 ], [ -73.754380747575411, 40.772041271642145 ], [ -73.753570009061363, 40.772694616129293 ], [ -73.753366919996822, 40.773207846758233 ], [ -73.753955739399075, 40.774306209075107 ], [ -73.754241499993839, 40.775266830365211 ], [ -73.755185753282149, 40.776498070828787 ], [ -73.754858006585664, 40.776896399792385 ], [ -73.754981937472166, 40.777043803362758 ], [ -73.754813228934353, 40.777619032305587 ], [ -73.755517816047202, 40.777584144019919 ], [ -73.755517375817973, 40.777704048364164 ], [ -73.754812171246527, 40.77763599592339 ], [ -73.754557911058413, 40.777776590664253 ], [ -73.754484528283257, 40.7779044679815 ], [ -73.754649812513847, 40.777992106293027 ], [ -73.754301835408654, 40.778406111489844 ], [ -73.7541296414919, 40.779384143239007 ], [ -73.753008126158349, 40.780866075189856 ], [ -73.752998392964329, 40.781289489522109 ], [ -73.750805936137837, 40.782893378668064 ], [ -73.744123145681016, 40.778638657554154 ], [ -73.74007973971888, 40.7762087953963 ], [ -73.73937598887052, 40.776013669167277 ], [ -73.739123620037176, 40.775704143072694 ], [ -73.737702836222994, 40.774793585732326 ], [ -73.728707221187449, 40.769461484092567 ], [ -73.723560022866366, 40.766128761165724 ], [ -73.723059241725181, 40.766144406314133 ], [ -73.722484384118246, 40.765527210355806 ], [ -73.721142727509843, 40.764872606365557 ], [ -73.713518281059919, 40.759837730830796 ] ] ] } } +, +{ "type": "Feature", "id": 121, "properties": { "communityDistrict": 107, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/107" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.959646854231522, 40.801156423256458 ], [ -73.958172971038437, 40.800582541457338 ], [ -73.981679436393961, 40.76839013093614 ], [ -73.982043416681321, 40.768408210312678 ], [ -73.98209271243384, 40.768892298929721 ], [ -73.984314913071373, 40.769848183213369 ], [ -73.984763692632328, 40.769226401206481 ], [ -73.993935876811207, 40.773179512586104 ], [ -73.992622663865404, 40.774974056036925 ], [ -73.992267089035394, 40.775116033858545 ], [ -73.992059084937139, 40.775497598192246 ], [ -73.992386042960391, 40.775557179419465 ], [ -73.990927174149675, 40.777566878762961 ], [ -73.990396160036497, 40.777585065679041 ], [ -73.988868618061176, 40.779692922911465 ], [ -73.991551059227518, 40.779574820432188 ], [ -73.991419826520797, 40.779755280287077 ], [ -73.988886144116961, 40.779878898532715 ], [ -73.988919261468425, 40.780226094343668 ], [ -73.988210420831635, 40.781225482542055 ], [ -73.988076449806229, 40.781650935001679 ], [ -73.98546581263146, 40.785360700575531 ], [ -73.986172704965441, 40.786068452258675 ], [ -73.987119013942745, 40.785210317998938 ], [ -73.986128422485876, 40.786239001331118 ], [ -73.985429321269422, 40.785413942184618 ], [ -73.985081137732053, 40.785921935110444 ], [ -73.985765660297517, 40.786196274858625 ], [ -73.985682871922506, 40.786309786213131 ], [ -73.985016964064968, 40.78601423719563 ], [ -73.984655078830215, 40.786534741807941 ], [ -73.985949561556779, 40.786487112961353 ], [ -73.985812373526514, 40.78661686535709 ], [ -73.984619429245299, 40.786586016349915 ], [ -73.971107658523039, 40.805790139676695 ], [ -73.966701068903021, 40.804168476937107 ], [ -73.959646854231522, 40.801156423256458 ] ] ] } } +, +{ "type": "Feature", "id": 122, "properties": { "communityDistrict": 201, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/201" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.901292776271063, 40.820475442111587 ], [ -73.904465514767352, 40.812281959913648 ], [ -73.903417203736481, 40.811506882855625 ], [ -73.902193726873193, 40.804788693486444 ], [ -73.902445390708209, 40.804416954053934 ], [ -73.902927703310894, 40.804197291709094 ], [ -73.902709731025439, 40.804163663467193 ], [ -73.903059666675745, 40.80401743484979 ], [ -73.902973119450195, 40.80393677187098 ], [ -73.903732845816847, 40.803773296117768 ], [ -73.904529540295954, 40.803170235651315 ], [ -73.905521532406965, 40.802019954898519 ], [ -73.90652042213172, 40.801175510519741 ], [ -73.906389768214154, 40.801090791685809 ], [ -73.906585878338817, 40.801107478445942 ], [ -73.907470304367592, 40.800003457914848 ], [ -73.908073972556608, 40.799572819167203 ], [ -73.907682228008952, 40.79938831392527 ], [ -73.908102100342376, 40.799539646862854 ], [ -73.908026332767136, 40.799237872162117 ], [ -73.908421907680065, 40.799442092444927 ], [ -73.908550267423962, 40.799307425389479 ], [ -73.908255795003356, 40.799092868180558 ], [ -73.908303036082913, 40.798959135418059 ], [ -73.910892222653445, 40.79701779503629 ], [ -73.911622858662753, 40.796641078496641 ], [ -73.913722559735774, 40.796789438758658 ], [ -73.919049787638059, 40.798993935686994 ], [ -73.920240681588737, 40.799613687870277 ], [ -73.921327307785148, 40.801284591631394 ], [ -73.92292710065783, 40.802373294642848 ], [ -73.924227068411582, 40.802545011358092 ], [ -73.926657947884891, 40.802409803914657 ], [ -73.927627886588482, 40.802695665481544 ], [ -73.927282719436022, 40.803508264417026 ], [ -73.927645003525768, 40.803988632846064 ], [ -73.928367187945426, 40.804032709664369 ], [ -73.928482992568547, 40.804193029073048 ], [ -73.928726074898293, 40.804103625227249 ], [ -73.93051758839178, 40.806590563566793 ], [ -73.931845644930434, 40.807855845481392 ], [ -73.932527087859782, 40.808823281775332 ], [ -73.932594344671415, 40.810053158827223 ], [ -73.93286397083277, 40.810124437388467 ], [ -73.932874120019648, 40.810414043428949 ], [ -73.932565033020694, 40.81088597518967 ], [ -73.932632292551958, 40.811904622263199 ], [ -73.932365641826237, 40.815032964874703 ], [ -73.932389713250288, 40.819502847336764 ], [ -73.930315050305069, 40.81931688055203 ], [ -73.925184864635582, 40.818012668874921 ], [ -73.922652612397059, 40.820494315281039 ], [ -73.917565994430134, 40.823883672432409 ], [ -73.911816157567358, 40.82203502241245 ], [ -73.909908941380024, 40.822551107614807 ], [ -73.901292776271063, 40.820475442111587 ] ] ] } } +, +{ "type": "Feature", "id": 123, "properties": { "communityDistrict": 209, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/209" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.83979488496, 40.835619207491888 ], [ -73.839614872384587, 40.835610568868297 ], [ -73.839594376454642, 40.835088907192976 ], [ -73.839457837975857, 40.835006105691932 ], [ -73.839619931150352, 40.834800981937406 ], [ -73.839476939168577, 40.834817305076641 ], [ -73.839604564749521, 40.834730151287012 ], [ -73.839412203108751, 40.834600065107395 ], [ -73.839592667550377, 40.834560475645532 ], [ -73.839591084522908, 40.834041688090572 ], [ -73.839920484787982, 40.833320794296881 ], [ -73.841817259121115, 40.831726193654625 ], [ -73.842213346646943, 40.83155050727715 ], [ -73.842758842937798, 40.830818484142796 ], [ -73.843106915999044, 40.829794139319844 ], [ -73.843033946085498, 40.828934984940972 ], [ -73.842533257309427, 40.827527304148425 ], [ -73.84044970382466, 40.823345566497551 ], [ -73.840466034599956, 40.823080023582847 ], [ -73.84001752995961, 40.822190242120335 ], [ -73.839829262416927, 40.821571501496017 ], [ -73.840100692020158, 40.820322761728583 ], [ -73.839998604735769, 40.819934946813973 ], [ -73.840289119450148, 40.819807704051264 ], [ -73.840365285256141, 40.819577750024223 ], [ -73.84198684834044, 40.818774373908134 ], [ -73.842093663118547, 40.818059542951573 ], [ -73.843063790337368, 40.816558645026703 ], [ -73.843169927637206, 40.816051055013368 ], [ -73.8437405300036, 40.81532169954199 ], [ -73.845280192365593, 40.811778116745614 ], [ -73.845765617022266, 40.811582278841961 ], [ -73.846173029381987, 40.810676664431305 ], [ -73.847196845757921, 40.810580487615042 ], [ -73.848214865817411, 40.812462909499146 ], [ -73.849385562141237, 40.813236865345893 ], [ -73.85041066820115, 40.81358402388846 ], [ -73.851144722607017, 40.814396548875912 ], [ -73.85246819393376, 40.814279207419247 ], [ -73.852424036273135, 40.814420084234889 ], [ -73.852911775018583, 40.814500996711516 ], [ -73.85281883014774, 40.814335174743924 ], [ -73.852650133356335, 40.814363146473582 ], [ -73.852612625192691, 40.813962582840212 ], [ -73.85288616298557, 40.813881712529501 ], [ -73.852869369427395, 40.813692824922938 ], [ -73.853368578688219, 40.813593903136272 ], [ -73.854346556511203, 40.813863857914924 ], [ -73.855146953815861, 40.814368994297212 ], [ -73.85538030243687, 40.814288882082693 ], [ -73.854430755965979, 40.813717919069752 ], [ -73.853467740585231, 40.813477711608591 ], [ -73.852557394349276, 40.813735334655156 ], [ -73.851199977251852, 40.813553144376137 ], [ -73.849650104501109, 40.812751881768762 ], [ -73.849145066175723, 40.812298793608875 ], [ -73.849063018500431, 40.811905358232018 ], [ -73.849384203219699, 40.811287074768423 ], [ -73.849173584248518, 40.810924340783991 ], [ -73.849798045881656, 40.810032877885895 ], [ -73.849908923063083, 40.809660122089376 ], [ -73.849760116340775, 40.809645213220442 ], [ -73.84991938701836, 40.809626665926835 ], [ -73.850017101925488, 40.809330656289035 ], [ -73.849846625180774, 40.80925232875299 ], [ -73.850042416129057, 40.809215408487617 ], [ -73.849967328392367, 40.808875512453525 ], [ -73.849728654247841, 40.808875111639665 ], [ -73.849951169380105, 40.80871472017219 ], [ -73.84955076934942, 40.808720867510871 ], [ -73.849953556063809, 40.808693406076351 ], [ -73.84996696802817, 40.808578018843605 ], [ -73.849611664865293, 40.808124185052037 ], [ -73.848760076798399, 40.808337457792156 ], [ -73.848709624793486, 40.808240469916427 ], [ -73.849522182567355, 40.808055277720193 ], [ -73.848416409616519, 40.807368775795304 ], [ -73.848280240182973, 40.806852405047685 ], [ -73.848379536552727, 40.806360186333677 ], [ -73.847536219755952, 40.805926402795144 ], [ -73.847488226419102, 40.805448909149128 ], [ -73.847902986527416, 40.805002179397242 ], [ -73.84864784606215, 40.804699371480325 ], [ -73.848743172128536, 40.804896259686096 ], [ -73.848946040059957, 40.804762168994685 ], [ -73.849333823079363, 40.805051218261745 ], [ -73.84941036337716, 40.804667976275596 ], [ -73.849428526615696, 40.80505982813969 ], [ -73.849821071838477, 40.805094430843432 ], [ -73.849977227091827, 40.805059594981849 ], [ -73.850198391025572, 40.804510024974768 ], [ -73.852049225994875, 40.804599116241 ], [ -73.855388793111914, 40.804464427294199 ], [ -73.856051629336477, 40.804587429683878 ], [ -73.856618134363202, 40.804865571163745 ], [ -73.85639785205899, 40.804946835713338 ], [ -73.855690470982694, 40.804676566078065 ], [ -73.855563584999615, 40.80478499633314 ], [ -73.855604970397252, 40.805062157034875 ], [ -73.856125425632001, 40.80528168175335 ], [ -73.857244919884621, 40.805307238618639 ], [ -73.856675797244193, 40.804995370824194 ], [ -73.856834210245594, 40.80490927021274 ], [ -73.858890375022725, 40.805889491177751 ], [ -73.858826432391083, 40.805993192722482 ], [ -73.858505600391553, 40.805819542792754 ], [ -73.858314877070782, 40.805998591012155 ], [ -73.858611919672356, 40.806697513538531 ], [ -73.858934717264304, 40.80667435866588 ], [ -73.859084758526691, 40.806480218163472 ], [ -73.858877094031868, 40.805988508100747 ], [ -73.859195450244769, 40.806269877829692 ], [ -73.859366023323204, 40.806675683207786 ], [ -73.859401919202014, 40.807529591337229 ], [ -73.859257752760755, 40.807542673007745 ], [ -73.859158681488196, 40.806878974649152 ], [ -73.858665051691915, 40.806832751495591 ], [ -73.858389962288143, 40.808258809148768 ], [ -73.858774526546384, 40.809233974632939 ], [ -73.858951412879222, 40.810271417587316 ], [ -73.859076625664173, 40.809975558102082 ], [ -73.860126952355841, 40.809605499891248 ], [ -73.859540598624804, 40.809019702446314 ], [ -73.859329192961795, 40.808996540576238 ], [ -73.859389820729248, 40.808163768341295 ], [ -73.859822304348342, 40.809113247471963 ], [ -73.860659658139397, 40.809631903060605 ], [ -73.864403333796247, 40.810275985935014 ], [ -73.867656462844678, 40.810583761937146 ], [ -73.869769558500366, 40.813423699757152 ], [ -73.870778048859364, 40.814486895487775 ], [ -73.8717160645012, 40.814922335490174 ], [ -73.876519960997811, 40.816131063424834 ], [ -73.876634599637072, 40.815711508099156 ], [ -73.878062832621268, 40.816182632444068 ], [ -73.882447795528904, 40.819268322511505 ], [ -73.884294881451382, 40.822718204764747 ], [ -73.884646026497066, 40.823823537474574 ], [ -73.884387053537296, 40.826817283532826 ], [ -73.883784141345714, 40.828274292462368 ], [ -73.885088387643762, 40.828156821266326 ], [ -73.885783262303434, 40.82789690839796 ], [ -73.885423176302581, 40.830116849951096 ], [ -73.885097701531322, 40.831152824784617 ], [ -73.884246295471797, 40.832592072106017 ], [ -73.881935889571224, 40.835462124985533 ], [ -73.880720815142809, 40.837521264519715 ], [ -73.877890467801038, 40.836689568962683 ], [ -73.873773088060872, 40.836358751438269 ], [ -73.872772046585297, 40.839751282336003 ], [ -73.870214507449845, 40.8396179421215 ], [ -73.870094731821638, 40.839245704964 ], [ -73.867822581813499, 40.840166499016853 ], [ -73.86347232379066, 40.841305932707215 ], [ -73.853335249420454, 40.84247015515475 ], [ -73.851684597478283, 40.834201052350295 ], [ -73.83979488496, 40.835619207491888 ] ] ] } } +, +{ "type": "Feature", "id": 124, "properties": { "communityDistrict": 407, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/407" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.770609744548594, 40.782079793940667 ], [ -73.775598853663681, 40.779323365621018 ], [ -73.775839583323403, 40.778612372112015 ], [ -73.791635260664592, 40.774238655585854 ], [ -73.792712593167664, 40.773787527360469 ], [ -73.792167893840372, 40.770976689467666 ], [ -73.793439911464574, 40.760764127961266 ], [ -73.792375179985399, 40.75307044775694 ], [ -73.794577269899989, 40.753563011339054 ], [ -73.794815314152785, 40.748422226715448 ], [ -73.794458691576153, 40.745436953712691 ], [ -73.794535073550804, 40.744507638214664 ], [ -73.79543059287569, 40.743264290405541 ], [ -73.797230850381595, 40.741695506635992 ], [ -73.797256707929805, 40.740213043295192 ], [ -73.796292972916092, 40.738552306431508 ], [ -73.79672497858914, 40.738416642621935 ], [ -73.796439400484999, 40.738438947644617 ], [ -73.796402186404435, 40.738282357687652 ], [ -73.798220589933877, 40.738174630696257 ], [ -73.814073820424952, 40.738780902078872 ], [ -73.815935942273825, 40.739127860871264 ], [ -73.825373876673737, 40.742232240499355 ], [ -73.824811784878335, 40.739630959900524 ], [ -73.824974399919341, 40.739440426756168 ], [ -73.825590303232616, 40.739447592295349 ], [ -73.825853683416867, 40.739123780146976 ], [ -73.826867464523616, 40.73862891215893 ], [ -73.827943602841955, 40.738489982440825 ], [ -73.82809152577299, 40.737083175272865 ], [ -73.829467519970137, 40.737024482753384 ], [ -73.83053551231437, 40.737520194763206 ], [ -73.831430254382042, 40.739135733128357 ], [ -73.831131227778442, 40.742338000406534 ], [ -73.835861318721328, 40.743227984538507 ], [ -73.83595071525383, 40.743730569104294 ], [ -73.835675539474607, 40.744850518062684 ], [ -73.834690426199643, 40.746902697785934 ], [ -73.83513889924977, 40.747160372591594 ], [ -73.834733311313599, 40.748287335526548 ], [ -73.834787361300471, 40.749458289450487 ], [ -73.835080493039897, 40.750153225254117 ], [ -73.837989212642583, 40.754515042982305 ], [ -73.840581316336156, 40.753618746290755 ], [ -73.840572749452335, 40.753779619146016 ], [ -73.840847999142554, 40.753913221699101 ], [ -73.840692373355125, 40.754121978192046 ], [ -73.840662690255201, 40.755208812717377 ], [ -73.839746278511527, 40.755921121043762 ], [ -73.839510493379223, 40.756416007711444 ], [ -73.839060075881889, 40.756665549076821 ], [ -73.839123298415657, 40.756828062269051 ], [ -73.843243813565991, 40.755336803767008 ], [ -73.845852358104509, 40.760455397694045 ], [ -73.843716577998109, 40.761739001439047 ], [ -73.842395698824348, 40.762214199018139 ], [ -73.841224044254048, 40.762300299826371 ], [ -73.839253657660919, 40.761908062372001 ], [ -73.839981248329821, 40.763438746487431 ], [ -73.840022202075062, 40.764232465541603 ], [ -73.839834259423796, 40.765070408822069 ], [ -73.840625628830807, 40.764023419892112 ], [ -73.841965988319444, 40.763597940528236 ], [ -73.842613122634532, 40.764682989692886 ], [ -73.840526355456106, 40.765387989198423 ], [ -73.839578268535462, 40.765252322973012 ], [ -73.839131891973182, 40.765991105567409 ], [ -73.839526787139377, 40.766139549726503 ], [ -73.839697725490865, 40.766392677045367 ], [ -73.839733868068635, 40.766734414653186 ], [ -73.839498058619171, 40.767017016985626 ], [ -73.839939221774685, 40.767064277147341 ], [ -73.839901909134525, 40.766824158414025 ], [ -73.840311703152864, 40.766294797898368 ], [ -73.844488958842049, 40.765459602583931 ], [ -73.845281635415873, 40.765666119482518 ], [ -73.846200240379503, 40.766196343166378 ], [ -73.847230679761552, 40.766313158095699 ], [ -73.847805751044291, 40.766772948171663 ], [ -73.848566972051458, 40.768090907199912 ], [ -73.848301382658505, 40.768430440607276 ], [ -73.848835223817204, 40.768752302094036 ], [ -73.84901287145172, 40.76921530435213 ], [ -73.848601014253589, 40.769817824882757 ], [ -73.84872999189102, 40.769989541779182 ], [ -73.848927243433721, 40.769914788361568 ], [ -73.848817810956149, 40.769738054635809 ], [ -73.84950427178488, 40.76951022388225 ], [ -73.849774078593185, 40.769936012943802 ], [ -73.849075512612544, 40.77019356377096 ], [ -73.848992744326466, 40.770028680072748 ], [ -73.848726718904402, 40.770106189089653 ], [ -73.848586643045735, 40.770504249905002 ], [ -73.848671529349573, 40.770761572903353 ], [ -73.849494027118652, 40.771328616815438 ], [ -73.849942418829784, 40.77192719325987 ], [ -73.850303975165758, 40.771938199590359 ], [ -73.850338088185254, 40.771743668538754 ], [ -73.851301084405819, 40.77180636079845 ], [ -73.851270376207097, 40.771985534743564 ], [ -73.850361465963132, 40.771830745648693 ], [ -73.850334105693776, 40.772017605255563 ], [ -73.849951625834152, 40.771958298877898 ], [ -73.849869024119187, 40.772183062008224 ], [ -73.85004065546363, 40.772224600554921 ], [ -73.849839583776784, 40.772231002867429 ], [ -73.84957161022011, 40.772561103831613 ], [ -73.84897619933308, 40.773561667957807 ], [ -73.849216780975567, 40.77463958213896 ], [ -73.84893873474762, 40.775560358480696 ], [ -73.849116366639393, 40.775787518870267 ], [ -73.848968025446965, 40.778022212691553 ], [ -73.849367616269276, 40.778168680728108 ], [ -73.849535865963404, 40.77842588555707 ], [ -73.8497474142047, 40.778414054006049 ], [ -73.849536646905577, 40.778457620289842 ], [ -73.849469048461657, 40.778663783211698 ], [ -73.849933532961757, 40.778769123380989 ], [ -73.849800881783096, 40.778793284828531 ], [ -73.849781143163483, 40.779111930042752 ], [ -73.849571554537008, 40.779192836707068 ], [ -73.849639689991591, 40.77948327517759 ], [ -73.851487555466591, 40.778992977613228 ], [ -73.851013396194176, 40.779121956674338 ], [ -73.851079460828572, 40.779297757683999 ], [ -73.850140173819483, 40.779390986926551 ], [ -73.849793043476282, 40.77949768469491 ], [ -73.849817200660084, 40.779630348054148 ], [ -73.852352678815222, 40.779480671828182 ], [ -73.852356619362538, 40.779169330522301 ], [ -73.85238832844523, 40.779528902387767 ], [ -73.849821023258698, 40.779651339304756 ], [ -73.849843629104512, 40.779775474920079 ], [ -73.84956325207466, 40.779879082167099 ], [ -73.849740181069777, 40.780040450022895 ], [ -73.850314739577399, 40.780041536004077 ], [ -73.850456559655868, 40.779888279912882 ], [ -73.851690280854342, 40.779867508478162 ], [ -73.851670991622385, 40.780035228878113 ], [ -73.849493812744313, 40.780065828115049 ], [ -73.849889320817937, 40.781089134798421 ], [ -73.850936463965397, 40.781119575155998 ], [ -73.849887280637518, 40.781121511316854 ], [ -73.849836600803982, 40.781599624917121 ], [ -73.849187094184657, 40.781641811549498 ], [ -73.849547742659965, 40.781841078342701 ], [ -73.849246760463643, 40.782256365322503 ], [ -73.850285208823976, 40.782459450176489 ], [ -73.853149930691771, 40.782323936276157 ], [ -73.853223310161695, 40.782060533865852 ], [ -73.853679740950611, 40.781985742044249 ], [ -73.85528242786593, 40.781975384349899 ], [ -73.855450628349217, 40.783143079138334 ], [ -73.856452066617564, 40.783322990816075 ], [ -73.85643993663156, 40.783157516967002 ], [ -73.856676908933323, 40.783150088162067 ], [ -73.856649510906081, 40.782892319276414 ], [ -73.856841290146718, 40.783371363485166 ], [ -73.857340523168361, 40.783371270586187 ], [ -73.857612233528357, 40.783611870504132 ], [ -73.858083181033209, 40.783724078841665 ], [ -73.858125027092314, 40.784188151814746 ], [ -73.857831054503677, 40.784442088339411 ], [ -73.857976856086538, 40.784678164568909 ], [ -73.858526985935967, 40.78522893917453 ], [ -73.858991560509054, 40.785204169142432 ], [ -73.859095000083656, 40.785438748851469 ], [ -73.859036289738384, 40.785092722779517 ], [ -73.859110497986705, 40.78544258469838 ], [ -73.859529092635768, 40.785530559529683 ], [ -73.858990489374762, 40.785491598431115 ], [ -73.859124612237181, 40.785850159663262 ], [ -73.858588405085584, 40.786148140153834 ], [ -73.858682833500779, 40.786531166475243 ], [ -73.85812817092382, 40.787051561057432 ], [ -73.856811337654833, 40.786672613697149 ], [ -73.856200203811994, 40.787150099959781 ], [ -73.856172757866574, 40.787493219875678 ], [ -73.855958689791663, 40.78767517877457 ], [ -73.853451844613389, 40.787826112298845 ], [ -73.85284230067748, 40.788211371739067 ], [ -73.852889902611878, 40.788346670054672 ], [ -73.854383647885811, 40.788320128763019 ], [ -73.854801947993295, 40.788619154726753 ], [ -73.854471941373546, 40.790258975320413 ], [ -73.852658306930493, 40.791106420610326 ], [ -73.85285879649112, 40.791533785514233 ], [ -73.853778549768336, 40.792421274007893 ], [ -73.853630801660074, 40.793098182710629 ], [ -73.853733516600769, 40.793935374086779 ], [ -73.852766271986155, 40.794389246824153 ], [ -73.852630982562445, 40.79494485424469 ], [ -73.852426512229769, 40.794609758821004 ], [ -73.851590771574635, 40.794086530575285 ], [ -73.849061608350866, 40.793362610298466 ], [ -73.848848947231119, 40.793501685658299 ], [ -73.849078147957272, 40.794145384480792 ], [ -73.848783702199185, 40.794542102226124 ], [ -73.848876545633445, 40.795134041691234 ], [ -73.848559887389811, 40.795495060218315 ], [ -73.846245284724603, 40.796161950667937 ], [ -73.845591671224113, 40.796011819025679 ], [ -73.845616063245217, 40.795845718962205 ], [ -73.84528519601372, 40.795443390379127 ], [ -73.844599150444338, 40.79491154987516 ], [ -73.84354668938991, 40.794913944010482 ], [ -73.843337608761246, 40.7950213869603 ], [ -73.843306323869186, 40.795500933488874 ], [ -73.843043639192814, 40.795214739011726 ], [ -73.842848653223911, 40.795213401671695 ], [ -73.843284972603371, 40.796174392685927 ], [ -73.842808752412253, 40.79541822241309 ], [ -73.842259593683465, 40.795584968937327 ], [ -73.842866752593693, 40.796922229071917 ], [ -73.842167473411379, 40.795612940163593 ], [ -73.841587212407788, 40.79540106821694 ], [ -73.841362872719557, 40.795619950695084 ], [ -73.841494093422881, 40.795981889206381 ], [ -73.841299436121076, 40.796219669330895 ], [ -73.840599822946189, 40.796806803210544 ], [ -73.840139303644605, 40.796879187836097 ], [ -73.840415179758367, 40.797678437258718 ], [ -73.839209483241063, 40.797844314353952 ], [ -73.838429158291646, 40.79837567115333 ], [ -73.837899675038472, 40.798508970181459 ], [ -73.839190047271885, 40.797777266447611 ], [ -73.840258608091361, 40.797588858432142 ], [ -73.839970996561817, 40.79690564189314 ], [ -73.839036768125226, 40.797052476075621 ], [ -73.838400830779619, 40.796755258306845 ], [ -73.837064988802695, 40.793851098426181 ], [ -73.836531873247097, 40.791743432405688 ], [ -73.836944768689918, 40.791471487535276 ], [ -73.837423294473723, 40.791392837918551 ], [ -73.837645659937252, 40.791035553077037 ], [ -73.837503588835887, 40.790461660725455 ], [ -73.836818149570433, 40.790469906359753 ], [ -73.837481914032395, 40.790434497921744 ], [ -73.837175445350439, 40.789427313316381 ], [ -73.837280397869819, 40.789009701079053 ], [ -73.837134329895235, 40.789564033014251 ], [ -73.836378095721429, 40.789460178689588 ], [ -73.835680220690307, 40.789574917568324 ], [ -73.835331502420871, 40.789212742716849 ], [ -73.834135665874086, 40.789066136552336 ], [ -73.833795481099003, 40.788517169043637 ], [ -73.832929372375446, 40.788518114204102 ], [ -73.832161006323432, 40.78875008316119 ], [ -73.8317543370473, 40.789228593368215 ], [ -73.831435487383104, 40.789184434996315 ], [ -73.831951184637305, 40.789414772132154 ], [ -73.83214871934797, 40.790033244852225 ], [ -73.831660809278659, 40.791102591159721 ], [ -73.830962697072948, 40.79157601668993 ], [ -73.829740376982727, 40.791630426993052 ], [ -73.828366576486047, 40.792395419557337 ], [ -73.829278509993003, 40.792890607834508 ], [ -73.829228575339457, 40.793019340410822 ], [ -73.828291552995609, 40.792514245960611 ], [ -73.827986333992598, 40.792770064606167 ], [ -73.827808956475792, 40.793197349396237 ], [ -73.828013723559152, 40.794932408769959 ], [ -73.828412798224718, 40.795613368288926 ], [ -73.82878010953813, 40.795917923947407 ], [ -73.828809629429557, 40.79618376840105 ], [ -73.829131269485259, 40.796293620543011 ], [ -73.829459915343648, 40.79682336759145 ], [ -73.829058642578872, 40.796562114135249 ], [ -73.827417688314583, 40.796789017823762 ], [ -73.826970915106529, 40.797128277689581 ], [ -73.827173656011894, 40.797622201316223 ], [ -73.826738561666872, 40.797796245452957 ], [ -73.826148569285564, 40.797415985003013 ], [ -73.82514036020433, 40.797341446769124 ], [ -73.824035932507186, 40.798079662716781 ], [ -73.824027844848217, 40.798361183208733 ], [ -73.823859483847031, 40.798154135104639 ], [ -73.823433235169389, 40.798406514408839 ], [ -73.823679836938609, 40.798769946499498 ], [ -73.823408723760195, 40.79841781429694 ], [ -73.823107696683678, 40.798613103772752 ], [ -73.823305524314463, 40.79896286611951 ], [ -73.823002630366972, 40.798642289724974 ], [ -73.822599356172731, 40.798901842475743 ], [ -73.822777278828298, 40.799320221378984 ], [ -73.822519165220186, 40.798987735690247 ], [ -73.822412270047423, 40.7990889137536 ], [ -73.822621745567645, 40.799407808072161 ], [ -73.822387546704931, 40.79911289157257 ], [ -73.821617892453119, 40.799991987693772 ], [ -73.820980719504206, 40.800478109129173 ], [ -73.820432460327794, 40.800627864422097 ], [ -73.820528107884215, 40.801006023868062 ], [ -73.820404549272368, 40.800639500292434 ], [ -73.81982823872157, 40.800994874895359 ], [ -73.817404298767144, 40.799299019784989 ], [ -73.816516397931963, 40.799024946483875 ], [ -73.816026039327426, 40.798532968334015 ], [ -73.813679075670606, 40.797545787909854 ], [ -73.813699637252583, 40.797079415665095 ], [ -73.813420504158501, 40.797693020410584 ], [ -73.81349350368555, 40.797058380377678 ], [ -73.813159963843049, 40.797197536205587 ], [ -73.813052794699345, 40.797455018850862 ], [ -73.812933696741212, 40.797426008096757 ], [ -73.813042876218546, 40.797178205752161 ], [ -73.812883864524736, 40.797166565226973 ], [ -73.812547989085431, 40.798047064458387 ], [ -73.812241845382346, 40.798125827928871 ], [ -73.811778383213124, 40.798025053453358 ], [ -73.811609382684438, 40.79737240944452 ], [ -73.806363314525754, 40.796393605437665 ], [ -73.80623135012371, 40.796817477582806 ], [ -73.806330767146676, 40.796392740435969 ], [ -73.805876262845771, 40.796472983430377 ], [ -73.805395733411117, 40.796170821514451 ], [ -73.805349801604976, 40.796317851318854 ], [ -73.805339444875742, 40.796163928288756 ], [ -73.804671737687841, 40.796167469163997 ], [ -73.804634377532864, 40.796438088956208 ], [ -73.804648739768467, 40.796159195983073 ], [ -73.804348259354057, 40.796214090992727 ], [ -73.8042735368103, 40.796641261329512 ], [ -73.804311386999345, 40.796212876160027 ], [ -73.804165356428669, 40.796229008776791 ], [ -73.804122185003791, 40.796528819706573 ], [ -73.804136447669748, 40.796234231177763 ], [ -73.803958230643701, 40.796557359017989 ], [ -73.803974189250823, 40.796278255919646 ], [ -73.803817167946974, 40.796630193236602 ], [ -73.803822941960092, 40.796335012840956 ], [ -73.803643015091595, 40.796406085507577 ], [ -73.803612508110973, 40.796684393153988 ], [ -73.803612885465625, 40.796420856820511 ], [ -73.8033499636296, 40.796713026429984 ], [ -73.80299970742962, 40.796708836095306 ], [ -73.802949251602215, 40.79640492955587 ], [ -73.80226038840371, 40.796262208350242 ], [ -73.801779477645411, 40.796316141853715 ], [ -73.80174543088819, 40.796512405600375 ], [ -73.80175550251785, 40.796321295918013 ], [ -73.801011262305948, 40.796522374589586 ], [ -73.80086307346707, 40.79633253590832 ], [ -73.80062184740089, 40.796426762360454 ], [ -73.800256629358515, 40.796260149266509 ], [ -73.800083502033871, 40.79662756747463 ], [ -73.80018235388124, 40.796266913696812 ], [ -73.799680679004069, 40.796174502706407 ], [ -73.799605482925116, 40.796332220605656 ], [ -73.798111080452145, 40.795605888565298 ], [ -73.797898327533488, 40.795559220917838 ], [ -73.797669940750026, 40.795993822382876 ], [ -73.797870149147144, 40.795552012141329 ], [ -73.79673567726374, 40.795208942919189 ], [ -73.796434387376678, 40.795736429856461 ], [ -73.796705875622109, 40.795197625951801 ], [ -73.794610981483515, 40.794929735526082 ], [ -73.794428447952086, 40.794806810348391 ], [ -73.794582981846446, 40.794763111619666 ], [ -73.794380224845824, 40.794177354392041 ], [ -73.794609071902912, 40.793913303477716 ], [ -73.794950771024517, 40.791774200640717 ], [ -73.793751265502337, 40.789061933340136 ], [ -73.793380335049932, 40.789578392620584 ], [ -73.79323941781152, 40.789530249703802 ], [ -73.793620072760206, 40.788996637749811 ], [ -73.792806695804572, 40.788783046246159 ], [ -73.792352911541528, 40.788906841809926 ], [ -73.790282023532058, 40.790316963399782 ], [ -73.785681013014056, 40.790340671659976 ], [ -73.783838425143543, 40.790640954671538 ], [ -73.782530806635236, 40.791276789431919 ], [ -73.784341530595952, 40.791749353794799 ], [ -73.782273301833897, 40.791373715717981 ], [ -73.781747088292278, 40.791133406645741 ], [ -73.781078459702229, 40.791677321779048 ], [ -73.780775031390178, 40.792990705340529 ], [ -73.780839490143194, 40.793277440172815 ], [ -73.781588815450164, 40.7934635410125 ], [ -73.7816386419167, 40.793309707766824 ], [ -73.781660115553905, 40.793482020313022 ], [ -73.780724350698364, 40.793333618824171 ], [ -73.780791820726506, 40.794035919864378 ], [ -73.781005396672953, 40.794384818627137 ], [ -73.781903854871686, 40.794901203895428 ], [ -73.783109769639708, 40.794914460505801 ], [ -73.783317966842645, 40.794758356474148 ], [ -73.783258762530366, 40.794923914800499 ], [ -73.782003261033807, 40.79497546250353 ], [ -73.781541500327478, 40.795659737319994 ], [ -73.779803051181958, 40.796205528937996 ], [ -73.779362468048291, 40.796685392534812 ], [ -73.778714788287317, 40.796597360197261 ], [ -73.778066629376013, 40.796738727304287 ], [ -73.776928178268562, 40.796469251526702 ], [ -73.776126281443581, 40.796061479534735 ], [ -73.774314374908954, 40.794425261346198 ], [ -73.774013534992974, 40.794030001360298 ], [ -73.773632481227907, 40.792749756213794 ], [ -73.772326482331891, 40.7914808246436 ], [ -73.772132928264625, 40.790178774334414 ], [ -73.770631245377743, 40.788462905032013 ], [ -73.770823150214255, 40.787982667059907 ], [ -73.771737563506662, 40.787463608911828 ], [ -73.774268361250904, 40.786756658656024 ], [ -73.774389768349096, 40.786857145296807 ], [ -73.774230114868587, 40.787065041675916 ], [ -73.775019226121813, 40.787394474382836 ], [ -73.776337288848453, 40.788487225755055 ], [ -73.774806953694153, 40.786970687278853 ], [ -73.774264666944347, 40.786651229145228 ], [ -73.774076382977881, 40.785917284019185 ], [ -73.771607319794867, 40.782996265185446 ], [ -73.770609744548594, 40.782079793940667 ] ] ] } } +, +{ "type": "Feature", "id": 125, "properties": { "communityDistrict": 408, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/408" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.756703291674768, 40.726229432660404 ], [ -73.75409142333362, 40.724691905785285 ], [ -73.759500941502282, 40.721027372276801 ], [ -73.764469517897751, 40.718890392377823 ], [ -73.767332280868814, 40.717289796810576 ], [ -73.773571351684041, 40.71512009536869 ], [ -73.786160059249454, 40.712060071342577 ], [ -73.787846784799811, 40.711810833167561 ], [ -73.788434811837149, 40.711984687608989 ], [ -73.788472460251171, 40.712218530483391 ], [ -73.788688403626438, 40.712330032624834 ], [ -73.789012095879585, 40.712072709100696 ], [ -73.795616689618569, 40.70975307917503 ], [ -73.814439318654323, 40.70440215056346 ], [ -73.817097387564516, 40.704029801587659 ], [ -73.818285663457132, 40.706302850482075 ], [ -73.820452364596164, 40.709774548575126 ], [ -73.82363860711493, 40.712666644483171 ], [ -73.824717494276598, 40.714506849725737 ], [ -73.825890698681974, 40.715938526458785 ], [ -73.826325626110787, 40.717399930167879 ], [ -73.826142223373338, 40.719379527615928 ], [ -73.826212780826879, 40.720199243902556 ], [ -73.82662157445283, 40.721237069343253 ], [ -73.827690590644806, 40.72289294931705 ], [ -73.829051032179208, 40.724325708097204 ], [ -73.831717649745357, 40.726221681523349 ], [ -73.832861832220743, 40.727893443800951 ], [ -73.836127786102153, 40.734241312003135 ], [ -73.836356249845934, 40.735008592150187 ], [ -73.836744575851313, 40.738602570580063 ], [ -73.837679583556039, 40.741977252524684 ], [ -73.837683428075167, 40.743300339711446 ], [ -73.835915649418624, 40.743430893895997 ], [ -73.835861318721328, 40.743227984538507 ], [ -73.833825727327209, 40.742762421119849 ], [ -73.831131227778442, 40.742338000406534 ], [ -73.831430254382042, 40.739135733128357 ], [ -73.83053551231437, 40.737520194763206 ], [ -73.829467519970137, 40.737024482753384 ], [ -73.82809152577299, 40.737083175272865 ], [ -73.827943602841955, 40.738489982440825 ], [ -73.826867464523616, 40.73862891215893 ], [ -73.825853683416867, 40.739123780146976 ], [ -73.825590303232616, 40.739447592295349 ], [ -73.824974399919341, 40.739440426756168 ], [ -73.824811784878335, 40.739630959900524 ], [ -73.825373876673737, 40.742232240499355 ], [ -73.815935942273825, 40.739127860871264 ], [ -73.814073820424952, 40.738780902078872 ], [ -73.797292605542609, 40.738185428334184 ], [ -73.795337729222794, 40.738493672772748 ], [ -73.780366035437737, 40.742591663146563 ], [ -73.772414610026615, 40.743884845221935 ], [ -73.767729913594749, 40.745776225670049 ], [ -73.766878535967948, 40.744093579206236 ], [ -73.765568498107683, 40.743258154524618 ], [ -73.762486092774552, 40.736730981449632 ], [ -73.762733034679158, 40.7352621626722 ], [ -73.762495338772496, 40.734734559472997 ], [ -73.764709290881811, 40.734084854795164 ], [ -73.76369979170164, 40.732864116847814 ], [ -73.765643744656387, 40.732533126738993 ], [ -73.764350715262154, 40.73115119213589 ], [ -73.762342098391528, 40.729538290701278 ], [ -73.7578714145791, 40.727106851486425 ], [ -73.756703291674768, 40.726229432660404 ] ] ] } } +, +{ "type": "Feature", "id": 126, "properties": { "communityDistrict": 481, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/481" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.835915649418624, 40.743430893895997 ], [ -73.837683428075167, 40.743300339711446 ], [ -73.837721719638623, 40.742366367753114 ], [ -73.836744575851313, 40.738602570580063 ], [ -73.836356249845934, 40.735008592150187 ], [ -73.836127786102153, 40.734241312003135 ], [ -73.832245221035535, 40.72682572097694 ], [ -73.831421586874313, 40.725964269605086 ], [ -73.828455836293145, 40.723786489157625 ], [ -73.82662157445283, 40.721237069343253 ], [ -73.826282550528305, 40.720467881605032 ], [ -73.826142397293751, 40.719653355516115 ], [ -73.826299440441844, 40.717111789626529 ], [ -73.826132714730804, 40.716437144630419 ], [ -73.825597163292713, 40.715514336939208 ], [ -73.82606003226816, 40.715399348602219 ], [ -73.82695834371026, 40.715935281893671 ], [ -73.830429023525909, 40.716962770431863 ], [ -73.831853055232642, 40.717912143304176 ], [ -73.832783460599714, 40.718802429439855 ], [ -73.83412823313644, 40.720230532396293 ], [ -73.836557629259431, 40.723373963168477 ], [ -73.839200938937779, 40.728266863029113 ], [ -73.84055003848917, 40.729844729907995 ], [ -73.84284582578421, 40.732067642742273 ], [ -73.843715762791177, 40.733225729946035 ], [ -73.844587070444092, 40.734879704222763 ], [ -73.845564478511534, 40.738002282360156 ], [ -73.846646527991808, 40.73861704635388 ], [ -73.847213615878815, 40.738643986683861 ], [ -73.847778442173137, 40.739344835748881 ], [ -73.847579807180352, 40.739721354438394 ], [ -73.847801646205241, 40.740049676962151 ], [ -73.850115566364181, 40.740723562798379 ], [ -73.854425752537722, 40.748851726381922 ], [ -73.850864397100324, 40.749995641874605 ], [ -73.852617253522425, 40.753405065527922 ], [ -73.85382000610656, 40.757185697572261 ], [ -73.852165079894235, 40.757459673296168 ], [ -73.852191168197322, 40.757566795357626 ], [ -73.852924766599486, 40.758711007572863 ], [ -73.853834400514302, 40.759426977806484 ], [ -73.854782737595954, 40.759848300268381 ], [ -73.855302660297895, 40.760649584249649 ], [ -73.854663663928022, 40.760171169561232 ], [ -73.853724039348421, 40.760246389137372 ], [ -73.852779285654833, 40.759972989616628 ], [ -73.851585529011857, 40.759355420656952 ], [ -73.850424378224886, 40.75950641103757 ], [ -73.849709083506298, 40.759838837957389 ], [ -73.849301108143379, 40.760242875349959 ], [ -73.849874844961491, 40.761103812948427 ], [ -73.851974129628715, 40.760249407381743 ], [ -73.852072001778481, 40.760392884672086 ], [ -73.84981162475141, 40.761270974008134 ], [ -73.849166624062661, 40.760296583785248 ], [ -73.848686556591531, 40.760138494105476 ], [ -73.843593612502019, 40.763370542787463 ], [ -73.843687876641269, 40.763612726083679 ], [ -73.843436287804707, 40.763432566193593 ], [ -73.843069612035563, 40.763592569152813 ], [ -73.843042408108317, 40.764321319920235 ], [ -73.842728193964845, 40.764628548931697 ], [ -73.84244022546055, 40.764504272993577 ], [ -73.841965988319444, 40.763597940528236 ], [ -73.840625628830807, 40.764023419892112 ], [ -73.839834259423796, 40.765070408822069 ], [ -73.840022202075062, 40.764232465541603 ], [ -73.839981248329821, 40.763438746487431 ], [ -73.839253657660919, 40.761908062372001 ], [ -73.841224044254048, 40.762300299826371 ], [ -73.842395698824348, 40.762214199018139 ], [ -73.843716577998109, 40.761739001439047 ], [ -73.845852358104509, 40.760455397694045 ], [ -73.843243813565991, 40.755336803767008 ], [ -73.839123298415657, 40.756828062269051 ], [ -73.839060075881889, 40.756665549076821 ], [ -73.839510493379223, 40.756416007711444 ], [ -73.839746278511527, 40.755921121043762 ], [ -73.840662690255201, 40.755208812717377 ], [ -73.840692373355125, 40.754121978192046 ], [ -73.840847999142554, 40.753913221699101 ], [ -73.840572749452335, 40.753779619146016 ], [ -73.840581316336156, 40.753618746290755 ], [ -73.837989212642583, 40.754515042982305 ], [ -73.835080493039897, 40.750153225254117 ], [ -73.834787361300471, 40.749458289450487 ], [ -73.834707080240747, 40.748631931767974 ], [ -73.834848409588332, 40.747792914629045 ], [ -73.83513889924977, 40.747160372591594 ], [ -73.834690426199643, 40.746902697785934 ], [ -73.835675539474607, 40.744850518062684 ], [ -73.835915649418624, 40.743430893895997 ] ] ] } } +, +{ "type": "Feature", "id": 127, "properties": { "communityDistrict": 309, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/309" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.928722045946031, 40.664495569685258 ], [ -73.931602186067863, 40.663230444400178 ], [ -73.930903549322721, 40.656610355984142 ], [ -73.959696658630605, 40.654839214726195 ], [ -73.959861031131027, 40.655634789439297 ], [ -73.961880864397983, 40.65488119205223 ], [ -73.963069062239654, 40.662207859940246 ], [ -73.962428941590517, 40.663125207981075 ], [ -73.960955953876265, 40.663285054833999 ], [ -73.962575314326202, 40.671644198394539 ], [ -73.955269636547627, 40.67012490485407 ], [ -73.92834967165949, 40.668647194188125 ], [ -73.928722045946031, 40.664495569685258 ] ] ] } } +, +{ "type": "Feature", "id": 128, "properties": { "communityDistrict": 355, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/355" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.962575314326202, 40.671644198394539 ], [ -73.960955953876265, 40.663285054833999 ], [ -73.962428941590517, 40.663125207981075 ], [ -73.963069062239654, 40.662207859940246 ], [ -73.961880864397983, 40.65488119205223 ], [ -73.971456203085324, 40.651140312462367 ], [ -73.972222286057303, 40.6510469517657 ], [ -73.974119534582783, 40.65769375242148 ], [ -73.974482340347052, 40.65833944977868 ], [ -73.979578700956395, 40.660853242153919 ], [ -73.980001138906843, 40.660757564209916 ], [ -73.980206450103537, 40.661105712448816 ], [ -73.979653534103278, 40.661243233730893 ], [ -73.97085440701143, 40.67186436527696 ], [ -73.970412894844742, 40.672593723023965 ], [ -73.97074859323223, 40.672638249975272 ], [ -73.971189312508415, 40.673135553750669 ], [ -73.971478291649149, 40.674103237677492 ], [ -73.97130682016514, 40.674889431905704 ], [ -73.970840412707744, 40.675386969787304 ], [ -73.969942563507274, 40.675468900880887 ], [ -73.96907731857624, 40.674839670814826 ], [ -73.968718221691745, 40.673924233914761 ], [ -73.968942063512657, 40.67288749127016 ], [ -73.968172958547754, 40.673029414357451 ], [ -73.966602780071014, 40.672797589726898 ], [ -73.962575314326202, 40.671644198394539 ] ] ] } } +, +{ "type": "Feature", "id": 129, "properties": { "communityDistrict": 164, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/164" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.949231860729938, 40.7968730719466 ], [ -73.973014871761208, 40.764278879445193 ], [ -73.981512762813324, 40.767890167529167 ], [ -73.981443327542408, 40.768164458683223 ], [ -73.981679436393961, 40.76839013093614 ], [ -73.958172971038437, 40.800582541457338 ], [ -73.949231860729938, 40.7968730719466 ] ] ] } } +, +{ "type": "Feature", "id": 130, "properties": { "communityDistrict": 301, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/301" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.924059097370503, 40.714111559644898 ], [ -73.922232946648109, 40.712854424853191 ], [ -73.921686635675101, 40.711894317397928 ], [ -73.921546016956825, 40.711043283534813 ], [ -73.920745196554748, 40.710529686490297 ], [ -73.926089300269695, 40.705679701161777 ], [ -73.933950929725427, 40.702674592697853 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.957019931894408, 40.698973914349807 ], [ -73.962839637163441, 40.698038668339827 ], [ -73.962179780891731, 40.700220710101576 ], [ -73.967209620426217, 40.704255709153294 ], [ -73.968389336807874, 40.706829186746916 ], [ -73.969292963484961, 40.70709333109555 ], [ -73.969848648235356, 40.708003041687661 ], [ -73.969940881256278, 40.709310231405937 ], [ -73.969556795897248, 40.71029607081725 ], [ -73.970009532225248, 40.710453937627591 ], [ -73.969731236297619, 40.710512829442145 ], [ -73.969633999364191, 40.71066539565313 ], [ -73.9697502667848, 40.710832877727157 ], [ -73.969348948808317, 40.710960614786423 ], [ -73.969762803571356, 40.711172617759978 ], [ -73.969258121947675, 40.711162421246428 ], [ -73.969425981825339, 40.71147272512718 ], [ -73.969115353610121, 40.711511898978102 ], [ -73.968809342546137, 40.712256055474661 ], [ -73.96894455591719, 40.712426547720199 ], [ -73.968795809314557, 40.712737038853582 ], [ -73.968469733470428, 40.71282470934613 ], [ -73.968499274458566, 40.71310284084992 ], [ -73.968842290502749, 40.713223925021602 ], [ -73.967244043489757, 40.716585349916322 ], [ -73.967113542899298, 40.716897539103933 ], [ -73.967267983560447, 40.716985740955586 ], [ -73.96659690266641, 40.717967980887437 ], [ -73.967307414744155, 40.71831306668156 ], [ -73.967182436972962, 40.718483056301764 ], [ -73.96706867689133, 40.718439036293866 ], [ -73.967151011065539, 40.71831612593224 ], [ -73.966531175651781, 40.718032127098624 ], [ -73.9658789353267, 40.718755077686396 ], [ -73.96662993360907, 40.719132427860877 ], [ -73.966543446305494, 40.719222942469457 ], [ -73.965858471751758, 40.718773228346457 ], [ -73.965525773331521, 40.718900892712249 ], [ -73.965153859760392, 40.719269683047351 ], [ -73.96554693084714, 40.719659198690835 ], [ -73.965374310617179, 40.720093633066867 ], [ -73.965137135622882, 40.720343594754155 ], [ -73.964463861803665, 40.720064662999889 ], [ -73.964356061313552, 40.72016300359865 ], [ -73.964682836412777, 40.72047045735993 ], [ -73.964350905740957, 40.720404032371697 ], [ -73.964087691478667, 40.720755529522236 ], [ -73.96504914549368, 40.721357344251757 ], [ -73.964894220979659, 40.721475120882218 ], [ -73.96399793658405, 40.72093843807253 ], [ -73.963538553484597, 40.721573378514123 ], [ -73.962965663369587, 40.722034477122676 ], [ -73.962072719438567, 40.723880300905492 ], [ -73.962471951129032, 40.724174989273486 ], [ -73.962007447990146, 40.723991901607768 ], [ -73.961894267121849, 40.724106702101054 ], [ -73.961659843013464, 40.724860454463034 ], [ -73.962114615668355, 40.72514806339889 ], [ -73.961902396431299, 40.725320500811073 ], [ -73.961536793587229, 40.725108918349491 ], [ -73.961163663684175, 40.725264605830894 ], [ -73.960432302406105, 40.725114108660506 ], [ -73.958330782269087, 40.72441170076614 ], [ -73.958039167416644, 40.724427440878614 ], [ -73.957941834894953, 40.724649202699865 ], [ -73.957950962792992, 40.725036439168612 ], [ -73.958351771449216, 40.725198057301952 ], [ -73.95842611909984, 40.725400535832364 ], [ -73.960124971993039, 40.725319636637117 ], [ -73.960285449442097, 40.725948122412944 ], [ -73.96161518835936, 40.725865563074024 ], [ -73.96161716963762, 40.72666142199099 ], [ -73.960996408416563, 40.728769125583263 ], [ -73.961431876117715, 40.730965171647625 ], [ -73.961716145120263, 40.731569917443444 ], [ -73.961909477178594, 40.731651374500011 ], [ -73.962263404232957, 40.732915551623478 ], [ -73.963677260131689, 40.732920073981035 ], [ -73.963661225696498, 40.732798506484301 ], [ -73.964030991366371, 40.73275793875959 ], [ -73.964088219002377, 40.732919099545029 ], [ -73.962304080110698, 40.733114091410627 ], [ -73.962355059552436, 40.733713260621464 ], [ -73.962090344499103, 40.7345079978736 ], [ -73.960467480762475, 40.736399644850124 ], [ -73.959191076228649, 40.737539116286747 ], [ -73.956918200096553, 40.738888914787999 ], [ -73.954663215000195, 40.73912795313435 ], [ -73.952923557241817, 40.738934942395183 ], [ -73.95046458346593, 40.73830958079531 ], [ -73.946523528547857, 40.736926853958146 ], [ -73.94645392267347, 40.736809590461142 ], [ -73.947199833010473, 40.735355178113807 ], [ -73.947065329153872, 40.734401992819222 ], [ -73.946598067073523, 40.734442224347262 ], [ -73.946736923406988, 40.735294943719829 ], [ -73.946929027374708, 40.735313140683722 ], [ -73.946626637866245, 40.735865585167396 ], [ -73.946443101402551, 40.735813184455999 ], [ -73.94617195815438, 40.73620288877391 ], [ -73.945873106289611, 40.736101831258438 ], [ -73.945570485232892, 40.736612303910718 ], [ -73.944999089555594, 40.736436693712911 ], [ -73.945254922795627, 40.735892789003742 ], [ -73.94518507247389, 40.735479152678096 ], [ -73.94503299031922, 40.735428615683325 ], [ -73.944520087357361, 40.736283654181612 ], [ -73.943213476529465, 40.735790530016118 ], [ -73.942394436084996, 40.735425749947829 ], [ -73.941545668324494, 40.734734335934768 ], [ -73.940997465999175, 40.733790485555772 ], [ -73.941156158094145, 40.733748909609844 ], [ -73.941038433408494, 40.733488260203302 ], [ -73.940568689302509, 40.733058494257641 ], [ -73.940684916674059, 40.733017077124842 ], [ -73.940366589529503, 40.732212586914791 ], [ -73.939813225593824, 40.731152688911699 ], [ -73.938103349606649, 40.729728519521316 ], [ -73.936931247998686, 40.729108091265545 ], [ -73.934929264579367, 40.728543915753342 ], [ -73.932004204538131, 40.728145082893441 ], [ -73.929580206908796, 40.72761282070865 ], [ -73.928494185401618, 40.726614603307858 ], [ -73.927871724050249, 40.725854051197643 ], [ -73.927796501041854, 40.724925668211021 ], [ -73.925614705166225, 40.720061662212423 ], [ -73.924817989436974, 40.720265137475288 ], [ -73.924538550518534, 40.719342580204902 ], [ -73.924702278071138, 40.718688304100596 ], [ -73.924931813129405, 40.718405828748971 ], [ -73.928379301015013, 40.717578367290066 ], [ -73.928879651800145, 40.71772031862352 ], [ -73.929705399813798, 40.717049279389535 ], [ -73.929319998321347, 40.716112008833008 ], [ -73.929473569214608, 40.715721452621125 ], [ -73.931792671630646, 40.715182975090769 ], [ -73.93222529811969, 40.714935797460804 ], [ -73.932136869872764, 40.71467904647514 ], [ -73.93175357116219, 40.714741675505287 ], [ -73.931240670594903, 40.713724810884685 ], [ -73.931645273916658, 40.713342793758102 ], [ -73.932646214588075, 40.713039272297976 ], [ -73.932032629805093, 40.711590223074253 ], [ -73.933384846153018, 40.71123372774565 ], [ -73.933283493203476, 40.710978706452757 ], [ -73.93190101920861, 40.711338471428178 ], [ -73.930932275477375, 40.709165311254111 ], [ -73.930501000831981, 40.708681225039548 ], [ -73.930250388490833, 40.708927912919926 ], [ -73.93154613680818, 40.71185535175065 ], [ -73.930778947370527, 40.71216042795546 ], [ -73.931610327349432, 40.712038022177772 ], [ -73.931842494934315, 40.712627237990588 ], [ -73.9304229437912, 40.713172558671431 ], [ -73.931052318356663, 40.714610223922932 ], [ -73.930851901340304, 40.714902985592772 ], [ -73.928438817485414, 40.715530949575331 ], [ -73.92890242854061, 40.716572812317885 ], [ -73.928768050934465, 40.716807330616838 ], [ -73.928211350045686, 40.71711323979315 ], [ -73.924492665378452, 40.717909675837682 ], [ -73.923587862339772, 40.717271580636805 ], [ -73.923055000143336, 40.716342664793345 ], [ -73.924313299615733, 40.71584705657672 ], [ -73.924885535736507, 40.715267187652948 ], [ -73.92433589757124, 40.714122593466371 ], [ -73.924059097370503, 40.714111559644898 ] ] ] } } +, +{ "type": "Feature", "id": 131, "properties": { "communityDistrict": 304, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/304" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896466251289269, 40.682336422475885 ], [ -73.896581586979721, 40.681574718432479 ], [ -73.896749659511244, 40.681492026062003 ], [ -73.896959138460176, 40.680699581824157 ], [ -73.897383813046474, 40.680168812622249 ], [ -73.897862999396963, 40.679875011118256 ], [ -73.898899282875462, 40.679560934398964 ], [ -73.900245377055157, 40.679422791011412 ], [ -73.90262262346468, 40.68066450291613 ], [ -73.904046398088894, 40.679220598019157 ], [ -73.941930788822305, 40.700725234695796 ], [ -73.933950929725427, 40.702674592697853 ], [ -73.926089300269695, 40.705679701161777 ], [ -73.921891846986938, 40.709396096710805 ], [ -73.91180710003394, 40.703434952026086 ], [ -73.912904041219576, 40.702361891296647 ], [ -73.910678826713834, 40.701045969063564 ], [ -73.911808200384499, 40.699938002621316 ], [ -73.904260184116879, 40.695700371443174 ], [ -73.905795970753104, 40.694127155011522 ], [ -73.901232906600811, 40.691442278638164 ], [ -73.901804671539708, 40.690766298769027 ], [ -73.900424650470654, 40.688183898876233 ], [ -73.90116154994368, 40.68787793535499 ], [ -73.896466251289269, 40.682336422475885 ] ] ] } } +, +{ "type": "Feature", "id": 132, "properties": { "communityDistrict": 480, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/480" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.891450788577373, 40.776397251863614 ], [ -73.891120443394783, 40.777124699735985 ], [ -73.890562505953582, 40.777403920964275 ], [ -73.890465373951272, 40.777703219287069 ], [ -73.890173695746853, 40.777850812778432 ], [ -73.889471053997596, 40.775535550967213 ], [ -73.889789007560651, 40.774236861169818 ], [ -73.8901917158678, 40.773646876225598 ], [ -73.889851699596761, 40.773753297363925 ], [ -73.889454869037365, 40.773532951127159 ], [ -73.885807622205476, 40.774022224474699 ], [ -73.885626507399152, 40.774437639289459 ], [ -73.885632310353756, 40.774097074788578 ], [ -73.885784736976674, 40.774024712164497 ], [ -73.883916279638086, 40.774132606591536 ], [ -73.884551505982643, 40.7743606223328 ], [ -73.884837423910511, 40.774952980745631 ], [ -73.884773619734403, 40.775332280587151 ], [ -73.884287377121282, 40.775472056165981 ], [ -73.885055226584527, 40.778405312744127 ], [ -73.885250270527052, 40.778612901743095 ], [ -73.885052917409524, 40.778775435672046 ], [ -73.885084107162726, 40.779352571616101 ], [ -73.884881137310472, 40.779987196741253 ], [ -73.883852032195705, 40.780264319754494 ], [ -73.882904911865566, 40.780348697239738 ], [ -73.882744497173078, 40.780223423067 ], [ -73.881390759194431, 40.780601608407331 ], [ -73.879734668430231, 40.780654818049832 ], [ -73.879586468348052, 40.780698109854903 ], [ -73.879606924328698, 40.780850313065237 ], [ -73.879358061023254, 40.780656680128018 ], [ -73.879204838516287, 40.780767389334819 ], [ -73.878705625188744, 40.780585909950055 ], [ -73.879051157592997, 40.781730532358885 ], [ -73.87930868295156, 40.781853658332288 ], [ -73.878858374194763, 40.782398178680481 ], [ -73.879701636722544, 40.782882818072267 ], [ -73.878831467817449, 40.782430714494346 ], [ -73.878339232980636, 40.783025920749417 ], [ -73.875157548935576, 40.781509448648102 ], [ -73.874845273314833, 40.781684924075265 ], [ -73.871248562425151, 40.786038151254978 ], [ -73.869780811926418, 40.785337933325813 ], [ -73.868099122578883, 40.787458661818384 ], [ -73.867884074707646, 40.787361036694563 ], [ -73.868130320000176, 40.787232777844125 ], [ -73.86987007434341, 40.785085907068158 ], [ -73.869437517232143, 40.78363839981445 ], [ -73.868607160114422, 40.783800140944386 ], [ -73.868494792590866, 40.783662778245507 ], [ -73.869423447954205, 40.783591314917714 ], [ -73.870480298328459, 40.78230611231443 ], [ -73.871462923581831, 40.782126400740765 ], [ -73.872557327398482, 40.780821121543305 ], [ -73.864710664970914, 40.776733186253558 ], [ -73.855051062718189, 40.772195389989093 ], [ -73.85508635910341, 40.771831388277363 ], [ -73.856458073493727, 40.770320861198734 ], [ -73.857380913283251, 40.770570807156396 ], [ -73.857529746091615, 40.77038630696542 ], [ -73.858205110502098, 40.770323456477165 ], [ -73.856212676101833, 40.769195797757774 ], [ -73.856245657460647, 40.768885714701554 ], [ -73.857047902621204, 40.769139556451385 ], [ -73.857678002661373, 40.768276265894023 ], [ -73.858052619465298, 40.768090656371264 ], [ -73.858773765530614, 40.767349995600988 ], [ -73.859375104297783, 40.767075328942681 ], [ -73.860855359444798, 40.766932118591775 ], [ -73.861102771522781, 40.76727194252976 ], [ -73.861313861661117, 40.766940631743722 ], [ -73.862265651377228, 40.766803167772721 ], [ -73.862602214031156, 40.766893979839814 ], [ -73.863402148656107, 40.766455512262858 ], [ -73.866068759550757, 40.76879618165259 ], [ -73.869437197639769, 40.77092448203004 ], [ -73.871433573419822, 40.771576467221315 ], [ -73.873279414553082, 40.771767401350935 ], [ -73.876016564526168, 40.771551044049495 ], [ -73.877814163199744, 40.771070456837741 ], [ -73.883565936288562, 40.768180444659357 ], [ -73.887706618200212, 40.766838598051493 ], [ -73.888221093892724, 40.768592289569682 ], [ -73.888725513387399, 40.768916239120159 ], [ -73.889423743511657, 40.7730459285143 ], [ -73.893242367511419, 40.77394301864571 ], [ -73.896564775519536, 40.776247024325471 ], [ -73.89423247497794, 40.778153613229705 ], [ -73.892860400757385, 40.777159074348354 ], [ -73.892253657035397, 40.777204522526318 ], [ -73.891450788577373, 40.776397251863614 ] ] ] } } +, +{ "type": "Feature", "id": 133, "properties": { "communityDistrict": 413, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/413" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.74694320572226, 40.637529202175521 ], [ -73.746789789886549, 40.637876681499385 ], [ -73.744597963429428, 40.639521173264775 ], [ -73.743990632320248, 40.641247069543333 ], [ -73.747372810445341, 40.644620178206722 ], [ -73.748555411130468, 40.645540914719547 ], [ -73.766695938389375, 40.655802847501583 ], [ -73.767390970865605, 40.655838168699717 ], [ -73.768327401635787, 40.655600115136018 ], [ -73.769743641745009, 40.655948254796364 ], [ -73.775253079707582, 40.659320044127135 ], [ -73.776413927202583, 40.659870722897544 ], [ -73.778799852846348, 40.660562153298919 ], [ -73.783939817926694, 40.6627828314193 ], [ -73.785025138063148, 40.663421072397398 ], [ -73.795822963931485, 40.664953255151815 ], [ -73.802032076901142, 40.665248024829793 ], [ -73.801682665533647, 40.66632235257088 ], [ -73.793059808035736, 40.666193204080379 ], [ -73.78948089661391, 40.666367651621606 ], [ -73.780316672390697, 40.667176372328825 ], [ -73.77445107675409, 40.667471577021139 ], [ -73.770174819819616, 40.667315464264462 ], [ -73.757956436648485, 40.665955403396751 ], [ -73.756995333616061, 40.667741268061768 ], [ -73.756437342919526, 40.669666378742065 ], [ -73.756362391936634, 40.672429237108844 ], [ -73.755817710871824, 40.675752742227324 ], [ -73.755234578055294, 40.677288409747391 ], [ -73.752258286195811, 40.681491410970018 ], [ -73.750089911311093, 40.685923446358679 ], [ -73.748569930944782, 40.687803738207059 ], [ -73.744846105650581, 40.693139056115278 ], [ -73.751212469699198, 40.70730658007804 ], [ -73.753708345570089, 40.713324636235697 ], [ -73.759441429410103, 40.721063443753103 ], [ -73.75409142333362, 40.724691905785285 ], [ -73.756703291674768, 40.726229432660404 ], [ -73.752970287172531, 40.727705620131594 ], [ -73.750482956498644, 40.729221294393867 ], [ -73.746721402966443, 40.732477150642502 ], [ -73.742947857899594, 40.735456551528806 ], [ -73.74151636839602, 40.73686036104047 ], [ -73.739012103523919, 40.739746479175146 ], [ -73.738160479203913, 40.740376435816998 ], [ -73.73375484853679, 40.742747628312401 ], [ -73.731064618808389, 40.744888375884287 ], [ -73.729066709742796, 40.747390958743573 ], [ -73.728253810495048, 40.749693728645596 ], [ -73.727713561863254, 40.750626894611599 ], [ -73.726414721371526, 40.751915877812721 ], [ -73.723266734112798, 40.753947599496982 ], [ -73.7224109479736, 40.754920189248402 ], [ -73.721458702613546, 40.75665808054616 ], [ -73.720315952915698, 40.757897258117524 ], [ -73.718970503650667, 40.758783237036504 ], [ -73.717672370657056, 40.759311211520334 ], [ -73.716125282334986, 40.759660714307273 ], [ -73.713518281059919, 40.759837730830796 ], [ -73.701633458262947, 40.752493329188589 ], [ -73.700020205032914, 40.739236541731927 ], [ -73.701470730381175, 40.73751156096408 ], [ -73.707662172399296, 40.72783093450775 ], [ -73.710499953620726, 40.727227087413205 ], [ -73.715879719946443, 40.726541905659133 ], [ -73.718287067787642, 40.726041110767838 ], [ -73.725671969594401, 40.72403765899314 ], [ -73.729144354071764, 40.72276307052519 ], [ -73.730326289020383, 40.722157296783266 ], [ -73.729176295154446, 40.719167214561701 ], [ -73.727359618426561, 40.712388941114781 ], [ -73.726894874152777, 40.709978573617782 ], [ -73.727046964868734, 40.709498752808933 ], [ -73.72678346833888, 40.701987123948363 ], [ -73.726544350585797, 40.698982640166044 ], [ -73.726202596767351, 40.688984340809085 ], [ -73.725797879423141, 40.684353849825037 ], [ -73.725906600606777, 40.682656604624043 ], [ -73.725630051199005, 40.679587950781354 ], [ -73.726198061957462, 40.677380889729726 ], [ -73.727556163566533, 40.67416158768895 ], [ -73.727994456800815, 40.669426693583226 ], [ -73.728263851373683, 40.668072875630394 ], [ -73.728272722549718, 40.666429592083581 ], [ -73.72787486759978, 40.664695132718997 ], [ -73.727813923274411, 40.663223969476455 ], [ -73.728330718759594, 40.663043943731125 ], [ -73.727931243454947, 40.661748835103268 ], [ -73.726444386084552, 40.659161614919604 ], [ -73.725926876752027, 40.657731319351264 ], [ -73.725552842045872, 40.655039958596099 ], [ -73.725055690535726, 40.653507893640302 ], [ -73.725099345820951, 40.652345748311753 ], [ -73.725226081070161, 40.652001000147443 ], [ -73.730286529721809, 40.650368522674384 ], [ -73.735135014063204, 40.649732040465288 ], [ -73.739044821314337, 40.648201180344401 ], [ -73.741437060423451, 40.646889178321423 ], [ -73.741661413177269, 40.642198061679821 ], [ -73.742050849527686, 40.641474204525665 ], [ -73.741422793149624, 40.640503390753288 ], [ -73.742273871599423, 40.640123381449982 ], [ -73.741259000675782, 40.638897499434982 ], [ -73.739471216267901, 40.635706431829369 ], [ -73.739959575705754, 40.635143809373297 ], [ -73.74001376732646, 40.635345586724839 ], [ -73.740773490474055, 40.635163200064767 ], [ -73.740420473543182, 40.635144298440466 ], [ -73.74164858697317, 40.63505389381686 ], [ -73.741678863369742, 40.63495617450787 ], [ -73.74144240592274, 40.634964020678723 ], [ -73.741708827298211, 40.634926322434787 ], [ -73.742466426812285, 40.635119228253572 ], [ -73.742551526621654, 40.635291501586053 ], [ -73.742391239526356, 40.635630300126799 ], [ -73.742585398435921, 40.635453356661131 ], [ -73.742436380204964, 40.635712755107448 ], [ -73.742313404080349, 40.635687984457867 ], [ -73.740964877523396, 40.637304775031545 ], [ -73.741303724911035, 40.637898812918422 ], [ -73.741890403056061, 40.638122213540228 ], [ -73.742729662373904, 40.638270155980194 ], [ -73.743971284962342, 40.637880012614836 ], [ -73.744038154506214, 40.637986076622539 ], [ -73.743522263041612, 40.638889486376229 ], [ -73.743734215706056, 40.639022117665419 ], [ -73.744795580825311, 40.637075029074644 ], [ -73.744712755776732, 40.637307046895664 ], [ -73.745194969008281, 40.637191712310511 ], [ -73.746292190006656, 40.63643726798243 ], [ -73.746790746413723, 40.636778135539537 ], [ -73.746453943678944, 40.63725982088264 ], [ -73.745271386429266, 40.637915901245329 ], [ -73.745162199737081, 40.638112187973036 ], [ -73.745327703335931, 40.638372211969788 ], [ -73.745673160042543, 40.63812465742793 ], [ -73.745510583177264, 40.637943881034793 ], [ -73.746439509020078, 40.63742955057031 ], [ -73.746995183730206, 40.63689083416341 ], [ -73.74699985204262, 40.63712702776175 ], [ -73.747154358577063, 40.637126363606498 ], [ -73.746993912571256, 40.63715064468574 ], [ -73.74694320572226, 40.637529202175521 ] ] ] } } +, +{ "type": "Feature", "id": 134, "properties": { "communityDistrict": 112, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/112" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.934452393973729, 40.835980960149861 ], [ -73.934798863439653, 40.836110116261764 ], [ -73.934962741107384, 40.835759934247271 ], [ -73.938385089004612, 40.83311350252125 ], [ -73.940170897886517, 40.830384391128689 ], [ -73.949415704906926, 40.834358589832483 ], [ -73.950155209966098, 40.83439675981581 ], [ -73.949546007293733, 40.836604371501778 ], [ -73.949282850620207, 40.836740786585409 ], [ -73.949540037170678, 40.83687963152353 ], [ -73.948560545205652, 40.839564884659111 ], [ -73.947383221543006, 40.841940825299289 ], [ -73.946124163555936, 40.843892496556798 ], [ -73.946171749838769, 40.845392891580602 ], [ -73.946517302005773, 40.845995184403719 ], [ -73.946350780499344, 40.846240331289252 ], [ -73.946824453426444, 40.84713426206978 ], [ -73.946635500788531, 40.84891242506 ], [ -73.947027824947213, 40.850041831812419 ], [ -73.946926264710498, 40.850528055668654 ], [ -73.946515901499836, 40.850968338577609 ], [ -73.946275014966645, 40.850840977675539 ], [ -73.946200783220817, 40.851031488105349 ], [ -73.946081905010672, 40.85098071488104 ], [ -73.946117441051513, 40.851172583019675 ], [ -73.945652836264131, 40.851211098341174 ], [ -73.944667212442909, 40.851921226509624 ], [ -73.944325184824763, 40.8518225764386 ], [ -73.944196607813481, 40.852015341815829 ], [ -73.943479786118971, 40.852281881942261 ], [ -73.941869964266729, 40.853867739442784 ], [ -73.940293475633112, 40.856641770657937 ], [ -73.93911094164396, 40.858040911225714 ], [ -73.938309574342924, 40.859380523608095 ], [ -73.937529441725616, 40.860096641282013 ], [ -73.936475616648963, 40.861926591170722 ], [ -73.934016644266976, 40.865035548291594 ], [ -73.933950017115777, 40.865346746209838 ], [ -73.932663327214627, 40.867237066436971 ], [ -73.932901718255664, 40.867293043899295 ], [ -73.932839582050619, 40.86741527691138 ], [ -73.932597948528041, 40.867311349670395 ], [ -73.932425382153397, 40.867568248423645 ], [ -73.932267698924591, 40.868562318972756 ], [ -73.932492143648886, 40.868677518657485 ], [ -73.932650835128072, 40.868465033481861 ], [ -73.932523545600375, 40.868722078358907 ], [ -73.932250318212539, 40.868639508367878 ], [ -73.932313854482302, 40.868923720343695 ], [ -73.932567951698772, 40.869044391473821 ], [ -73.932189038922829, 40.869366976389443 ], [ -73.932468830699079, 40.869476099386972 ], [ -73.932353708072753, 40.869755255296575 ], [ -73.932359344660028, 40.869507363219356 ], [ -73.932133366030499, 40.86941597544098 ], [ -73.932059082863461, 40.869582816886684 ], [ -73.932206005318662, 40.870096445104423 ], [ -73.931913771368087, 40.871129493722719 ], [ -73.931062541995999, 40.872666806528684 ], [ -73.929013458760522, 40.875738659587938 ], [ -73.928146236035687, 40.87652252894393 ], [ -73.927530821274885, 40.876710534812979 ], [ -73.926481856522244, 40.877618203017448 ], [ -73.926296809925859, 40.877565027875669 ], [ -73.926440135797648, 40.877218403959226 ], [ -73.926192922463073, 40.877064419302521 ], [ -73.925552922482126, 40.877102588983313 ], [ -73.925082157013364, 40.87739761061556 ], [ -73.924570369647185, 40.877428912603712 ], [ -73.923294767339243, 40.877264435459765 ], [ -73.922397681693155, 40.876780223141182 ], [ -73.922444682266473, 40.875691835764471 ], [ -73.922668040028441, 40.874981991368919 ], [ -73.92257636844127, 40.874295182683888 ], [ -73.922083201628439, 40.873583808194944 ], [ -73.921117415779733, 40.873033455186217 ], [ -73.920292305727145, 40.873098416622568 ], [ -73.91979301672356, 40.873606512660395 ], [ -73.920626991656874, 40.874234811128744 ], [ -73.920802556303556, 40.874194058866657 ], [ -73.920700106651935, 40.87439193360985 ], [ -73.921181864427652, 40.875137840850179 ], [ -73.92090325581637, 40.875466166382992 ], [ -73.918861874083859, 40.874642585787029 ], [ -73.919192887780966, 40.874195168795509 ], [ -73.919294677868109, 40.873649890353896 ], [ -73.918928512967099, 40.873316510216178 ], [ -73.918499957284055, 40.873191715604293 ], [ -73.918397228083364, 40.87323181163088 ], [ -73.918597298663158, 40.873495497325088 ], [ -73.917929029179888, 40.873978893205013 ], [ -73.917577298847291, 40.874548678547193 ], [ -73.917871449175053, 40.873904995288648 ], [ -73.91634348733777, 40.874523849890132 ], [ -73.91522402146056, 40.874486621868122 ], [ -73.9126088423167, 40.873767443623592 ], [ -73.91142596184433, 40.87318176665238 ], [ -73.910648772778103, 40.872296248460621 ], [ -73.910433635042423, 40.87138081638372 ], [ -73.910723558799631, 40.870948835639432 ], [ -73.910924911580295, 40.869436591353605 ], [ -73.911474488991118, 40.869454757638316 ], [ -73.911030579502579, 40.869155402995972 ], [ -73.911128908817645, 40.868920043663984 ], [ -73.911328177588246, 40.868802439535763 ], [ -73.91184774646814, 40.867672520472468 ], [ -73.912731739857207, 40.866605212711804 ], [ -73.91254775130281, 40.86651494300429 ], [ -73.913918631332407, 40.864745584403586 ], [ -73.914923879278689, 40.864580378919115 ], [ -73.914540376260206, 40.864412351623358 ], [ -73.914411133927459, 40.864173626370388 ], [ -73.91508583854332, 40.864448143417277 ], [ -73.915899116458604, 40.864308037582482 ], [ -73.915871480657202, 40.864129090533012 ], [ -73.91519574800094, 40.863945224735858 ], [ -73.915175564297087, 40.863680433750915 ], [ -73.915476824442536, 40.863346107296742 ], [ -73.915386730511415, 40.863084384200683 ], [ -73.91729467741682, 40.861679418230622 ], [ -73.918434392517852, 40.860221533395261 ], [ -73.91839311151449, 40.860080469421412 ], [ -73.918777965339643, 40.859546750310891 ], [ -73.919502137271209, 40.858791133790938 ], [ -73.920478682731627, 40.859104092098825 ], [ -73.921270912963138, 40.860188042816688 ], [ -73.921590147820325, 40.860072800026423 ], [ -73.921866338499626, 40.859181339145074 ], [ -73.921255801367948, 40.858846553527009 ], [ -73.920938690169507, 40.858120674461475 ], [ -73.920624274948864, 40.85801681477232 ], [ -73.920484385475262, 40.858232548062446 ], [ -73.920364772497692, 40.858164937099126 ], [ -73.92047278308776, 40.85819530433254 ], [ -73.920564586812631, 40.857882978878614 ], [ -73.920773151525381, 40.857941185857911 ], [ -73.920706108160928, 40.857701014101913 ], [ -73.921014321597127, 40.857838803180528 ], [ -73.920755321305109, 40.857557159145706 ], [ -73.920982176603744, 40.857612216980648 ], [ -73.92090011378167, 40.857494287338653 ], [ -73.921048915136822, 40.857381521111556 ], [ -73.921121196903286, 40.85753677083315 ], [ -73.921519672686344, 40.857348906380025 ], [ -73.921558572219425, 40.85708883062955 ], [ -73.922376956761624, 40.856583569624377 ], [ -73.922344593741286, 40.855682335814841 ], [ -73.921698419708889, 40.856672301855397 ], [ -73.921518940590886, 40.856601170623179 ], [ -73.924440651399479, 40.852840472704372 ], [ -73.929718504776432, 40.845231777258597 ], [ -73.930894652014246, 40.842538340141893 ], [ -73.934452393973729, 40.835980960149861 ] ] ] } } +, +{ "type": "Feature", "id": 135, "properties": { "communityDistrict": 208, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/208" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.896633337970684, 40.911417374845669 ], [ -73.896357859714925, 40.90320013158378 ], [ -73.897157171654328, 40.899371826677211 ], [ -73.896431707170763, 40.893655279926804 ], [ -73.896757900749378, 40.892645443571681 ], [ -73.899782521419539, 40.886529123507984 ], [ -73.887586126088365, 40.884255619662973 ], [ -73.887051425361179, 40.88434957584596 ], [ -73.887231940098275, 40.883054978428362 ], [ -73.886942468093807, 40.882682767258473 ], [ -73.887165051991502, 40.882576510892207 ], [ -73.887069627837747, 40.882476896066123 ], [ -73.888364875387865, 40.882267541861218 ], [ -73.889975375540757, 40.880233131422152 ], [ -73.891406962661179, 40.878969446245762 ], [ -73.897789622704778, 40.870856643398511 ], [ -73.899338511723883, 40.869228028104736 ], [ -73.899965756483837, 40.868017301510321 ], [ -73.902358047802338, 40.868696120952848 ], [ -73.903749758939654, 40.869595627140072 ], [ -73.904488604897097, 40.870578548547648 ], [ -73.904469013868876, 40.872415520678075 ], [ -73.905714252962994, 40.873138322101234 ], [ -73.90855579588731, 40.873775444425469 ], [ -73.909689484029713, 40.874602273754043 ], [ -73.910654392496312, 40.873975943060529 ], [ -73.911671462567114, 40.874487862056689 ], [ -73.915720981214321, 40.875709670949277 ], [ -73.91726028337294, 40.875809003580549 ], [ -73.917756693297093, 40.875663627860192 ], [ -73.91978381299063, 40.876421436106376 ], [ -73.92206723585673, 40.878572414802477 ], [ -73.922737882875268, 40.878905445427876 ], [ -73.923591725531338, 40.87895215933267 ], [ -73.923636952230083, 40.878815355931643 ], [ -73.923629739504122, 40.878963943243278 ], [ -73.924517958510364, 40.879058659561892 ], [ -73.924903274730823, 40.878888367853143 ], [ -73.923805256054962, 40.880324901636044 ], [ -73.9203928019909, 40.887648500226859 ], [ -73.917822182579613, 40.894422287078868 ], [ -73.917908700410848, 40.894676766399556 ], [ -73.917634882074864, 40.894941905352169 ], [ -73.916941610784022, 40.896644551702359 ], [ -73.91518455871676, 40.901584282862132 ], [ -73.91543172958427, 40.901812683688327 ], [ -73.915014495860447, 40.903081299106404 ], [ -73.914590392433141, 40.904119002196353 ], [ -73.91418416752515, 40.904139333800913 ], [ -73.912865402025631, 40.907535122202901 ], [ -73.913108639273631, 40.907844484157884 ], [ -73.912649321728779, 40.908070811955348 ], [ -73.91149190703743, 40.912233769311996 ], [ -73.91143213027847, 40.912823826219665 ], [ -73.911654723359604, 40.913417851896185 ], [ -73.911134128523685, 40.914330605901398 ], [ -73.910668554013142, 40.914799428656579 ], [ -73.91033256848911, 40.915532777005183 ], [ -73.902456640049394, 40.912958933425948 ], [ -73.896633337970684, 40.911417374845669 ] ] ] } } +, +{ "type": "Feature", "id": 136, "properties": { "communityDistrict": 109, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/109" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.940170897886517, 40.830384391128689 ], [ -73.93962569930143, 40.830155837387963 ], [ -73.939805957117386, 40.830004512317636 ], [ -73.939728629682307, 40.82930184433183 ], [ -73.94384275614668, 40.823647801542087 ], [ -73.942923668464658, 40.823260586747516 ], [ -73.945154570217539, 40.820876264825252 ], [ -73.946078287404234, 40.821263215559654 ], [ -73.949199601462425, 40.814720854586277 ], [ -73.950350192752254, 40.813159389290092 ], [ -73.952101251492223, 40.811442853501241 ], [ -73.953575778103641, 40.80947669765964 ], [ -73.954966571724654, 40.810064554703729 ], [ -73.958181673189713, 40.805596791128636 ], [ -73.958248783298146, 40.803106486471115 ], [ -73.959646854231522, 40.801156423256458 ], [ -73.966701068903021, 40.804168476937107 ], [ -73.971107658523039, 40.805790139676695 ], [ -73.968557478373427, 40.809072894323748 ], [ -73.96740185312369, 40.811022155397097 ], [ -73.964140828882989, 40.815771657453901 ], [ -73.959998922293451, 40.820382944802269 ], [ -73.959814626745853, 40.820297874198786 ], [ -73.959130615806288, 40.821168953774738 ], [ -73.959426244158038, 40.821252381738169 ], [ -73.959146857151907, 40.821571328550938 ], [ -73.959032942219295, 40.821513746228703 ], [ -73.959234672601511, 40.821277825270641 ], [ -73.959089603062452, 40.821206247056153 ], [ -73.958818922339958, 40.821518524846745 ], [ -73.958941729417091, 40.821569364009548 ], [ -73.958745236604997, 40.821805511973615 ], [ -73.959000183560505, 40.822409728374573 ], [ -73.959229762796213, 40.82228691013254 ], [ -73.959909994443962, 40.822571119821973 ], [ -73.959603324602782, 40.822994686783296 ], [ -73.958926147183021, 40.822711755441333 ], [ -73.959049533317085, 40.822541335368214 ], [ -73.958527314581005, 40.821843756651887 ], [ -73.95820019287855, 40.822283136917846 ], [ -73.957939049091223, 40.822774353547267 ], [ -73.958228382491924, 40.822887867101095 ], [ -73.958143127692011, 40.823020722271416 ], [ -73.959555755600221, 40.823693797769003 ], [ -73.957258970433088, 40.827117309873316 ], [ -73.956948664204674, 40.82700055393498 ], [ -73.956317845103115, 40.827944215388541 ], [ -73.955039129783941, 40.827413431911843 ], [ -73.954697366856635, 40.827918385514458 ], [ -73.954541881282907, 40.82786147636574 ], [ -73.951316411189993, 40.832450511970627 ], [ -73.950935762314813, 40.833293997985642 ], [ -73.950155209966098, 40.83439675981581 ], [ -73.949415704906926, 40.834358589832483 ], [ -73.940170897886517, 40.830384391128689 ] ] ] } } +, +{ "type": "Feature", "id": 137, "properties": { "communityDistrict": 110, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/110" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.934452393973729, 40.835980960149861 ], [ -73.934915335786499, 40.835230821938772 ], [ -73.935167252285169, 40.832874991772954 ], [ -73.9344239633905, 40.82704289397212 ], [ -73.933800194730466, 40.818349758873957 ], [ -73.934873438350309, 40.816527847015031 ], [ -73.936209578142737, 40.814673849920545 ], [ -73.942753672281938, 40.805744012794605 ], [ -73.944301945871231, 40.806390824581001 ], [ -73.945239652139207, 40.805136014461745 ], [ -73.946131310486734, 40.803877357584135 ], [ -73.944597513456074, 40.803228145255666 ], [ -73.949231860729938, 40.7968730719466 ], [ -73.959646854231522, 40.801156423256458 ], [ -73.958248783298146, 40.803106486471115 ], [ -73.958181673189713, 40.805596791128636 ], [ -73.954966571724654, 40.810064554703729 ], [ -73.953575778103641, 40.80947669765964 ], [ -73.952101251492223, 40.811442853501241 ], [ -73.950350192752254, 40.813159389290092 ], [ -73.949199601462425, 40.814720854586277 ], [ -73.946078287404234, 40.821263215559654 ], [ -73.945154570217539, 40.820876264825252 ], [ -73.942923668464658, 40.823260586747516 ], [ -73.94384275614668, 40.823647801542087 ], [ -73.939728629682307, 40.82930184433183 ], [ -73.939805957117386, 40.830004512317636 ], [ -73.93962569930143, 40.830155837387963 ], [ -73.940170897886517, 40.830384391128689 ], [ -73.938683162963443, 40.832800789417831 ], [ -73.934962741107384, 40.835759934247271 ], [ -73.934798863439653, 40.836110116261764 ], [ -73.934452393973729, 40.835980960149861 ] ] ] } } +, +{ "type": "Feature", "id": 138, "properties": { "communityDistrict": 204, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/204" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.90268810050182, 40.84458147228532 ], [ -73.905979403756234, 40.83850519529944 ], [ -73.912169826444909, 40.827902220983532 ], [ -73.916613685086176, 40.824992308005278 ], [ -73.916087827917409, 40.824837851830807 ], [ -73.92194764145448, 40.821031544959396 ], [ -73.924025572419666, 40.819285330110709 ], [ -73.925184864635582, 40.818012668874921 ], [ -73.930315050305069, 40.81931688055203 ], [ -73.932389713250288, 40.819502847336764 ], [ -73.93276594581215, 40.8254582266824 ], [ -73.933546067469919, 40.831509453501425 ], [ -73.933605920367057, 40.83278953052077 ], [ -73.933462357031431, 40.833643823071682 ], [ -73.933143067092601, 40.835194127616468 ], [ -73.932656203539793, 40.83647347652591 ], [ -73.930515723199036, 40.839933642686375 ], [ -73.930483244548711, 40.840460060566691 ], [ -73.929194079410593, 40.842818415236557 ], [ -73.929184586730983, 40.843203757647643 ], [ -73.928615748223521, 40.844676865029953 ], [ -73.928274547067915, 40.844975761156938 ], [ -73.927301944986283, 40.846506867376107 ], [ -73.923540020115283, 40.8447589441123 ], [ -73.913382939714481, 40.845187232536539 ], [ -73.906646755595673, 40.844916314067184 ], [ -73.90268810050182, 40.84458147228532 ] ] ] } } +, +{ "type": "Feature", "id": 139, "properties": { "communityDistrict": 103, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/103" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.988779316840834, 40.733965399235885 ], [ -73.971626972717061, 40.726628453499416 ], [ -73.973148311338107, 40.720021431551899 ], [ -73.974435518656364, 40.716246838391271 ], [ -73.976428725805761, 40.711909032503797 ], [ -73.97705659467816, 40.711197625964338 ], [ -73.97807974906604, 40.710532251079798 ], [ -73.981276842109892, 40.710217251191011 ], [ -73.981237344620908, 40.70982334331849 ], [ -73.988390640232666, 40.709126949162631 ], [ -73.988636580718492, 40.70991206151627 ], [ -73.989460670194262, 40.709889287051261 ], [ -73.99728287195579, 40.708731619842894 ], [ -73.998527585853111, 40.70833152790825 ], [ -73.999194511748954, 40.707947376351463 ], [ -74.001471402320803, 40.709746554323239 ], [ -74.000509860972329, 40.710984270453366 ], [ -74.000867814643087, 40.711568158862143 ], [ -74.000931743323804, 40.713263253045277 ], [ -74.000454630659604, 40.714365047598868 ], [ -74.000578392161202, 40.715570902924213 ], [ -73.999312417001448, 40.717550241777381 ], [ -73.998589255680329, 40.7170995115371 ], [ -73.996058727443753, 40.7162316402109 ], [ -73.994807790213102, 40.718457426350312 ], [ -73.991363881381531, 40.727559783459121 ], [ -73.99002687656818, 40.732756284494208 ], [ -73.989868521395636, 40.733527114554889 ], [ -73.989902959700501, 40.734434790136874 ], [ -73.988779316840834, 40.733965399235885 ] ] ] } } +, +{ "type": "Feature", "id": 140, "properties": { "communityDistrict": 302, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/302" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.969292963484961, 40.70709333109555 ], [ -73.968389336807874, 40.706829186746916 ], [ -73.967209620426217, 40.704255709153294 ], [ -73.962179780891731, 40.700220710101576 ], [ -73.962839637163441, 40.698038668339827 ], [ -73.961898378242424, 40.698188332531487 ], [ -73.961749948352178, 40.696846168402978 ], [ -73.960292816681118, 40.690346249915414 ], [ -73.958292168077833, 40.679831133494801 ], [ -73.967531966996447, 40.681768783617386 ], [ -73.967678283782007, 40.680955455311469 ], [ -73.97620908230067, 40.682729549681049 ], [ -73.978760224629411, 40.683765443980533 ], [ -73.980461554436758, 40.6812225467568 ], [ -73.982854360751816, 40.682148963461714 ], [ -73.982422837554779, 40.682782995732666 ], [ -73.984374107978155, 40.683542455374401 ], [ -73.984796946915068, 40.682908865516787 ], [ -73.986995200094256, 40.683765010822732 ], [ -73.986563034256491, 40.684388756141708 ], [ -73.988711560327573, 40.685224618479538 ], [ -73.989128407289869, 40.684589453073421 ], [ -73.993929296158825, 40.68645287164901 ], [ -73.992363670432468, 40.68969012377697 ], [ -74.001105193250609, 40.692056595339189 ], [ -74.004007959710961, 40.693208199632345 ], [ -74.00346218092524, 40.694057015074719 ], [ -74.001270149686704, 40.693296061673706 ], [ -74.000958684830195, 40.694069083582193 ], [ -74.003013938290835, 40.694777844479127 ], [ -74.002398025837948, 40.695711654864475 ], [ -74.000268723777879, 40.694965802577912 ], [ -73.999413024332057, 40.696357676453268 ], [ -73.999523739035141, 40.69657482604083 ], [ -74.000489334059552, 40.696926195088039 ], [ -74.000431472743998, 40.697052466178526 ], [ -73.99959333581242, 40.696782261474375 ], [ -73.999553890836694, 40.696945232396793 ], [ -73.999407384429574, 40.696885189446014 ], [ -73.999474068206041, 40.696704134461974 ], [ -73.999181990168637, 40.696885188064741 ], [ -73.998996041391933, 40.696812278372938 ], [ -73.998764580277054, 40.697120732591387 ], [ -74.001049031235567, 40.697908235692211 ], [ -74.000487686285524, 40.6987577781371 ], [ -73.998377606857716, 40.698063296146074 ], [ -73.998021027251099, 40.698761736573765 ], [ -74.000018404336203, 40.699466048073617 ], [ -73.999474639049623, 40.700322778018318 ], [ -73.997498983100002, 40.699638869321213 ], [ -73.997160542439218, 40.699792812644105 ], [ -73.997244628056634, 40.700141409394462 ], [ -73.996697689974638, 40.70087697691703 ], [ -73.998138799654924, 40.701518788248372 ], [ -73.996192272947724, 40.703377140864141 ], [ -73.995138268406848, 40.702974114722821 ], [ -73.995045927483247, 40.703131839799553 ], [ -73.995445642460297, 40.703275305471735 ], [ -73.995293467009333, 40.703554065897968 ], [ -73.994800382748679, 40.703291958141975 ], [ -73.994662903436122, 40.703430608056578 ], [ -73.995029259824861, 40.703808200868018 ], [ -73.994714242351506, 40.703996689060894 ], [ -73.994776143534594, 40.704245861052343 ], [ -73.994569790169322, 40.704376263513907 ], [ -73.993863410318809, 40.704556006930403 ], [ -73.993774572078053, 40.704449457408742 ], [ -73.99350881403609, 40.704623505273986 ], [ -73.992127035350663, 40.704689642033486 ], [ -73.992121005730468, 40.704396201577843 ], [ -73.991861592553562, 40.7040866421044 ], [ -73.990947553507937, 40.70403244213918 ], [ -73.99022721262051, 40.704934044487111 ], [ -73.988303322085429, 40.704540468954995 ], [ -73.98828999111295, 40.705070658495011 ], [ -73.987956765575433, 40.705134217412535 ], [ -73.986863206603715, 40.70515985694135 ], [ -73.986529730120878, 40.704979099173755 ], [ -73.986434298927065, 40.705348607419644 ], [ -73.9834380628795, 40.705644094847855 ], [ -73.983368199441571, 40.705461064573981 ], [ -73.982459568722376, 40.705508797225335 ], [ -73.982422871798903, 40.705822054949373 ], [ -73.981023906182799, 40.705898913893535 ], [ -73.981017339009455, 40.705797506467732 ], [ -73.982302051838786, 40.705736979399632 ], [ -73.982329442166034, 40.705552033664006 ], [ -73.980925103119873, 40.705369255200488 ], [ -73.980908645638038, 40.705907943811788 ], [ -73.979559184872429, 40.705743615249823 ], [ -73.979050499041293, 40.705966963089026 ], [ -73.97893110285527, 40.705924906230337 ], [ -73.97906084845792, 40.705946028940744 ], [ -73.979245087233366, 40.705548389273893 ], [ -73.978963550810661, 40.705502196504284 ], [ -73.978819090400691, 40.705862467079278 ], [ -73.978927658897888, 40.705496199169183 ], [ -73.978738294866346, 40.705463064672081 ], [ -73.978639066585714, 40.705830648221735 ], [ -73.978684405844717, 40.705454177107875 ], [ -73.978645292288533, 40.705591021595623 ], [ -73.978465578489633, 40.70556222186439 ], [ -73.97839230543768, 40.705970682310785 ], [ -73.978853032946688, 40.706065535284417 ], [ -73.978344748528713, 40.705999964987555 ], [ -73.978531988867317, 40.704876523429753 ], [ -73.978020673266556, 40.704290966456135 ], [ -73.977211963392406, 40.704213926624213 ], [ -73.977512154949636, 40.703196752663445 ], [ -73.977135626253968, 40.7030055814025 ], [ -73.976238648345273, 40.704775644190811 ], [ -73.975960962787951, 40.704715506440394 ], [ -73.976927491883515, 40.702797820400363 ], [ -73.976159372920222, 40.702171280356836 ], [ -73.975534564897416, 40.703042808805669 ], [ -73.975329873939813, 40.702951924338258 ], [ -73.976005878454458, 40.701946133781767 ], [ -73.975500831764222, 40.701758308965601 ], [ -73.975403481585289, 40.701911147567372 ], [ -73.974550233883889, 40.701590343299607 ], [ -73.975817137829992, 40.699737121272619 ], [ -73.975763695932358, 40.699592577468501 ], [ -73.975376498638397, 40.699601293329223 ], [ -73.974115139265209, 40.701305270414132 ], [ -73.97292642848619, 40.700294553427668 ], [ -73.972573119672035, 40.700082056120891 ], [ -73.972392013974584, 40.700166322752231 ], [ -73.973757007131979, 40.70153413888179 ], [ -73.973186766708963, 40.701669803673667 ], [ -73.97097896923556, 40.699856457652373 ], [ -73.970805244328432, 40.700097500342288 ], [ -73.973324560379012, 40.70241265601053 ], [ -73.972835128547729, 40.702728740744092 ], [ -73.969825565595315, 40.700245070367977 ], [ -73.96948655218084, 40.700519061258142 ], [ -73.972838900409926, 40.703346428602003 ], [ -73.972669383677143, 40.70350138043095 ], [ -73.969245392733939, 40.701364741883665 ], [ -73.968934748184296, 40.701615868207242 ], [ -73.968985173629278, 40.701747088786341 ], [ -73.97231246276111, 40.703844539538572 ], [ -73.972157988250117, 40.703970207123469 ], [ -73.971456573548267, 40.703508715924556 ], [ -73.971103422988307, 40.703459735839729 ], [ -73.970933078863382, 40.703624772048755 ], [ -73.971019631845522, 40.703815613686501 ], [ -73.974655696080404, 40.706074262994186 ], [ -73.974390835023229, 40.706325774144688 ], [ -73.973476295324247, 40.705686283391167 ], [ -73.972548800578181, 40.706204490003756 ], [ -73.974629666704644, 40.707681060768365 ], [ -73.974236169685341, 40.708024386122354 ], [ -73.971224929122684, 40.70578989940843 ], [ -73.971096554891076, 40.705850056558191 ], [ -73.971056923061823, 40.706946433816654 ], [ -73.97275756998377, 40.708831278547613 ], [ -73.972320321398243, 40.709082883304198 ], [ -73.970262185322852, 40.70688750428404 ], [ -73.970488819146198, 40.70540066562203 ], [ -73.970168945099189, 40.705361853407247 ], [ -73.970180755727995, 40.704929270566829 ], [ -73.967621148459884, 40.703348505194491 ], [ -73.967476744930281, 40.703949870956244 ], [ -73.969296938377127, 40.705088331229661 ], [ -73.969292963484961, 40.70709333109555 ] ] ] } } +, +{ "type": "Feature", "id": 141, "properties": { "communityDistrict": 409, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/409" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.817097387564516, 40.704029801587659 ], [ -73.814923432672259, 40.69942244007531 ], [ -73.810632983108889, 40.6919473825767 ], [ -73.846714643074961, 40.681858493694463 ], [ -73.853923891622188, 40.679686155801697 ], [ -73.863286408446143, 40.67907719656106 ], [ -73.864100966791327, 40.682372850292609 ], [ -73.866026668716259, 40.681918051772897 ], [ -73.866598483492695, 40.68526955906988 ], [ -73.867460888910415, 40.688415017596441 ], [ -73.868684543705783, 40.6940346919056 ], [ -73.868424897789154, 40.694718119012549 ], [ -73.857444477396186, 40.696912984716768 ], [ -73.852772385843949, 40.697557111441142 ], [ -73.852609659869856, 40.69780503974782 ], [ -73.852711308770878, 40.698414961501221 ], [ -73.854434556776525, 40.700602952131028 ], [ -73.850708423224148, 40.700203124602638 ], [ -73.849138373090511, 40.698282740700151 ], [ -73.845024729431415, 40.699359377017053 ], [ -73.842756641805778, 40.7006576953058 ], [ -73.841563780944213, 40.701100598717581 ], [ -73.839478151754136, 40.702690194330657 ], [ -73.836962377449964, 40.704212452332193 ], [ -73.838042772945016, 40.705956459962259 ], [ -73.837982802802316, 40.70675198796021 ], [ -73.836657203108103, 40.708584270057372 ], [ -73.834051103436607, 40.710027882253115 ], [ -73.835900722077483, 40.711641370769733 ], [ -73.831238554001303, 40.714148221539155 ], [ -73.825597163292713, 40.715514336939208 ], [ -73.824717494276598, 40.714506849725737 ], [ -73.82363860711493, 40.712666644483171 ], [ -73.820452364596164, 40.709774548575126 ], [ -73.818285663457132, 40.706302850482075 ], [ -73.817097387564516, 40.704029801587659 ] ] ] } } +, +{ "type": "Feature", "id": 142, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.791866920271332, 40.851791661387004 ], [ -73.792057313917027, 40.851825573261152 ], [ -73.790170071924877, 40.852280661154566 ], [ -73.791137951709317, 40.852055852573642 ], [ -73.791334567532587, 40.852166067673579 ], [ -73.791226533189317, 40.852258010501984 ], [ -73.791361879798984, 40.852225977533898 ], [ -73.791236559717774, 40.852280289886508 ], [ -73.793182841420418, 40.851808571872468 ], [ -73.793118371838361, 40.851578295240799 ], [ -73.793237867876343, 40.851931174674448 ], [ -73.793128940739194, 40.851848072675871 ], [ -73.791245567837663, 40.852304681410715 ], [ -73.791380527617108, 40.852602038305946 ], [ -73.793409876311628, 40.852021883730373 ], [ -73.793507628319134, 40.852264043924819 ], [ -73.793424006690429, 40.852136302527562 ], [ -73.791391064686735, 40.852628074985887 ], [ -73.791446400277877, 40.852771571924151 ], [ -73.790420537801694, 40.853022978212493 ], [ -73.790498793630491, 40.853188721513447 ], [ -73.791005867402191, 40.853117691261929 ], [ -73.791454363037246, 40.853010847713527 ], [ -73.791437027167987, 40.852822727480898 ], [ -73.79150327251574, 40.853004748959641 ], [ -73.791702239622765, 40.852958085946781 ], [ -73.791655545024312, 40.852777338227696 ], [ -73.791729955246211, 40.852954423490104 ], [ -73.791963182449607, 40.852895448227535 ], [ -73.791916500124046, 40.852710988139613 ], [ -73.791989281645655, 40.852888070298 ], [ -73.792224129975452, 40.852831572093088 ], [ -73.792175809039904, 40.852649584322762 ], [ -73.792251861637482, 40.852822960383357 ], [ -73.792486698814898, 40.852770173952187 ], [ -73.792436754733544, 40.852585708206007 ], [ -73.792509541142422, 40.852761552715556 ], [ -73.792830838848943, 40.852680460767843 ], [ -73.792815119669299, 40.852494819308866 ], [ -73.792900866870625, 40.852695435982291 ], [ -73.79080758729927, 40.853199060064263 ], [ -73.790862019868413, 40.853319781103487 ], [ -73.791114314293836, 40.853264451924659 ], [ -73.791265732320667, 40.85370686423434 ], [ -73.79252408728911, 40.85340992070487 ], [ -73.792409310369308, 40.853053336114719 ], [ -73.792555983925809, 40.853401178540771 ], [ -73.792979283110483, 40.853302944909416 ], [ -73.792876100485884, 40.852944181328425 ], [ -73.793039911702664, 40.853371249285175 ], [ -73.791273681943167, 40.853732207882842 ], [ -73.79105721254831, 40.853918412426637 ], [ -73.792458168448107, 40.853600708754911 ], [ -73.791070027659515, 40.853944956664598 ], [ -73.792537146048673, 40.853849327812881 ], [ -73.792567589446335, 40.854016434943063 ], [ -73.791793668094144, 40.854004829900354 ], [ -73.791918117363849, 40.85422235474288 ], [ -73.791338117915771, 40.854439011538304 ], [ -73.791292821606476, 40.854584025976791 ], [ -73.792076756675542, 40.855645167707088 ], [ -73.792503067516421, 40.855788666138189 ], [ -73.792487911573716, 40.855946993209756 ], [ -73.792116170146954, 40.856012615292798 ], [ -73.792017122285259, 40.856176948606254 ], [ -73.792705239851358, 40.856192328905713 ], [ -73.792687682226543, 40.856335218720325 ], [ -73.79315700296155, 40.856350911074763 ], [ -73.793146860859693, 40.856467828471096 ], [ -73.792617937968302, 40.856358294907622 ], [ -73.792632943811796, 40.856249739029344 ], [ -73.792010500752468, 40.856225127719604 ], [ -73.791937002797468, 40.856405157922097 ], [ -73.792088148199653, 40.856477642009374 ], [ -73.791901833402562, 40.856546911368 ], [ -73.793094922185631, 40.85668644140528 ], [ -73.793030783612295, 40.856813917951534 ], [ -73.791894230250762, 40.856568889330781 ], [ -73.791828455068796, 40.856668143394614 ], [ -73.79196180657604, 40.856716856586345 ], [ -73.791792645352828, 40.856719852819126 ], [ -73.791929557804636, 40.856769001669612 ], [ -73.79185125084949, 40.856798154914365 ], [ -73.791735464765566, 40.856866429528225 ], [ -73.792202658840608, 40.857146000409124 ], [ -73.792427941308048, 40.856928541531616 ], [ -73.792221891863861, 40.857152298424666 ], [ -73.792827132379813, 40.857435789917872 ], [ -73.79301264449191, 40.85700302604436 ], [ -73.792884039550898, 40.857479202494808 ], [ -73.791859787814047, 40.8570041072606 ], [ -73.792683385092928, 40.857420393591489 ], [ -73.79260923020631, 40.857507704502261 ], [ -73.792112667836278, 40.857166931870339 ], [ -73.791894519130921, 40.857437121865232 ], [ -73.792465161314851, 40.857715331785222 ], [ -73.792569704405992, 40.857639625362275 ], [ -73.792395217232809, 40.857845547752156 ], [ -73.792443364035577, 40.857736741971841 ], [ -73.791742540823591, 40.857393950004131 ], [ -73.791872819639451, 40.857427183076716 ], [ -73.792093325040952, 40.857157989947154 ], [ -73.791843032173972, 40.857028702011341 ], [ -73.791603934613121, 40.857375312992446 ], [ -73.791293788521529, 40.857263238698074 ], [ -73.790942022603716, 40.857552748188795 ], [ -73.791636645879663, 40.857882812570885 ], [ -73.79178529423254, 40.857775425855543 ], [ -73.791436959081096, 40.858154685123054 ], [ -73.791618660758274, 40.857901342048031 ], [ -73.790932228007478, 40.857567787470522 ], [ -73.790235927387627, 40.858154084811197 ], [ -73.790061335632444, 40.858459548561221 ], [ -73.790187451950032, 40.858609917386147 ], [ -73.790045998377536, 40.858475404912085 ], [ -73.78898385079637, 40.858470842735954 ], [ -73.788784028545791, 40.857420690336504 ], [ -73.788043429757991, 40.857559917687105 ], [ -73.788778986102145, 40.857400925200871 ], [ -73.788710477543788, 40.857047032712231 ], [ -73.788896549571888, 40.85657338670979 ], [ -73.788536877354829, 40.856158503785373 ], [ -73.788359432223658, 40.855626489148236 ], [ -73.788415111842909, 40.85518763710445 ], [ -73.788553657910015, 40.855148736115453 ], [ -73.788294136466661, 40.854822651390073 ], [ -73.788477326533609, 40.854400520532153 ], [ -73.788347006836304, 40.854153518949786 ], [ -73.787347531464235, 40.854385885459472 ], [ -73.788323994499137, 40.854102515649636 ], [ -73.787314500662418, 40.854211942725648 ], [ -73.786907347026968, 40.854063972299166 ], [ -73.78792821707313, 40.853737797389137 ], [ -73.787962642880714, 40.85347472093553 ], [ -73.785881865066514, 40.851788672440847 ], [ -73.785292107190273, 40.851620649973505 ], [ -73.784131891679834, 40.851832806157219 ], [ -73.784314151660126, 40.851767545706863 ], [ -73.783871152919602, 40.851558961668779 ], [ -73.783961124883092, 40.851486933922963 ], [ -73.783381586103928, 40.851586733914331 ], [ -73.78360210541598, 40.851319519782649 ], [ -73.784600777637948, 40.851095692196424 ], [ -73.784454632223671, 40.850772873853224 ], [ -73.78384119241808, 40.850692899497055 ], [ -73.784065808373342, 40.850625233236379 ], [ -73.784012880418416, 40.85047528985303 ], [ -73.784257857600153, 40.850253180641083 ], [ -73.784200472005722, 40.850060644241836 ], [ -73.783534978087403, 40.849220967420266 ], [ -73.78317944898275, 40.849222360949476 ], [ -73.783035355379056, 40.84907190812784 ], [ -73.782449527092126, 40.849341154015669 ], [ -73.782218064743049, 40.849166804596116 ], [ -73.782094563045021, 40.849247300009687 ], [ -73.782158141520526, 40.849116173923854 ], [ -73.781544490885992, 40.849400434643279 ], [ -73.782141086978484, 40.849100662667652 ], [ -73.781615940690727, 40.848896204611108 ], [ -73.781613675352034, 40.848772386349907 ], [ -73.781506202591302, 40.848842528177826 ], [ -73.781574404406385, 40.848731808212364 ], [ -73.781432495222901, 40.848800005813288 ], [ -73.78149386587495, 40.848580475825756 ], [ -73.782674670790442, 40.848139671941404 ], [ -73.780978209389545, 40.848458347913521 ], [ -73.781306275173833, 40.8483476864726 ], [ -73.781106978415082, 40.848294758197767 ], [ -73.782637404640766, 40.848072649247044 ], [ -73.782504086335379, 40.847913273763218 ], [ -73.781584180817134, 40.848037051537183 ], [ -73.781484319505623, 40.847882193848626 ], [ -73.781429203479163, 40.847456345357209 ], [ -73.782214978174324, 40.846861409589437 ], [ -73.782163935017621, 40.846636337782051 ], [ -73.780636684111613, 40.84692333475239 ], [ -73.780676937040738, 40.847061485793461 ], [ -73.780462415984658, 40.847100233289559 ], [ -73.78040327024776, 40.846931134167328 ], [ -73.781060439730155, 40.846802551854296 ], [ -73.78115182578567, 40.84624630462708 ], [ -73.781106757608001, 40.846746997141139 ], [ -73.781647204005992, 40.84664644143021 ], [ -73.781688803593681, 40.846635027873198 ], [ -73.781742889032557, 40.846412290115893 ], [ -73.781718430764258, 40.846626899153208 ], [ -73.782513451830411, 40.846408771552404 ], [ -73.782357028105167, 40.845981588332627 ], [ -73.782579328656908, 40.845935893027736 ], [ -73.782495972589558, 40.845661561949022 ], [ -73.783094420486535, 40.845518285564673 ], [ -73.78314644227369, 40.845309942025992 ], [ -73.783074558306609, 40.845509764291876 ], [ -73.781816461704935, 40.845764978052216 ], [ -73.783050749408005, 40.84549682317585 ], [ -73.783060231265836, 40.845085708566991 ], [ -73.781815359666339, 40.845480582881542 ], [ -73.781887076726719, 40.845333885649353 ], [ -73.783074574466866, 40.84505636873385 ], [ -73.783152455057419, 40.845295983327766 ], [ -73.783222076139282, 40.845063444658159 ], [ -73.78297579244331, 40.844680948020375 ], [ -73.783365362015246, 40.844444722982921 ], [ -73.78306041018179, 40.844372063894077 ], [ -73.783011297633692, 40.84417269034595 ], [ -73.783269871388399, 40.844069392091583 ], [ -73.783094947062864, 40.843866093899656 ], [ -73.783484287488164, 40.843678545998436 ], [ -73.783188838821161, 40.843763135582584 ], [ -73.783474812492528, 40.843654738109706 ], [ -73.783191945188008, 40.842867863983848 ], [ -73.783045398154457, 40.842896332066672 ], [ -73.78321038850865, 40.843479338866466 ], [ -73.78291098678902, 40.842922355005555 ], [ -73.783139260348563, 40.842822319491283 ], [ -73.782917470851174, 40.842806445679088 ], [ -73.783123830865023, 40.842736202994878 ], [ -73.782887783014857, 40.842494828849603 ], [ -73.782733193767768, 40.842521705498463 ], [ -73.782815845260572, 40.842764522596617 ], [ -73.782706699825695, 40.842532475810309 ], [ -73.782299412709179, 40.842605896413303 ], [ -73.782444524045943, 40.84304203441669 ], [ -73.782266828747382, 40.842612018228202 ], [ -73.781800483624494, 40.842696145793632 ], [ -73.781933065936713, 40.843228088076422 ], [ -73.781771969939086, 40.842702273493202 ], [ -73.78124656634499, 40.842797107289435 ], [ -73.781427852549456, 40.843370873277635 ], [ -73.781216011854681, 40.842804777396935 ], [ -73.780674299250208, 40.842907304537675 ], [ -73.780829036813032, 40.843507297145663 ], [ -73.780643760596533, 40.842910337119534 ], [ -73.78029552532071, 40.842973044893938 ], [ -73.780227738726808, 40.843778181297694 ], [ -73.780226624184124, 40.842883267930304 ], [ -73.782864993049188, 40.842478101882691 ], [ -73.780597357564176, 40.842786599939714 ], [ -73.78236855953503, 40.842428493149633 ], [ -73.782151661395545, 40.842355228111309 ], [ -73.782311109767235, 40.842224178958389 ], [ -73.781620550880987, 40.842329494889242 ], [ -73.782306433841043, 40.842211115308658 ], [ -73.782332572158921, 40.841922844111366 ], [ -73.781440031078489, 40.84214213349339 ], [ -73.782323512859506, 40.841898330454576 ], [ -73.782037526001218, 40.84184191671627 ], [ -73.782263453262431, 40.841778115982422 ], [ -73.782015934356068, 40.841793189025147 ], [ -73.782166244851396, 40.841689144111342 ], [ -73.781299281155697, 40.841794441623577 ], [ -73.781338685715582, 40.841996218484148 ], [ -73.781248635025037, 40.841877807985313 ], [ -73.781132901012668, 40.841910626053568 ], [ -73.781197722388939, 40.842042029372983 ], [ -73.780979357270908, 40.841952935336764 ], [ -73.781023544250147, 40.842092994411558 ], [ -73.780846439969466, 40.841989198625754 ], [ -73.780887174486566, 40.8421344670586 ], [ -73.780696328021335, 40.842032383000635 ], [ -73.780720988966152, 40.842191532306998 ], [ -73.780655082842529, 40.842041868866268 ], [ -73.780562927070164, 40.842214705203638 ], [ -73.780348051582251, 40.842109098224434 ], [ -73.780425771815317, 40.842494394206817 ], [ -73.780298639761568, 40.842511540467299 ], [ -73.780195999552873, 40.842046210976143 ], [ -73.781850481977813, 40.841653946394274 ], [ -73.781660512137748, 40.84112417458303 ], [ -73.780842238023098, 40.841276324028101 ], [ -73.780892206101512, 40.841553084198239 ], [ -73.780797529896347, 40.841256146049616 ], [ -73.781648553617657, 40.841097763530037 ], [ -73.7813914356895, 40.841036609618143 ], [ -73.781610696515287, 40.84099624002566 ], [ -73.781374882611289, 40.8409788710063 ], [ -73.781593968710794, 40.840939796746781 ], [ -73.781418050718869, 40.840714755716164 ], [ -73.781542960605393, 40.840386661604434 ], [ -73.781491720069354, 40.840206224525211 ], [ -73.781253619009107, 40.840255499937506 ], [ -73.781488780892531, 40.840197323922027 ], [ -73.781362672453156, 40.839730189816279 ], [ -73.781179478685758, 40.839745862257054 ], [ -73.781359320106731, 40.839711708215745 ], [ -73.781341252119404, 40.839478563444132 ], [ -73.781138757921383, 40.839494278802974 ], [ -73.781339888494173, 40.839469699830246 ], [ -73.781567809835096, 40.838537405736297 ], [ -73.782004209890431, 40.8380155723071 ], [ -73.781884557202801, 40.837650276604748 ], [ -73.7823814255608, 40.837324106167358 ], [ -73.782727607388253, 40.837487959346241 ], [ -73.782906291908787, 40.837320006072716 ], [ -73.782703645836506, 40.836842801965531 ], [ -73.782681315017626, 40.836483677154789 ], [ -73.782822601397385, 40.836338155887873 ], [ -73.783029218627348, 40.836345852344742 ], [ -73.783381680593351, 40.836909271680632 ], [ -73.784101645913125, 40.836725529357928 ], [ -73.784484561400149, 40.837024222538524 ], [ -73.784980603280943, 40.836746426080545 ], [ -73.785082267091155, 40.836881907209154 ], [ -73.784503339653611, 40.837057765171103 ], [ -73.784850092226634, 40.837470489178493 ], [ -73.785125821093104, 40.837446041568164 ], [ -73.785639978454526, 40.837064434585322 ], [ -73.785830679641222, 40.837209980004516 ], [ -73.785652795723195, 40.837132104725967 ], [ -73.785165844286638, 40.837471334061753 ], [ -73.785277129484214, 40.837756718086908 ], [ -73.785577968509486, 40.837927113225348 ], [ -73.78553011511525, 40.838798277338341 ], [ -73.785735092986897, 40.839234231775805 ], [ -73.786525984964257, 40.839723115606979 ], [ -73.787407587460109, 40.839677623196884 ], [ -73.787639312190095, 40.840531895236651 ], [ -73.787357242444585, 40.840590771776618 ], [ -73.787491664125952, 40.840842341674019 ], [ -73.78818132144562, 40.84071108050135 ], [ -73.788159211003418, 40.840490778565815 ], [ -73.788254532834557, 40.840745863118471 ], [ -73.787523797336959, 40.840879612185148 ], [ -73.787786567951002, 40.840892222012755 ], [ -73.78786404049697, 40.841081725834869 ], [ -73.787612377825923, 40.841198005295823 ], [ -73.787844874994789, 40.841471479333229 ], [ -73.788366174089631, 40.841504610010162 ], [ -73.788020035503621, 40.841783841458749 ], [ -73.78829358843862, 40.841785373136652 ], [ -73.78805599136966, 40.841867030178754 ], [ -73.788384566136742, 40.842381978370589 ], [ -73.788838648951483, 40.842350395961155 ], [ -73.788527808673749, 40.842425576894726 ], [ -73.789058255013657, 40.843235331770025 ], [ -73.7896166032845, 40.843112654364973 ], [ -73.789924248582423, 40.843224154239472 ], [ -73.789930933882502, 40.843042264363646 ], [ -73.78999975375217, 40.843307817244785 ], [ -73.789861838582809, 40.843250954146683 ], [ -73.789889536038388, 40.84338093446727 ], [ -73.789734692605862, 40.843413247477471 ], [ -73.78989919889905, 40.843417146659021 ], [ -73.78980449435862, 40.843586656281154 ], [ -73.789337086595353, 40.843681498054309 ], [ -73.789471822140939, 40.84429297835203 ], [ -73.790665890010217, 40.845741558834384 ], [ -73.79098858375896, 40.84565283206247 ], [ -73.790697853648581, 40.845786012550832 ], [ -73.790973333106777, 40.846357311524962 ], [ -73.791490765135578, 40.846251004965239 ], [ -73.791127593128309, 40.846357590950717 ], [ -73.791181287853448, 40.84655567592975 ], [ -73.791413791144407, 40.846547847032802 ], [ -73.791324519472994, 40.846608731996596 ], [ -73.791480346595023, 40.846802052712484 ], [ -73.791793436254551, 40.846731672329277 ], [ -73.791367098584502, 40.8468876426858 ], [ -73.79148637416958, 40.846958803260229 ], [ -73.791440496883297, 40.847306043483542 ], [ -73.791919978100879, 40.84725821803071 ], [ -73.791429627564995, 40.847359989174358 ], [ -73.791541048822666, 40.847538017298206 ], [ -73.791267085673624, 40.847601867354058 ], [ -73.791329760362359, 40.84805792306544 ], [ -73.791617654314507, 40.848052924407796 ], [ -73.791335880632317, 40.848086238652414 ], [ -73.791111954078829, 40.848808127034154 ], [ -73.790919717940866, 40.848866873016995 ], [ -73.791013623389901, 40.848985209716794 ], [ -73.790887102073697, 40.848886563296524 ], [ -73.789757110706105, 40.849531469287605 ], [ -73.789858369521909, 40.849972559361852 ], [ -73.79098877124963, 40.849828348526991 ], [ -73.789866303801546, 40.849989389699232 ], [ -73.790017587891654, 40.850316331459922 ], [ -73.790357670479153, 40.850142334617111 ], [ -73.790405060543094, 40.850272762713963 ], [ -73.790024118294909, 40.850347819582844 ], [ -73.789918724828681, 40.850611727137753 ], [ -73.791023811304228, 40.850432275424033 ], [ -73.789929536266612, 40.850626122554992 ], [ -73.790070931707518, 40.850932020106761 ], [ -73.790247648375185, 40.850903510522798 ], [ -73.790086400219081, 40.850984473853458 ], [ -73.790268245072681, 40.850961088073802 ], [ -73.790090944519363, 40.850994764404064 ], [ -73.790124391718308, 40.851189912194556 ], [ -73.789513715161675, 40.85130077171312 ], [ -73.789662762834084, 40.851488703322133 ], [ -73.789785107026489, 40.851462293880694 ], [ -73.789665719140146, 40.851338642824828 ], [ -73.790057814269247, 40.851414530211066 ], [ -73.790017970535416, 40.851259470959484 ], [ -73.790089615699927, 40.851407163589769 ], [ -73.790345187979469, 40.851366793054979 ], [ -73.790337095180746, 40.851220143851037 ], [ -73.790379436533073, 40.851358503723979 ], [ -73.790824541989707, 40.85128970631839 ], [ -73.790817653529558, 40.85114862715578 ], [ -73.790987179842986, 40.851264015299037 ], [ -73.790890184358247, 40.851403977437691 ], [ -73.789664902783315, 40.851500382130865 ], [ -73.789725736458948, 40.851692670563722 ], [ -73.790892179300741, 40.851546903548872 ], [ -73.790195886672848, 40.851752904562886 ], [ -73.790463705280985, 40.851767006153977 ], [ -73.790083969041163, 40.852034527382187 ], [ -73.790155092610107, 40.852251285235795 ], [ -73.790160951501818, 40.852040235425761 ], [ -73.790274043019721, 40.85222327109372 ], [ -73.790532123546512, 40.852163414643947 ], [ -73.790452003361011, 40.851989720950272 ], [ -73.790574934103063, 40.852153284134332 ], [ -73.790806105877692, 40.852099875967738 ], [ -73.790743094993672, 40.851926212494341 ], [ -73.790560925243284, 40.851944443891369 ], [ -73.79079463354843, 40.851861341385735 ], [ -73.790853807839085, 40.85208882496957 ], [ -73.791111961505763, 40.852005767311049 ], [ -73.791010971184562, 40.85186080525289 ], [ -73.791173667311199, 40.851816553269423 ], [ -73.791187707645491, 40.852016112506718 ], [ -73.791462933390321, 40.85194514919408 ], [ -73.791320451175096, 40.851779696094127 ], [ -73.791517386779503, 40.851729935890866 ], [ -73.791495968804043, 40.851934072422495 ], [ -73.791866920271332, 40.851791661387004 ] ] ] } } +, +{ "type": "Feature", "id": 143, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782832556073245, 40.843865142505784 ], [ -73.782803952504523, 40.843873331962207 ], [ -73.782572107241037, 40.843294581440702 ], [ -73.782784986356603, 40.843754545480898 ], [ -73.783091861123793, 40.843685054811175 ], [ -73.782873882431872, 40.843124102362339 ], [ -73.78313252568671, 40.843697496731735 ], [ -73.782806615065581, 40.84377931612201 ], [ -73.782832556073245, 40.843865142505784 ] ] ] } } +, +{ "type": "Feature", "id": 144, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782458800187328, 40.843972152143984 ], [ -73.782427508127682, 40.843981111339296 ], [ -73.78224871668732, 40.843436168417476 ], [ -73.782458800187328, 40.843972152143984 ] ] ] } } +, +{ "type": "Feature", "id": 145, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.782033837018488, 40.844093822883252 ], [ -73.782005224865514, 40.844102014797421 ], [ -73.781833065993609, 40.843575518304867 ], [ -73.782033837018488, 40.844093822883252 ] ] ] } } +, +{ "type": "Feature", "id": 146, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.7818673707729, 40.84414148365164 ], [ -73.780527361147264, 40.8445251403394 ], [ -73.779927037444381, 40.843883081355827 ], [ -73.780533027145609, 40.844453021762618 ], [ -73.780396232820095, 40.843966408179753 ], [ -73.780584647950633, 40.844434572699456 ], [ -73.781062613642987, 40.844328317876688 ], [ -73.780876901987099, 40.843862220487779 ], [ -73.781089777978522, 40.844320127077602 ], [ -73.781546025233339, 40.844215889747694 ], [ -73.781376741645474, 40.843704486541277 ], [ -73.781575903028624, 40.844207702967857 ], [ -73.7818673707729, 40.84414148365164 ] ] ] } } +, +{ "type": "Feature", "id": 147, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.767832056371674, 40.854442205742032 ], [ -73.76855660327054, 40.853238322959399 ], [ -73.769044389871283, 40.853290924693574 ], [ -73.769385291396986, 40.852536133996786 ], [ -73.768608176870998, 40.850788395378075 ], [ -73.769596743776518, 40.847594519099502 ], [ -73.769503216289394, 40.84721783423646 ], [ -73.767894926730023, 40.84528943251447 ], [ -73.769013891811241, 40.845097342721822 ], [ -73.771183780105758, 40.846944513312089 ], [ -73.7715721876706, 40.847500058579044 ], [ -73.770889202873605, 40.849751771339307 ], [ -73.772049636684542, 40.851618289757383 ], [ -73.772711174961444, 40.851826580933668 ], [ -73.772465941266674, 40.851833683999693 ], [ -73.772460522292462, 40.852059542172348 ], [ -73.772963566112878, 40.852159253958554 ], [ -73.772648377469224, 40.852224402629503 ], [ -73.772890756651137, 40.852398268996907 ], [ -73.772459401630229, 40.852106267082135 ], [ -73.772451494816693, 40.852435896894796 ], [ -73.77173060478097, 40.852476831320402 ], [ -73.771717159365437, 40.853004539281812 ], [ -73.772296805313815, 40.853086378252364 ], [ -73.772349175213606, 40.853851419732798 ], [ -73.772962854010615, 40.85380006224775 ], [ -73.772958175170444, 40.854137432923366 ], [ -73.772795977881401, 40.854131758703147 ], [ -73.772694480260554, 40.853906639013331 ], [ -73.772332722197376, 40.853900844675195 ], [ -73.772140368418178, 40.854412712600571 ], [ -73.772181529913411, 40.85886834678476 ], [ -73.772354327106527, 40.859673161980531 ], [ -73.772192230554225, 40.859986638596922 ], [ -73.770845623605695, 40.860101012856738 ], [ -73.769473054240123, 40.859330136668561 ], [ -73.768362772245965, 40.858358288850511 ], [ -73.768360859853473, 40.857655362702076 ], [ -73.765332439952914, 40.855043595124869 ], [ -73.767832056371674, 40.854442205742032 ] ] ] } } +, +{ "type": "Feature", "id": 148, "properties": { "communityDistrict": 210, "@id": "http:\/\/nyc.pediacities.com\/Resource\/CommunityDistrict\/210" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -73.820139251591158, 40.885510427950329 ], [ -73.819733652109988, 40.88562389796774 ], [ -73.819465662940473, 40.883780568495617 ], [ -73.81955499266364, 40.882797941540737 ], [ -73.819197673770958, 40.88217263347854 ], [ -73.81955499266364, 40.882083303755365 ], [ -73.819822981833155, 40.881725984862683 ], [ -73.819108344047791, 40.881368665969994 ], [ -73.819644322386822, 40.880922017354145 ], [ -73.820090971002671, 40.880832687630971 ], [ -73.819822981833155, 40.880028720122432 ], [ -73.820180300725838, 40.879760730952917 ], [ -73.820269630449019, 40.87815279593584 ], [ -73.820984268234383, 40.877348828427301 ], [ -73.82107359795755, 40.876902179811445 ], [ -73.820805608788035, 40.876187542026074 ], [ -73.820537619618534, 40.876187542026074 ], [ -73.820537619618534, 40.87663419064193 ], [ -73.820805608788035, 40.877080839257786 ], [ -73.820180300725838, 40.876991509534619 ], [ -73.820001641279504, 40.876812850088271 ], [ -73.819912311556337, 40.876276871749248 ], [ -73.820001641279504, 40.876098212302907 ], [ -73.820358960172186, 40.876008882579733 ], [ -73.820448289895353, 40.875383574517535 ], [ -73.820626949341701, 40.875294244794368 ], [ -73.821341587127066, 40.875472904240709 ], [ -73.821341587127066, 40.875204915071194 ], [ -73.821252257403899, 40.874936925901679 ], [ -73.820448289895353, 40.874936925901679 ], [ -73.820090971002671, 40.874758266455338 ], [ -73.819912311556337, 40.874400947562656 ], [ -73.819287003494139, 40.874311617839481 ], [ -73.819376333217306, 40.874043628669973 ], [ -73.819822981833155, 40.874043628669973 ], [ -73.819644322386822, 40.873864969223632 ], [ -73.819287003494139, 40.873954298946799 ], [ -73.819019014324624, 40.873775639500458 ], [ -73.819019014324624, 40.873507650330943 ], [ -73.819197673770958, 40.873418320607776 ], [ -73.820180300725838, 40.873596980054117 ], [ -73.820090971002671, 40.873954298946799 ], [ -73.820448289895353, 40.87449027728583 ], [ -73.820984268234383, 40.874400947562656 ], [ -73.822145554635611, 40.874758266455338 ], [ -73.821966895189263, 40.873686309777284 ], [ -73.821341587127066, 40.87413295839314 ], [ -73.820716279064868, 40.87413295839314 ], [ -73.820716279064868, 40.873775639500458 ], [ -73.820984268234383, 40.873239661161435 ], [ -73.821877565466096, 40.873150331438261 ], [ -73.821877565466096, 40.872525023376063 ], [ -73.821609576296581, 40.872525023376063 ], [ -73.821252257403899, 40.872793012545579 ], [ -73.821162927680732, 40.872614353099237 ], [ -73.821162927680732, 40.872346363929722 ], [ -73.821788235742929, 40.872167704483381 ], [ -73.821966895189263, 40.871810385590692 ], [ -73.821877565466096, 40.870559769466297 ], [ -73.821520246573414, 40.870023791127274 ], [ -73.820805608788035, 40.870202450573615 ], [ -73.820894938511216, 40.8699344614041 ], [ -73.820716279064868, 40.86948781278825 ], [ -73.820180300725838, 40.869219823618735 ], [ -73.819108344047791, 40.869309153341902 ], [ -73.818751025155109, 40.868505185833364 ], [ -73.817321749584366, 40.867343899432143 ], [ -73.817143090138032, 40.867701218324825 ], [ -73.817321749584366, 40.868505185833364 ], [ -73.818036387369744, 40.868505185833364 ], [ -73.818751025155109, 40.869755801957758 ], [ -73.818304376539245, 40.870113120850448 ], [ -73.817857727923396, 40.869309153341902 ], [ -73.817500409030714, 40.869219823618735 ], [ -73.81678577124535, 40.869398483065076 ], [ -73.815981803736804, 40.87047043974313 ], [ -73.81526716595144, 40.8699344614041 ], [ -73.815445825397774, 40.869666472234591 ], [ -73.815445825397774, 40.868505185833364 ], [ -73.814373868719727, 40.868058537217507 ], [ -73.81526716595144, 40.866093283307748 ], [ -73.816964430691684, 40.864485348290671 ], [ -73.816517782075834, 40.864217359121156 ], [ -73.815088506505091, 40.865467975245551 ], [ -73.815088506505091, 40.863949369951641 ], [ -73.814820517335576, 40.863413391612617 ], [ -73.816339122629486, 40.86126947825651 ], [ -73.81678577124535, 40.86126947825651 ], [ -73.816964430691684, 40.860822829640654 ], [ -73.817411079307547, 40.860822829640654 ], [ -73.817679068477048, 40.861090818810169 ], [ -73.818483035985594, 40.860912159363828 ], [ -73.818661695431942, 40.860644170194313 ], [ -73.818393706262427, 40.860108191855289 ], [ -73.818751025155109, 40.859304224346744 ], [ -73.820180300725838, 40.859304224346744 ], [ -73.820180300725838, 40.859036235177236 ], [ -73.820626949341701, 40.858946905454061 ], [ -73.821877565466096, 40.859393554069918 ], [ -73.821877565466096, 40.8597508729626 ], [ -73.822234884358778, 40.8597508729626 ], [ -73.822145554635611, 40.860018862132115 ], [ -73.822413543805126, 40.860018862132115 ], [ -73.822413543805126, 40.860197521578456 ], [ -73.821698906019748, 40.860465510747972 ], [ -73.821698906019748, 40.859929532408941 ], [ -73.821341587127066, 40.860018862132115 ], [ -73.821341587127066, 40.859393554069918 ], [ -73.820984268234383, 40.859482883793092 ], [ -73.820805608788035, 40.859840202685774 ], [ -73.820269630449019, 40.8597508729626 ], [ -73.820001641279504, 40.859929532408941 ], [ -73.820358960172186, 40.860465510747972 ], [ -73.820090971002671, 40.861180148533336 ], [ -73.81955499266364, 40.861358807979684 ], [ -73.818929684601443, 40.862162775488223 ], [ -73.819019014324624, 40.86225210521139 ], [ -73.830006570274662, 40.858053608222349 ], [ -73.82964925138198, 40.856356343482105 ], [ -73.828934613596601, 40.855731035419907 ], [ -73.828577294703919, 40.855731035419907 ], [ -73.827773327195388, 40.854480419295513 ], [ -73.827416008302706, 40.8535871220638 ], [ -73.827505338025873, 40.852961814001603 ], [ -73.826880029963675, 40.853140473447944 ], [ -73.827326678579524, 40.8495672845211 ], [ -73.827237348856357, 40.84840599811988 ], [ -73.825986732731963, 40.846530073933287 ], [ -73.825540084116113, 40.846530073933287 ], [ -73.825540084116113, 40.845726106424749 ], [ -73.820448289895353, 40.848495327843047 ], [ -73.820090971002671, 40.847959349504023 ], [ -73.816071133459971, 40.848495327843047 ], [ -73.815803144290456, 40.848941976458903 ], [ -73.815088506505091, 40.848941976458903 ], [ -73.816160463183152, 40.847512700888167 ], [ -73.815892474013637, 40.846530073933287 ], [ -73.814641857889242, 40.846440744210113 ], [ -73.81428453899656, 40.846262084763772 ], [ -73.814463198442894, 40.845815436147916 ], [ -73.814105879550212, 40.845815436147916 ], [ -73.812676603979469, 40.845190128085719 ], [ -73.812051295917271, 40.846708733379629 ], [ -73.81178330674777, 40.846440744210113 ], [ -73.81276593370265, 40.844118171407665 ], [ -73.813391241764847, 40.845100798362552 ], [ -73.813927220103864, 40.845011468639377 ], [ -73.813927220103864, 40.844564820023521 ], [ -73.813569901211181, 40.844207501130839 ], [ -73.813569901211181, 40.843582193068642 ], [ -73.814195209273379, 40.843582193068642 ], [ -73.814373868719727, 40.843046214729618 ], [ -73.815356495674607, 40.843760852514983 ], [ -73.815803144290456, 40.844475490300354 ], [ -73.816249792906319, 40.844028841684498 ], [ -73.817232419861199, 40.844475490300354 ], [ -73.818036387369744, 40.844207501130839 ], [ -73.816964430691684, 40.844118171407665 ], [ -73.816249792906319, 40.84286755528327 ], [ -73.815445825397774, 40.842510236390588 ], [ -73.815356495674607, 40.841170290543026 ], [ -73.814909847058757, 40.839919674418631 ], [ -73.814909847058757, 40.839026377186919 ], [ -73.816160463183152, 40.838669058294236 ], [ -73.816517782075834, 40.838133079955206 ], [ -73.816339122629486, 40.837061123277152 ], [ -73.815981803736804, 40.836346485491788 ], [ -73.815981803736804, 40.834023912689339 ], [ -73.81526716595144, 40.83152268044055 ], [ -73.814373868719727, 40.83054005348567 ], [ -73.813837890380697, 40.829289437361275 ], [ -73.812676603979469, 40.828306810406389 ], [ -73.809996712284345, 40.828306810406389 ], [ -73.809818052837997, 40.828038821236881 ], [ -73.810175371730679, 40.827860161790539 ], [ -73.812587274256302, 40.827681502344191 ], [ -73.813659230934363, 40.826877534835653 ], [ -73.813927220103864, 40.826341556496629 ], [ -73.813837890380697, 40.825894907880773 ], [ -73.813391241764847, 40.825269599818576 ], [ -73.813391241764847, 40.824912280925894 ], [ -73.813837890380697, 40.824644291756378 ], [ -73.813837890380697, 40.824376302586863 ], [ -73.813569901211181, 40.824018983694181 ], [ -73.813123252595332, 40.824018983694181 ], [ -73.81276593370265, 40.824554962033204 ], [ -73.811515317578255, 40.824554962033204 ], [ -73.809550063668482, 40.825448259264917 ], [ -73.808924755606284, 40.825984237603947 ], [ -73.807584809758723, 40.825716248434432 ], [ -73.806602182803843, 40.824822951202719 ], [ -73.806423523357495, 40.823483005355158 ], [ -73.80570888557213, 40.821785740614907 ], [ -73.806155534187994, 40.820624454213679 ], [ -73.804011620831886, 40.818480540857578 ], [ -73.80267167498431, 40.818391211134404 ], [ -73.802046366922113, 40.818569870580745 ], [ -73.800617091351384, 40.818033892241722 ], [ -73.800527761628217, 40.817408584179525 ], [ -73.797758540209912, 40.816872605840494 ], [ -73.797311891594049, 40.816336627501471 ], [ -73.797311891594049, 40.815711319439274 ], [ -73.797847869933079, 40.815800649162441 ], [ -73.798115859102595, 40.815532659992932 ], [ -73.799009156334307, 40.815532659992932 ], [ -73.800170442735521, 40.813924724975848 ], [ -73.800885080520899, 40.813835395252681 ], [ -73.801153069690415, 40.813210087190484 ], [ -73.801957037198946, 40.812674108851454 ], [ -73.803028993877007, 40.812495449405112 ], [ -73.803654301939204, 40.813031427744143 ], [ -73.803296983046508, 40.813567406083166 ], [ -73.803743631662371, 40.814103384422197 ], [ -73.806959501696525, 40.816961935563668 ], [ -73.806959501696525, 40.816336627501471 ], [ -73.806512853080676, 40.815532659992932 ], [ -73.805887545018479, 40.815175341100243 ], [ -73.805262236956281, 40.814550033038046 ], [ -73.805351566679448, 40.813746065529507 ], [ -73.804904918063599, 40.812674108851454 ], [ -73.804368939724569, 40.812495449405112 ], [ -73.803743631662371, 40.811959471066089 ], [ -73.803118323600174, 40.810708854941694 ], [ -73.801957037198946, 40.810351536049012 ], [ -73.801599718306264, 40.810708854941694 ], [ -73.800974410244066, 40.810708854941694 ], [ -73.801331729136749, 40.810172876602671 ], [ -73.800170442735521, 40.809994217156323 ], [ -73.799723794119672, 40.809726227986815 ], [ -73.798562507718444, 40.809726227986815 ], [ -73.793202724328182, 40.807224995738025 ], [ -73.791952108203787, 40.806778347122169 ], [ -73.791237470418423, 40.807046336291684 ], [ -73.79132680014159, 40.807671644353881 ], [ -73.790880151525741, 40.807314325461192 ], [ -73.79079082180256, 40.806689017398995 ], [ -73.790433502909877, 40.806063709336797 ], [ -73.790254843463543, 40.804991752658744 ], [ -73.790969481248908, 40.804187785150205 ], [ -73.792220097373303, 40.803919795980697 ], [ -73.793738702667213, 40.804277114873379 ], [ -73.794810659345259, 40.8054384012746 ], [ -73.795525297130638, 40.80597437961363 ], [ -73.795614626853805, 40.805706390444115 ], [ -73.795971945746487, 40.805706390444115 ], [ -73.796239934916002, 40.806063709336797 ], [ -73.798651837441625, 40.807046336291684 ], [ -73.801599718306264, 40.809011590201443 ], [ -73.803922291108705, 40.808564941585587 ], [ -73.804636928894084, 40.809190249647784 ], [ -73.806602182803843, 40.810262206325838 ], [ -73.80722749086604, 40.811155503557551 ], [ -73.808299447544087, 40.812048800789263 ], [ -73.809996712284345, 40.812942098020969 ], [ -73.815624484844122, 40.813478076359999 ], [ -73.816339122629486, 40.813924724975848 ], [ -73.817411079307547, 40.813567406083166 ], [ -73.820894938511216, 40.812942098020969 ], [ -73.825718743562447, 40.811512822450233 ], [ -73.82813064608807, 40.811423492727066 ], [ -73.829559921658799, 40.811155503557551 ], [ -73.830989197229542, 40.810262206325838 ], [ -73.831793164738087, 40.809368909094125 ], [ -73.832239813353937, 40.808118292969731 ], [ -73.832061153907588, 40.807314325461192 ], [ -73.831435845845391, 40.806510357952654 ], [ -73.832061153907588, 40.806063709336797 ], [ -73.831703835014906, 40.804902422935577 ], [ -73.833043780862468, 40.804902422935577 ], [ -73.835187694218575, 40.8054384012746 ], [ -73.836616969789318, 40.805617060720941 ], [ -73.83795691563688, 40.80695700656851 ], [ -73.83795691563688, 40.808207622692905 ], [ -73.838850212868593, 40.809368909094125 ], [ -73.840368818162503, 40.812048800789263 ], [ -73.840368818162503, 40.813388746636825 ], [ -73.839654180377138, 40.814192714145364 ], [ -73.83947552093079, 40.815979308608789 ], [ -73.840100828992988, 40.816872605840494 ], [ -73.840100828992988, 40.817765903072207 ], [ -73.838671553422245, 40.819373838089284 ], [ -73.83893954259176, 40.819999146151481 ], [ -73.838850212868593, 40.821160432552709 ], [ -73.839118202038108, 40.822589708123445 ], [ -73.839743510100305, 40.824286972863696 ], [ -73.840279488439336, 40.824733621479552 ], [ -73.841262115394215, 40.826877534835653 ], [ -73.842334072072262, 40.828306810406389 ], [ -73.841887423456413, 40.830808042655178 ], [ -73.838671553422245, 40.833487934350316 ], [ -73.839207531761275, 40.836435815214955 ], [ -73.839207531761275, 40.838937047463745 ], [ -73.83947552093079, 40.838847717740578 ], [ -73.839654180377138, 40.839741014972283 ], [ -73.840100828992988, 40.839651685249116 ], [ -73.839922169546639, 40.835542517983249 ], [ -73.85180302272839, 40.83420257213568 ], [ -73.8533216280223, 40.842331576944247 ], [ -73.848229833801554, 40.842956885006444 ], [ -73.845103293490567, 40.845458117255234 ], [ -73.843584688196657, 40.844118171407665 ], [ -73.841262115394215, 40.84072364192717 ], [ -73.838492893975911, 40.840902301373511 ], [ -73.837688926467365, 40.843135544452785 ], [ -73.836348980619803, 40.848138008950365 ], [ -73.835991661727121, 40.851621868154034 ], [ -73.835455683388091, 40.853140473447944 ], [ -73.834294396986863, 40.85456974901868 ], [ -73.832061153907588, 40.856356343482105 ], [ -73.830453218890511, 40.858500256838205 ], [ -73.828041316364903, 40.861180148533336 ], [ -73.8286666244271, 40.862162775488223 ], [ -73.830185229720996, 40.863949369951641 ], [ -73.833311770031983, 40.869398483065076 ], [ -73.834294396986863, 40.872346363929722 ], [ -73.834562386156378, 40.874400947562656 ], [ -73.834294396986863, 40.876276871749248 ], [ -73.833758418647847, 40.878063466212666 ], [ -73.832507802523452, 40.879939390399258 ], [ -73.828934613596601, 40.882351292924881 ], [ -73.82509343550025, 40.884137887388299 ], [ -73.820139251591158, 40.885510427950329 ] ] ] } } + +] +} diff --git a/example/src/components/QueryAtPoint.js b/example/src/components/QueryAtPoint.js new file mode 100644 index 0000000..d5c7a14 --- /dev/null +++ b/example/src/components/QueryAtPoint.js @@ -0,0 +1,91 @@ +import React from 'react'; +import { Text } from 'react-native'; +import MapboxGL from '@mapbox/react-native-mapbox-gl'; + +import BaseExamplePropTypes from './common/BaseExamplePropTypes'; +import Page from './common/Page'; +import Bubble from './common/Bubble'; + +import sheet from '../styles/sheet'; +import nycJSON from '../assets/nyc_geojson.json'; + +const styles = MapboxGL.StyleSheet.create({ + neighborhoods: { + fillAntialias: true, + fillColor: 'blue', + fillOutlineColor: 'black', + fillOpacity: 0.84, + }, + selectedNeighborhood: { + fillAntialias: true, + fillColor: 'green', + fillOpacity: 0.84, + }, +}); + +class QueryAtPoint extends React.Component { + static propTypes = { + ...BaseExamplePropTypes, + }; + + constructor (props) { + super(props); + this.state = this.emptyState; + this.onPress = this.onPress.bind(this); + } + + get emptyState () { + return { selectedGeoJSON: null, selectedCommunityDistrict: - 1}; + } + + async onPress (e) { + const { screenPointX, screenPointY } = e.properties; + + const featureCollection = await this._map.queryRenderedFeaturesAtPoint([ + screenPointX, + screenPointY, + ], null, ['nycFill']); + + if (featureCollection.features.length) { + this.setState({ + selectedGeoJSON: featureCollection, + selectedCommunityDistrict: featureCollection.features[0].properties.communityDistrict, + }); + } else { + this.setState(this.emptyState); + } + } + + render () { + return ( + + this._map = c} + onPress={this.onPress} + centerCoordinate={[-73.970895, 40.723279]} + style={sheet.matchParent} + styleURL={MapboxGL.StyleURL.Light}> + + + + + + {this.state.selectedGeoJSON ? ( + + + + ) : null} + + + + Press on a feature to highlight it. + + + ); + } +} + +export default QueryAtPoint; diff --git a/example/src/components/QueryWithRect.js b/example/src/components/QueryWithRect.js new file mode 100644 index 0000000..a8aaa6f --- /dev/null +++ b/example/src/components/QueryWithRect.js @@ -0,0 +1,114 @@ +import React from 'react'; +import { Text } from 'react-native'; +import MapboxGL from '@mapbox/react-native-mapbox-gl'; + +import BaseExamplePropTypes from './common/BaseExamplePropTypes'; +import Page from './common/Page'; +import Bubble from './common/Bubble'; + +import sheet from '../styles/sheet'; +import nycJSON from '../assets/nyc_geojson.json'; + +const styles = MapboxGL.StyleSheet.create({ + neighborhoods: { + fillAntialias: true, + fillColor: 'blue', + fillOutlineColor: 'black', + fillOpacity: 0.84, + }, + selectedNeighborhoods: { + fillAntialias: true, + fillColor: 'green', + fillOpacity: 0.84, + }, +}); + +class QueryWithRect extends React.Component { + static propTypes = { + ...BaseExamplePropTypes, + }; + + constructor (props) { + super(props); + + this.state = { + screenCoords: [], + selectedGeoJSON: null, + }; + + this.onPress = this.onPress.bind(this); + } + + async onPress (e) { + const { screenPointX, screenPointY } = e.properties; + + const screenCoords = Object.assign([], this.state.screenCoords); + screenCoords.push([screenPointX, screenPointY]); + + if (screenCoords.length === 2) { + const featureCollection = await this._map.queryRenderedFeaturesInRect( + this.getBoundingBox(screenCoords), + null, + ['nycFill'] + ); + + this.setState({ + screenCoords: [], + selectedGeoJSON: featureCollection.features.length ? featureCollection : null, + }); + } else { + this.setState({ screenCoords: screenCoords }); + } + } + + getBoundingBox (screenCoords) { + const maxX = Math.max(screenCoords[0][0], screenCoords[1][0]); + const minX = Math.min(screenCoords[0][0], screenCoords[1][0]); + const maxY = Math.max(screenCoords[0][1], screenCoords[1][1]); + const minY = Math.min(screenCoords[0][1], screenCoords[1][1]); + return [maxY, maxX, minY, minX]; + } + + get message () { + if (this.state.screenCoords.length === 1) { + return 'Press in one more location to close the rect'; + } else { + return 'Press in two different locations to form a rect to query with'; + } + } + + render () { + return ( + + this._map = c} + onPress={this.onPress} + centerCoordinate={[-73.970895, 40.723279]} + style={sheet.matchParent} + styleURL={MapboxGL.StyleURL.Light}> + + + + + + {this.state.selectedGeoJSON ? ( + + + + ) : null} + + + + + {this.message} + + + + ); + } +} + +export default QueryWithRect; diff --git a/ios/RCTMGL.xcodeproj/project.pbxproj b/ios/RCTMGL.xcodeproj/project.pbxproj index 791c543..dde637d 100644 --- a/ios/RCTMGL.xcodeproj/project.pbxproj +++ b/ios/RCTMGL.xcodeproj/project.pbxproj @@ -16,6 +16,7 @@ C43CA5061F507BCC000B9CB7 /* RCTMGLMapTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C43CA5051F507BCC000B9CB7 /* RCTMGLMapTouchEvent.m */; }; C43CA50A1F50C145000B9CB7 /* RCTMGLEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = C43CA5091F50C145000B9CB7 /* RCTMGLEvent.m */; }; C43CA50D1F53A4EF000B9CB7 /* RCTMGLEventTypes.m in Sources */ = {isa = PBXBuildFile; fileRef = C43CA50C1F53A4EF000B9CB7 /* RCTMGLEventTypes.m */; }; + C4C87A601F844C820064AE95 /* FilterParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C4C87A5F1F844C820064AE95 /* FilterParser.m */; }; C4D144421F4E16F600396F26 /* RCTMGL.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D144411F4E16F600396F26 /* RCTMGL.m */; }; C4D144431F4E16F600396F26 /* RCTMGL.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = C4D144401F4E16F600396F26 /* RCTMGL.h */; }; C4D1444C1F4E178100396F26 /* RCTMGLMapView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D1444B1F4E178100396F26 /* RCTMGLMapView.m */; }; @@ -82,6 +83,8 @@ C43CA5091F50C145000B9CB7 /* RCTMGLEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTMGLEvent.m; sourceTree = ""; }; C43CA50B1F53A4EF000B9CB7 /* RCTMGLEventTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCTMGLEventTypes.h; sourceTree = ""; }; C43CA50C1F53A4EF000B9CB7 /* RCTMGLEventTypes.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCTMGLEventTypes.m; sourceTree = ""; }; + C4C87A5E1F844C820064AE95 /* FilterParser.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FilterParser.h; sourceTree = ""; }; + C4C87A5F1F844C820064AE95 /* FilterParser.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FilterParser.m; sourceTree = ""; }; C4D1443D1F4E16F600396F26 /* libRCTMGL.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libRCTMGL.a; sourceTree = BUILT_PRODUCTS_DIR; }; C4D144401F4E16F600396F26 /* RCTMGL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RCTMGL.h; sourceTree = ""; }; C4D144411F4E16F600396F26 /* RCTMGL.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RCTMGL.m; sourceTree = ""; }; @@ -255,6 +258,8 @@ children = ( C4D144951F4E2F1100396F26 /* RCTMGLUtils.h */, C4D144961F4E2F1100396F26 /* RCTMGLUtils.m */, + C4C87A5E1F844C820064AE95 /* FilterParser.h */, + C4C87A5F1F844C820064AE95 /* FilterParser.m */, ); name = Utils; sourceTree = ""; @@ -447,6 +452,7 @@ C410D5D81F7AD0C100CF822A /* RCTMGLLightManager.m in Sources */, C4EAF17D1F6324970016DEE8 /* RCTSource.m in Sources */, C4FB11131F71EC9F0055AE1F /* RCTMGLSymbolLayerManager.m in Sources */, + C4C87A601F844C820064AE95 /* FilterParser.m in Sources */, C4EAF12A1F6084920016DEE8 /* CameraUpdateQueue.m in Sources */, C4FB11041F709CDC0055AE1F /* RCTMGLCircleLayer.m in Sources */, C435A5F71F587D9100824A30 /* ViewManager.m in Sources */, diff --git a/ios/RCTMGL/FilterParser.h b/ios/RCTMGL/FilterParser.h new file mode 100644 index 0000000..5d0e6fc --- /dev/null +++ b/ios/RCTMGL/FilterParser.h @@ -0,0 +1,15 @@ +// +// FilterParser.h +// RCTMGL +// +// Created by Nick Italiano on 10/3/17. +// Copyright © 2017 Mapbox Inc. All rights reserved. +// +#import + +@interface FilterParser : NSObject + ++ (NSSet*)FILTER_OPS; ++ (NSPredicate*)parse:(NSString*)filter; + +@end diff --git a/ios/RCTMGL/FilterParser.m b/ios/RCTMGL/FilterParser.m new file mode 100644 index 0000000..9d975a7 --- /dev/null +++ b/ios/RCTMGL/FilterParser.m @@ -0,0 +1,127 @@ +// +// FilterParser.m +// RCTMGL +// +// Created by Nick Italiano on 10/3/17. +// Copyright © 2017 Mapbox Inc. All rights reserved. +// + +#import "FilterParser.h" + +const int COMPOUND_FILTER_ALL = 3; +const int COMPOUND_FILTER_ANY = 2; +const int COMPOUND_FILTER_NONE = 1; + +@implementation FilterParser + ++ (NSSet*)FILTER_OPS +{ + return [[NSSet alloc] initWithArray:@[@"all", + @"any", + @"none", + @"in", + @"!in", + @"<=", + @"<", + @">=", + @">", + @"!=", + @"==", + @"has", + @"!has"]]; +} + ++ (NSPredicate*)parse:(NSString*)filter +{ + NSPredicate *completePredicate = nil; + + if (filter == nil) { + return nil; + } + + NSMutableArray *filterList = [[filter componentsSeparatedByString:@";"] mutableCopy]; + + if (filterList.count < 2) { + return nil; + } + + NSUInteger compound = 0; + NSString *filterTypeOp = filterList[0]; + + if ([filterTypeOp isEqualToString:@"all"]) { + compound = COMPOUND_FILTER_ALL; + } else if ([filterTypeOp isEqualToString:@"any"]) { + compound = COMPOUND_FILTER_ANY; + } else if ([filterTypeOp isEqualToString:@"none"]) { + compound = COMPOUND_FILTER_NONE; + } + + NSMutableArray *compoundStatement = [[NSMutableArray alloc] init]; + + if (compound > 0) { + [filterList removeObjectAtIndex:0]; + } + + while (filterList.count > 0) { + NSUInteger posPointer = 1; + + while (posPointer < filterList.count) { + if ([FilterParser.FILTER_OPS containsObject:filterList[posPointer]]) { + break; + } + posPointer++; + } + + NSMutableArray *currentFilters = [[filterList subarrayWithRange:NSMakeRange(0, posPointer)] mutableCopy]; + [filterList removeObjectsInArray:currentFilters]; + + NSString *op = [currentFilters objectAtIndex:0]; + [currentFilters removeObjectAtIndex:0]; + + NSPredicate *predicate = nil; + NSString *key = [currentFilters objectAtIndex:0]; + [currentFilters removeObjectAtIndex:0]; + + if ([op isEqualToString:@"in"]) { + predicate = [NSPredicate predicateWithFormat:@"%K IN %@", key, currentFilters]; + } else if ([op isEqualToString:@"!in"]) { + predicate = [NSPredicate predicateWithFormat:@"NOT %K IN %@", key, currentFilters]; + } else if ([op isEqualToString:@"<="]) { + predicate = [NSPredicate predicateWithFormat:@"%K <= %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@"<"]) { + predicate = [NSPredicate predicateWithFormat:@"%K < %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@">="]) { + predicate = [NSPredicate predicateWithFormat:@"%K >= %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@">"]) { + predicate = [NSPredicate predicateWithFormat:@"%K > %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@"!="]) { + predicate = [NSPredicate predicateWithFormat:@"%K != %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@"=="]) { + predicate = [NSPredicate predicateWithFormat:@"%K == %@", key, currentFilters[0]]; + } else if ([op isEqualToString:@"has"]) { + predicate = [NSPredicate predicateWithFormat:@"%K != nil", key]; + } else if ([op isEqualToString:@"!has"]) { + predicate = [NSPredicate predicateWithFormat:@"%K == nil", key]; + } + + if (compound > 0) { + [compoundStatement addObject:predicate]; + } else { + completePredicate = predicate; + } + } + + if (compound > 0) { + if (compound == COMPOUND_FILTER_ALL) { + return [[NSCompoundPredicate alloc] initWithType:NSAndPredicateType subpredicates:compoundStatement]; + } else if (compound == COMPOUND_FILTER_ANY) { + return [[NSCompoundPredicate alloc] initWithType:NSOrPredicateType subpredicates:compoundStatement]; + } else if (compound == COMPOUND_FILTER_NONE) { + return [[NSCompoundPredicate alloc] initWithType:NSNotPredicateType subpredicates:compoundStatement]; + } + } + + return completePredicate; +} + +@end diff --git a/ios/RCTMGL/RCTLayer.h b/ios/RCTMGL/RCTLayer.h index 3da8f71..e08dff5 100644 --- a/ios/RCTMGL/RCTLayer.h +++ b/ios/RCTMGL/RCTLayer.h @@ -30,8 +30,6 @@ @property (nonatomic, copy) NSNumber *maxZoomLevel; @property (nonatomic, copy) NSNumber *minZoomLevel; -+ (NSSet*)FILTER_OPS; - - (void)addToMap:(MGLStyle*)style; - (void)removeFromMap:(MGLStyle*)style; - (T)makeLayer:(MGLStyle*)style; diff --git a/ios/RCTMGL/RCTLayer.m b/ios/RCTMGL/RCTLayer.m index aed9eba..f679f9d 100644 --- a/ios/RCTMGL/RCTLayer.m +++ b/ios/RCTMGL/RCTLayer.m @@ -10,30 +10,10 @@ #import "RCTSource.h" #import "RCTMGLStyleValue.h" #import "RCTMGLUtils.h" - -const int COMPOUND_FILTER_ALL = 3; -const int COMPOUND_FILTER_ANY = 2; -const int COMPOUND_FILTER_NONE = 1; +#import "FilterParser.h" @implementation RCTLayer -+ (NSSet*)FILTER_OPS -{ - return [[NSSet alloc] initWithArray:@[@"all", - @"any", - @"none", - @"in", - @"!in", - @"<=", - @"<", - @">=", - @">", - @"!=", - @"==", - @"has", - @"!has"]]; -} - - (void)setMinZoomLevel:(NSNumber*)minZoomLevel { _minZoomLevel = minZoomLevel; @@ -197,95 +177,7 @@ const int COMPOUND_FILTER_NONE = 1; - (NSPredicate*)buildFilters { - NSPredicate *completePredicate = nil; - - if (_filter == nil) { - return nil; - } - - NSMutableArray *filterList = [[_filter componentsSeparatedByString:@";"] mutableCopy]; - - if (filterList.count == 0) { - return nil; - } - - NSUInteger compound = 0; - NSString *filterTypeOp = filterList[0]; - - if ([filterTypeOp isEqualToString:@"all"]) { - compound = COMPOUND_FILTER_ALL; - } else if ([filterTypeOp isEqualToString:@"any"]) { - compound = COMPOUND_FILTER_ANY; - } else if ([filterTypeOp isEqualToString:@"none"]) { - compound = COMPOUND_FILTER_NONE; - } - - NSMutableArray *compoundStatement = [[NSMutableArray alloc] init]; - - if (compound > 0) { - [filterList removeObjectAtIndex:0]; - } - - while (filterList.count > 0) { - NSUInteger posPointer = 1; - - while (posPointer < filterList.count) { - if ([RCTLayer.FILTER_OPS containsObject:filterList[posPointer]]) { - break; - } - posPointer++; - } - - NSMutableArray *currentFilters = [[filterList subarrayWithRange:NSMakeRange(0, posPointer)] mutableCopy]; - [filterList removeObjectsInArray:currentFilters]; - - NSString *op = [currentFilters objectAtIndex:0]; - [currentFilters removeObjectAtIndex:0]; - - NSPredicate *predicate = nil; - NSString *key = [currentFilters objectAtIndex:0]; - [currentFilters removeObjectAtIndex:0]; - - if ([op isEqualToString:@"in"]) { - predicate = [NSPredicate predicateWithFormat:@"%K IN %@", key, currentFilters]; - } else if ([op isEqualToString:@"!in"]) { - predicate = [NSPredicate predicateWithFormat:@"NOT %K IN %@", key, currentFilters]; - } else if ([op isEqualToString:@"<="]) { - predicate = [NSPredicate predicateWithFormat:@"%K <= %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@"<"]) { - predicate = [NSPredicate predicateWithFormat:@"%K < %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@">="]) { - predicate = [NSPredicate predicateWithFormat:@"%K >= %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@">"]) { - predicate = [NSPredicate predicateWithFormat:@"%K > %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@"!="]) { - predicate = [NSPredicate predicateWithFormat:@"%K != %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@"=="]) { - predicate = [NSPredicate predicateWithFormat:@"%K == %@", key, currentFilters[0]]; - } else if ([op isEqualToString:@"has"]) { - predicate = [NSPredicate predicateWithFormat:@"%K != nil", key]; - } else if ([op isEqualToString:@"!has"]) { - predicate = [NSPredicate predicateWithFormat:@"%K == nil", key]; - } - - if (compound > 0) { - [compoundStatement addObject:predicate]; - } else { - completePredicate = predicate; - } - } - - if (compound > 0) { - if (compound == COMPOUND_FILTER_ALL) { - return [[NSCompoundPredicate alloc] initWithType:NSAndPredicateType subpredicates:compoundStatement]; - } else if (compound == COMPOUND_FILTER_ANY) { - return [[NSCompoundPredicate alloc] initWithType:NSOrPredicateType subpredicates:compoundStatement]; - } else if (compound == COMPOUND_FILTER_NONE) { - return [[NSCompoundPredicate alloc] initWithType:NSNotPredicateType subpredicates:compoundStatement]; - } - } - - return completePredicate; + return [FilterParser parse:_filter]; } - (BOOL)_hasInitialized diff --git a/ios/RCTMGL/RCTMGLMapViewManager.h b/ios/RCTMGL/RCTMGLMapViewManager.h index f3cce52..b2ca19a 100644 --- a/ios/RCTMGL/RCTMGLMapViewManager.h +++ b/ios/RCTMGL/RCTMGLMapViewManager.h @@ -7,6 +7,7 @@ // #import "ViewManager.h" +@import Mapbox; @interface RCTMGLMapViewManager : ViewManager diff --git a/ios/RCTMGL/RCTMGLMapViewManager.m b/ios/RCTMGL/RCTMGLMapViewManager.m index 4c13eda..d198158 100644 --- a/ios/RCTMGL/RCTMGLMapViewManager.m +++ b/ios/RCTMGL/RCTMGLMapViewManager.m @@ -16,6 +16,7 @@ #import "RCTMGLUtils.h" #import "CameraStop.h" #import "CameraUpdateQueue.h" +#import "FilterParser.h" @interface RCTMGLMapViewManager() @end @@ -69,6 +70,72 @@ RCT_EXPORT_VIEW_PROPERTY(onMapChange, RCTBubblingEventBlock) #pragma mark - React Methods +RCT_EXPORT_METHOD(queryRenderedFeaturesAtPoint:(nonnull NSNumber*)reactTag + atPoint:(NSArray*)point + withFilter:(NSString*)filter + withLayerIDs:(NSArray*)layerIDs + resolver:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)reject) +{ + [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary *viewRegistry) { + id view = viewRegistry[reactTag]; + + if (![view isKindOfClass:[RCTMGLMapView class]]) { + RCTLogError(@"Invalid react tag, could not find RCTMGLMapView"); + return; + } + + RCTMGLMapView *reactMapView = (RCTMGLMapView*)view; + NSArray> *shapes = [reactMapView visibleFeaturesAtPoint:CGPointMake([point[0] floatValue], [point[1] floatValue]) + inStyleLayersWithIdentifiers:[NSSet setWithArray:layerIDs] + predicate:[FilterParser parse:filter]]; + + NSMutableArray *features = [[NSMutableArray alloc] init]; + for (int i = 0; i < shapes.count; i++) { + [features addObject:shapes[i].geoJSONDictionary]; + } + + resolve(@{ + @"data": @{ @"type": @"FeatureCollection", @"features": features } + }); + }]; +} + +RCT_EXPORT_METHOD(queryRenderedFeaturesInRect:(nonnull NSNumber*)reactTag + withBBox:(NSArray*)bbox + withFilter:(NSString*)filter + withLayerIDs:(NSArray*)layerIDs + resolver:(RCTPromiseResolveBlock)resolve + rejecter:(RCTPromiseRejectBlock)reject) +{ + [self.bridge.uiManager addUIBlock:^(__unused RCTUIManager *manager, NSDictionary *viewRegistry) { + id view = viewRegistry[reactTag]; + + if (![view isKindOfClass:[RCTMGLMapView class]]) { + RCTLogError(@"Invalid react tag, could not find RCTMGLMapView"); + return; + } + + RCTMGLMapView *reactMapView = (RCTMGLMapView*)view; + + // bbox[top, right, bottom, left] + CGFloat width = [bbox[1] floatValue] - [bbox[3] floatValue]; + CGFloat height = [bbox[0] floatValue] - [bbox[2] floatValue]; + CGRect rect = CGRectMake([bbox[3] floatValue], [bbox[2] floatValue], width, height); + + NSArray> *shapes = [reactMapView visibleFeaturesInRect:rect + inStyleLayersWithIdentifiers:[NSSet setWithArray:layerIDs] + predicate:[FilterParser parse:filter]]; + + NSMutableArray *features = [[NSMutableArray alloc] init]; + for (int i = 0; i < shapes.count; i++) { + [features addObject:shapes[i].geoJSONDictionary]; + } + + resolve(@{ @"data": @{ @"type": @"FeatureCollection", @"features": features }}); + }]; +} + RCT_EXPORT_METHOD(setCamera:(nonnull NSNumber*)reactTag withConfiguration:(nonnull NSDictionary*)config resolver:(RCTPromiseResolveBlock)resolve diff --git a/javascript/components/AbstractLayer.js b/javascript/components/AbstractLayer.js index 0acef66..f471954 100644 --- a/javascript/components/AbstractLayer.js +++ b/javascript/components/AbstractLayer.js @@ -1,6 +1,7 @@ /* eslint react/prop-types:0 */ import React from 'react'; import MapboxStyleSheet from '../utils/MapboxStyleSheet'; +import { getFilter } from '../utils'; class AbstractLayer extends React.Component { get baseProps () { @@ -13,29 +14,10 @@ class AbstractLayer extends React.Component { aboveLayerID: this.props.aboveLayerID, belowLayerID: this.props.belowLayerID, layerIndex: this.props.layerIndex, - filter: this.getFilter(), + filter: getFilter(this.props.filter), }; } - getFilter () { - if (!this.props.filter) { - return; - } - - let flattenedFilter = []; - for (let i = 0; i < this.props.filter.length; i++) { - const item = this.props.filter[i]; - - if (Array.isArray(item)) { - flattenedFilter = flattenedFilter.concat(item); - } else { - flattenedFilter.push(item); - } - } - - return flattenedFilter.join(';'); - } - getStyle () { if (!this.props.style) { return; diff --git a/javascript/components/MapView.js b/javascript/components/MapView.js index 9847ad4..693147a 100644 --- a/javascript/components/MapView.js +++ b/javascript/components/MapView.js @@ -8,6 +8,7 @@ import { isNumber, runNativeCommand, toJSONString, + getFilter, IS_ANDROID, } from '../utils'; @@ -217,33 +218,52 @@ class MapView extends React.Component { } /** - * [queryMapFeatures description] - * @return {[type]} [description] + * [queryRenderedFeaturesAtPoint description] + * @param {Array} coordinate - coordinate + * @param {Array} filter - filter + * @param {Array} layerIDs - layerIDs + * @return {FeatureCollection} */ - queryMapFeatures (geometry, filters, layerIDs) { - let args = [ - geometry, - filters || [], - layerIDs || [], - ]; - - if (IS_ANDROID) { - return new Promise ((resolve, reject) => { - const callbackID = Date.now(); - - const callbacks = { - success: (features) => resolve(features), - failure: (err) => reject(err), - }; - - this._callbackMap.set(callbackID, callbacks); - - args.unshift(callbackID); - runNativeCommand(NATIVE_MODULE_NAME, 'queryMapFeatures', args); - }); + async queryRenderedFeaturesAtPoint (coordinate, filter = [], layerIDs = []) { + if (!coordinate || coordinate.length < 2) { + throw new Error('Must pass in valid coordinate[lng, lat]'); } - return runNativeCommand(NATIVE_MODULE_NAME, 'queryMapFeatures', args); + const res = await this._runNativeCommand('queryRenderedFeaturesAtPoint', [ + coordinate, + getFilter(filter), + layerIDs, + ]); + + if (IS_ANDROID) { + return JSON.parse(res.data); + } + + return res.data; + } + + /** + * [queryRenderedFeaturesInRect description] + * @param {Array} bbox [description] + * @param {Array} filters [description] + * @param {Array} layerIDs [description] + * @return {FeatureCollection} + */ + async queryRenderedFeaturesInRect (bbox, filter = [], layerIDs = []) { + if (!bbox || bbox.length !== 4) { + throw new Error('Must pass in a valid bounding box[top, right, bottom, left]'); + } + const res = await this._runNativeCommand('queryRenderedFeaturesInRect', [ + bbox, + getFilter(filter), + layerIDs, + ]); + + if (IS_ANDROID) { + return JSON.parse(res.data); + } + + return res.data; } /** @@ -354,18 +374,19 @@ class MapView extends React.Component { cameraConfig = this._createStopConfig(config); } - let args = [cameraConfig]; + return this._runNativeCommand('setCamera', [cameraConfig]); + } + _runNativeCommand (methodName, args) { if (IS_ANDROID) { - return new Promise((resolve) => { + return new Promise ((resolve) => { const callbackID = '' + Date.now(); this._addAddAndroidCallback(callbackID, resolve); args.unshift(callbackID); - runNativeCommand(NATIVE_MODULE_NAME, 'setCamera', this._nativeRef, args); + runNativeCommand(NATIVE_MODULE_NAME, methodName, this._nativeRef, args); }); } - - return runNativeCommand(NATIVE_MODULE_NAME, 'setCamera', this._nativeRef, args); + return runNativeCommand(NATIVE_MODULE_NAME, methodName, this._nativeRef, args); } _createStopConfig (config = {}) { @@ -399,7 +420,7 @@ class MapView extends React.Component { } _onAndroidCallback (e) { - const callbackID = e.type; + const callbackID = e.nativeEvent.type; const callback = this._callbackMap.get(callbackID); if (!callback) { @@ -407,7 +428,7 @@ class MapView extends React.Component { } this._callbackMap.delete(callbackID); - callback.apply(null, e.payload); + callback.call(null, e.nativeEvent.payload); } _onPress (e) { diff --git a/javascript/utils/index.js b/javascript/utils/index.js index 0010d60..452a9c0 100644 --- a/javascript/utils/index.js +++ b/javascript/utils/index.js @@ -68,3 +68,22 @@ export function getIOSModuleName (moduleName) { export function toJSONString (json = '') { return JSON.stringify(json); } + +export function getFilter (filter) { + if (!filter) { + return ''; + } + + let flattenedFilter = []; + for (let i = 0; i < filter.length; i++) { + const item = filter[i]; + + if (Array.isArray(item)) { + flattenedFilter = flattenedFilter.concat(item); + } else { + flattenedFilter.push(item); + } + } + + return flattenedFilter.join(';'); +} diff --git a/package.json b/package.json index 70b34eb..57abdea 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@mapbox/react-native-mapbox-gl", "description": "A Mapbox GL react native module for creating custom maps", - "version": "6.0.0-alpha1", + "version": "6.0.0-alpha2", "author": "Bobby Sudekum", "main": "./javascript/index.js", "keywords": [