Repository: jamesward/koober Branch: master Commit: 3c370c60bbe7 Files: 82 Total size: 2.0 MB Directory structure: gitextract_o_p3sq4s/ ├── .gitignore ├── .travis.yml ├── Procfile ├── README.md ├── app.json ├── build.sbt ├── cassandra-server/ │ ├── build.sbt │ └── src/ │ └── main/ │ ├── resources/ │ │ └── cassandra.yaml │ └── scala/ │ └── CassandraServer.scala ├── demand-dashboard/ │ ├── app/ │ │ ├── Module.scala │ │ ├── assets/ │ │ │ ├── scripts/ │ │ │ │ └── getdemand.js │ │ │ └── stylesheets/ │ │ │ └── main.css │ │ ├── controllers/ │ │ │ └── HomeController.scala │ │ ├── services/ │ │ │ └── PredictionIO.scala │ │ └── views/ │ │ ├── dashboardAnalysis.scala.html │ │ ├── dashboardPrediction.scala.html │ │ ├── dashboardSectionHeader.scala.html │ │ ├── documentationData.scala.html │ │ ├── documentationModels.scala.html │ │ ├── documentationSectionHeader.scala.html │ │ ├── header.scala.html │ │ └── index.scala.html │ ├── build.sbt │ ├── conf/ │ │ ├── application.conf │ │ └── routes │ └── public/ │ ├── analysis.js │ ├── koober-training.js │ ├── main.css │ └── prediction.js ├── demo-data/ │ ├── build.sbt │ └── src/ │ ├── main/ │ │ └── scala/ │ │ ├── DemoData.scala │ │ ├── FakeDataSource.scala │ │ └── NewYorkDataSource.scala │ └── test/ │ └── scala/ │ ├── FakeDataSourceSpec.scala │ └── NewYorkDataSourceSpec.scala ├── flink-client/ │ ├── build.sbt │ └── src/ │ └── main/ │ ├── resources/ │ │ └── log4j.properties │ └── scala/ │ └── FlinkClient.scala ├── kafka-common/ │ ├── build.sbt │ └── src/ │ └── main/ │ └── scala/ │ └── helpers/ │ └── KafkaHelper.scala ├── kafka-server/ │ ├── build.sbt │ └── src/ │ └── main/ │ ├── resources/ │ │ └── log4j.properties │ └── scala/ │ └── KafkaServer.scala ├── kafka-to-cassandra/ │ ├── build.sbt │ └── src/ │ └── main/ │ ├── resources/ │ │ └── log4j.properties │ └── scala/ │ └── KafkaToCassandra.scala ├── pio-client/ │ ├── build.sbt │ └── src/ │ ├── main/ │ │ └── scala/ │ │ └── PioClient.scala │ └── test/ │ └── scala/ │ └── PioClientSpec.scala ├── pio-engine/ │ ├── build.sbt │ ├── engine.json │ ├── project/ │ │ └── assembly.sbt │ ├── src/ │ │ └── main/ │ │ └── scala/ │ │ ├── Algorithm.scala │ │ ├── AlgorithmGBTree.scala │ │ ├── Coder.scala │ │ ├── DataSource.scala │ │ ├── Engine.scala │ │ ├── Evaluation.scala │ │ ├── KooberUtil.scala │ │ ├── Preparator.scala │ │ ├── RandomForestAlgorithm.scala │ │ ├── RidgeRegressionAlgorithm.scala │ │ └── Serving.scala │ └── template.json ├── pio-s3/ │ ├── build.sbt │ └── src/ │ └── main/ │ └── scala/ │ └── pio/ │ └── s3/ │ ├── S3Models.scala │ └── StorageClient.scala ├── project/ │ ├── build.properties │ └── plugins.sbt ├── sbt ├── sbt-launch.jar ├── sbt.cmd ├── subproc.sh ├── weather-backfill/ │ └── weather-import.py └── webapp/ ├── app/ │ ├── Module.scala │ ├── controllers/ │ │ └── HomeController.scala │ ├── services/ │ │ └── Kafka.scala │ └── views/ │ ├── driver.scala.html │ └── rider.scala.html ├── build.sbt └── conf/ ├── application.conf └── routes ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ pio.log /target/ /*/target/ /project/project/ /.idea/ /logs/ /pio-engine/manifest.json /pio-engine/pio.log /pio-engine/pio.sbt /pio-engine/project/target/ /pio-engine/project/project/ /pio-engine/.idea/ *.iml ================================================ FILE: .travis.yml ================================================ language: scala jdk: - oraclejdk8 script: sbt test cache: directories: - $HOME/.ivy2/cache - $HOME/.sbt/boot sudo: false ================================================ FILE: Procfile ================================================ web: ./subproc.sh web train: ./subproc.sh train ================================================ FILE: README.md ================================================ Koober ---------------- An uber data pipeline sample app. Play Framework, Akka Streams, Kafka, Flink, Spark Streaming, and Cassandra. Start Kafka: ./sbt kafkaServer/run Web App: 1. Obtain an API key from [mapbox.com](https://www.mapbox.com/) 1. Start the Play web app: `MAPBOX_ACCESS_TOKEN=YOUR-MAPBOX-API-KEY ./sbt webapp/run` Try it out: 1. Open the driver UI: [http://localhost:9000/driver](http://localhost:9000/driver) 1. Open the rider UI: [http://localhost:9000/rider](http://localhost:9000/rider) 1. In the Rider UI, click on the map to position the rider 1. In the Driver UI, click on the rider to initiate a pickup Start Flink: 1. `./sbt flinkClient/run` 1. Initiate a few pickups and see the average pickup wait time change (in the stdout console for the Flink process) Start Cassandra: ./sbt cassandraServer/run Start the Spark Streaming process: 1. `./sbt kafkaToCassandra/run` 1. Watch all of the ride data be micro-batched from Kafka to Cassandra Setup PredictionIO Pipeline: 1. Setup PIO 2. Set the PIO Access Key: export PIO_ACCESS_KEY= 3. Start the PIO Pipeline: ./sbt pioClient/run Copy demo data into Kafka or PIO: For fake data, run: ./sbt "demoData/run fake " For New York data, run: ./sbt "demoData/run ny " Start the Demand Dashboard PREDICTIONIO_URL=http://asdf.com MAPBOX_ACCESS_TOKEN=YOUR_MAPBOX_TOKEN ./sbt demandDashboard/run ================================================ FILE: app.json ================================================ { "name": "koober", "keywords": [ "play-framework", "scala", "akka-streams", "kafka", "cassandra", "flink", "spark-streaming" ], "env": { "CRYPTO_SECRET": { "generator": "secret" } }, "addons": [ "heroku-kafka" ] } ================================================ FILE: build.sbt ================================================ name := "koober" lazy val commonSettings = Seq( scalaVersion := "2.11.8", libraryDependencies ++= Seq( "org.scalatest" %% "scalatest" % "3.0.1" % "test" ) ) lazy val kafkaServer = (project in file("kafka-server")).settings(commonSettings: _*) lazy val cassandraServer = (project in file("cassandra-server")).settings(commonSettings: _*) lazy val kafkaCommon = (project in file("kafka-common")).settings(commonSettings: _*) lazy val webapp = (project in file("webapp")).settings(commonSettings: _*).dependsOn(kafkaCommon).enablePlugins(PlayScala, SbtWeb) lazy val flinkClient = (project in file("flink-client")).settings(commonSettings: _*) lazy val kafkaToCassandra = (project in file("kafka-to-cassandra")).settings(commonSettings: _*).dependsOn(kafkaCommon) lazy val pioClient = (project in file("pio-client")).settings(commonSettings: _*).dependsOn(kafkaCommon) lazy val demoData = (project in file("demo-data")).settings(commonSettings: _*).dependsOn(kafkaCommon, pioClient) lazy val demandDashboard = (project in file("demand-dashboard")).settings(commonSettings: _*).enablePlugins(PlayScala, SbtWeb) lazy val pioS3 = (project in file("pio-s3")).settings(commonSettings: _*) lazy val pioEngine = (project in file("pio-engine")) ================================================ FILE: cassandra-server/build.sbt ================================================ libraryDependencies += "org.apache.cassandra" % "cassandra-all" % "3.9" ================================================ FILE: cassandra-server/src/main/resources/cassandra.yaml ================================================ # Cassandra storage config YAML cluster_name: 'Koober' commitlog_sync: periodic commitlog_sync_period_in_ms: 10000 partitioner: org.apache.cassandra.dht.Murmur3Partitioner endpoint_snitch: SimpleSnitch seed_provider: - class_name: org.apache.cassandra.locator.SimpleSeedProvider parameters: - seeds: "127.0.0.1" listen_address: localhost start_native_transport: true ================================================ FILE: cassandra-server/src/main/scala/CassandraServer.scala ================================================ import java.nio.file.Files import org.apache.cassandra.service.CassandraDaemon object CassandraServer extends App { System.setProperty("cassandra.config", "cassandra.yaml") private val tmpCassandraDirectory: String = Files.createTempDirectory("cassandra").toString println(s"using cassandra tmp directory: $tmpCassandraDirectory") System.setProperty("cassandra.storagedir", tmpCassandraDirectory) System.setProperty("cassandra-foreground", "true") val cassandraDaemon = new CassandraDaemon() cassandraDaemon.activate() } ================================================ FILE: demand-dashboard/app/Module.scala ================================================ import com.google.inject.AbstractModule import services.{PredictionIO, PredictionIOImpl} class Module extends AbstractModule { override def configure() = { bind(classOf[PredictionIO]).to(classOf[PredictionIOImpl]) } } ================================================ FILE: demand-dashboard/app/assets/scripts/getdemand.js ================================================ function getDemand() { // TODO: update demand value with actual predicted demand document.getElementById("demand-value").innerHTML = "1"; } ================================================ FILE: demand-dashboard/app/assets/stylesheets/main.css ================================================ /* Global */ * { font-family: "Avenir Next"; } /* Header */ .header { display: inline-block; width: 100%; height: 100px; background-color: #89E1D0; } .header h1 { font-size: 40px; } #logo-title { display: inline-flex; margin-left: 30px; height: 100%; } #logo-title img { margin: auto 10px auto 0; width: 50px; height: auto; } #dashboard-title { float: right; margin-right: 30px; height: 100%; } /* Dashboard */ .dashboard { display: inline-flex; margin-top: 100px; width: 100%; } /* Form */ #form-view { width: 50%; } #form-container { margin: auto; width: 300px; } .form-field { height: 40px; width: 100%; margin: 10px auto; background-color: #EEEEEE; border-radius: 5px; border: 1px solid #979797; } .form-field-icon { position: relative; width: 40px; height: 100%; border-radius: 5px 0 0 5px; border-right: 1px solid #979797; background-color: #D8D8D8; } .form-field-icon img { position: absolute; margin: auto; width: auto; height: 24px; top:0; right: 0; bottom:0; left: 0; } .form-field { display: inline-flex; } select, input { padding-left: 10px; width: 260px; outline: none; -webkit-appearance: none; -webkit-border-radius: 0px; border: none; border-radius: 0 5px 5px 0; font-size: 20px; font-weight: 500; background-color: #EEEEEE; color: #A9A9A9; } #latitude-field, #longitude-field { padding-left: 10px; width: 120px; outline: none; background-color: #EEEEEE; border: none; font-size: 20px; font-weight: 500; } #longitude-field { border-left: 1px solid #979797; border-radius: 0 5px 5px 0; } .form-button { display: table; margin: 10px auto; text-align: center; width: 150px; height: 40px; border-radius: 5px; border: 1px solid #979797; background-color: #89E1D0; color: black; } .form-button span { display: table-cell; vertical-align: middle; font-weight: bold; font-size: 20px; } .form-button:hover { background-color: #68C8B6; } /* Display */ #display-view { width: 50%; } #demand-card { display: block; margin: auto; width: 250px; height: 290px; border-radius: 10px; background-color: #D8D8D8; } #demand-card h2 { margin: 0; padding: 15px 0 10px; text-align: center; font-size: 30px; } #demand-container { display: table; margin: auto; width: 200px; height: 200px; border-radius: 8px; border: 1px solid #979797; text-align: center; background-color: #EEEEEE; } #demand-container span { display: table-cell; vertical-align: middle; font-size: 100px; } ================================================ FILE: demand-dashboard/app/controllers/HomeController.scala ================================================ package controllers import javax.inject._ import org.joda.time.DateTime import play.api.Configuration import play.api.libs.json.{Json, JsValue, Reads, Writes} import play.api.mvc.{Action, Controller} import services.PredictionIO import scala.concurrent.{ExecutionContext, Future} import scala.util.Random @Singleton class HomeController @Inject() (configuration: Configuration, predictionIO: PredictionIO)(implicit executionContext: ExecutionContext) extends Controller { implicit val dateWrites = Writes.jodaDateWrites("yyyy-MM-dd'T'HH:mm:ss.SSSZ") implicit val dateReads = Reads.jodaDateReads("yyyy-MM-dd'T'HH:mm:ss.SSSZ") lazy val mapboxAccessToken: String = configuration.getString("mapbox.access-token").get def index = Action { Ok(views.html.index()) } def header = Action { Ok(views.html.header()) } def documentationSectionHeader = Action { Ok(views.html.documentationSectionHeader()) } def documentationData = Action { Ok(views.html.documentationData()) } def documentationModels = Action { Ok(views.html.documentationModels()) } def dashboardSectionHeader = Action { Ok(views.html.dashboardSectionHeader()) } def dashboardAnalysis = Action { Ok(views.html.dashboardAnalysis(mapboxAccessToken)) } def dashboardPrediction = Action { Ok(views.html.dashboardPrediction(mapboxAccessToken)) } // todo: input checking and error handling def predict(eventTime: String, lat: Double, lng: Double, temperature: Double, clear: Int, fog: Int, rain: Int, snow: Int, hail: Int, thunder: Int, tornado: Int, algorithm:Int) = Action.async { var lngLatArray = makeCluster(lat, lng) val resultSeq = (0 to (lngLatArray(0).length - 1)).map(i => { var query = Json.obj( "eventTime" -> eventTime, "lat" -> lngLatArray(0)(i), "lng" -> lngLatArray(1)(i), "temperature" -> temperature, "clear" -> clear, "fog" -> fog, "rain" -> rain, "snow" -> snow, "hail" -> hail, "thunder" -> thunder, "tornado" -> tornado ) var prediction = predictionIO.predict(query) prediction.map { json => toGeoJson2(json, lngLatArray(0)(i), lngLatArray(1)(i), i, algorithm) } }) var result = Future.sequence(resultSeq) result.map { r => Ok(toGeoJsonCollection(r)) } } def analyze(algorithm: String, eventTime: String, coordinates: String) = Action.async { var coordinatesData = deserializeCoordinatesData(coordinates) val resultSeq = (0 to (coordinatesData.length - 1)).map(i => { var query = Json.obj( "eventTime" -> eventTime, "lat" -> coordinatesData(i)(0), "lng" -> coordinatesData(i)(1), "temperature" -> 20, "clear" -> 1, "fog" -> 0, "rain" -> 0, "snow" -> 0, "hail" -> 0, "thunder" -> 0, "tornado" -> 0 ) var prediction = predictionIO.predict(query) prediction.map { json => toGeoJsonForAlg(algorithm, json, coordinatesData(i)(1), coordinatesData(i)(0), i) } }) var result = Future.sequence(resultSeq) result.map { r => Ok(toGeoJsonCollection(r)) } } private def toGeoJsonForAlg(algorithm: String, json: JsValue, lat: Double, lon: Double, id: Int) = { var demand = (json \ "algorithms" \ algorithm).as[Double] Json.obj( "type" -> "Feature", "properties" -> Json.obj( "Primary ID" -> id, "demand" -> demand ), "geometry" -> Json.obj( "type" -> "Point", "coordinates" -> Json.arr(lon, lat) ) ) } private def toGeoJson2(json: JsValue, lat: Double, lon: Double, id: Int, alg: Int) = { var demand = (json \ "demand").as[Double] alg match { case 0 => demand = (json \ "demand").as[Double] case 1 => demand = (json \ "algorithms" \"algGBTree").as[Double] case 2 => demand = (json \ "algorithms" \"algRegression").as[Double] case 3 => demand = (json \ "algorithms" \"ridgeRegression").as[Double] case 4 => demand = (json \ "algorithms" \"randomForest").as[Double] case default => demand = (json \ "demand").as[Double] } Json.obj( "type" -> "Feature", "properties" -> Json.obj( "Primary ID" -> id, "demand" -> demand ), "geometry" -> Json.obj( "type" -> "Point", "coordinates" -> Json.arr(lon, lat) ) ) } private def toGeoJson(value: Double, lat: Double, lon: Double) = { Json.obj( "type" -> "Feature", "properties" -> Json.obj( "Primary ID" -> value, "demand" -> Random.nextInt(10) ), "geometry" -> Json.obj( "type" -> "Point", "coordinates" -> Json.arr(lon, lat) ) ) } private def toGeoJsonCollection(demands: IndexedSeq[JsValue]) = { Json.obj( "type" -> "FeatureCollection", "features" -> demands ) } def demand(lng: Double, lat: Double) = Action { val points = Seq.fill(50) { val newLng = lng + (0.1 * Random.nextDouble()) - 0.05 val newLat = lat + (0.1 * Random.nextDouble()) - 0.05 toGeoJson(1, newLat, newLng) } Ok( Json.obj( "type" -> "FeatureCollection", "crs" -> Json.obj( "type" -> "name", "properties" -> Json.obj( "name" -> "urn:ogc:def:crs:OGC:1.3:CRS84" ) ), "features" -> points ) ) } def makeCluster(lat:Double, lng:Double) : Array[Array[Double]] = { var lats = Array(lat, lat + 2*0.0016, lat + 0.0016, lat + 0.0016, lat + 0.0016, lat, lat, lat, lat, lat - 0.0016, lat - 0.0016, lat - 0.0016, lat - 2*0.0016) var lngs = Array(lng, lng, lng - 0.0016, lng, lng + 0.0016, lng - 2*0.0016, lng - 0.0016, lng + 0.0016, lng + 2*0.0016, lng - 0.0016, lng, lng + 0.0016, lng) Array(lats, lngs) } def deserializeCoordinatesData(coordinates:String): Array[Array[Double]] = { var tokens = coordinates.substring(2, coordinates.length-2).split("\\],\\[") var coordinatesArray:Array[Array[String]] = tokens.map(_.split(',')).toArray var coordinatesData = coordinatesArray.map( _.map { tmp => try { tmp.toDouble } catch { case _: NumberFormatException => 1.0 } }) coordinatesData } } ================================================ FILE: demand-dashboard/app/services/PredictionIO.scala ================================================ package services import javax.inject.{Inject, Singleton} import org.joda.time.DateTime import play.api.Configuration import play.api.libs.json.{JsValue, Json} import play.api.libs.ws.WSClient import scala.concurrent.{ExecutionContext, Future} trait PredictionIO { def predict(json: JsValue) : Future[JsValue] } @Singleton class PredictionIOImpl @Inject() (configuration: Configuration, wsClient: WSClient)(implicit executionContext: ExecutionContext) extends PredictionIO { val predictionIOUrl = configuration.getString("predictionio.url").get override def predict(json: JsValue) : Future[JsValue] = { wsClient.url(predictionIOUrl).post(json) .map { response => response.json } } } ================================================ FILE: demand-dashboard/app/views/dashboardAnalysis.scala.html ================================================ @(mapboxAccessToken: String) Analysis Dashboard

Dataset

dataset

Datetime

Time:
00:00-00:30

Actual Demand

Gradient Boosted Trees

Linear Regression with SGD

Ridge Regression

Neural Network

Random Forest

================================================ FILE: demand-dashboard/app/views/dashboardPrediction.scala.html ================================================ @(mapboxAccessToken: String) Prediction Dashboard

Datetime

date
time

Location

latitude

longitude

Weather

temperature

weather

Algorithm

algorithm

Map

================================================ FILE: demand-dashboard/app/views/dashboardSectionHeader.scala.html ================================================ Dashboard Section Header
================================================ FILE: demand-dashboard/app/views/documentationData.scala.html ================================================ Documentation Data

Data

New York City Taxi Data

Our website currently supports the Yellow Taxi Cab Dataset provided by NYC Taxi & Limousine Commission.

================================================ FILE: demand-dashboard/app/views/documentationModels.scala.html ================================================ Documentation Models

Models

Gradient-Boosted Trees

Gradient Boosted Trees is a prediction model that consists of a set of numerous decision produced in sequence. The set is produced iteratively by using the current ensemble of trees to predict values for the training data and comparing these predictions against the actual values. Based on the differences in predicted and actual values, a new tree is added to the ensemble to reduce the error. Gradient-Boosted Trees tend to have high bias but low variance.

Linear Regression with Stochastic Gradient Descent

Linear Regression is a prediction model in which the output is a linear combination of the inputs. Each of the one or more inputs, such as time or weather in the case of Koober, is assigned a weight in a linear regression such that the resulting function, a sum of the inputs' weights and values, is a line that best fits the training data. Stochastic Gradient Descent, or SGD, is a method that optimizes the regression by iteratively modifying the equation based on its gradient.

Neural Network

Neural network is a prediction model that attempts to mimic the structure of biological brains in order to learn from provided data. A neural network contains many small units called neurons. Each neuron has an activation strength and a number of other neurons that it is connected to. If the combined strength of incoming signals is large enough, the neuron will activate and send a signal to other neurons that it is connected to. The network is trained in an interative process called back propogation; some input is given to the input layer of the network, and the output layer is then read and compared against the actual value for the given input. The neurons are assigned error values, which correspond to their contribution to the output, and the error values are propogation back through the network. These error values are used to calculate a gradient for the network, which can then be used to correct the network via Stochastic Gradient Descent.

Random Forest

Random Forest is a prediction model that consists of a set of numerous decision trees produced in parallel. Each decision tree uses a random subset of the provided training data, making each tree unique. To predict an output, each decision tree gives a prediction, and the mean of these predictions is the prediction of the random forest. Random forests tend to have high variance but low

Ridge Regression

Ridge Regression is a prediction model that functions very similarly to linear regression, in that it models the output as a linear combination of the inputs. However, it differs from linear regression by atttempting to minimize the coefficient values themselves in addition to the error of the predicted values. The result is a model that has, compared to an equivalent linear regression, more bias but less variance.

================================================ FILE: demand-dashboard/app/views/documentationSectionHeader.scala.html ================================================ Documentation Section Header
logo

Documentation

================================================ FILE: demand-dashboard/app/views/header.scala.html ================================================ Header ================================================ FILE: demand-dashboard/app/views/index.scala.html ================================================ About
logo

About Koober

Koober is an open-source project that uses PredictionIO to predict taxi demand based on past usage and to analyze trends depending on time, location, and weather across different models. The dashboard integrates MapBox for data visualization on an interactive map. Koober currently supports data analysis of certain New York City locations.

Github
================================================ FILE: demand-dashboard/build.sbt ================================================ name := "demand-dashboard" libraryDependencies ++= Seq( ws, "org.webjars" % "jquery-ui" % "1.12.1", "org.webjars" % "jquery" % "3.1.1" ) pipelineStages := Seq(digest) ================================================ FILE: demand-dashboard/conf/application.conf ================================================ play.crypto.secret = "changeme" play.crypto.secret = ${?CRYPTO_SECRET} play.i18n.langs = ["en"] play.http.forwarded.trustedProxies = ["0.0.0.0/0", "::/0"] predictionio.url = ${PREDICTIONIO_URL} mapbox.access-token = ${MAPBOX_ACCESS_TOKEN} ================================================ FILE: demand-dashboard/conf/routes ================================================ # Routes # This file defines all application routes (Higher priority routes first) # ~~~~ GET / controllers.HomeController.index GET /header controllers.HomeController.header GET /documentation/header controllers.HomeController.documentationSectionHeader GET /documentation/data controllers.HomeController.documentationData GET /documentation/models controllers.HomeController.documentationModels GET /dashboard/header controllers.HomeController.dashboardSectionHeader GET /dashboard/analysis controllers.HomeController.dashboardAnalysis GET /dashboard/prediction controllers.HomeController.dashboardPrediction GET /predict controllers.HomeController.predict(eventTime: String, lat: Double, lng: Double, temperature: Double, clear: Int, fog: Int, rain: Int, snow: Int, hail: Int, thunder: Int, tornado: Int, algorithm: Int) GET /analyze controllers.HomeController.analyze(algorithm: String, eventTime: String, coordinates: String) GET /demand controllers.HomeController.demand(lng: Double, lat: Double) GET /assets/*file controllers.Assets.versioned(path="/public", file) ================================================ FILE: demand-dashboard/public/analysis.js ================================================ $(function() { // todo: use a default center based on data var mapCenter = [-73.9440917, 40.7682802]; var actualDemandMap = new mapboxgl.Map({ container: 'actual-demand-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var gradientBoostedTreesMap = new mapboxgl.Map({ container: 'gradient-boosted-trees-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var linearRegressionMap = new mapboxgl.Map({ container: 'linear-regression-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var ridgeRegressionMap = new mapboxgl.Map({ container: 'ridge-regression-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var neuralNetworkMap = new mapboxgl.Map({ container: 'neural-network-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var randomForestMap = new mapboxgl.Map({ container: 'random-forest-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); var algorithmMapNames = {"algGBTree":gradientBoostedTreesMap, "algRegression":linearRegressionMap, "ridgeRegression":ridgeRegressionMap, "randomForest":randomForestMap}; var coordinates = []; var updateAlgorithmMapSliderDelay = 200; //Milliseconds var updateAlgorithmMapInitialDelay = 1000; //Milliseconds $('#datetimepicker').datepicker({ format: 'mm/dd/yyyy', autoclose: true }); var startDate = new Date(2016, 5, 7); $('#datetimepicker').datepicker('setDate', startDate); $('#time-slider').change(function(e) { var input = parseInt(e.target.value); current_time = input; $('#time-slider-value').html(prettyNumbers(Math.floor(input / 2)) + ":" + prettyNumbers((input % 2) * 30) + "-" + (prettyNumbers(Math.floor((input + 1) / 2))) + ":" + prettyNumbers(((input + 1) % 2) * 30)) updateAllMaps(updateAlgorithmMapSliderDelay) }); function getTimeElements() { var datepickerTokens = $("#datetimepicker").val().split("/"); var month = parseInt(datepickerTokens[0])-1; var day = parseInt(datepickerTokens[1]); var year = parseInt(datepickerTokens[2]); var timeInterval = parseInt($('#time-slider').val()); var hour = parseInt(timeInterval / 2); var minute = 30 * (timeInterval - hour * 2); return [year, month, day, hour, minute]; } function getNormalizedTime() { [year, month, day, hour, minute] = getTimeElements(); return Date.UTC(year, month, day, hour, minute, 0, 0) / (1000 * 60 * 30); } function getDateTime() { [year, month, day, hour, minute] = getTimeElements(); return new Date(year, month, day, hour, minute, 0, 0); } function buildQueryString(algorithm, coordinates) { return "algorithm=" + algorithm + "&eventTime=" + getDateTime().toISOString() + "&coordinates=" + JSON.stringify(coordinates) } function prettyNumbers(number) { var result = number.toString() if (result.length == 1) { return "0" + result } return result } function filterBy(time) { var filters = ['==', 'time', time]; actualDemandMap.setFilter('actual', filters); } actualDemandMap.on('load', function() { actualDemandMap.addSource("actualDemand", { type: "geojson", data: geoJson }); actualDemandMap.addLayer({ "id": "actual", "type": "circle", "source": "actualDemand", "paint": { "circle-color": { property: 'demand', stops: [ [1.0, '#FADBD8'], [2.0, '#F1948A'], [3.0, '#E74C3C'], [4.0, '#B03A2E'], [5.0, '#78281F'] ] }, "circle-radius": { 'base': 8, "property": "demand", 'stops': [ [0.0, 8], [1.0, 10], [2.0, 12], [3.0, 14], [4.0, 16], [5.0, 20] ] }, 'circle-opacity': 1.0 } }); updateAllMaps(updateAlgorithmMapInitialDelay) }); function updateAllMaps(delay) { filterBy(getNormalizedTime().toString()) setTimeout(function() { for (var algorithmName in algorithmMapNames) { updateMapPredictions(algorithmMapNames[algorithmName],algorithmName); } }, delay); } function updateMapPredictions(algorithmMap, algorithmName) { updateCoordinates(); if (!coordinates || coordinates.length == 0) { return; } var sourceName = "source" + algorithmName; var layerName = "layer" + algorithmName; try { algorithmMap.removeSource(sourceName); algorithmMap.removeLayer(layerName); } catch (e) { // ignored } algorithmMap.addSource(sourceName, { type: "geojson", data: "/analyze?" + buildQueryString(algorithmName, coordinates) }); algorithmMap.addLayer({ "id": layerName, "type": "circle", "source": sourceName, "paint": { "circle-color": { property: 'demand', stops: [ [14.0, '#FADBD8'], [18.0, '#F1948A'], [20.0, '#E74C3C'], [24.0, '#B03A2E'], [30.0, '#78281F'] ] }, "circle-radius": { 'base': 8, "property": "demand", 'stops': [ [14.0, 8], [16.0, 10], [18.0, 12], [20.0, 14], [22.0, 16], [25.0, 18], [30.0, 20] ] }, 'circle-opacity': 1.0 } }); } function updateCoordinates() { var features = actualDemandMap.queryRenderedFeatures({ layers: ['actual'] }); coordinates = []; if (features) { for (var i = 0; i < features.length; i++) { coordinates.push(features[i].geometry.coordinates); } } } }); ================================================ FILE: demand-dashboard/public/koober-training.js ================================================ var geoJson = {"type": "FeatureCollection", "features": [{"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.77409362792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.973876953125, 40.76049041748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97454833984375, 40.74241256713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814482", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97322845458984, 40.752628326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98832702636719, 40.75935363769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00416564941406, 40.71297836303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96014404296875, 40.773223876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95838928222656, 40.778594970703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97596740722656, 40.68389129638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814338", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95542907714844, 40.77941131591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95542907714844, 40.77941131591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99475860595703, 40.74000930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96971893310547, 40.784698486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153900146484, 40.749061584472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.74409103393555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98237609863281, 40.73160934448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98110961914062, 40.77434158325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98530578613281, 40.758522033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97590637207031, 40.75571060180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96141052246094, 40.79625701904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9903793334961, 40.756900787353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97827911376953, 40.766510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00029754638672, 40.730770111083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9744873046875, 40.76277542114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.89042663574219, 40.74695587158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00288391113281, 40.76042556762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94432830810547, 40.780723571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98296356201172, 40.755802154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820556640625, 40.72798538208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.742008209228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97827911376953, 40.766510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97272491455078, 40.75840759277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98177337646484, 40.763118743896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.742008209228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98614501953125, 40.75935745239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78144073486328, 40.64487075805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95667266845703, 40.777992248535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95667266845703, 40.777992248535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00992584228516, 40.7147216796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00992584228516, 40.7147216796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9897232055664, 40.74161148071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98391723632812, 40.72139358520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94512176513672, 40.779998779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99870300292969, 40.74494171142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974594116211, 40.74932098388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97801971435547, 40.753990173339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98745727539062, 40.7442512512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86383819580078, 40.76987838745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.86383819580078, 40.76987838745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95336151123047, 40.77262878417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99665832519531, 40.75310134887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99665832519531, 40.75310134887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99677276611328, 40.74768829345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97323608398438, 40.76342010498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940826416016, 40.75541305541992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98197174072266, 40.75809097290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.88523864746094, 40.77302551269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98583221435547, 40.7408561706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96058654785156, 40.76982879638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99478149414062, 40.740211486816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99116516113281, 40.755531311035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98983001708984, 40.75663757324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96216583251953, 40.77920150756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00727844238281, 40.72833251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00270080566406, 40.744667053222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813917", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95531463623047, 40.78280258178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98967742919922, 40.741641998291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98007202148438, 40.77796173095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814209", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97928619384766, 40.63812255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814764", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00946807861328, 40.7381706237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97676086425781, 40.76481246948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661804199219, 40.72577667236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98128509521484, 40.74647903442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96393585205078, 40.756221771240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98303985595703, 40.73890686035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78816223144531, 40.647579193115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814377", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005126953125, 40.76205062866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005126953125, 40.76205062866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97892761230469, 40.76493835449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917938232422, 40.75550079345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814251", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98504638671875, 40.73212814331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813950", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99860382080078, 40.75020217895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99860382080078, 40.75020217895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97582244873047, 40.757598876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814809", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98356628417969, 40.75653839111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015045166016, 40.735137939453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94103240966797, 40.79247283935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9666748046875, 40.764373779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86341094970703, 40.7698974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813992", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96092987060547, 40.799461364746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97899627685547, 40.763301849365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00699615478516, 40.73299026489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96792602539062, 40.76274490356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9762954711914, 40.74794387817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98090362548828, 40.75362014770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00865936279297, 40.71114730834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9381332397461, 40.796730041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065948486328, 40.78242874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96797943115234, 40.762367248535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98516845703125, 40.72768020629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9781494140625, 40.76219940185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78820037841797, 40.64189147949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78820037841797, 40.64189147949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95851135253906, 40.77277374267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00617980957031, 40.723106384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95086669921875, 40.7748908996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9832992553711, 40.7559814453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98757934570312, 40.756317138671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073028564453, 40.75122833251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00119018554688, 40.74656295776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98217010498047, 40.775611877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.74261474609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97106170654297, 40.75265884399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98986053466797, 40.71699142456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98193359375, 40.77640151977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99044036865234, 40.73721694946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9803695678711, 40.77555465698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97370147705078, 40.74722671508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01717376708984, 40.70533752441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99107360839844, 40.74966049194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99651336669922, 40.75320816040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99364471435547, 40.74180603027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98274230957031, 40.73101043701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.7652702331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96482849121094, 40.7667236328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98274230957031, 40.73101043701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95663452148438, 40.78672790527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96558380126953, 40.76856994628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825439453125, 40.7570686340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94023895263672, 40.79372024536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00608825683594, 40.735286712646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87088012695312, 40.77373123168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808074951172, 40.745731353759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99388885498047, 40.75128936767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.74209213256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814695", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98461151123047, 40.74444580078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9661636352539, 40.767757415771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99162292480469, 40.750091552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97987365722656, 40.7392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98483276367188, 40.760780334472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99437713623047, 40.75254821777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814666", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00434112548828, 40.72557067871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0027847290039, 40.747215270996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813862", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.726890563964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99683380126953, 40.74764633178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99954986572266, 40.73870086669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98566436767578, 40.756351470947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00328826904297, 40.726646423339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97868347167969, 40.77238082885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01123809814453, 40.715728759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00660705566406, 40.70565414428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00349426269531, 40.73258590698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796081542969, 40.75471115112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994140625, 40.7512092590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417877197266, 40.7408561706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95921325683594, 40.77457046508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722961425781, 40.76832962036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722961425781, 40.76832962036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99580383300781, 40.716495513916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96797180175781, 40.80297088623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813916", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97245025634766, 40.74977111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78191375732422, 40.644718170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78191375732422, 40.644718170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.7430305480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96338653564453, 40.710208892822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98709106445312, 40.7390251159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98678588867188, 40.76005554199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814666", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97838592529297, 40.75807189941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99710845947266, 40.73586654663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01062774658203, 40.70949172973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00785064697266, 40.71196365356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9449462890625, 40.78733825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97379302978516, 40.764469146728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9537582397461, 40.78490447998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95304870605469, 40.776695251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226165771484, 40.76837921142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96111297607422, 40.7607307434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00381469726562, 40.7156982421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78939819335938, 40.64772033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814859", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97241973876953, 40.782318115234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00455474853516, 40.736061096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813966", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98899841308594, 40.75335693359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9629898071289, 40.77839279174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99746704101562, 40.75141143798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.863525390625, 40.77000045776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78238677978516, 40.64449691772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00631713867188, 40.739524841308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96272277832031, 40.772300720214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.007568359375, 40.727840423583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97557830810547, 40.752281188964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9586181640625, 40.77833557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00350189208984, 40.71561813354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98098754882812, 40.770660400390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00978088378906, 40.706268310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9642562866211, 40.76097869873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99140167236328, 40.72718048095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77953338623047, 40.647804260253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99258422851562, 40.73714065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77953338623047, 40.647804260253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96624755859375, 40.76163864135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78199768066406, 40.64476013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814628", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97430419921875, 40.75938034057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96229553222656, 40.75912094116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78199768066406, 40.64476013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814628", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9544448852539, 40.77811050415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94876861572266, 40.788978576660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97102355957031, 40.76156234741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9842529296875, 40.75505447387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814478", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99462127685547, 40.72596740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99986267089844, 40.73284912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98711395263672, 40.76853561401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813808", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95006561279297, 40.772003173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813879", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96272277832031, 40.75821304321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00574493408203, 40.72569274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97962188720703, 40.78635787963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98967742919922, 40.75773239135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98967742919922, 40.75773239135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78807830810547, 40.641483306884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9980239868164, 40.7236328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00169372558594, 40.730709075927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9564208984375, 40.77540969848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813815", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99038696289062, 40.68901443481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814428", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9564208984375, 40.77540969848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813815", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9723129272461, 40.67707061767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95299530029297, 40.78023910522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97936248779297, 40.76655960083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98554229736328, 40.747711181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94416046142578, 40.746421813964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00732421875, 40.727256774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97482299804688, 40.758968353271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78946685791016, 40.647159576416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909439086914, 40.750667572021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909439086914, 40.750667572021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9499282836914, 40.78032684326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9851303100586, 40.76781463623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881362915039, 40.748268127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814477", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9742660522461, 40.76261901855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95964813232422, 40.762672424316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96919250488281, 40.760894775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95519256591797, 40.76770782470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.975341796875, 40.7581672668457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99403381347656, 40.732810974121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052978515625, 40.748207092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814391", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98400115966797, 40.775413513183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95459747314453, 40.76993179321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98736572265625, 40.73316192626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.780723571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.780723571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9705581665039, 40.75217819213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99267578125, 40.76337814331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00021362304688, 40.73782730102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814296", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.74570083618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563934326172, 40.760284423828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98599243164062, 40.72262954711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814286", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98890686035156, 40.721656799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97328186035156, 40.75251007080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814630", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.781959533691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99713134765625, 40.72066879272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98526000976562, 40.75953674316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9913101196289, 40.75606155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796081542969, 40.7379264831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98017120361328, 40.75439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9760513305664, 40.757633209228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97074127197266, 40.75789260864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00334930419922, 40.714420318603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96456909179688, 40.7730598449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793701171875, 40.72333908081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98482513427734, 40.75944519042969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01168823242188, 40.70798873901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98139190673828, 40.7498664855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96819305419922, 40.80073165893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98733520507812, 40.7359733581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96106719970703, 40.76897048950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95391082763672, 40.774967193603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96867370605469, 40.75751876831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98851013183594, 40.769100189208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729248046875, 40.773956298828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97837829589844, 40.75233459472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815019", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98999786376953, 40.738441467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98695373535156, 40.76620101928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9576416015625, 40.67121887207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98161315917969, 40.77375793457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027038574219, 40.76565933227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98346710205078, 40.765838623046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9851303100586, 40.72774887084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79031372070312, 40.643680572509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00775909423828, 40.70494079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00636291503906, 40.74482727050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.768680572509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00813293457031, 40.73881530761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814532", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96568298339844, 40.75919723510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98150634765625, 40.780723571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98182678222656, 40.7490234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98171997070312, 40.767433166503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97041320800781, 40.75218200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01465606689453, 40.714202880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97062683105469, 40.76292037963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98147583007812, 40.78007888793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00357818603516, 40.74223327636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99819946289062, 40.75084686279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97657012939453, 40.76054000854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97613525390625, 40.75138473510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99349212646484, 40.724300384521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99906158447266, 40.73427963256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95446014404297, 40.76974868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97832489013672, 40.74152755737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97649383544922, 40.739715576171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97649383544922, 40.739715576171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00547790527344, 40.73976516723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96459197998047, 40.7606201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.001220703125, 40.731224060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98323059082031, 40.7616081237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98100280761719, 40.735870361328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95050811767578, 40.78224563598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96805572509766, 40.800662994384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98788452148438, 40.77013397216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881820678711, 40.731788635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98920440673828, 40.71652603149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96005249023438, 40.76640701293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98051452636719, 40.7217903137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96949768066406, 40.763057708740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86282348632812, 40.76899719238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813964", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00975799560547, 40.712825775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00975799560547, 40.712825775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00746154785156, 40.74306106567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854965209961, 40.7630500793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99459838867188, 40.75020980834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814332", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97289276123047, 40.75585174560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99136352539062, 40.74951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814339", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98853302001953, 40.74599075317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96576690673828, 40.76282501220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797821044922, 40.745811462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815084", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95213317871094, 40.784019470214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98693084716797, 40.76430130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814525", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97370147705078, 40.76346206665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399017333984, 40.7130126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9729995727539, 40.755619049072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86331939697266, 40.7697639465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9748306274414, 40.75775909423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97238159179688, 40.75916290283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8643798828125, 40.770389556884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9751205444336, 40.75257110595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99240112304688, 40.74890899658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95378875732422, 40.77110290527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9821548461914, 40.74870681762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092864990234, 40.72798156738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97086334228516, 40.763954162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0122299194336, 40.70341110229492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99139404296875, 40.74987030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.978515625, 40.74514389038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87088012695312, 40.77375411987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97857666015625, 40.78594970703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814332", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798583984375, 40.78605270385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94856262207031, 40.77376937866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.71883010864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95813751220703, 40.773040771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98046875, 40.76497268676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97013092041016, 40.764381408691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98644256591797, 40.760276794433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98941802978516, 40.719093322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813820", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.771568298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96220397949219, 40.80536651611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98098754882812, 40.770591735839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98854064941406, 40.7435188293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227142333984, 40.73799514770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940063476562, 40.761531829833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98150634765625, 40.768585205078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95068359375, 40.771366119384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798583984375, 40.74338150024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97938537597656, 40.78660583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97930908203125, 40.78654861450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815047", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898681640625, 40.77532958984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97567749023438, 40.744911193847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97567749023438, 40.744911193847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9721450805664, 40.75941467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95213317871094, 40.77735137939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9834213256836, 40.77558898925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96926879882812, 40.798641204833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97985076904297, 40.739383697509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97985076904297, 40.739383697509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99329376220703, 40.74740982055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815007", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98816680908203, 40.743038177490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98816680908203, 40.743038177490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97311401367188, 40.74412536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9937744140625, 40.75189208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.76201248168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9504623413086, 40.716548919677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814425", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01336669921875, 40.7075309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.89173126220703, 40.75497817993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97538757324219, 40.75286865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00267028808594, 40.7393684387207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94767761230469, 40.7713508605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01219177246094, 40.702613830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137878417969, 40.739830017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137115478516, 40.7236213684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137115478516, 40.7236213684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00292205810547, 40.760433197021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98849487304688, 40.77859115600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994873046875, 40.73835754394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95958709716797, 40.813804626464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86344909667969, 40.769893646240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98248291015625, 40.73121643066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9888687133789, 40.72273254394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769515991211, 40.77997970581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97779083251953, 40.75478744506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86481475830078, 40.77033233642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9934310913086, 40.75236129760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814670", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99156951904297, 40.74979019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98523712158203, 40.753517150878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01370239257812, 40.707725524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98829650878906, 40.723388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97262573242188, 40.744972229003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95941162109375, 40.76319122314453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95753479003906, 40.781005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95753479003906, 40.781005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994140625, 40.74658966064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99752044677734, 40.75143051147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638916015625, 40.75114059448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99059295654297, 40.745670318603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97418975830078, 40.76253128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.967041015625, 40.7613410949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97564697265625, 40.74102783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00640106201172, 40.73959732055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96197509765625, 40.7738151550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96197509765625, 40.7738151550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9686508178711, 40.767452239990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814428", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98487854003906, 40.77500915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97356414794922, 40.738277435302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97356414794922, 40.738277435302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86371612548828, 40.769805908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99826049804688, 40.745208740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95207977294922, 40.783023834228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79015350341797, 40.64558410644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98197937011719, 40.768741607666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95823669433594, 40.71341323852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813995", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01016235351562, 40.7061653137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814580", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320007324219, 40.6773567199707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99581146240234, 40.74423599243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99394226074219, 40.751338958740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0094223022461, 40.7260627746582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0094223022461, 40.7260627746582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96047973632812, 40.58925247192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.005126953125, 40.71892166137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95189666748047, 40.74602127075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97567749023438, 40.74523162841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9939956665039, 40.75120162963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.730167388916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.76851272583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99683380126953, 40.762752532958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9826431274414, 40.77208709716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97067260742188, 40.79851531982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99066162109375, 40.771766662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98988342285156, 40.752742767333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97463989257812, 40.753501892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97463989257812, 40.753501892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01029205322266, 40.711368560791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96804809570312, 40.75563049316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99754333496094, 40.75712585449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86345672607422, 40.7697639465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99383544921875, 40.7516975402832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.75360870361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95587158203125, 40.77587127685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99761962890625, 40.7336311340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99761962890625, 40.7336311340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96119689941406, 40.768856048583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9740982055664, 40.73984146118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934173583984, 40.7529296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95113372802734, 40.777854919433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97865295410156, 40.745365142822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.999267578125, 40.73926544189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814485", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95504760742188, 40.77730941772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99855041503906, 40.6768913269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98670959472656, 40.74262619018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97784423828125, 40.78887939453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98545837402344, 40.75878143310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96038818359375, 40.778778076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98171997070312, 40.74663543701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00276947021484, 40.75614929199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98235321044922, 40.77743911743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0059814453125, 40.7352294921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9710922241211, 40.750911712646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.76538848876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97502136230469, 40.75558090209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99115753173828, 40.76023864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98127746582031, 40.7414665222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813917", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9479751586914, 40.79853057861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9744873046875, 40.75584411621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813966", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98831939697266, 40.758949279785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98137664794922, 40.770896911621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.970458984375, 40.79375457763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.977294921875, 40.755367279052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00822448730469, 40.72258758544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9800033569336, 40.7431526184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98375701904297, 40.73408126831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98660278320312, 40.73963928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00431823730469, 40.71977996826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813854", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98038482666016, 40.77546310424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00239562988281, 40.745201110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813916", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00677490234375, 40.74338150024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.74987030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.80204010009766, 40.664669036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98892974853516, 40.72312927246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98818969726562, 40.73775100708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95250701904297, 40.80329132080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95674896240234, 40.767330169677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00578308105469, 40.70634841918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97937774658203, 40.76710891723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96102905273438, 40.77250289916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98072052001953, 40.779945373535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98921966552734, 40.726505279541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9739761352539, 40.7475700378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9739761352539, 40.7475700378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95436096191406, 40.764076232910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95037841796875, 40.77967834472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97677612304688, 40.745304107666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99454498291016, 40.75063705444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152923583984, 40.77880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814094", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00708770751953, 40.71601104736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95095825195312, 40.78335952758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98694610595703, 40.72244644165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99464416503906, 40.75022506713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814322", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98694610595703, 40.753421783447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96014404296875, 40.770362854003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94998168945312, 40.77614974975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814294", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94606018066406, 40.775508880615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99974822998047, 40.733211517333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814572", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98594665527344, 40.74757385253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95437622070312, 40.717041015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95295715332031, 40.82349395751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00797271728516, 40.72593688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316192626953, 40.69342803955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249053955078, 40.77558135986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9972152709961, 40.71397399902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99710083007812, 40.762821197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9773941040039, 40.775020599365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814600", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93475341796875, 40.714500427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93475341796875, 40.714500427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95177459716797, 40.76959991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00627899169922, 40.73316955566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86378479003906, 40.76953887939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97688293457031, 40.78784942626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97688293457031, 40.78784942626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847412109375, 40.74821853637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86322784423828, 40.76996994018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93953704833984, 40.74822998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99066925048828, 40.74443435668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97113037109375, 40.7514533996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814242", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9648666381836, 40.77543640136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98986053466797, 40.73834991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97125244140625, 40.7578010559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97125244140625, 40.7578010559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98285675048828, 40.77702713012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98815155029297, 40.72324752807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.00324249267578, 40.7252082824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00845336914062, 40.71424102783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9672622680664, 40.763404846191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99159240722656, 40.68503952026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359893798828, 40.742576599121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95561981201172, 40.7823600769043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98280334472656, 40.76262664794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9827651977539, 40.73971939086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95228576660156, 40.77700424194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99336242675781, 40.75251770019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134063720703, 40.734947204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99934387207031, 40.72661209106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442840576172, 40.74568557739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00279235839844, 40.72859191894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96631622314453, 40.80465316772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814961", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698974609375, 40.790191650390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00749969482422, 40.71558380126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99181365966797, 40.75019836425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01261901855469, 40.702232360839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95323181152344, 40.765010833740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9939956665039, 40.756683349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95291137695312, 40.79849624633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98481750488281, 40.75859832763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96886444091797, 40.78651809692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95671081542969, 40.77482223510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808349609375, 40.767601013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808349609375, 40.767601013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86335754394531, 40.76997375488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99494171142578, 40.74797821044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97840881347656, 40.76056671142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.88524627685547, 40.77293014526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97456359863281, 40.75077819824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97518157958984, 40.758216857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751831054688, 40.761226654052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97848510742188, 40.76195526123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99109649658203, 40.7182731628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.73163986206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134063720703, 40.76005554199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815096", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.969970703125, 40.7578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78108978271484, 40.6450309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9780502319336, 40.75447082519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9946060180664, 40.74563980102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99126434326172, 40.75077438354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98887634277344, 40.718868255615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955871582031, 40.75663757324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96499633789062, 40.772308349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99520111083984, 40.71751022338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99961853027344, 40.74903106689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94657897949219, 40.711463928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96350860595703, 40.75745391845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95584869384766, 40.77622604370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98090362548828, 40.77436828613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9913330078125, 40.730220794677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97052001953125, 40.75491714477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9866714477539, 40.761688232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9610595703125, 40.77513122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00209045410156, 40.740264892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841857910156, 40.764305114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814476", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99130249023438, 40.750213623046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00279998779297, 40.723594665527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87308502197266, 40.77413558959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98542785644531, 40.72700500488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86357116699219, 40.76945877075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95635986328125, 40.76797866821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99274444580078, 40.76327896118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98292541503906, 40.76900863647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99500274658203, 40.75934982299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815005", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86270904541016, 40.768821716308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98931121826172, 40.74308776855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99700164794922, 40.72541046142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00334930419922, 40.727291107177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0022201538086, 40.729461669921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97381591796875, 40.74312973022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747085571289, 40.75576400756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759750366211, 40.75791549682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97078704833984, 40.76398849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96263885498047, 40.76681137084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814412", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99671173095703, 40.723121643066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99955749511719, 40.71849822998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99955749511719, 40.71849822998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893798828125, 40.757625579833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808837890625, 40.78355407714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95787048339844, 40.78229904174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95342254638672, 40.74480056762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815102", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98229217529297, 40.77716064453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95233154296875, 40.77672576904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808074951172, 40.729270935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00704956054688, 40.743751525878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814625", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95325469970703, 40.77578353881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813958", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95325469970703, 40.77578353881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813958", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96245574951172, 40.778690338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9997787475586, 40.753639221191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9897232055664, 40.755550384521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00048828125, 40.72737503051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813958", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00789642333984, 40.705665588378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99823760986328, 40.74048614501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0022201538086, 40.75052261352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99602508544922, 40.73866271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98131561279297, 40.78102111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9897232055664, 40.739864349365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.979736328125, 40.75468826293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97145080566406, 40.750221252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9911880493164, 40.75115966796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9991455078125, 40.72777557373047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92318725585938, 40.70675277709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.739017486572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9755630493164, 40.792057037353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96204376220703, 40.80048751831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99642181396484, 40.72380065917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9537124633789, 40.76708984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.88530731201172, 40.77302169799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814457", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98199462890625, 40.77096939086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00238800048828, 40.73960876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9556655883789, 40.7765998840332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814819335938, 40.738929748535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97360229492188, 40.75291061401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97591400146484, 40.760616302490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844909667969, 40.76666259765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99654388427734, 40.72526168823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.74518966674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814430", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96244049072266, 40.75883102416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98452758789062, 40.736419677734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316955566406, 40.750518798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9583740234375, 40.760704040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9568099975586, 40.767433166503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815444946289, 40.73291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231842041016, 40.810298919677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98882293701172, 40.741783142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97281646728516, 40.755767822265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98690795898438, 40.750877380371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114776611328, 40.774391174316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99251556396484, 40.75855255126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.005859375, 40.70925521850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808349609375, 40.741939544677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97978210449219, 40.76559066772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97978210449219, 40.76559066772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97019958496094, 40.75654220581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95144653320312, 40.71404266357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9872817993164, 40.72904968261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814322", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98212432861328, 40.73134994506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00494384765625, 40.723331451416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00914764404297, 40.71364212036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99129486083984, 40.74972152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9591293334961, 40.77743148803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741912841797, 40.741661071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96131896972656, 40.76457214355469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99838256835938, 40.72454833984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0135269165039, 40.709354400634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98213958740234, 40.774715423583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.75843048095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97061157226562, 40.76237106323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98956298828125, 40.76258087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98190307617188, 40.74045944213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99656677246094, 40.74815368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814204", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95353698730469, 40.776065826416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96537780761719, 40.77191925048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808120727539, 40.765174865722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.983642578125, 40.756072998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01205444335938, 40.70795822143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96387481689453, 40.765296936035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96336364746094, 40.77214050292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98170471191406, 40.76462173461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99779510498047, 40.735877990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96687316894531, 40.76066589355469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95877075195312, 40.81529235839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333190917969, 40.720184326171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814286", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99922180175781, 40.72787094116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814246", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.73887634277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98251342773438, 40.777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98251342773438, 40.777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00462341308594, 40.72401809692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97671508789062, 40.75990676879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97904968261719, 40.76414489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94680786132812, 40.77621841430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616790771484, 40.752403259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98690795898438, 40.74216842651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9481430053711, 40.78988265991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01543426513672, 40.71037292480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99658203125, 40.7293815612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98199462890625, 40.76316833496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.015869140625, 40.71503829956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906997680664, 40.756126403808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99976348876953, 40.72356033325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98041534423828, 40.76030349731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99178314208984, 40.73817443847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814361", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98849487304688, 40.72149658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813899", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00008392333984, 40.72682189941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814241", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992156982422, 40.73430633544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814792", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249816894531, 40.7510986328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9541244506836, 40.78116989135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97814178466797, 40.745731353759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00432586669922, 40.707603454589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98111724853516, 40.748680114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98111724853516, 40.748680114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00386047363281, 40.74215316772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9789047241211, 40.74582290649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00003814697266, 40.73054122924805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99076843261719, 40.73442459106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99076843261719, 40.73442459106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98086547851562, 40.75094223022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97821807861328, 40.74844741821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97135162353516, 40.7979736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814992", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98869323730469, 40.74562454223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94860076904297, 40.692588806152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00543212890625, 40.713829040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9805908203125, 40.73040008544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95084381103516, 40.770668029785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9915771484375, 40.735130310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95247650146484, 40.78647994995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99986267089844, 40.725311279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99674987792969, 40.6974983215332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97230529785156, 40.76228713989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8734130859375, 40.77402114868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99983978271484, 40.76158142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78317260742188, 40.64682388305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99017333984375, 40.756282806396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94816589355469, 40.78287124633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.719932556152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.0074462890625, 40.74327087402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98950958251953, 40.757118225097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98307037353516, 40.744564056396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814296", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932632446289, 40.752525329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97721099853516, 40.77437973022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97355651855469, 40.75020980834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99777221679688, 40.72147750854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814761", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.748661041259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00767517089844, 40.7409782409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95629119873047, 40.77861022949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00997161865234, 40.705833435058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8631820678711, 40.770259857177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98660278320312, 40.728878021240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97087097167969, 40.758724212646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97212982177734, 40.76243209838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00745391845703, 40.71558380126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.74755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97265625, 40.78068542480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96292877197266, 40.7584114074707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99456024169922, 40.75425720214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97332000732422, 40.762245178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9508285522461, 40.77912521362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94912719726562, 40.777130126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97084045410156, 40.76430130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9959716796875, 40.76728439331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814335", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9959716796875, 40.76728439331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814335", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95559692382812, 40.77973937988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00588989257812, 40.74544143676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96150970458984, 40.76057052612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96240997314453, 40.7564582824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088836669922, 40.74726104736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97467041015625, 40.782997131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98694610595703, 40.73964309692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98187255859375, 40.758060455322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.986328125, 40.740440368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93585205078125, 40.79977035522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95581817626953, 40.76401138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95442199707031, 40.76996994018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813808", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00421142578125, 40.707420349121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9905014038086, 40.751068115234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99117279052734, 40.749488830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96774291992188, 40.80297088623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.747989654541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97798156738281, 40.764923095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96516418457031, 40.76919174194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94904327392578, 40.695308685302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94637298583984, 40.77690124511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813815", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9844970703125, 40.74281692504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01258087158203, 40.70208740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96894836425781, 40.76163101196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00660705566406, 40.74394989013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814001", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86290740966797, 40.76871871948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98182678222656, 40.76813888549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98912811279297, 40.76586151123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97828674316406, 40.76264190673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99152374267578, 40.7393798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815673828125, 40.72842025756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97498321533203, 40.75101852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698974609375, 40.75217056274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97863006591797, 40.75218200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97452545166016, 40.788326263427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01651000976562, 40.704795837402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95516967773438, 40.777198791503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95271301269531, 40.780338287353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94141387939453, 40.79200744628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813994", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95781707763672, 40.7652702331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97985076904297, 40.743431091308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78218841552734, 40.64462661743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99079132080078, 40.771358489990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99800109863281, 40.76577377319336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00434875488281, 40.70744323730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679138183594, 40.753719329833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78400421142578, 40.646236419677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00109100341797, 40.73141860961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95211029052734, 40.69319152832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98323059082031, 40.78163146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98924255371094, 40.763038635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9614028930664, 40.764625549316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98086547851562, 40.74205780029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00721740722656, 40.70631790161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96539306640625, 40.765716552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99198150634766, 40.759368896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9903564453125, 40.75920486450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78988647460938, 40.647308349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814572", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00105285644531, 40.73165512084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99554443359375, 40.764610290527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97560119628906, 40.73244094848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96512603759766, 40.76639175415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98519134521484, 40.761962890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86345672607422, 40.769840240478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729476928711, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876937866211, 40.73841857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814215", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98702239990234, 40.73981857299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98702239990234, 40.73981857299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97926330566406, 40.75297927856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99409484863281, 40.751136779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97418975830078, 40.75014877319336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815057", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9864730834961, 40.752952575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98216247558594, 40.77568435668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813863", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88540649414062, 40.77310562133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96859741210938, 40.75497055053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94938659667969, 40.77679443359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97516632080078, 40.7823486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97210693359375, 40.764747619628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00369262695312, 40.74738311767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00369262695312, 40.74738311767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747085571289, 40.7559814453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9267349243164, 40.86574935913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00199127197266, 40.72639846801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97891235351562, 40.744544982910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8733901977539, 40.77397918701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98274230957031, 40.73139190673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99090576171875, 40.7307014465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99342346191406, 40.72748565673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99342346191406, 40.72748565673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97907257080078, 40.744361877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97907257080078, 40.744361877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97189331054688, 40.75433349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9668197631836, 40.75725173950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9785385131836, 40.76252746582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00161743164062, 40.71976089477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97586059570312, 40.78643035888672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814272", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98846435546875, 40.75343322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97533416748047, 40.75755310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.75925064086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.75925064086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99456787109375, 40.750492095947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616027832031, 40.722408294677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808837890625, 40.75727081298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95877075195312, 40.79969024658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889144897461, 40.731056213378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99859619140625, 40.7340202331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025405883789, 40.73957443237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814040", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99468994140625, 40.75043487548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99119567871094, 40.75537109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94471740722656, 40.779239654541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00206756591797, 40.72962188720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9954833984375, 40.76047134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815048", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97038269042969, 40.79914093017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79842376708984, 40.64518737792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98342895507812, 40.7604866027832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96918487548828, 40.760929107666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99874114990234, 40.721248626708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444030761719, 40.70754623413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814631", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9936752319336, 40.74598693847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98635864257812, 40.750301361083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96577453613281, 40.76823043823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99665832519531, 40.661651611328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98899841308594, 40.748348236083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265075683594, 40.727210998535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015808105469, 40.74647903442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9684066772461, 40.791473388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797821044922, 40.740936279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9743881225586, 40.78314971923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78987121582031, 40.646568298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99207305908203, 40.744075775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97984313964844, 40.74891662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97119140625, 40.75102233886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95872497558594, 40.772361755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99858093261719, 40.72475051879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96681213378906, 40.80427169799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97020721435547, 40.76464080810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00702667236328, 40.71156692504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9780502319336, 40.773765563964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9887466430664, 40.76884078979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78692626953125, 40.64620590209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99037170410156, 40.76078796386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814331", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87322998046875, 40.77394104003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99219512939453, 40.75920867919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99258422851562, 40.74837875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815135", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00594329833984, 40.73592758178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97491455078125, 40.752281188964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9862289428711, 40.76177978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97059631347656, 40.7518310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9785385131836, 40.74607467651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78182983398438, 40.644718170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97904205322266, 40.75992965698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95243835449219, 40.778106689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97061157226562, 40.76422882080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99873352050781, 40.726478576660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97438049316406, 40.7564697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97438049316406, 40.7564697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00148010253906, 40.746826171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99932098388672, 40.72488021850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9546890258789, 40.76997756958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97358703613281, 40.7919807434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.770530700683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97855377197266, 40.75044631958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.743858337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9892578125, 40.76307678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98954010009766, 40.7676887512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0002212524414, 40.748130798339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95524597167969, 40.77330017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96324157714844, 40.76595687866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96974182128906, 40.76292037963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99729919433594, 40.724525451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99729919433594, 40.724525451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99590301513672, 40.744205474853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99918365478516, 40.738311767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96532440185547, 40.755104064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223114013672, 40.76917266845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.77055740356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.75230026245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.75230026245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01118469238281, 40.72905349731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95516967773438, 40.769134521484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95516967773438, 40.769134521484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00639343261719, 40.732608795166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93665313720703, 40.71156692504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96963500976562, 40.752906799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98939514160156, 40.76812744140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.74169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96208190917969, 40.77906799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883804321289, 40.7199592590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95413970947266, 40.76617431640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99395751953125, 40.751224517822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815135", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99575805664062, 40.759578704833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97368621826172, 40.79198455810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95369720458984, 40.78519058227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889144897461, 40.748130798339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97489929199219, 40.75270462036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814210", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98102569580078, 40.76359176635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97409057617188, 40.755409240722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96968078613281, 40.757198333740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00236511230469, 40.7553596496582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94741821289062, 40.77111053466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98636627197266, 40.74034881591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95274353027344, 40.78041076660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98821258544922, 40.75423049926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98574829101562, 40.74733352661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99585723876953, 40.73884582519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99231719970703, 40.72882080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813859", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99529266357422, 40.741214752197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79011535644531, 40.64674377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79011535644531, 40.64674377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96003723144531, 40.776615142822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95397186279297, 40.781517028808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97590637207031, 40.7481575012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9835433959961, 40.75716018676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00285339355469, 40.74452590942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95964050292969, 40.77980041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9709701538086, 40.7588005065918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.984375, 40.743263244628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98765563964844, 40.73272705078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95843505859375, 40.7605094909668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00041198730469, 40.73226547241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99800109863281, 40.71693420410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99800109863281, 40.71693420410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98550415039062, 40.7384147644043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95263671875, 40.77251052856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96783447265625, 40.79248809814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98512268066406, 40.74453353881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00332641601562, 40.73268127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815052", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741149902344, 40.71976089477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814428", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99334716796875, 40.73649597167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9590072631836, 40.76380920410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95166015625, 40.77788162231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95921325683594, 40.78096008300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97200775146484, 40.79439926147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.73253631591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015045166016, 40.73481750488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00336456298828, 40.74897384643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00184631347656, 40.71957015991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231842041016, 40.7764778137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8852310180664, 40.772918701171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98976135253906, 40.75244903564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96729278564453, 40.793338775634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98016357421875, 40.770660400390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0040283203125, 40.721153259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96099090576172, 40.76066970825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.71847152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97562408447266, 40.75214385986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.76118850708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97476959228516, 40.75477981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99385070800781, 40.75676345825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98980712890625, 40.741878509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9731216430664, 40.76393127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9731216430664, 40.76393127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95874786376953, 40.78395462036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00358581542969, 40.74843978881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97444915771484, 40.76243591308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95487213134766, 40.77762985229492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813827", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97208404541016, 40.748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97208404541016, 40.748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99546813964844, 40.7450065612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910888671875, 40.7529296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97474670410156, 40.76108169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00547790527344, 40.745689392089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00547790527344, 40.745689392089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96522521972656, 40.806236267089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95015716552734, 40.783878326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98621368408203, 40.77096176147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9828872680664, 40.7770881652832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98552703857422, 40.74420928955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226928710938, 40.782901763916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98394012451172, 40.739158630371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0033187866211, 40.732521057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.76253128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99555206298828, 40.764801025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00509643554688, 40.7371711730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78189086914062, 40.644691467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9765625, 40.7879638671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98699188232422, 40.7329216003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397827148438, 40.775596618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235870361328, 40.75648498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235870361328, 40.75648498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01309204101562, 40.71567153930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7835464477539, 40.648616790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.78140640258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98298645019531, 40.722599029541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.75687026977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814482", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9953384399414, 40.759979248046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99526977539062, 40.72478485107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00199890136719, 40.72188949584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96951293945312, 40.78486633300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95411682128906, 40.77423095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86969757080078, 40.77374267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316192626953, 40.78171157836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97116088867188, 40.75529098510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99823760986328, 40.735435485839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99823760986328, 40.735435485839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96550750732422, 40.79568862915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98475646972656, 40.732521057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98190307617188, 40.76884078979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814102", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092864990234, 40.75027084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.998779296875, 40.734580993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01030731201172, 40.720680236816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95327758789062, 40.767112731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95327758789062, 40.767112731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98053741455078, 40.76396179199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99296569824219, 40.752845764160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00472259521484, 40.74182891845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873138427734, 40.73127365112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0045166015625, 40.74531936645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00749969482422, 40.74078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95484161376953, 40.78347396850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98273468017578, 40.73942184448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00825500488281, 40.74706268310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359130859375, 40.74563217163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00758361816406, 40.72459030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98342895507812, 40.744049072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97801208496094, 40.75104904174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.7851333618164, 40.64849853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00759887695312, 40.726009368896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97045135498047, 40.756439208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00186157226562, 40.735389709472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96662139892578, 40.761878967285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96662139892578, 40.761878967285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96780395507812, 40.76258087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00569152832031, 40.7252197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98101806640625, 40.7674446105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0041275024414, 40.742149353027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9945297241211, 40.73933792114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9832763671875, 40.766197204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96331787109375, 40.75664138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96331787109375, 40.75664138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96853637695312, 40.798851013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93876647949219, 40.805049896240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96553802490234, 40.75910186767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96553802490234, 40.75910186767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98621368408203, 40.75925827026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99463653564453, 40.75054168701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98216247558594, 40.74554443359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95101165771484, 40.78564453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0046615600586, 40.74603271484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96793365478516, 40.76264953613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0028076171875, 40.747196197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98328399658203, 40.768131256103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815902709961, 40.75257873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99578857421875, 40.724708557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99578857421875, 40.724708557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00618743896484, 40.717037200927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97296142578125, 40.74924850463867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7881088256836, 40.641578674316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97065734863281, 40.76227569580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97065734863281, 40.76227569580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0076904296875, 40.70767593383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99822998046875, 40.73570251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97215270996094, 40.75481033325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98699951171875, 40.76633834838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98298645019531, 40.76237869262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00109100341797, 40.7520866394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333190917969, 40.74983596801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94554901123047, 40.775535583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96634674072266, 40.77304458618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98282623291016, 40.772186279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814999", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98882293701172, 40.73685073852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98848724365234, 40.72026824951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95169067382812, 40.72542953491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814583", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95864868164062, 40.810096740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98004150390625, 40.743045806884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99349975585938, 40.721580505371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748779296875, 40.73305130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95298767089844, 40.79158401489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95298767089844, 40.79158401489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94967651367188, 40.7847785949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95462799072266, 40.78411865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00416564941406, 40.75190353393555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590850830078, 40.73271942138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00897216796875, 40.7070198059082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99386596679688, 40.75138854980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77678680419922, 40.64535140991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98210144042969, 40.77201843261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00397491455078, 40.74799346923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98695373535156, 40.69215774536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9718017578125, 40.78704833984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813960", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98127746582031, 40.75294876098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99444580078125, 40.73147964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01245880126953, 40.71403884887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98872375488281, 40.74022674560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974594116211, 40.73657989501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96166229248047, 40.770999908447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96269989013672, 40.7585334777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00926208496094, 40.71522521972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0160140991211, 40.711483001708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01292419433594, 40.70230484008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98023986816406, 40.75584030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814919", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99210357666016, 40.75923156738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98783874511719, 40.768741607666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99183654785156, 40.73923110961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98136901855469, 40.78070831298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97271728515625, 40.756465911865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98611450195312, 40.762359619140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9961166381836, 40.74843978881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96326446533203, 40.7620964050293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99443054199219, 40.75028991699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98210144042969, 40.771602630615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01439666748047, 40.71766662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.73794174194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96421813964844, 40.773834228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9945068359375, 40.75048065185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8731918334961, 40.77395248413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97740173339844, 40.74686813354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01277160644531, 40.62907028198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99523162841797, 40.71760559082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.75630187988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98077392578125, 40.77981948852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95703887939453, 40.78627014160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99323272705078, 40.69765853881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01292419433594, 40.71968078613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97561645507812, 40.781768798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814216", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908218383789, 40.740379333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93852996826172, 40.79595184326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9796142578125, 40.6826171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891586303711, 40.743186950683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98865509033203, 40.757503509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98141479492188, 40.720855712890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00300598144531, 40.73341369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97196960449219, 40.754173278808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87101745605469, 40.77388000488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98501586914062, 40.748016357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.747581481933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96162414550781, 40.77394485473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.762569427490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95977783203125, 40.77402877807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01563262939453, 40.71546173095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97502899169922, 40.75027084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9500503540039, 40.780250549316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00901794433594, 40.713748931884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490142822266, 40.69620895385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96382904052734, 40.77444839477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00999450683594, 40.7213020324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97867584228516, 40.77840805053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00180053710938, 40.740394592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95661926269531, 40.778099060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0095443725586, 40.71295166015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092864990234, 40.75617980957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9468994140625, 40.78456115722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97685241699219, 40.74538040161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9850845336914, 40.75753402709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98512268066406, 40.747642517089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814096", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01683044433594, 40.70820999145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814295", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.758148193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97478485107422, 40.75192642211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96586608886719, 40.805259704589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97049713134766, 40.7647819519043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86263275146484, 40.7688102722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00666046142578, 40.73218536376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9774169921875, 40.75200653076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87297058105469, 40.773921966552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00292205810547, 40.76038360595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00517272949219, 40.74800109863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95807647705078, 40.76483154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.78208923339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955108642578, 40.80018997192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9669418334961, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99083709716797, 40.71788787841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98571014404297, 40.752559661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102020263672, 40.739593505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9590072631836, 40.78080749511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9503173828125, 40.7713508605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98548126220703, 40.72350311279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196075439453, 40.75090026855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99684143066406, 40.693077087402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9598617553711, 40.77088165283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0158920288086, 40.71123123168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95735931396484, 40.77417755126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00745391845703, 40.71006774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886703491211, 40.736690521240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205780029297, 40.75019836425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96720886230469, 40.7643928527832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813815", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9855728149414, 40.726932525634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99101257324219, 40.76087188720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97592163085938, 40.74039840698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98951721191406, 40.74742126464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95723724365234, 40.77241134643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9629898071289, 40.75762176513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97498321533203, 40.75682830810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98597717285156, 40.722251892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99411010742188, 40.735496520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94622039794922, 40.77724838256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01433563232422, 40.7027702331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814210", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359130859375, 40.72140121459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00514221191406, 40.719268798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97624969482422, 40.7755012512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9946060180664, 40.740413665771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98100280761719, 40.74475860595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94376373291016, 40.810279846191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99385070800781, 40.74981689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9578628540039, 40.76872634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98672485351562, 40.72251510620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99331665039062, 40.7629508972168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99385070800781, 40.74981689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95587158203125, 40.77891159057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98597717285156, 40.74725341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814620", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00419616699219, 40.72539138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9732666015625, 40.75609588623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97895812988281, 40.77756881713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9679946899414, 40.800689697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97789001464844, 40.752113342285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00994873046875, 40.711647033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96250915527344, 40.763145446777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814857", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86415100097656, 40.77012634277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98700714111328, 40.75075149536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98246002197266, 40.73147964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93937683105469, 40.70478057861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98181915283203, 40.7628173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813754", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9806900024414, 40.73233413696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99261474609375, 40.694252014160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814051", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98747253417969, 40.76853561401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96941375732422, 40.75810241699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97193145751953, 40.76226043701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97473907470703, 40.758628845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00109100341797, 40.73176956176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99465942382812, 40.74932861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99030303955078, 40.75614547729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96941375732422, 40.75810241699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01097106933594, 40.70414733886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752197265625, 40.75260925292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752197265625, 40.75260925292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99079132080078, 40.72856140136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0032958984375, 40.74161911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752197265625, 40.75260925292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01502227783203, 40.714237213134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99385833740234, 40.7281494140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0032958984375, 40.74161911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99278259277344, 40.758270263671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00696563720703, 40.70539093017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98573303222656, 40.74708938598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01006317138672, 40.72090148925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814716", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88523864746094, 40.77307891845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98368835449219, 40.75526809692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95799255371094, 40.7176513671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813995", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99571990966797, 40.74986267089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01517486572266, 40.7113037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.677093505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.68439865112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98989868164062, 40.75692367553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814712", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87079620361328, 40.773780822753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95113372802734, 40.77198791503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99531555175781, 40.76508331298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00639343261719, 40.711849212646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98857879638672, 40.722686767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0027847290039, 40.73994827270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94706726074219, 40.784149169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814761", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97615051269531, 40.755531311035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9996337890625, 40.74831771850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00160217285156, 40.722591400146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98469543457031, 40.75401306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813879", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9713363647461, 40.78704071044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95809936523438, 40.76491165161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98753356933594, 40.73844528198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98544311523438, 40.74435043334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97683715820312, 40.756561279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98493194580078, 40.73249053955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9771957397461, 40.746849060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98120880126953, 40.73810577392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97469329833984, 40.729923248291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00544738769531, 40.74013137817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97048950195312, 40.74979019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95555877685547, 40.76824188232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97048950195312, 40.74979019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95415496826172, 40.77451705932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.75680923461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98351287841797, 40.7440071105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813863", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95415496826172, 40.77451705932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98164367675781, 40.69013977050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814056396484, 40.738868713378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97615814208984, 40.750457763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814480", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94517517089844, 40.778690338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00109100341797, 40.73176956176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442840576172, 40.742515563964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00054168701172, 40.73217010498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814428", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98790740966797, 40.72959899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94517517089844, 40.778690338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9809799194336, 40.78150177001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9720687866211, 40.74952697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98681640625, 40.74551010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98372650146484, 40.743900299072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94969177246094, 40.772640228271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814709", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00231170654297, 40.734458923339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.974609375, 40.74217987060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78954315185547, 40.64699172973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.974609375, 40.74217987060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99185943603516, 40.74394607543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96234130859375, 40.77897644042969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98887634277344, 40.7482795715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99150085449219, 40.74462890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97798156738281, 40.783870697021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94978332519531, 40.77241134643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.756404876708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9726333618164, 40.7588996887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96546936035156, 40.79071044921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813989", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94978332519531, 40.77241134643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804458618164, 40.748023986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98526763916016, 40.77363586425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7813491821289, 40.646697998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079116821289, 40.711769104003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00205993652344, 40.71931457519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97176361083984, 40.7624397277832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814331", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940414428711, 40.75122833251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769058227539, 40.75212860107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00450897216797, 40.72433090209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96468353271484, 40.80203628540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9548568725586, 40.78908157348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98290252685547, 40.739158630371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98184967041016, 40.76214599609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96493530273438, 40.77511215209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00569152832031, 40.74039840698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97386169433594, 40.755775451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0080795288086, 40.72317886352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96894836425781, 40.76415252685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96851348876953, 40.75497817993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815148", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95537567138672, 40.7825927734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86576080322266, 40.77036666870117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0097427368164, 40.739078521728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914321899414, 40.76628112792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96957397460938, 40.753501892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96123504638672, 40.760650634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231079101562, 40.80509948730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9907455444336, 40.73398208618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97250366210938, 40.79616165161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7837142944336, 40.648616790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97637939453125, 40.78581619262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9457778930664, 40.778079986572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96392059326172, 40.76472091674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0043716430664, 40.707664489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97442626953125, 40.761573791503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96805572509766, 40.75972366333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205017089844, 40.750030517578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95369720458984, 40.78499984741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99311065673828, 40.742462158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813863", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99494934082031, 40.75968933105469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9856185913086, 40.735496520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085235595703, 40.75595474243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97396087646484, 40.7573356628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925765991211, 40.7636833190918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97955322265625, 40.733154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00823211669922, 40.70817565917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.75088119506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98861694335938, 40.748779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814964", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.75088119506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79017639160156, 40.643714904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78973388671875, 40.6467170715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99195861816406, 40.75019836425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99278259277344, 40.72542190551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97484588623047, 40.76163864135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98259735107422, 40.75743103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788589477539, 40.782379150390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98388671875, 40.729488372802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98672485351562, 40.76654815673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00775909423828, 40.70433044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814935", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94400787353516, 40.77597427368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99337005615234, 40.741790771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00544738769531, 40.745811462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94538879394531, 40.7784309387207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97270202636719, 40.78084945678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96873474121094, 40.7611198425293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152160644531, 40.77097702026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908020019531, 40.740440368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97041320800781, 40.764774322509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95600891113281, 40.77912902832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870086669922, 40.7570915222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564147949219, 40.72718811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96143341064453, 40.79618453979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0152816772461, 40.71437072753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99808502197266, 40.74574279785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316955566406, 40.76768493652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814606", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99163818359375, 40.75508117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96302032470703, 40.772422790527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98628997802734, 40.74599075317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995208740234, 40.76699447631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490905761719, 40.75983810424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97830963134766, 40.75217819213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94674682617188, 40.77218246459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95904541015625, 40.77155303955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814992", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.991455078125, 40.77046203613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814412", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99177551269531, 40.74907302856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95545196533203, 40.78269958496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97968292236328, 40.777584075927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95361328125, 40.779502868652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96485900878906, 40.7597541809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9637451171875, 40.757652282714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00704956054688, 40.7052116394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.005126953125, 40.74563217163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88092803955078, 40.74539566040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92018127441406, 40.76631164550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88534545898438, 40.77305221557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99370574951172, 40.74977493286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97367095947266, 40.784549713134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96833038330078, 40.761844635009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9683609008789, 40.75492858886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94795227050781, 40.78300094604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769515991211, 40.78422164916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99468994140625, 40.72299575805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98932647705078, 40.73002624511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99268341064453, 40.74763870239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.751243591308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99210357666016, 40.72592544555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95262145996094, 40.76645278930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99575805664062, 40.732765197753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98697662353516, 40.7298583984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98770904541016, 40.757911682128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.7498893737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.05001831054688, 40.716773986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95452880859375, 40.76410675048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95452880859375, 40.76410675048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98048400878906, 40.74246597290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00292205810547, 40.73350524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99559783935547, 40.75954055786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95033264160156, 40.77549362182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99337005615234, 40.73590850830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95487213134766, 40.77288818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98516082763672, 40.76853942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98338317871094, 40.771209716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98216247558594, 40.762779235839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429870605469, 40.77005386352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814216", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99327087402344, 40.756141662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.74421691894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96028137207031, 40.76557159423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98185729980469, 40.74696350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99027252197266, 40.75636672973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97533416748047, 40.752601623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00112915039062, 40.72611999511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99174499511719, 40.72631072998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94933319091797, 40.77275466918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98786926269531, 40.735469818115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98828887939453, 40.75931930541992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01480865478516, 40.71536636352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00476837158203, 40.741756439208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910888671875, 40.72351837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95842742919922, 40.778663635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97339630126953, 40.747802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98304748535156, 40.769073486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841857910156, 40.722900390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96019744873047, 40.77326965332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98882293701172, 40.77760314941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96019744873047, 40.77326965332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00554656982422, 40.74824905395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96813201904297, 40.79203414916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01160430908203, 40.702518463134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833984375, 40.74734878540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99434661865234, 40.7617301940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94977569580078, 40.772457122802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.756778717041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813991", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99829864501953, 40.74433898925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97175598144531, 40.75735092163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97528076171875, 40.78789138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153137207031, 40.71472930908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98230743408203, 40.75731658935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97134399414062, 40.75529479980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.96022033691406, 40.77619171142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814340", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00350189208984, 40.7326774597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01081085205078, 40.70924758911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814675", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95989227294922, 40.7694206237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97743225097656, 40.74298095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939849853516, 40.693153381347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00769805908203, 40.740692138671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939849853516, 40.693153381347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9918441772461, 40.75490951538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9582748413086, 40.772926330566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97265625, 40.7548942565918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00843048095703, 40.720279693603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98772430419922, 40.70075607299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97696685791016, 40.78004837036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97696685791016, 40.78004837036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97589874267578, 40.751434326171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97909545898438, 40.75047302246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9998550415039, 40.74863815307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97589874267578, 40.751434326171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9917984008789, 40.75029754638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96743774414062, 40.76590347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00555419921875, 40.740657806396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.970703125, 40.751949310302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96932983398438, 40.79042053222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96743774414062, 40.76590347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801025390625, 40.74850082397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9634017944336, 40.775020599365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99308013916016, 40.75778579711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96585845947266, 40.758548736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97222900390625, 40.756961822509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98399353027344, 40.73758316040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0058364868164, 40.74018096923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99498748779297, 40.76069641113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98456573486328, 40.768470764160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814272", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98365783691406, 40.74410629272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.74839401245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94918823242188, 40.781028747558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814251", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99269104003906, 40.73973083496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9869384765625, 40.76145553588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98405456542969, 40.74620819091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98712921142578, 40.75086975097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99164581298828, 40.72642517089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814524", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93894958496094, 40.811038970947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96713256835938, 40.764198303222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93894958496094, 40.811038970947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590087890625, 40.75247573852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.88963317871094, 40.749244689941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96813201904297, 40.76272964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00946044921875, 40.713951110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99453735351562, 40.74060821533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9902572631836, 40.744388580322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95552825927734, 40.78520965576172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96936798095703, 40.76377868652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98483276367188, 40.736289978027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97827911376953, 40.76293182373047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00418853759766, 40.752689361572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97132110595703, 40.763771057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95746612548828, 40.78007125854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98548889160156, 40.74723815917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98242950439453, 40.7744026184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99483489990234, 40.750160217285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97438049316406, 40.75652313232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00070190429688, 40.72603988647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98004913330078, 40.734893798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814961", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95369720458984, 40.76669692993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9459228515625, 40.77336120605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99479675292969, 40.759971618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92941284179688, 40.798561096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9896240234375, 40.72611618041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97827911376953, 40.788246154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98983001708984, 40.7573127746582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97171783447266, 40.75804138183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813992", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9873046875, 40.75507354736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98606872558594, 40.75960922241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99144744873047, 40.74871826171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-74.00965118408203, 40.70953369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92115020751953, 40.766761779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814863", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511932373047, 40.73725509643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511932373047, 40.73725509643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98693084716797, 40.75564956665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205780029297, 40.72734832763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99597930908203, 40.73798370361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95823669433594, 40.772281646728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97306823730469, 40.743858337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99830627441406, 40.745079040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87289428710938, 40.77398681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99374389648438, 40.72916030883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9552230834961, 40.7833137512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99983215332031, 40.74845504760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236083984375, 40.777130126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9592514038086, 40.774478912353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95178985595703, 40.77777862548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96622467041016, 40.7581787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98439025878906, 40.74324035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.81068420410156, 40.71958541870117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925765991211, 40.75025177001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814296", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97584533691406, 40.7893180847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93412780761719, 40.75162124633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98069763183594, 40.74492645263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96440887451172, 40.76073455810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86322021484375, 40.76995849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97391510009766, 40.7567138671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96670532226562, 40.770233154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96121215820312, 40.760433197021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98965454101562, 40.757423400878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95996856689453, 40.7199592590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97315216064453, 40.78508377075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94841766357422, 40.77434158325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9764633178711, 40.74824523925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813759", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98625946044922, 40.7435302734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94972229003906, 40.82749557495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98239135742188, 40.77376937866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97848510742188, 40.7451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.74986267089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0077133178711, 40.724098205566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97308349609375, 40.75986099243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78192138671875, 40.64463424682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9497299194336, 40.71615982055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01129150390625, 40.715660095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98828887939453, 40.7318000793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748779296875, 40.741119384765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9612808227539, 40.77006530761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98297119140625, 40.74763107299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01002502441406, 40.705928802490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98399353027344, 40.76164627075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99825286865234, 40.721160888671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95567321777344, 40.76826858520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99971771240234, 40.730289459228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98049926757812, 40.73830032348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97929382324219, 40.78178024291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.691139221191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96864318847656, 40.767372131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99382019042969, 40.740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98854064941406, 40.73394775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98277282714844, 40.76322937011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814761", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9704818725586, 40.76148986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95978546142578, 40.77383041381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.758216857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814774", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97886657714844, 40.7876091003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99164581298828, 40.7493782043457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.93359375, 40.802921295166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97647094726562, 40.754188537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97138977050781, 40.76364517211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00239562988281, 40.747718811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814440", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196838378906, 40.756019592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8731918334961, 40.774105072021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.72333526611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97825622558594, 40.7569580078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99147033691406, 40.72713851928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95758056640625, 40.769805908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98392486572266, 40.749366760253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97199249267578, 40.75625991821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0038833618164, 40.747684478759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95587921142578, 40.767730712890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.75923156738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96630096435547, 40.794769287109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00128173828125, 40.73114776611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808349609375, 40.758819580078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97309875488281, 40.76020812988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95257568359375, 40.776798248291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96216583251953, 40.76387405395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0041275024414, 40.74200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77911376953125, 40.647518157958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98918914794922, 40.75907516479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97196960449219, 40.782142639160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97297668457031, 40.78227615356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99018859863281, 40.771541595458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.699188232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9784164428711, 40.74578857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97270965576172, 40.749900817871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96829223632812, 40.759159088134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97384643554688, 40.75102615356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95314025878906, 40.82305908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99314880371094, 40.736488342285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814341", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97769165039062, 40.7646598815918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98519897460938, 40.75691223144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002075195312, 40.73520278930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.958984375, 40.76378631591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814006", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99495697021484, 40.75519561767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99395751953125, 40.745269775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814658", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97309875488281, 40.780399322509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814065", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96453857421875, 40.77568817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78174591064453, 40.64484405517578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98347473144531, 40.77933883666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95596313476562, 40.78235626220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814204", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95596313476562, 40.78235626220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814204", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9866714477539, 40.750308990478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96453857421875, 40.77568817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814819335938, 40.71992492675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98176574707031, 40.77790832519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814819335938, 40.71992492675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9947280883789, 40.72119903564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9983139038086, 40.73525619506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9947280883789, 40.72119903564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9705810546875, 40.758480072021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95634460449219, 40.76789474487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00650787353516, 40.739261627197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814289", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97571563720703, 40.789546966552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9830093383789, 40.76702880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01603698730469, 40.70500946044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.7548713684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86344146728516, 40.77014923095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87294006347656, 40.774112701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814169", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.9945297241211, 40.750308990478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98370361328125, 40.743980407714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798355102539, 40.78114700317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814440", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9502182006836, 40.78549575805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0041732788086, 40.74222946166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97884368896484, 40.76194763183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814625", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9678726196289, 40.77120590209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9944076538086, 40.74058151245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97830200195312, 40.77323532104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814969", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9564437866211, 40.775550842285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98533630371094, 40.75811004638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814950", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01004028320312, 40.72080993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.787010192871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98650360107422, 40.75877380371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98892974853516, 40.7442741394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97832489013672, 40.75400161743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98503875732422, 40.77846145629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9570541381836, 40.766265869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813972", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99320983886719, 40.742069244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97688293457031, 40.756629943847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98503875732422, 40.77846145629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429107666016, 40.73445510864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99286651611328, 40.758113861083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98035430908203, 40.75382995605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87312316894531, 40.7741813659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99163818359375, 40.74995040893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88788604736328, 40.74514389038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815002", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88788604736328, 40.74514389038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815002", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9510726928711, 40.78282165527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814006", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97114562988281, 40.76696014404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87101745605469, 40.77381134033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814634", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99344635009766, 40.7420539855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97867584228516, 40.77428436279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.73193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00765228271484, 40.714839935302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9741439819336, 40.75141143798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845962524414, 40.77402877807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98798370361328, 40.7600212097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00747680664062, 40.70840835571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0059585571289, 40.70811080932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9648666381836, 40.80685806274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9977035522461, 40.7168083190918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99718475341797, 40.72239685058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98798370361328, 40.7600212097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00446319580078, 40.730831146240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98684692382812, 40.7225227355957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99172973632812, 40.750526428222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99172973632812, 40.750526428222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99172973632812, 40.750526428222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98243713378906, 40.73149108886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98456573486328, 40.72885513305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96588134765625, 40.75851821899414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.7587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.7587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749984741211, 40.76411056518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98576354980469, 40.74684524536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749984741211, 40.76411056518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99349212646484, 40.742340087890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01010131835938, 40.73256301879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814810", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99588775634766, 40.74386978149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99588775634766, 40.74386978149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98035430908203, 40.75382995605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98446655273438, 40.7576789855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.75027847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98699951171875, 40.76594924926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0048828125, 40.7415771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99407196044922, 40.74610137939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813913", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.870849609375, 40.77360916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729476928711, 40.774009704589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.74720764160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94044494628906, 40.79347229003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97901916503906, 40.785301208496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01126861572266, 40.702125549316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99369812011719, 40.7415657043457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95628356933594, 40.74635314941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00543975830078, 40.75063705444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98743438720703, 40.74794387817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114013671875, 40.75907897949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769058227539, 40.76596450805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94960021972656, 40.77255630493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.870849609375, 40.77373123168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.870849609375, 40.77373123168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98880767822266, 40.73684310913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98802947998047, 40.72077560424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814863", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95401763916016, 40.78160858154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123931884766, 40.774051666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97457122802734, 40.755638122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88548278808594, 40.77308654785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98717498779297, 40.758827209472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97358703613281, 40.75054168701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00652313232422, 40.74142837524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98014831542969, 40.75904083251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9550552368164, 40.78877258300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9560317993164, 40.77621841430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9779281616211, 40.73321533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9550552368164, 40.78877258300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99890899658203, 40.744693756103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814682006836, 40.746910095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97901153564453, 40.75017547607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9782943725586, 40.74811935424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95191192626953, 40.76944351196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99447631835938, 40.750244140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96371459960938, 40.77702331542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96776580810547, 40.6893310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98829650878906, 40.74094009399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99160766601562, 40.726722717285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98829650878906, 40.74094009399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01622009277344, 40.71480178833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813906", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99143981933594, 40.7445182800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9713363647461, 40.76087188720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97787475585938, 40.758670806884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152923583984, 40.72459030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95098876953125, 40.81053924560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359893798828, 40.741878509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95991516113281, 40.713890075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752426147461, 40.75757598876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98817443847656, 40.764644622802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814859", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.7913818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99044799804688, 40.74034118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97588348388672, 40.7637825012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99535369873047, 40.739341735839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0019302368164, 40.724395751953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98140716552734, 40.781402587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590087890625, 40.74655532836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908447265625, 40.73458480834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908447265625, 40.73458480834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97614288330078, 40.760398864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9894027709961, 40.757965087890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814194", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490905761719, 40.73641586303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97300720214844, 40.785160064697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9549331665039, 40.77741241455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079574584961, 40.739498138427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99107360839844, 40.755699157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801025390625, 40.748931884765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9869384765625, 40.776275634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848403930664, 40.74678039550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815048", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98454284667969, 40.74287033081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99335479736328, 40.75254821777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0011215209961, 40.741661071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00434112548828, 40.707801818847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974365234375, 40.73664093017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95767974853516, 40.77009963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00267791748047, 40.7337760925293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95767974853516, 40.77009963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96353149414062, 40.802791595458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.001220703125, 40.752262115478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95451354980469, 40.7894401550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9728775024414, 40.75267028808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9728775024414, 40.75267028808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98512268066406, 40.719200134277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99497985839844, 40.67851638793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97042083740234, 40.788787841796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94165802001953, 40.79844284057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.015869140625, 40.714561462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00411224365234, 40.722068786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00102233886719, 40.740474700927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152923583984, 40.7581787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95642852783203, 40.771488189697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98643493652344, 40.73998260498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99279022216797, 40.725955963134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9837646484375, 40.72562026977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98136901855469, 40.74127197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889907836914, 40.748207092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99190521240234, 40.7385368347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.78899002075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889907836914, 40.748207092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97309875488281, 40.756065368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291015625, 40.77195358276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0046157836914, 40.74172592163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98988342285156, 40.75728988647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814999", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97499084472656, 40.74536895751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97003936767578, 40.7530632019043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98712921142578, 40.74522018432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97317504882812, 40.761077880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94155883789062, 40.750450134277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96803283691406, 40.75532913208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9877700805664, 40.73908615112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99411010742188, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00643157958984, 40.706302642822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97201538085938, 40.751285552978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97966766357422, 40.739688873291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96803283691406, 40.75532913208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98700714111328, 40.77510070800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00407409667969, 40.738136291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9831771850586, 40.76679992675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9831771850586, 40.76679992675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95671081542969, 40.78084945678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95454406738281, 40.7657470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.744998931884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97252655029297, 40.740570068359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96773529052734, 40.765953063964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00468444824219, 40.747196197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96519470214844, 40.763710021972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96369934082031, 40.77173614501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815902709961, 40.75566864013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96929168701172, 40.75340270996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95314025878906, 40.78506851196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86100006103516, 40.72661209106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97221374511719, 40.75959014892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79037475585938, 40.64402770996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00446319580078, 40.74195861816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87277221679688, 40.77408981323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9952392578125, 40.75996017456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00114440917969, 40.733856201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99185180664062, 40.74504852294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814699", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811019897461, 40.75017166137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9697494506836, 40.79766082763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96218872070312, 40.79523849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96218872070312, 40.79523849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98155975341797, 40.7371711730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01006317138672, 40.734039306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97761535644531, 40.684505462646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99564361572266, 40.74909973144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97817993164062, 40.748939514160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99736022949219, 40.72576904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98674774169922, 40.75035858154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.745887756347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9612045288086, 40.77773666381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98925018310547, 40.71904373168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.966796875, 40.78891372680664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98963165283203, 40.72938919067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.759559631347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00323486328125, 40.74855422973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97014617919922, 40.75968551635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99751281738281, 40.721153259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00109100341797, 40.7464485168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99407196044922, 40.74639129638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99058532714844, 40.72478485107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255920410156, 40.742496490478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87074279785156, 40.77362060546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78164672851562, 40.64480972290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9947509765625, 40.74029541015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96975708007812, 40.761348724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9949722290039, 40.745182037353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813812", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99585723876953, 40.743675231933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814262", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97673034667969, 40.7591438293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97071838378906, 40.78855895996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98165130615234, 40.7525520324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98960876464844, 40.752830505371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813840", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96195220947266, 40.77606201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95515441894531, 40.782806396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97002410888672, 40.754730224609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97281646728516, 40.759300231933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052719116211, 40.7482795715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814250", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99465942382812, 40.725948333740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9797134399414, 40.75516891479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99681854248047, 40.72031784057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01306915283203, 40.70269012451172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.73624038696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99223327636719, 40.73783874511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97036743164062, 40.759220123291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97036743164062, 40.759220123291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909896850586, 40.75102615356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.75244140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01529693603516, 40.711490631103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9698486328125, 40.784210205078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332214355469, 40.73456954956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98388671875, 40.77042770385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99177551269531, 40.74762725830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95488739013672, 40.765445709228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814361", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98540496826172, 40.73575210571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9622573852539, 40.7701416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97126770019531, 40.75582504272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97753143310547, 40.74988555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96932220458984, 40.749549865722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9894027709961, 40.772953033447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9551010131836, 40.76738739013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.75032043457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9019775390625, 40.7700309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97554016113281, 40.745269775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9591293334961, 40.77485656738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814992", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01663208007812, 40.71519088745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00927734375, 40.713321685791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97753143310547, 40.74988555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01663208007812, 40.71519088745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98929595947266, 40.752620697021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073028564453, 40.756141662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815107", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99018096923828, 40.71412658691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.979248046875, 40.77686309814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.78765106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99327850341797, 40.73352813720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9839859008789, 40.76025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98321533203125, 40.7612419128418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814699", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9739990234375, 40.76036071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9970474243164, 40.75769805908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.863525390625, 40.76998519897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98321533203125, 40.7612419128418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814699", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99954223632812, 40.733577728271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814211", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98365783691406, 40.74373245239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9552001953125, 40.779319763183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87296295166016, 40.77396011352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814634", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123931884766, 40.78081512451172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97998046875, 40.78368377685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98690032958984, 40.73950958251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027801513672, 40.775569915771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99080657958984, 40.72825622558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8638916015625, 40.76961898803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97364807128906, 40.78972244262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7833480834961, 40.648555755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7833480834961, 40.648555755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99229431152344, 40.75910949707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00509643554688, 40.71366882324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9767837524414, 40.75175857543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97097778320312, 40.79335021972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97523498535156, 40.74531173706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98193359375, 40.74327850341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97525024414062, 40.749481201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442077636719, 40.74275588989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98086547851562, 40.7447395324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96907806396484, 40.790870666503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814674", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9964828491211, 40.72517013549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99803161621094, 40.74049377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00692749023438, 40.707061767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97460174560547, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95679473876953, 40.76319885253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813785", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98916625976562, 40.7594108581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98371887207031, 40.74681854248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98200225830078, 40.758480072021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98904418945312, 40.736820220947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97083282470703, 40.74864959716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97213745117188, 40.76318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664306640625, 40.804229736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664306640625, 40.804229736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96385192871094, 40.76783752441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95181274414062, 40.76945877075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98755645751953, 40.7655143737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96915435791016, 40.76432418823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9603042602539, 40.78164291381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87065887451172, 40.757179260253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98664855957031, 40.758758544921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94792175292969, 40.7905158996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96614074707031, 40.76213455200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00521087646484, 40.70896911621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9996566772461, 40.73337936401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95736694335938, 40.77030563354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86332702636719, 40.769859313964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93193817138672, 40.759761810302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00843811035156, 40.72054672241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0013198852539, 40.72517776489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.737579345703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415924072266, 40.791500091552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01335144042969, 40.70808029174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96823120117188, 40.765480041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98359680175781, 40.77616500854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00006866455078, 40.72724151611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78218078613281, 40.64476013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97651672363281, 40.780548095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9725570678711, 40.781009674072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98890686035156, 40.722251892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99886322021484, 40.76023864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97984313964844, 40.781044006347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95856475830078, 40.78107833862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00606536865234, 40.73492431640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0081558227539, 40.740394592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814268", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00471496582031, 40.722930908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96107482910156, 40.76047897338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98834228515625, 40.723350524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0024185180664, 40.74005889892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97300720214844, 40.755157470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99838256835938, 40.72124099731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98754119873047, 40.765289306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092102050781, 40.76103591918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978515625, 40.71989822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01508331298828, 40.7099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813964", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97540283203125, 40.74119567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98866271972656, 40.72269821166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95234680175781, 40.773101806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813003540039, 40.76409149169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.89915466308594, 40.77463912963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00505828857422, 40.719181060791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00264739990234, 40.7393798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97290802001953, 40.756370544433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814197", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.73330307006836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814416", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99676513671875, 40.72317123413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86328887939453, 40.768951416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.004638671875, 40.741947174072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97754669189453, 40.75708770751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86328887939453, 40.768951416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399780273438, 40.747467041015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814390", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00285339355469, 40.733699798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399780273438, 40.747467041015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814390", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98148345947266, 40.7738037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813972", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00408172607422, 40.707218170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9720230102539, 40.75703048706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98838806152344, 40.75884246826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95346069335938, 40.76734161376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.75593185424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98273468017578, 40.72718811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.75593185424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9872055053711, 40.73317337036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94467163085938, 40.779571533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98851013183594, 40.72978591918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490142822266, 40.74745178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96147918701172, 40.769161224365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98930358886719, 40.716461181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00528717041016, 40.721534729003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96366882324219, 40.677249908447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00130462646484, 40.73092269897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01258087158203, 40.716148376464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96366882324219, 40.677249908447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98546600341797, 40.75835418701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97801971435547, 40.78360366821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96599578857422, 40.76193618774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96965026855469, 40.800010681152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942626953125, 40.740882873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97402954101562, 40.749916076660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96599578857422, 40.76193618774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.969970703125, 40.75691604614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99223327636719, 40.74360656738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96544647216797, 40.761871337890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99983215332031, 40.72842025756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814815", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123168945312, 40.781341552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98064422607422, 40.74658966064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99040985107422, 40.74649429321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86334991455078, 40.76994323730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98789978027344, 40.728065490722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8636474609375, 40.76948165893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99076080322266, 40.7181282043457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0013656616211, 40.74104690551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.84391784667969, 40.67717742919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9559555053711, 40.78211975097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.76307678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99605560302734, 40.732234954833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99605560302734, 40.732234954833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98365020751953, 40.74235916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.9831314086914, 40.72677993774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9831314086914, 40.72677993774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98165130615234, 40.756038665771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94813537597656, 40.74982833862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96247863769531, 40.77574157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9975814819336, 40.72397994995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97447204589844, 40.76277160644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97565460205078, 40.754608154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97318267822266, 40.757720947265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95433044433594, 40.787052154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813966", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01425170898438, 40.7046012878418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9022445678711, 40.7638053894043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814147", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96495056152344, 40.791587829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99496459960938, 40.739768981933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814078", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917175292969, 40.75584030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814391", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.774688720703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.84391784667969, 40.67717742919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97982025146484, 40.78630447387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99224090576172, 40.753562927246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99302673339844, 40.690650939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9877700805664, 40.779441833496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99251556396484, 40.73745346069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95176696777344, 40.725528717041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96468353271484, 40.753265380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96468353271484, 40.753265380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797821044922, 40.68281173706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9498062133789, 40.78044891357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00426483154297, 40.72104263305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96736907958984, 40.788108825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9708251953125, 40.76376724243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94991302490234, 40.77616882324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906005859375, 40.73366165161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97360229492188, 40.75533676147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99859619140625, 40.734947204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00545501708984, 40.73670959472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00382232666016, 40.74324035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97981262207031, 40.747222900390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00077819824219, 40.73162078857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00838470458984, 40.7114143371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9986801147461, 40.72834014892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97821807861328, 40.75362014770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95223236083984, 40.77732849121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86300659179688, 40.76983642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00538635253906, 40.74092102050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813954", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99588775634766, 40.75389099121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99861145019531, 40.724609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00558471679688, 40.74088668823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97930145263672, 40.7665901184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98228454589844, 40.77470779418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0018539428711, 40.740478515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98143005371094, 40.77191925048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99469757080078, 40.738895416259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9776840209961, 40.75773620605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98033905029297, 40.76475143432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99585723876953, 40.690704345703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00042724609375, 40.746063232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815021", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96202087402344, 40.773040771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98474884033203, 40.736900329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95917510986328, 40.77157974243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00189971923828, 40.730953216552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073791503906, 40.75572967529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813953", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96417999267578, 40.792171478271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96417999267578, 40.792171478271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87112426757812, 40.7737922668457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97991180419922, 40.743350982666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98217010498047, 40.76479721069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9704818725586, 40.79872131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9323959350586, 40.851016998291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814335", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97308349609375, 40.74751281738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95349884033203, 40.76705551147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814745", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97830963134766, 40.7861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95046997070312, 40.77153015136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99578094482422, 40.76434326171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815084", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9779052734375, 40.75004196166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79000091552734, 40.64712142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0047607421875, 40.741798400878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "10"}}, {"geometry": {"type": "Point", "coordinates": [-73.9627914428711, 40.77833557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96705627441406, 40.79290771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99848175048828, 40.74033737182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96105194091797, 40.774879455566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94929504394531, 40.781368255615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98674011230469, 40.729881286621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98487091064453, 40.74265670776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93915557861328, 40.805233001708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97411346435547, 40.7430305480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0101318359375, 40.71965026855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97892761230469, 40.762149810791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00238037109375, 40.72663116455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86348724365234, 40.769798278808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7854232788086, 40.64857864379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95648956298828, 40.80295944213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98107147216797, 40.76253890991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95648956298828, 40.80295944213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.91934967041016, 40.7724494934082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814289", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91934967041016, 40.7724494934082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814289", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97383880615234, 40.7432746887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86361694335938, 40.76980209350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0071792602539, 40.71584701538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.76539611816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94324493408203, 40.81596374511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98782348632812, 40.751773834228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97663116455078, 40.757598876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01274871826172, 40.702205657958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95999908447266, 40.808414459228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00653839111328, 40.741676330566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99220275878906, 40.715030670166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95478057861328, 40.76564407348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0141372680664, 40.71371841430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814217", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98143768310547, 40.724918365478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814815", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420166015625, 40.7509651184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928970336914, 40.69328308105469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96041870117188, 40.76062774658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97710418701172, 40.76398849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730239868164, 40.77403259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813871", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730239868164, 40.77403259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813871", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98082733154297, 40.77650833129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98377227783203, 40.749366760253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96260833740234, 40.758907318115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98596954345703, 40.76006317138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.73790740966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99006652832031, 40.75666046142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9560317993164, 40.77247619628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00114440917969, 40.757110595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752197265625, 40.7183723449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7823486328125, 40.644508361816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.751094818115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9646224975586, 40.773162841796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95397186279297, 40.77461242675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99958801269531, 40.71949005126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99732208251953, 40.6840705871582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.722476959228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.76197052001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94281005859375, 40.8371696472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814294", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98168182373047, 40.76160430908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98121643066406, 40.725242614746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97640228271484, 40.74788284301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98602294921875, 40.75585174560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00666046142578, 40.70431900024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98772430419922, 40.72471237182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00857543945312, 40.73276138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98279571533203, 40.730953216552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0028076171875, 40.7603874206543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99382781982422, 40.75103759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00614166259766, 40.733158111572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844146728516, 40.77835464477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00180053710938, 40.74116134643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320770263672, 40.75617218017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96350860595703, 40.765533447265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9935302734375, 40.72459030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9935302734375, 40.72459030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98780059814453, 40.72110366821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96370697021484, 40.76141357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0141372680664, 40.71769332885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00675201416016, 40.73588943481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97869110107422, 40.77763748168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815019", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97824096679688, 40.762428283691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95913696289062, 40.77191925048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978759765625, 40.737159729003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97866821289062, 40.77262878417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99327087402344, 40.7575798034668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98973846435547, 40.762481689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99079132080078, 40.74953842163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01467895507812, 40.71358108520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98721313476562, 40.75059509277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834777832031, 40.74808120727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814268", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99980926513672, 40.72050476074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99577331542969, 40.76445007324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00019836425781, 40.73699951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9603271484375, 40.77008819580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87383270263672, 40.77337646484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96346282958984, 40.76194763183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97648620605469, 40.748558044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00150299072266, 40.72774887084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95500183105469, 40.7734489440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0023422241211, 40.7504997253418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98619079589844, 40.73480987548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0010757446289, 40.741485595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98543548583984, 40.76307678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814812", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98882293701172, 40.736854553222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97453308105469, 40.76207733154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79161834716797, 40.645240783691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814677", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96805572509766, 40.76264190673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0024185180664, 40.738525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815000", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99408721923828, 40.726688385009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00553894042969, 40.745758056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95332336425781, 40.785362243652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97795104980469, 40.7520637512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814091", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00209045410156, 40.74026870727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98861694335938, 40.74482345581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00154113769531, 40.7181510925293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96599578857422, 40.76232147216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95096588134766, 40.77902603149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00515747070312, 40.72272872924805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97340393066406, 40.74837875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98648071289062, 40.759666442871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9921646118164, 40.76399612426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9417724609375, 40.79853057861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9703598022461, 40.75225830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96842956542969, 40.75067901611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96600341796875, 40.75864028930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98282623291016, 40.766910552978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98545837402344, 40.73179244995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99340057373047, 40.702449798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97774505615234, 40.75234603881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98515319824219, 40.73242950439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9911117553711, 40.751338958740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8628921508789, 40.769161224365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814297", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95292663574219, 40.76559829711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9863510131836, 40.76723098754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95352935791016, 40.78508758544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9946517944336, 40.718727111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96627044677734, 40.76183319091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00682830810547, 40.73101043701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98452758789062, 40.75505065917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97016906738281, 40.7995491027832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96502685546875, 40.771629333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99053955078125, 40.74123764038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9743881225586, 40.753448486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97164916992188, 40.75038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9821548461914, 40.73203659057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99848937988281, 40.681610107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99981689453125, 40.71913528442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96617889404297, 40.753700256347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99848937988281, 40.681610107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95375061035156, 40.79063034057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822784423828, 40.74782943725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97396850585938, 40.75421905517578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97888946533203, 40.75606155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98261260986328, 40.77317810058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813972", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98680114746094, 40.742835998535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01181030273438, 40.713768005371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98193359375, 40.768680572509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9867935180664, 40.74449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9867935180664, 40.74449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9867935180664, 40.74449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9718017578125, 40.762935638427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98931884765625, 40.7583122253418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00225067138672, 40.7399787902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.73645782470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01314544677734, 40.716182708740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97518920898438, 40.7523307800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96302032470703, 40.77223205566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97347259521484, 40.75705337524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97026062011719, 40.76180648803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0009994506836, 40.742576599121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9879150390625, 40.75974655151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97236633300781, 40.7651481628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00359344482422, 40.70602798461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96263122558594, 40.75846862792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.76675033569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00668334960938, 40.71656799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.970458984375, 40.75212478637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96186828613281, 40.7677001953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00421142578125, 40.72186279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96172332763672, 40.770687103271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9794692993164, 40.7347412109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96076202392578, 40.76126480102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99259948730469, 40.71432876586914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9880599975586, 40.76044464111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814631", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97604370117188, 40.76251983642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98848724365234, 40.7601318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9677734375, 40.75600051879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86280059814453, 40.76878356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133850097656, 40.769126892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98989868164062, 40.75706481933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8637924194336, 40.76968765258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98854064941406, 40.718788146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9857406616211, 40.732730865478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98806762695312, 40.73786926269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.88626861572266, 40.76654815673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9660415649414, 40.75875473022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98603820800781, 40.722225189208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99325561523438, 40.74745178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262786865234, 40.7596321105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98614501953125, 40.75543975830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95667266845703, 40.775123596191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98954010009766, 40.746246337890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813989", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00495910644531, 40.72057342529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96488189697266, 40.755821228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00618743896484, 40.72336959838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9621353149414, 40.77924728393555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96866607666016, 40.750545501708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97213745117188, 40.79656982421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98127746582031, 40.78102111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00233459472656, 40.72652053833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95347595214844, 40.77109909057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9797134399414, 40.76321029663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86389923095703, 40.76991653442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98760986328125, 40.74172592163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934173583984, 40.756160736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98185729980469, 40.7683219909668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98185729980469, 40.743473052978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96437072753906, 40.76049041748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99121856689453, 40.74993133544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00003814697266, 40.72710037231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97242736816406, 40.75856399536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98811340332031, 40.749412536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99223327636719, 40.74898910522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97520446777344, 40.76556396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97430419921875, 40.76228332519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98603057861328, 40.75221633911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98441314697266, 40.7632942199707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95502471923828, 40.78035354614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9916763305664, 40.75019454956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98919677734375, 40.74781036376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99433135986328, 40.766380310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814620", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97007751464844, 40.797264099121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00254821777344, 40.744598388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98509979248047, 40.75783157348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98174285888672, 40.773406982421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550201416016, 40.78205871582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730697631836, 40.774131774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96682739257812, 40.76129913330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97386169433594, 40.759979248046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98831939697266, 40.768985748291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87100982666016, 40.77389144897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95467376708984, 40.773075103759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93685150146484, 40.8194694519043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97399139404297, 40.76314163208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97260284423828, 40.74823760986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97985076904297, 40.74324035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97240447998047, 40.75896072387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00224304199219, 40.750518798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98567962646484, 40.72861862182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95204162597656, 40.78446960449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.73244857788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814424", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98858642578125, 40.76396560668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86274719238281, 40.768951416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86274719238281, 40.768951416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9997329711914, 40.727176666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94798278808594, 40.78308868408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98597717285156, 40.75223922729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814814", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95030212402344, 40.786773681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98216247558594, 40.77065658569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0014877319336, 40.74618911743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97530364990234, 40.765201568603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98104095458984, 40.737579345703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98976135253906, 40.76231002807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9771728515625, 40.757991790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814871", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.75611114501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88520050048828, 40.77276611328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97901153564453, 40.7618522644043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99810791015625, 40.71704864501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9800033569336, 40.76536560058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01248168945312, 40.70287322998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97782135009766, 40.73298263549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98957061767578, 40.756473541259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95060729980469, 40.708343505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98882293701172, 40.729888916015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.984130859375, 40.75484848022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99127960205078, 40.760189056396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96758270263672, 40.76578140258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.981201171875, 40.74125289916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96186065673828, 40.76831817626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98648071289062, 40.75969314575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00286865234375, 40.76021957397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00542449951172, 40.74091720581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97394561767578, 40.75032424926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98645782470703, 40.77734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95880889892578, 40.7600212097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97589874267578, 40.760475158691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822784423828, 40.72199249267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814476", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333953857422, 40.729618072509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9885025024414, 40.743896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9719009399414, 40.74957275390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814210", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97715759277344, 40.78959274291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97420501708984, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98930358886719, 40.74192428588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98876190185547, 40.74842071533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.726810455322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97876739501953, 40.766666412353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98674774169922, 40.7398567199707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00408935546875, 40.738040924072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.777931213378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9777603149414, 40.738319396972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9468994140625, 40.79254913330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98554992675781, 40.73609924316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98435974121094, 40.7432746887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97516632080078, 40.76374053955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95176696777344, 40.76970291137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00435638427734, 40.74237060546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95206451416016, 40.77731704711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87088012695312, 40.77370071411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96233367919922, 40.75918960571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96507263183594, 40.759700775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99983978271484, 40.75739288330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97420501708984, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95645904541016, 40.76806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814531", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9640884399414, 40.77434539794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00199890136719, 40.73490905761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0154800415039, 40.70999526977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99901580810547, 40.7298583984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0074234008789, 40.715660095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9627456665039, 40.76661682128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98074340820312, 40.688350677490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00723266601562, 40.728179931640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97757720947266, 40.76359939575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97026824951172, 40.761634826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00137329101562, 40.76252365112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96408081054688, 40.77095031738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97966766357422, 40.7349967956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97381591796875, 40.75151443481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.974365234375, 40.7636604309082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00496673583984, 40.70962905883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98282623291016, 40.769168853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114776611328, 40.752906799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114776611328, 40.752906799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98263549804688, 40.78494644165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99183654785156, 40.75012969970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9807357788086, 40.744903564453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102783203125, 40.727760314941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98187255859375, 40.745811462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0030288696289, 40.749141693115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.987060546875, 40.771240234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98958587646484, 40.735721588134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95457458496094, 40.783966064453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96806335449219, 40.75117874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95983123779297, 40.76129913330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96818542480469, 40.77077865600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9708480834961, 40.75577163696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99397277832031, 40.751461029052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99339294433594, 40.76250076293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9546890258789, 40.7656364440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93516540527344, 40.79627990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97407531738281, 40.7528190612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97835540771484, 40.75252914428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87307739257812, 40.77418518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98624420166016, 40.74589157104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86370849609375, 40.769832611083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174835205078, 40.79485321044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9857406616211, 40.74483108520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98526763916016, 40.73503112792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95862579345703, 40.783878326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97351837158203, 40.7518196105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.86297607421875, 40.76980972290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0159912109375, 40.71123123168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86290740966797, 40.769100189208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96036529541016, 40.761375427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97505950927734, 40.75497055053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96090698242188, 40.76932144165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813857", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98567962646484, 40.74732971191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99300384521484, 40.75004196166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97042846679688, 40.75628662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00239562988281, 40.75019836425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0053939819336, 40.725555419921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442840576172, 40.7522087097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98303985595703, 40.77748107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98643493652344, 40.72964096069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97041320800781, 40.7651481628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92691802978516, 40.80663299560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99066925048828, 40.7304801940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97271728515625, 40.74443817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98687744140625, 40.750518798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99943542480469, 40.73224639892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00859832763672, 40.71977233886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9917984008789, 40.72608184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99394989013672, 40.72018051147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814526", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86323547363281, 40.769569396972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99394989013672, 40.72018051147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814526", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79016876220703, 40.64344024658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.989013671875, 40.670021057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813961", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86341094970703, 40.76952362060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95156860351562, 40.7738037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99636840820312, 40.76350021362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99543762207031, 40.71754837036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99543762207031, 40.71754837036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00686645507812, 40.729400634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99925231933594, 40.727638244628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814863", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00729370117188, 40.741329193115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97366333007812, 40.7556037902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94738006591797, 40.78438949584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99569702148438, 40.72475814819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417877197266, 40.74585723876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98719787597656, 40.76044845581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769058227539, 40.758445739746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96019744873047, 40.71086883544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813810", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96019744873047, 40.71086883544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813810", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98523712158203, 40.73612594604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98468780517578, 40.74311828613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96055603027344, 40.79762268066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233032226562, 40.7313346862793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91857147216797, 40.765602111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881591796875, 40.754051208496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769515991211, 40.75873565673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324798583984, 40.76282501220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814720", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429870605469, 40.73723602294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612213134766, 40.778778076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01342010498047, 40.71384048461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9852523803711, 40.727699279785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814664", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153900146484, 40.75010681152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95171356201172, 40.7735481262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99795532226562, 40.7563362121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98902130126953, 40.771724700927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98526763916016, 40.75852584838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97906494140625, 40.78527069091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78985595703125, 40.64392852783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95586395263672, 40.779666900634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95712280273438, 40.780113220214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95411682128906, 40.784339904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01228332519531, 40.70344924926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97847747802734, 40.748008728027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98997497558594, 40.74646759033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814600", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799896240234, 40.7440185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98076629638672, 40.765228271484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99842834472656, 40.76085662841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99325561523438, 40.72226333618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0128173828125, 40.716880798339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96792602539062, 40.76862335205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00618743896484, 40.734100341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99738311767578, 40.73677062988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415161132812, 40.78887176513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0013656616211, 40.731143951416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97700500488281, 40.75153732299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98323822021484, 40.77130126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87290954589844, 40.774173736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98326110839844, 40.76435852050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97506713867188, 40.74919128417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.02754211425781, 40.73932647705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99081420898438, 40.75596618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98058319091797, 40.74842834472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96961975097656, 40.800262451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.782371520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95723724365234, 40.780033111572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97470092773438, 40.75096893310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00535583496094, 40.72001266479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9447021484375, 40.77949142456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.83014678955078, 40.75945281982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814286", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98816680908203, 40.71841049194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95260620117188, 40.741607666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.77314376831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98602294921875, 40.72642135620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98950958251953, 40.74774169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98571014404297, 40.7352409362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98731994628906, 40.75611114501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814521", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96920013427734, 40.763221740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96211242675781, 40.767452239990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906005859375, 40.75127029418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95557403564453, 40.7853889465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612213134766, 40.76227951049805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97358703613281, 40.75724792480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814440", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95935821533203, 40.771568298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801254272461, 40.77079772949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98392486572266, 40.73218536376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96247100830078, 40.77886962890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79447174072266, 40.65697479248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96807098388672, 40.80126190185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992156982422, 40.75703811645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95333099365234, 40.77587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96034240722656, 40.773048400878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.77314376831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96034240722656, 40.773048400878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97454071044922, 40.75947570800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95542907714844, 40.71828079223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00537109375, 40.721290588378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.72055435180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.72055435180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.77535629272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814992", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96851348876953, 40.76470947265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814259", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97792053222656, 40.78644943237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.754791259765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747085571289, 40.77789306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98917388916016, 40.76837158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775619506836, 40.75867462158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814210", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98094177246094, 40.75060272216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99434661865234, 40.74360656738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9227294921875, 40.774410247802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97565460205078, 40.75192642211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99390411376953, 40.68168640136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235870361328, 40.75326919555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00035095214844, 40.73019027709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9924545288086, 40.74870300292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96208953857422, 40.7702751159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99054718017578, 40.74568176269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94971466064453, 40.78048324584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814288", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.780208587646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86354064941406, 40.769710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98458099365234, 40.7487907409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95521545410156, 40.76853561401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.7630500793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9834213256836, 40.7500114440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98030853271484, 40.76544952392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95455932617188, 40.77775955200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00003051757812, 40.74317169189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87645721435547, 40.73625946044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98957061767578, 40.7204704284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9533920288086, 40.77956008911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97381591796875, 40.76287078857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9852523803711, 40.77833557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.740570068359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97911071777344, 40.74708938598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9726791381836, 40.74675369262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94989776611328, 40.78035354614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00773620605469, 40.7050895690918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99126434326172, 40.72331619262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98757934570312, 40.71971130371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95301055908203, 40.77206802368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9632568359375, 40.77479934692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99844360351562, 40.7197151184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813913", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98543548583984, 40.76102066040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9770278930664, 40.785186767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98628234863281, 40.7459831237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78292083740234, 40.64432907104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.749698638916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96578979492188, 40.800479888916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95084381103516, 40.7790412902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814572", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9789047241211, 40.75010299682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95679473876953, 40.766510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78292083740234, 40.64432907104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.72618865966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99040222167969, 40.75723648071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98918914794922, 40.75811004638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00704193115234, 40.72987365722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98863220214844, 40.73128128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00823974609375, 40.74112319946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93827056884766, 40.712623596191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814241", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99579620361328, 40.74388122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94947052001953, 40.781219482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96907806396484, 40.79686737060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97856140136719, 40.76496887207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99579620361328, 40.74388122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233795166016, 40.768394470214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96806335449219, 40.76243209838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99212646484375, 40.73781204223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9719009399414, 40.762481689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99288177490234, 40.739349365234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97103881835938, 40.788516998291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.69279861450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98438262939453, 40.725040435791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97016143798828, 40.76240921020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96678924560547, 40.75706100463867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679138183594, 40.74359893798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444793701172, 40.70753479003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96308135986328, 40.769168853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814677", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78773498535156, 40.6431770324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.963134765625, 40.75801467895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99467468261719, 40.74037170410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78773498535156, 40.6431770324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9972915649414, 40.72161102294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847183227539, 40.74856185913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94609832763672, 40.773128509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98664093017578, 40.740081787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97581481933594, 40.75749969482422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00631713867188, 40.73875427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99775695800781, 40.73613739013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95246124267578, 40.77827835083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788589477539, 40.772430419921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95157623291016, 40.7664680480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96803283691406, 40.76372146606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95157623291016, 40.7664680480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97631072998047, 40.74885177612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97765350341797, 40.786590576171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97325134277344, 40.78494644165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98597717285156, 40.747467041015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814521", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9803466796875, 40.78538513183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96649169921875, 40.77037048339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96337890625, 40.77455139160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814521", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9955062866211, 40.7252082824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0045166015625, 40.705448150634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96912384033203, 40.76083755493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747543334961, 40.74205780029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98053741455078, 40.76311111450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9701919555664, 40.75966262817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416137695312, 40.76509094238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.72541046142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96005249023438, 40.8097038269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98373413085938, 40.76263427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96281433105469, 40.76700973510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96395874023438, 40.76523971557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9639663696289, 40.76787567138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87310028076172, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97116088867188, 40.758079528808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99827575683594, 40.73518371582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96810150146484, 40.76226043701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99140167236328, 40.74995040893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97039794921875, 40.78400802612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01019287109375, 40.72029113769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814145", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.72547149658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9830093383789, 40.756919860839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98793029785156, 40.76021194458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98030853271484, 40.76185989379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9539566040039, 40.7729606628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8709716796875, 40.77366256713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79181671142578, 40.64105224609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00424194335938, 40.7219352722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9630126953125, 40.774959564208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94844818115234, 40.81398010253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814050", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9715576171875, 40.7641716003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.762577056884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95848083496094, 40.76451110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9671401977539, 40.7886848449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99698638916016, 40.72257995605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99636840820312, 40.75900650024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96058654785156, 40.719627380371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96189880371094, 40.805625915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01518249511719, 40.715396881103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0078353881836, 40.740501403808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00404357910156, 40.75177764892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814664", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00570678710938, 40.71800994873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97279357910156, 40.7633171081543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814526", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98245239257812, 40.74570083618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00630187988281, 40.73320770263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98085021972656, 40.74482727050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99176788330078, 40.73839569091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97432708740234, 40.67984390258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96481323242188, 40.77252960205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99842071533203, 40.72496032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97930145263672, 40.7520637512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00541687011719, 40.7407112121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00977325439453, 40.704132080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679138183594, 40.788360595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01484680175781, 40.70933532714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95340728759766, 40.77970886230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96363830566406, 40.757484436035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95892333984375, 40.77214050292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95640563964844, 40.787025451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075866699219, 40.76063537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00540161132812, 40.75157165527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.96781921386719, 40.755950927734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814666", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738540649414, 40.75857925415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98479461669922, 40.74800109863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98798370361328, 40.735435485839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99150085449219, 40.75045394897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98535919189453, 40.75360870361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9971923828125, 40.721981048583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96810913085938, 40.7557258605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.746490478515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814194", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96038818359375, 40.772239685058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97998046875, 40.76047134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930419921875, 40.723297119140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97637939453125, 40.75222396850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00347137451172, 40.732547760009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98914337158203, 40.71847152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.004150390625, 40.707275390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416137695312, 40.755191802978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664077758789, 40.794429779052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99349975585938, 40.727333068847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97907257080078, 40.74605178833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96118927001953, 40.768890380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.988525390625, 40.721561431884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97997283935547, 40.75455856323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98385620117188, 40.69483184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99234771728516, 40.749351501464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96145629882812, 40.7744255065918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814457", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96316528320312, 40.77778625488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94951629638672, 40.714073181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814960", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97595977783203, 40.76344299316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.72821044921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.963134765625, 40.77091598510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99246978759766, 40.73751449584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00748443603516, 40.74664306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174835205078, 40.79475784301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955871582031, 40.76051330566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98914337158203, 40.71847152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00299072265625, 40.73320770263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.751731872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00350189208984, 40.714107513427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00299072265625, 40.73320770263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590850830078, 40.73523712158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97682189941406, 40.78824234008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814762", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97978973388672, 40.74330139160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814529", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95816040039062, 40.77576446533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9645767211914, 40.76005554199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99520874023438, 40.744590759277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98098754882812, 40.729373931884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99028015136719, 40.75593948364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99755859375, 40.76197052001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.990966796875, 40.74556350708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123168945312, 40.763755798339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95359802246094, 40.76713943481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9547119140625, 40.78373718261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814209", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98687744140625, 40.720977783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814476", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8727035522461, 40.774166107177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490142822266, 40.74357986450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99845123291016, 40.73382568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7856674194336, 40.648826599121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00818634033203, 40.7452392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00818634033203, 40.7452392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8636703491211, 40.76973342895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97990417480469, 40.783851623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00154113769531, 40.73223876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87091827392578, 40.773738861083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00016784667969, 40.76151657104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9579849243164, 40.773292541503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95242309570312, 40.78389358520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98301696777344, 40.76097869873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98391723632812, 40.78084945678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01013946533203, 40.71219253540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883041381836, 40.76420974731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96525573730469, 40.766483306884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99691009521484, 40.737308502197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814485", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97733306884766, 40.74540710449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813820", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99542999267578, 40.744266510009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99542999267578, 40.744266510009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98298645019531, 40.76651382446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98298645019531, 40.76651382446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98970031738281, 40.74647903442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814912", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96013641357422, 40.808101654052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98480224609375, 40.758270263671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98977661132812, 40.725868225097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97708129882812, 40.7876091003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99492645263672, 40.733985900878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96595001220703, 40.77397918701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0080337524414, 40.73966598510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00682830810547, 40.735748291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8708724975586, 40.77385711669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930419921875, 40.73683166503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814092", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96021270751953, 40.77035903930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98542785644531, 40.73878479003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98635864257812, 40.71809387207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98635864257812, 40.71809387207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96817779541016, 40.78689193725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751068115234, 40.72926712036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97572326660156, 40.76382064819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.87077331542969, 40.77378845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99881744384766, 40.6810188293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98048400878906, 40.74829864501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98695373535156, 40.76846694946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96905517578125, 40.76228713989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332214355469, 40.766326904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95899200439453, 40.76824188232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94800567626953, 40.78961181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9553451538086, 40.782867431640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00212860107422, 40.739654541015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98836517333984, 40.737030029296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99374389648438, 40.727298736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814042", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01160430908203, 40.722103118896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95014190673828, 40.78403091430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97308349609375, 40.75837326049805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658203125, 40.765480041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96259307861328, 40.7996711730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689056396484, 40.78009033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689056396484, 40.78009033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98422241210938, 40.69558334350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97356414794922, 40.762874603271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98338317871094, 40.73033905029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9549331665039, 40.78761672973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95787811279297, 40.77737808227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99250793457031, 40.75571060180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00596618652344, 40.74853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.73491668701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0047607421875, 40.72161102294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98112487792969, 40.72505187988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99212646484375, 40.76411056518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97073364257812, 40.76176452636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97634887695312, 40.775630950927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98151397705078, 40.783775329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814724", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661041259766, 40.760841369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97655487060547, 40.747833251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00189208984375, 40.72807693481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96670532226562, 40.76423645019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0090103149414, 40.706180572509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.75588607788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.75667190551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96514892578125, 40.775177001953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87288665771484, 40.77420425415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00183868408203, 40.73784255981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99423217773438, 40.724857330322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98613739013672, 40.74053955078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95545196533203, 40.7791862487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95545196533203, 40.7791862487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442840576172, 40.78005599975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01714324951172, 40.705291748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97428894042969, 40.793731689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088073730469, 40.778350830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088073730469, 40.778350830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97496032714844, 40.75662612915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97496032714844, 40.75662612915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98939514160156, 40.76729965209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9761734008789, 40.765525817871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.777435302734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99310302734375, 40.747718811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808120727539, 40.77983856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98049926757812, 40.73217010498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813857", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99174499511719, 40.76133728027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95706176757812, 40.774051666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95377349853516, 40.77043533325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97518157958984, 40.75286102294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661041259766, 40.739959716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98522186279297, 40.7482795715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00505828857422, 40.73711395263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00505828857422, 40.73711395263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9838638305664, 40.7601432800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98095703125, 40.74171829223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99899291992188, 40.73427963256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00533294677734, 40.706356048583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.750160217285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00209045410156, 40.72446823120117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.781982421875, 40.64459991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95098876953125, 40.771759033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834014892578, 40.752159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96627807617188, 40.7646484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088073730469, 40.78242111206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99236297607422, 40.75971984863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922103881836, 40.75410461425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96346282958984, 40.761783599853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97423553466797, 40.756614685058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97368621826172, 40.79222869873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99589538574219, 40.75917434692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98070526123047, 40.75061798095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00213623046875, 40.74123001098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97351837158203, 40.76443862915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798812866211, 40.780941009521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98149108886719, 40.78107833862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98149108886719, 40.78107833862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98724365234375, 40.75617599487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99989318847656, 40.71913146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98687744140625, 40.733299255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01443481445312, 40.713966369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99160766601562, 40.747928619384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95113372802734, 40.77870178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94718170166016, 40.825721740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00386810302734, 40.74750900268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97193145751953, 40.74631881713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96805572509766, 40.762821197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99226379394531, 40.72504806518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96749114990234, 40.787986755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96805572509766, 40.762821197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97576904296875, 40.74876022338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9534683227539, 40.76744079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0063247680664, 40.73961639404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814478", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95664978027344, 40.77084732055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98214721679688, 40.7690315246582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025863647461, 40.733787536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00367736816406, 40.748233795166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98302459716797, 40.76622009277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97315979003906, 40.78519058227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93511199951172, 40.6968994140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814328", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98857116699219, 40.741397857666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96420288085938, 40.756431579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97736358642578, 40.75526809692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.73305892944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0036849975586, 40.72227096557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00835418701172, 40.70775604248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00835418701172, 40.70775604248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98628234863281, 40.77760696411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95832061767578, 40.77302169799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9764404296875, 40.73963928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.73305892944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.72761154174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813899", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98990631103516, 40.725704193115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97297668457031, 40.7635383605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98428344726562, 40.742671966552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99193572998047, 40.72632598876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870086669922, 40.76375961303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98007202148438, 40.73484802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99171447753906, 40.74397659301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98329162597656, 40.760948181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9726791381836, 40.75606155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97402954101562, 40.73986053466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97402954101562, 40.73986053466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97747802734375, 40.74946975708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9850845336914, 40.742069244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96366119384766, 40.69207000732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96366119384766, 40.69207000732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287200927734, 40.746028900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815000", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96582794189453, 40.7586784362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814910", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77897644042969, 40.64738845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99905395507812, 40.73935317993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995208740234, 40.73420715332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96178436279297, 40.75568771362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96441650390625, 40.77330017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94473266601562, 40.77946090698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98949432373047, 40.76268768310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815149", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.980224609375, 40.78361511230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98468017578125, 40.77973556518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97179412841797, 40.79746627807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813959", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98468017578125, 40.77973556518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98119354248047, 40.73329162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78211212158203, 40.64464569091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97564697265625, 40.764610290527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834014892578, 40.750816345214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092864990234, 40.751277923583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87127685546875, 40.77401351928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813755", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995208740234, 40.73447799682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817886352539, 40.768150329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.956787109375, 40.77750015258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97285461425781, 40.76182556152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99705505371094, 40.72063064575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97969055175781, 40.74556350708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00144958496094, 40.74022674560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95037078857422, 40.77973175048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95267486572266, 40.778438568115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95160675048828, 40.77774429321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96546173095703, 40.75929641723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137115478516, 40.759796142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98944854736328, 40.74782180786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98200225830078, 40.743125915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96602630615234, 40.767799377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194122314453, 40.7578010559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9992904663086, 40.73405075073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99834442138672, 40.71999740600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99252319335938, 40.713958740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99003601074219, 40.72539520263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95276641845703, 40.77214813232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822021484375, 40.72361373901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814620", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00817108154297, 40.71426010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87306213378906, 40.774070739746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9967041015625, 40.72494888305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95951080322266, 40.777191162109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99932098388672, 40.7544059753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.005126953125, 40.719139099121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97476196289062, 40.71860885620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96868133544922, 40.75456237792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0018310546875, 40.7459716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97332000732422, 40.78676986694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98705291748047, 40.74966812133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291778564453, 40.73902130126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78334045410156, 40.64378356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9864273071289, 40.745750427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98212432861328, 40.783226013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98310852050781, 40.76388931274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95863342285156, 40.76029586791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223114013672, 40.768470764160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814675", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95374298095703, 40.766563415527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814792", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.73339080810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97793579101562, 40.77876663208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98898315429688, 40.74853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.981689453125, 40.767826080322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9988021850586, 40.71721649169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814593", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98715209960938, 40.750770568847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97361755371094, 40.78456115722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00190734863281, 40.740501403808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86292266845703, 40.768699645996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00199127197266, 40.72446060180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.979736328125, 40.7541389465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814695", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97601318359375, 40.74055099487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86344909667969, 40.76979064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96646118164062, 40.79446029663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95768737792969, 40.643211364746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814291", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99537658691406, 40.759498596191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97714233398438, 40.77671813964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96307373046875, 40.7623405456543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98876953125, 40.75347900390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97389221191406, 40.76432800292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99467468261719, 40.750240325927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99467468261719, 40.750240325927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00151062011719, 40.73222732543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98514556884766, 40.74177551269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97392272949219, 40.656761169433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.7503662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97489166259766, 40.787811279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95474243164062, 40.76972961425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96344757080078, 40.774471282958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94844818115234, 40.78480911254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99408721923828, 40.751121520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813859", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.763389587402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134063720703, 40.7513313293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333953857422, 40.72745895385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333953857422, 40.72745895385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01398468017578, 40.713958740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9703140258789, 40.76187515258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99215698242188, 40.74263381958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97486877441406, 40.760677337646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102020263672, 40.755821228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9911117553711, 40.71738815307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814910", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98189544677734, 40.77836227416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96155548095703, 40.774147033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95039367675781, 40.77568817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804916381836, 40.778160095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94706726074219, 40.77971267700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98148345947266, 40.73714828491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97362518310547, 40.76264190673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95144653320312, 40.76993942260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97875213623047, 40.724082946777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97936248779297, 40.77263641357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97895050048828, 40.76152038574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9790267944336, 40.76422882080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96183776855469, 40.7637825012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0083999633789, 40.713993072509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0083999633789, 40.713993072509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.73044204711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.73044204711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00188446044922, 40.71937942504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98577880859375, 40.75220489501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550201416016, 40.76137924194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99419403076172, 40.751365661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00857543945312, 40.73283004760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99568939208984, 40.7387809753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97396850585938, 40.78398895263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96822357177734, 40.768131256103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96822357177734, 40.768131256103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97187805175781, 40.79452896118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8655014038086, 40.77022933959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97118377685547, 40.758548736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.75274658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00611114501953, 40.74034881591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97760009765625, 40.749549865722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815099", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97390747070312, 40.76364517211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99378967285156, 40.74660873413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814712", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.975830078125, 40.744991302490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689819335938, 40.76570129394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845962524414, 40.74551010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79045104980469, 40.64656066894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98831939697266, 40.72776412963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9933853149414, 40.7523193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658203125, 40.79301452636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813953", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9937515258789, 40.736148834228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814098", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95841979980469, 40.783958435058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98765563964844, 40.750152587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9861831665039, 40.72627258300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97213745117188, 40.75265884399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00239562988281, 40.74709701538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9649887084961, 40.791709899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96123504638672, 40.78035354614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94752502441406, 40.659507751464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96619415283203, 40.7573356628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01555633544922, 40.711341857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98983764648438, 40.71543884277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00212860107422, 40.734649658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.00627899169922, 40.71672821044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015045166016, 40.755836486816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9919662475586, 40.749168395996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98613739013672, 40.75204086303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87332153320312, 40.77286911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9598617553711, 40.76258087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98617553710938, 40.772212982177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.779449462890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95362854003906, 40.78205871582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265838623047, 40.757415771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98942565917969, 40.751590728759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98604583740234, 40.757328033447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814329", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98055267333984, 40.76737976074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98055267333984, 40.76737976074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98350524902344, 40.76459503173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815047", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96199798583984, 40.77948760986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814935", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.76015090942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814039", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99668884277344, 40.757659912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814815", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99336242675781, 40.73596954345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98489379882812, 40.76390075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98408508300781, 40.748905181884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97783660888672, 40.684654235839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813862", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96810150146484, 40.80240249633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922103881836, 40.748931884765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922103881836, 40.748931884765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231079101562, 40.767433166503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814749", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0069808959961, 40.70555877685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96110534667969, 40.76069259643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87310028076172, 40.774139404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908218383789, 40.755889892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814532", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97885131835938, 40.785247802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9990234375, 40.744571685791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97959899902344, 40.720340728759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96765899658203, 40.76849365234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97774505615234, 40.7545280456543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9634780883789, 40.75779342651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99144744873047, 40.75130844116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98289489746094, 40.7421760559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98432922363281, 40.7599983215332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99276733398438, 40.69374084472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99238586425781, 40.74878692626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.72216033935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9710464477539, 40.79837417602539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9375228881836, 40.8043098449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194885253906, 40.76873016357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96992492675781, 40.763004302978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98832702636719, 40.720096588134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "12"}}, {"geometry": {"type": "Point", "coordinates": [-73.98003387451172, 40.766353607177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96278381347656, 40.774200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99826049804688, 40.73537826538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96448516845703, 40.76493453979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98955535888672, 40.76699447631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813763", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9543685913086, 40.76407241821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.73187255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96107482910156, 40.81193161010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814438", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9521484375, 40.7812614440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99787902832031, 40.74509048461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94612121582031, 40.77728271484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98217010498047, 40.76835632324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96240234375, 40.77277755737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98914337158203, 40.748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814456", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94061279296875, 40.79310989379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98654174804688, 40.776851654052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814262", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9728012084961, 40.75933074951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0012435913086, 40.731632232666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00813293457031, 40.736968994140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99159240722656, 40.72979736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97958374023438, 40.75236129760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97958374023438, 40.75236129760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97196197509766, 40.753631591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78874969482422, 40.6469841003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9502182006836, 40.80647277832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98258209228516, 40.7311897277832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96060943603516, 40.765830993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9856185913086, 40.76797103881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96573638916016, 40.75444030761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98670959472656, 40.76088333129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814330", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95308685302734, 40.76782989501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813961", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.758628845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813232421875, 40.725040435791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813232421875, 40.725040435791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.7509651184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0064926147461, 40.70574188232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99249267578125, 40.74834442138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.97379302978516, 40.7504768371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909896850586, 40.72792434692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86392211914062, 40.77009963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.83719635009766, 40.88418960571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759750366211, 40.76548385620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97821044921875, 40.752201080322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98858642578125, 40.76395034790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00747680664062, 40.70492935180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95134735107422, 40.77021026611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95924377441406, 40.77174758911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.984619140625, 40.779396057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95335388183594, 40.7786865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97342681884766, 40.764198303222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813871", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78980255126953, 40.64371109008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96448516845703, 40.75614547729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98078918457031, 40.760189056396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96383666992188, 40.77690505981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95421600341797, 40.78474044799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95421600341797, 40.78474044799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96643829345703, 40.79433822631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96643829345703, 40.79433822631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92684173583984, 40.76271438598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814333", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95571899414062, 40.7702751159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.76752471923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97570037841797, 40.73115921020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.998779296875, 40.74477767944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.76061248779297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98713684082031, 40.74763107299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97695922851562, 40.75873947143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97738647460938, 40.750667572021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98191833496094, 40.73679733276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98667907714844, 40.75707244873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01045227050781, 40.72977828979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86387634277344, 40.76982879638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8636474609375, 40.769840240478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99871063232422, 40.757625579833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00459289550781, 40.74710464477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98595428466797, 40.76276397705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814913", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088073730469, 40.74475860595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99724578857422, 40.72230911254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9836196899414, 40.756229400634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9981918334961, 40.75075149536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97438049316406, 40.76155471801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9734878540039, 40.75243377685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98259735107422, 40.7651481628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95441436767578, 40.764251708984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814734", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00824737548828, 40.715110778808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813804", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95441436767578, 40.764251708984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814734", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97607421875, 40.78125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9786148071289, 40.75590515136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00440216064453, 40.71952819824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9659423828125, 40.765380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9707260131836, 40.75291442871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934173583984, 40.736080169677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815144", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9861068725586, 40.75950241088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9861068725586, 40.75950241088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99171447753906, 40.729679107666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814361", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95769500732422, 40.71304702758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808349609375, 40.73799133300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95603942871094, 40.771976470947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98058319091797, 40.76046371459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99173736572266, 40.72985076904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97147369384766, 40.76285934448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97702026367188, 40.784942626953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0030517578125, 40.72689437866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98930358886719, 40.768001556396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98989868164062, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96614837646484, 40.76763153076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95099639892578, 40.77480697631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96907043457031, 40.761417388916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99592590332031, 40.753807067871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9695816040039, 40.76287078857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77961730957031, 40.647682189941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9913330078125, 40.755455017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96975708007812, 40.763099670410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97893524169922, 40.77204895019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98039245605469, 40.753360748291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99947357177734, 40.74909973144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8731689453125, 40.77399444580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99211120605469, 40.7421760559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98941040039062, 40.740535736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.75282669067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901123046875, 40.74081802368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99524688720703, 40.760108947753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00037384033203, 40.731483459472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9322280883789, 40.76473617553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291015625, 40.73140335083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98188781738281, 40.76139450073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98664855957031, 40.75843811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0062026977539, 40.73305130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236846923828, 40.75682830810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94976043701172, 40.78432083129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9979476928711, 40.740806579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814429", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98081970214844, 40.75951385498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0062026977539, 40.73305130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98081970214844, 40.75951385498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9622802734375, 40.77887725830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96925354003906, 40.785499572753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841857910156, 40.748531341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97709655761719, 40.774742126464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9916763305664, 40.751739501953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96014404296875, 40.77899932861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841857910156, 40.748531341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98734283447266, 40.73310089111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98734283447266, 40.73310089111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96014404296875, 40.77899932861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97421264648438, 40.78301239013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073791503906, 40.730499267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98448181152344, 40.74275207519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98619079589844, 40.72653579711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.757450103759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98622131347656, 40.762176513671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99512481689453, 40.74473190307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98518371582031, 40.74443817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0077133178711, 40.7149772644043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9818344116211, 40.77246856689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611236572266, 40.781219482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96554565429688, 40.7718505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079116821289, 40.73948287963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96914672851562, 40.76626968383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97342681884766, 40.76382064819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93070983886719, 40.76634979248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611236572266, 40.781219482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00267028808594, 40.7287712097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98171997070312, 40.73246383666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814670", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95564270019531, 40.788021087646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005889892578, 40.738468170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95564270019531, 40.788021087646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96587371826172, 40.765350341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01039123535156, 40.72024154663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99784851074219, 40.722713470458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96398162841797, 40.77119827270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822021484375, 40.7379035949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0040054321289, 40.72544479370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9821548461914, 40.75798797607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98806762695312, 40.737701416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96710205078125, 40.752952575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98583221435547, 40.7410888671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95443725585938, 40.78971481323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98778533935547, 40.74513626098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99922180175781, 40.75236129760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00524139404297, 40.73639678955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99601745605469, 40.733245849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99547576904297, 40.739585876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96172332763672, 40.759891510009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95144653320312, 40.78526306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97894287109375, 40.744503021240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815019", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0000991821289, 40.732852935791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97503662109375, 40.75373840332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97503662109375, 40.75373840332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98280334472656, 40.762088775634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98606872558594, 40.75223159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97132110595703, 40.755706787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01139831542969, 40.71025466918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98198699951172, 40.76900100708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99510955810547, 40.72146224975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97554779052734, 40.75265884399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97822570800781, 40.74843978881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99979400634766, 40.76125717163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124145507812, 40.75006866455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8709487915039, 40.77377700805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814412", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815902709961, 40.780418395996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96195983886719, 40.77381134033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814259", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93927001953125, 40.84218978881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.695926666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.695926666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99994659423828, 40.7331428527832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.97736358642578, 40.779541015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00090026855469, 40.729339599609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00404357910156, 40.7112922668457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99564361572266, 40.744361877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87096405029297, 40.77375411987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7790756225586, 40.64747619628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98298645019531, 40.7504997253418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96115112304688, 40.77006530761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99243927001953, 40.69428634643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9764404296875, 40.75627136230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98966979980469, 40.739139556884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955871582031, 40.790321350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955871582031, 40.790321350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98466491699219, 40.72884750366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97084045410156, 40.756324768066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98082733154297, 40.76476287841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00392150878906, 40.753074645996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99472045898438, 40.73210525512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99291229248047, 40.7285041809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98726654052734, 40.750572204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.72945785522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98993682861328, 40.74159622192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98968505859375, 40.75208282470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00552368164062, 40.73830032348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9748306274414, 40.79304885864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0083236694336, 40.73564910888672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98090362548828, 40.784202575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98611450195312, 40.76193618774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00553894042969, 40.72733688354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235107421875, 40.756404876708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235107421875, 40.756404876708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99832153320312, 40.74560546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814330", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95668029785156, 40.76702117919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98975372314453, 40.725685119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.75185775756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908676147461, 40.730220794677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98856353759766, 40.742919921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98523712158203, 40.739078521728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.984130859375, 40.737449645996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96070098876953, 40.777530670166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00162506103516, 40.737518310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.942626953125, 40.755889892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847640991211, 40.74857711791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98587036132812, 40.726749420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99945831298828, 40.73884963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9519271850586, 40.78152847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815001", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.74232864379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00924682617188, 40.712528228759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814718", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96880340576172, 40.76701736450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98511505126953, 40.717472076416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98153686523438, 40.76369857788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98008728027344, 40.76055145263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99088287353516, 40.71791076660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815144", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95352935791016, 40.76716232299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98225402832031, 40.7484130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95510864257812, 40.76510238647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.02570343017578, 40.621158599853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741149902344, 40.755531311035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814593", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94679260253906, 40.78053665161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98724365234375, 40.73329162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98816680908203, 40.68669509887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97344970703125, 40.76355743408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95397186279297, 40.778968811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99488830566406, 40.740516662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7886734008789, 40.64206314086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99188995361328, 40.72605514526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814739", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612213134766, 40.73095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97604370117188, 40.75191116333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99139404296875, 40.74974822998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96441650390625, 40.80670166015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98473358154297, 40.73695755004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99712371826172, 40.75713348388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01129913330078, 40.70335388183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96794891357422, 40.75533676147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00897216796875, 40.71928787231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00897216796875, 40.71928787231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00990295410156, 40.72098159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01115417480469, 40.716426849365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94401550292969, 40.78862762451172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98774719238281, 40.7006721496582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9475326538086, 40.83066177368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8635025024414, 40.76948928833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0051498413086, 40.74147033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95934295654297, 40.774330139160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815156", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00779724121094, 40.70491409301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99112701416016, 40.723793029785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9964599609375, 40.73801040649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97046661376953, 40.75857162475586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99368286132812, 40.75179672241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94993591308594, 40.68036651611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97884368896484, 40.74757385253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.75027084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94239807128906, 40.84135818481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9887924194336, 40.74494171142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825439453125, 40.742645263671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.72385025024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9692611694336, 40.76902770996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97909545898438, 40.74427032470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99143981933594, 40.748069763183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.73368453979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97055053710938, 40.78810119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00579071044922, 40.740325927734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00459289550781, 40.70758819580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98434448242188, 40.745887756347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98178100585938, 40.728572845458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78205871582031, 40.64480972290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814667", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.748111724853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00347137451172, 40.74971008300781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194885253906, 40.763458251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00350189208984, 40.72370147705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97802734375, 40.75556182861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98190307617188, 40.74087142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96549987792969, 40.76295471191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96810913085938, 40.75117111206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97762298583984, 40.749290466308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98136138916016, 40.75878143310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99703216552734, 40.74209976196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95577239990234, 40.778846740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814658", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98701477050781, 40.77162551879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98207092285156, 40.762821197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.76181411743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99089050292969, 40.750850677490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98224639892578, 40.76832580566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98334503173828, 40.77113342285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99024200439453, 40.75695037841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814388", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98627471923828, 40.761837005615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.778926849365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174835205078, 40.75407791137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814960", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97248840332031, 40.78601837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9551010131836, 40.76472854614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99097442626953, 40.74211883544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96965026855469, 40.75933837890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065948486328, 40.759796142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00387573242188, 40.74037551879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00816345214844, 40.71235275268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814215", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97172546386719, 40.76166534423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99201965332031, 40.75046920776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00326538085938, 40.73280334472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98250579833984, 40.75114440917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98937225341797, 40.752716064453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99537658691406, 40.71733856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99492645263672, 40.72768020629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226165771484, 40.76818084716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.73297119140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94662475585938, 40.77324676513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97097778320312, 40.766990661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.77777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97113037109375, 40.75117874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01182556152344, 40.70758819580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98809814453125, 40.750003814697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9691162109375, 40.790889739990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00543975830078, 40.727237701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95464324951172, 40.76737976074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9690170288086, 40.75841522216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98023223876953, 40.76567840576172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00638580322266, 40.70644760131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95466613769531, 40.764034271240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99832916259766, 40.74546813964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94729614257812, 40.77963638305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98856353759766, 40.74801254272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94483947753906, 40.778995513916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814749", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974136352539, 40.736793518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97185516357422, 40.76588439941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845199584961, 40.742549896240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99935913085938, 40.733829498291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96602630615234, 40.7584114074707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96602630615234, 40.7584114074707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96083068847656, 40.769508361816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95233917236328, 40.768917083740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928207397461, 40.744789123535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9534683227539, 40.77960968017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99154663085938, 40.750213623046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815060", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99375915527344, 40.7355842590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9507064819336, 40.77927017211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87353515625, 40.77397537231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9668197631836, 40.76985168457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98045349121094, 40.774845123291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95365142822266, 40.76652908325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86372375488281, 40.76936340332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081909179688, 40.773868560791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00359344482422, 40.732181549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96470642089844, 40.775665283203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99527740478516, 40.76007843017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814774", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9757080078125, 40.78181076049805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95507049560547, 40.779388427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204040527344, 40.74578857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99356079101562, 40.74977111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95494079589844, 40.78096389770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00531005859375, 40.72589874267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98665618896484, 40.75151062011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813871", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0008316040039, 40.725746154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95207977294922, 40.773109436035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932632446289, 40.752498626708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814483", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95530700683594, 40.782928466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86609649658203, 40.77061080932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98239135742188, 40.77479934692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814100", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.89897155761719, 40.745849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814917", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99046325683594, 40.740379333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9839859008789, 40.75493621826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.76241683959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813807", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99082946777344, 40.72794723510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00421142578125, 40.72554016113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95632934570312, 40.763362884521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97276306152344, 40.756813049316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9681396484375, 40.759639739990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8627700805664, 40.768798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98706817626953, 40.76588821411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9949722290039, 40.7250862121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98926544189453, 40.75815963745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99342346191406, 40.74982452392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95230865478516, 40.77273178100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00544738769531, 40.74073028564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95345306396484, 40.72849655151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96997833251953, 40.785858154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01044464111328, 40.71878433227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99021911621094, 40.76171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98072052001953, 40.68990707397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00090789794922, 40.73672103881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96292114257812, 40.76649475097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.979248046875, 40.740360260009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97660064697266, 40.75590896606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8734130859375, 40.77366638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9696044921875, 40.768428802490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99467468261719, 40.680572509765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814623", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96630096435547, 40.789703369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0019760131836, 40.72955322265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875259399414, 40.72869110107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99366760253906, 40.75202560424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95738220214844, 40.77445983886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9716567993164, 40.750736236572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.74993896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97537994384766, 40.797523498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98454284667969, 40.769832611083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00214385986328, 40.73956298828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95462799072266, 40.77782440185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92525482177734, 40.77307891845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01659393310547, 40.70634460449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96760559082031, 40.763275146484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98441314697266, 40.73311233520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99659729003906, 40.74272537231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9846420288086, 40.73659133911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233032226562, 40.745750427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99718475341797, 40.74208450317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754638671875, 40.74558639526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754638671875, 40.74558639526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9916000366211, 40.749908447265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0165786743164, 40.70787811279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91807556152344, 40.75856399536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00431823730469, 40.72547149658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316955566406, 40.76145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9739761352539, 40.763038635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429870605469, 40.71878433227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9458236694336, 40.775299072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.75039291381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.977783203125, 40.79060363769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99688720703125, 40.73720169067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9952163696289, 40.73945617675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97674560546875, 40.74736404418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814582", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96257781982422, 40.79432678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93203735351562, 40.76534652709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814051", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00224304199219, 40.7396354675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814189", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96499633789062, 40.75979995727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99217224121094, 40.72541046142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00347137451172, 40.729984283447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97254943847656, 40.75252914428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98960876464844, 40.7496223449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98863983154297, 40.737083435058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9853744506836, 40.74766159057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813820", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99595642089844, 40.748931884765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.72883224487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95940399169922, 40.76743698120117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98554229736328, 40.746795654296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98889923095703, 40.69225311279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99752044677734, 40.751468658447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134826660156, 40.749778747558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00910186767578, 40.713462829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99433898925781, 40.761512756347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95391845703125, 40.7751350402832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97447204589844, 40.741912841796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01042175292969, 40.70940017700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820556640625, 40.73276138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081909179688, 40.77374267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98847198486328, 40.764244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00086212158203, 40.73188018798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99022674560547, 40.7562255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7880630493164, 40.641422271728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97504425048828, 40.777645111083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9610595703125, 40.76913070678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0075912475586, 40.73221969604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.76504135131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86273193359375, 40.76871109008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813785", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9896240234375, 40.72039794921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94850158691406, 40.782264709472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00264739990234, 40.74946594238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98474884033203, 40.769371032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95160675048828, 40.785160064697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99710845947266, 40.72256088256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00435638427734, 40.74201965332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99961853027344, 40.73350524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153900146484, 40.75460433959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.718902587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0029067993164, 40.72822570800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78185272216797, 40.644832611083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99188995361328, 40.725948333740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87291717529297, 40.774200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98648071289062, 40.766929626464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661804199219, 40.7471809387207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813953", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9839096069336, 40.775569915771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99989318847656, 40.72434997558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95919799804688, 40.76344680786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932861328125, 40.7474479675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9009017944336, 40.74134826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99092864990234, 40.736385345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87287902832031, 40.77428436279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87287902832031, 40.77428436279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00248718261719, 40.73979187011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9768295288086, 40.76448059082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96944427490234, 40.80018997192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814385", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97122192382812, 40.758506774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97370910644531, 40.77943801879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0116958618164, 40.72220230102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98809814453125, 40.74576950073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814329", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97356414794922, 40.7437629699707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96476745605469, 40.757408142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9947509765625, 40.73460006713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99578857421875, 40.74386978149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95277404785156, 40.772464752197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97760009765625, 40.76431655883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815149", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98680114746094, 40.73963928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96534729003906, 40.75503158569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97628784179688, 40.75185012817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98869323730469, 40.76889419555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00130462646484, 40.72538375854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98066711425781, 40.75044250488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97669982910156, 40.75318908691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98948669433594, 40.757728576660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9695816040039, 40.75381088256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814444", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98131561279297, 40.77913284301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99539947509766, 40.74470138549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814631", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00777435302734, 40.745296478271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98780059814453, 40.700618743896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97085571289062, 40.74749755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814709", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98595428466797, 40.722747802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98595428466797, 40.722747802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96607971191406, 40.805301666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78197479248047, 40.64467239379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.1009292602539, 40.68394088745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98451232910156, 40.76329803466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9709243774414, 40.761985778808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814739", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78228759765625, 40.64455032348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796081542969, 40.71889114379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9863052368164, 40.74042892456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94515228271484, 40.808021545410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99437713623047, 40.74079513549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86280822753906, 40.768978118896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95304870605469, 40.772560119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78202819824219, 40.64486312866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.985595703125, 40.718109130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825668334961, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00270080566406, 40.73976135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99855041503906, 40.74190902709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97122192382812, 40.76354217529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78672790527344, 40.64641189575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98857116699219, 40.74149703979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99217224121094, 40.764198303222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00647735595703, 40.73860549926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00164031982422, 40.74605941772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00476837158203, 40.71894073486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00450897216797, 40.722801208496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8125, 40.69553756713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97872924804688, 40.772361755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96867370605469, 40.76443099975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.76042175292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9527587890625, 40.776397705078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98807525634766, 40.73463821411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808837890625, 40.74489974975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98604583740234, 40.76069259643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99622344970703, 40.74315643310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96920013427734, 40.75912857055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.774776458740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922866821289, 40.75933837890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901123046875, 40.75619125366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085998535156, 40.74227523803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0, 40.7381706237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98900604248047, 40.7569580078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98126220703125, 40.76885986328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814259", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97700500488281, 40.737998962402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98085021972656, 40.75364303588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00503540039062, 40.70730209350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93846130371094, 40.80290985107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93846130371094, 40.80290985107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96607208251953, 40.76224899291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00576782226562, 40.73651885986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97010803222656, 40.756568908691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98111724853516, 40.741783142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814628", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95550537109375, 40.76441955566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97114562988281, 40.7581901550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93450164794922, 40.762386322021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95340728759766, 40.76683044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813863", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96926879882812, 40.755088806152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99176788330078, 40.72605514526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94591522216797, 40.77347183227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96504211425781, 40.80669403076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9560317993164, 40.776180267333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99343872070312, 40.72154998779297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749984741211, 40.741851806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814696", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95235443115234, 40.777000427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95235443115234, 40.777000427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799896240234, 40.75637435913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814288", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96704864501953, 40.798431396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9552230834961, 40.773460388183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98712921142578, 40.72941970825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814212", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99081420898438, 40.756446838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97755432128906, 40.787410736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814208", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01188659667969, 40.70732879638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96397399902344, 40.77654266357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97932434082031, 40.78452682495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00176239013672, 40.73506164550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97718811035156, 40.7519645690918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97074890136719, 40.79350662231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99214935302734, 40.7642936706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814041", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97500610351562, 40.78745651245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96847534179688, 40.79936599731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99247741699219, 40.74867630004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814438", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98211669921875, 40.77261734008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99330139160156, 40.73685836791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0014419555664, 40.74116134643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99507904052734, 40.725379943847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97635650634766, 40.74392318725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9803695678711, 40.76567077636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99574279785156, 40.764469146728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814761", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78196716308594, 40.644718170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96977996826172, 40.76020050048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99231719970703, 40.74359893798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97441101074219, 40.76490020751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891586303711, 40.7364616394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930191040039, 40.74812316894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00453186035156, 40.70537185668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98182678222656, 40.749359130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94001007080078, 40.75135803222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00651550292969, 40.73571014404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814384", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95428466796875, 40.78141403198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0035400390625, 40.74339294433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99728393554688, 40.72489547729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96819305419922, 40.76224899291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843933105469, 40.757225036621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563171386719, 40.75726318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.775482177734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98053741455078, 40.75068283081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9517593383789, 40.782020568847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99971771240234, 40.73338317871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98014831542969, 40.74890899658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00209045410156, 40.71516036987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00335693359375, 40.723880767822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95626831054688, 40.71416091918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95758056640625, 40.76546859741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95758056640625, 40.76546859741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96001434326172, 40.77054214477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.77156066894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.77156066894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9766845703125, 40.752540588378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9770278930664, 40.75600814819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97190856933594, 40.75615692138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9860610961914, 40.722293853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825210571289, 40.770503997802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95377349853516, 40.775203704833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99778747558594, 40.73611068725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01530456542969, 40.71427917480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98367309570312, 40.726070404052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814527", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98002624511719, 40.76066970825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95631408691406, 40.784645080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95809173583984, 40.76942825317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99948120117188, 40.73855972290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97726440429688, 40.75875473022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01524353027344, 40.71440887451172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99903869628906, 40.754638671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97057342529297, 40.7834587097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088836669922, 40.765869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01097106933594, 40.70885467529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95085906982422, 40.774932861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97761535644531, 40.7520751953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92845916748047, 40.70326232910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98304748535156, 40.67723846435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96994018554688, 40.75686264038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98229217529297, 40.755863189697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98222351074219, 40.767311096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98583984375, 40.74725341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98583984375, 40.74725341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00853729248047, 40.7332878112793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729019165039, 40.773963928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00753784179688, 40.7258415222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9615707397461, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98501586914062, 40.74193572998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99594116210938, 40.72520065307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287200927734, 40.77192687988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00366973876953, 40.73858642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9874496459961, 40.72113800048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "13"}}, {"geometry": {"type": "Point", "coordinates": [-73.9874496459961, 40.72113800048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "13"}}, {"geometry": {"type": "Point", "coordinates": [-73.86272430419922, 40.76886749267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "9"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804916381836, 40.751304626464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97481536865234, 40.75710678100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00361633300781, 40.744415283203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95040130615234, 40.70676803588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99019622802734, 40.751983642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99019622802734, 40.751983642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97014617919922, 40.76234817504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98245239257812, 40.75143814086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96853637695312, 40.79903030395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96199035644531, 40.76780319213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86265563964844, 40.76895523071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97734832763672, 40.776729583740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87301635742188, 40.774131774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97024536132812, 40.75597381591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.91967010498047, 40.87178039550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9874496459961, 40.74961853027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7814712524414, 40.6448860168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01100158691406, 40.71541976928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96407318115234, 40.75476837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96407318115234, 40.75476837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99362182617188, 40.721309661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00827026367188, 40.71065902709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99568939208984, 40.73307800292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.727230072021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9493179321289, 40.77286911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96208953857422, 40.80059814453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9840087890625, 40.75986862182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86289978027344, 40.769046783447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99097442626953, 40.73479080200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.951904296875, 40.781982421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96478271484375, 40.76160430908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9869613647461, 40.76762771606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.973388671875, 40.78499984741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9937515258789, 40.73548126220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.74345016479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98970031738281, 40.75306701660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98970031738281, 40.75306701660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00628662109375, 40.7049446105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97408294677734, 40.79130172729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98611450195312, 40.76747131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86048126220703, 40.75117111206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97845458984375, 40.77756881713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00971984863281, 40.714839935302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98196411132812, 40.773319244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97907257080078, 40.7523193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97942352294922, 40.771453857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97062683105469, 40.78684997558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95498657226562, 40.78007125854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808837890625, 40.788719177246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814268", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98198699951172, 40.75212097167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98493957519531, 40.741844177246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00382232666016, 40.72587966918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0169906616211, 40.704898834228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95330047607422, 40.76759719848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00243377685547, 40.733760833740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98391723632812, 40.765289306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96319580078125, 40.76652145385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.10090637207031, 40.68397903442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814530", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204040527344, 40.768795013427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99308013916016, 40.73667907714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98789978027344, 40.73823928833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01566314697266, 40.71205139160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98977661132812, 40.73347091674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814578", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98120880126953, 40.73810958862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7886962890625, 40.65419006347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9653091430664, 40.771846771240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0053482055664, 40.72208023071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98040008544922, 40.760196685791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96367645263672, 40.77432632446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9515151977539, 40.77776336669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235107421875, 40.75962829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9710922241211, 40.75508117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99519348144531, 40.749778747558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822998046875, 40.768211364746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00171661376953, 40.74591064453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98680877685547, 40.74529266357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796844482422, 40.71992874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97514343261719, 40.75545120239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96324157714844, 40.77511978149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98735046386719, 40.775848388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94530487060547, 40.802310943603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00765991210938, 40.72461700439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00765991210938, 40.72461700439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95877075195312, 40.8153190612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815011", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96520233154297, 40.76407241821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814341", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96154022216797, 40.77419662475586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814696", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00889587402344, 40.70612335205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00801086425781, 40.723323822021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97740936279297, 40.75379943847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96195983886719, 40.779415130615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98494720458984, 40.7373161315918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95428466796875, 40.77822494506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661041259766, 40.74299240112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96717834472656, 40.77267074584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98922729492188, 40.74203109741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96993255615234, 40.79978942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9548568725586, 40.769004821777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9717025756836, 40.755531311035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98532104492188, 40.75929260253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.958740234375, 40.77227020263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9973373413086, 40.7194709777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798355102539, 40.76176071166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9953384399414, 40.749629974365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98180389404297, 40.76030349731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78178405761719, 40.64472579956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94207000732422, 40.83293151855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814649", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94207000732422, 40.83293151855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814649", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564147949219, 40.72698974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98375701904297, 40.7652587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814078", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97993469238281, 40.74325180053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97789001464844, 40.76462173461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0085678100586, 40.70423126220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754638671875, 40.76534652709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96910095214844, 40.764129638671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9951171875, 40.739681243896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216796875, 40.76036071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.970947265625, 40.758487701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.970947265625, 40.758487701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.966796875, 40.759010314941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97272491455078, 40.75886535644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99650573730469, 40.742637634277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99703979492188, 40.73731994628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9777603149414, 40.75209045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99481201171875, 40.72578430175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99250030517578, 40.73069381713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262786865234, 40.7623291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9947509765625, 40.73473358154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216796875, 40.7966194152832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97754669189453, 40.77700424194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940826416016, 40.76167678833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9902114868164, 40.75713348388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98689270019531, 40.74858856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96131134033203, 40.81182861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96778869628906, 40.79219055175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814246", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96037292480469, 40.7729606628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.763370513916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98126220703125, 40.759239196777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97762298583984, 40.77931594848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99113464355469, 40.74977493286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94586181640625, 40.777679443359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815010", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90950775146484, 40.861778259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98947143554688, 40.718017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.77410888671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00608825683594, 40.73455047607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95883178710938, 40.76370620727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96022033691406, 40.77043914794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.747188568115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.89822387695312, 40.758148193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95069122314453, 40.768890380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332977294922, 40.7664794921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99220275878906, 40.72507858276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98947143554688, 40.768028259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9855728149414, 40.744171142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98977661132812, 40.75762939453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97117614746094, 40.74906539916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813954", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95177459716797, 40.773651123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99878692626953, 40.74945831298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87078094482422, 40.77375411987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99559783935547, 40.690467834472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96024322509766, 40.7790412902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97203826904297, 40.762657165527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98094940185547, 40.76373291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98094940185547, 40.76373291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9715347290039, 40.75918197631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814712", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95075225830078, 40.77934646606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0063247680664, 40.74144744873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99047088623047, 40.756282806396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814438", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99634552001953, 40.75822830200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96707153320312, 40.79350662231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9240951538086, 40.744022369384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162841796875, 40.73257827758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801254272461, 40.74306869506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00457763671875, 40.707176208496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9849624633789, 40.7688102722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97588348388672, 40.74483871459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9931411743164, 40.7278938293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9890365600586, 40.75782012939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78974914550781, 40.64677810668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698211669922, 40.75477981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98228454589844, 40.76448440551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98944854736328, 40.73579025268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0048828125, 40.737518310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9994125366211, 40.72835159301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814812", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.74272155761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95170593261719, 40.76970672607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99188995361328, 40.71630859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99188995361328, 40.71630859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99188995361328, 40.71630859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00154113769531, 40.74024963378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804458618164, 40.751564025878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99527740478516, 40.72218322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0043716430664, 40.7424201965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814961", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97237396240234, 40.78115463256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98877716064453, 40.72685623168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00797271728516, 40.723541259765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98285675048828, 40.72283172607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98126983642578, 40.7292594909668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97256469726562, 40.75617599487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97360229492188, 40.755741119384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95557403564453, 40.768672943115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97994232177734, 40.766456604003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97626495361328, 40.78239822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94766235351562, 40.78034591674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97332000732422, 40.75590515136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99433898925781, 40.70301055908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9762954711914, 40.75855255126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98776245117188, 40.758724212646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98552703857422, 40.7606201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98868560791016, 40.778472900390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9866714477539, 40.72578048706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0068588256836, 40.716373443603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00616455078125, 40.73478317260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00226593017578, 40.74047088623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01669311523438, 40.704856872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9521255493164, 40.79005432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95433807373047, 40.76607894897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98017883300781, 40.75128173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8634033203125, 40.76969909667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.015625, 40.71012878417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.015625, 40.71012878417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9959487915039, 40.743324279785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97527313232422, 40.75215148925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814772", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99412536621094, 40.75108337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813986", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99412536621094, 40.75108337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813986", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9966812133789, 40.72233581542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96739196777344, 40.76342010498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9764175415039, 40.7593994140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99121856689453, 40.67142868041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00310516357422, 40.73326110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97863006591797, 40.777748107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78964233398438, 40.643184661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95931243896484, 40.771549224853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92282104492188, 40.74393081665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98567199707031, 40.74087142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.95471954345703, 40.773250579833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.75893783569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00192260742188, 40.74055862426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99166107177734, 40.750301361083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95458984375, 40.78398132324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9905776977539, 40.7509765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99520874023438, 40.759483337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98713684082031, 40.768760681152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9698715209961, 40.763179779052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95967864990234, 40.77964782714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98033142089844, 40.745182037353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97273254394531, 40.78082275390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99028778076172, 40.737586975097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98683166503906, 40.73722839355469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96438598632812, 40.767478942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99279022216797, 40.74143600463867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265838623047, 40.7354736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265838623047, 40.7354736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97933197021484, 40.665889739990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814377", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98835754394531, 40.73731994628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98835754394531, 40.73731994628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01571655273438, 40.71003723144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97822570800781, 40.74563217163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98310852050781, 40.766361236572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79023742675781, 40.64677810668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814215", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95573425292969, 40.77916717529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99429321289062, 40.73503875732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99429321289062, 40.73503875732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99276733398438, 40.742942810058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99485778808594, 40.739898681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96864318847656, 40.75499725341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00121307373047, 40.7464485168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96981048583984, 40.75755310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98609924316406, 40.74591827392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98609924316406, 40.74591827392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95915222167969, 40.7799072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97296905517578, 40.76369857788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.873046875, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813994", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.97953033447266, 40.7843017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815019", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00509643554688, 40.72175216674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97920227050781, 40.75233840942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96035766601562, 40.75788116455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98058319091797, 40.738365173339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96269989013672, 40.767250061035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9718246459961, 40.76387023925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99764251708984, 40.7236213684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9933853149414, 40.747352600097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95479583740234, 40.76542663574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.7500114440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95589447021484, 40.776126861572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97866821289062, 40.736610412597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99586486816406, 40.73862838745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96100616455078, 40.769081115722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9599838256836, 40.77363586425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98800659179688, 40.754581451416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95225524902344, 40.77279281616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813820", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99369812011719, 40.75223159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00334167480469, 40.72731018066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97775268554688, 40.75230026245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9421615600586, 40.80638885498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96519470214844, 40.75960159301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079116821289, 40.70526123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.75231170654297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98823547363281, 40.754337310791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98823547363281, 40.754337310791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.75363540649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91775512695312, 40.77046585083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9538803100586, 40.785011291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99408721923828, 40.75113296508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98080444335938, 40.742218017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97944641113281, 40.784828186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98615264892578, 40.726226806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99972534179688, 40.73860168457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9913330078125, 40.749881744384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98246765136719, 40.76829147338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97786712646484, 40.75224685668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814629", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01347351074219, 40.71443176269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95854949951172, 40.76861572265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95525360107422, 40.76741027832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9669189453125, 40.7936897277832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00499725341797, 40.723175048828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01611328125, 40.70473861694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876937866211, 40.74995803833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99862670898438, 40.734649658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98001098632812, 40.78351593017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814353", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96503448486328, 40.75584030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98059844970703, 40.75968551635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99806213378906, 40.754127502441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0102767944336, 40.71233367919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814649", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97015380859375, 40.79758834838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98393249511719, 40.72553253173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814330", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94916534423828, 40.79715347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96820068359375, 40.80215835571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814999", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00209045410156, 40.73942947387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97193145751953, 40.750328063964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97319793701172, 40.7530403137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00680541992188, 40.748756408691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.95219421386719, 40.77778625488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00418090820312, 40.742958068847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98290252685547, 40.77750015258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9915771484375, 40.75484848022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97975158691406, 40.75531005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97073364257812, 40.788299560546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96778869628906, 40.76300811767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0082778930664, 40.73735046386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96278381347656, 40.77216720581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98902893066406, 40.72689437866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9647216796875, 40.75564956665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96916198730469, 40.80095672607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98530578613281, 40.75876998901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97400665283203, 40.751625061035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98026275634766, 40.765621185302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00218200683594, 40.729591369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99604797363281, 40.73208999633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93994140625, 40.708133697509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99391174316406, 40.74125671386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97383880615234, 40.76298904418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00811004638672, 40.72262954711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78185272216797, 40.64469528198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.974853515625, 40.76388168334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98172760009766, 40.78023147583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98628997802734, 40.72240447998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00668334960938, 40.71175003051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95182037353516, 40.77312088012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95182037353516, 40.77312088012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0062484741211, 40.739601135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98677825927734, 40.77669906616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415161132812, 40.77865982055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415161132812, 40.77865982055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917938232422, 40.755889892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00627899169922, 40.7333984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815147", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95536804199219, 40.76860046386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881362915039, 40.700626373291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98977661132812, 40.733829498291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94499206542969, 40.783199310302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9866943359375, 40.7297477722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98184967041016, 40.7667121887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97984313964844, 40.75154113769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0062484741211, 40.733848571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97364044189453, 40.77960968017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551177978516, 40.75328063964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96588134765625, 40.762454986572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98881530761719, 40.722084045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9593734741211, 40.77033996582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99067687988281, 40.746028900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99235534667969, 40.753780364990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96914672851562, 40.79606628417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97177124023438, 40.74673843383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95889282226562, 40.78105926513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96800231933594, 40.79981994628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99400329589844, 40.73609924316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96177673339844, 40.77109146118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813863", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95256042480469, 40.810943603515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.76199722290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97994995117188, 40.7606315612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96956634521484, 40.76609802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97875213623047, 40.76218032836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98224639892578, 40.75883102416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00141143798828, 40.74715042114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98985290527344, 40.748661041259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00358581542969, 40.747535705566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96980285644531, 40.79484939575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96658325195312, 40.79317855834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98780822753906, 40.75457763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814208", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153137207031, 40.76508331298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98966979980469, 40.74802780151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97863006591797, 40.75385665893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98379516601562, 40.746368408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98592376708984, 40.75374984741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9969711303711, 40.72039031982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99475860595703, 40.718505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814246", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97925567626953, 40.7358512878418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841094970703, 40.74858093261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99069213867188, 40.739959716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881591796875, 40.741024017333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87287902832031, 40.77422332763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99298858642578, 40.74300003051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78912353515625, 40.64690017700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98121643066406, 40.73289108276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96444702148438, 40.77061080932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98304748535156, 40.74488830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98941802978516, 40.74793243408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95039367675781, 40.77153015136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99877166748047, 40.723182678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92243194580078, 40.74332046508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99471282958984, 40.72850799560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529052734375, 40.741851806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898452758789, 40.7561149597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97566223144531, 40.75239944458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00152587890625, 40.74679183959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796844482422, 40.75827407836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95012664794922, 40.771549224853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94437408447266, 40.71446228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0154800415039, 40.705039978027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96630859375, 40.80442810058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97757720947266, 40.755340576171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96977233886719, 40.75324249267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95510864257812, 40.78852081298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814841", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908020019531, 40.744346618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9649887084961, 40.76664352416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99022674560547, 40.73770523071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99022674560547, 40.73770523071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.75221633911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815021", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658432006836, 40.759883880615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00051879882812, 40.72898864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97431945800781, 40.74266815185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00223541259766, 40.708961486816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98878479003906, 40.74862289428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00236511230469, 40.72151565551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814297", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01294708251953, 40.71596908569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9643325805664, 40.6829833984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96764373779297, 40.803043365478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814348", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99748992919922, 40.76387405395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95789337158203, 40.776275634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95789337158203, 40.776275634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96358489990234, 40.777122497558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0094223022461, 40.7036018371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96798706054688, 40.79978942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00739288330078, 40.741241455078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96936798095703, 40.76405334472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814508", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96395874023438, 40.768150329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99112701416016, 40.756065368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96963500976562, 40.76033401489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97903442382812, 40.76674270629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96788024902344, 40.76266098022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813754", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98982238769531, 40.756446838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884033203125, 40.7538948059082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98705291748047, 40.750911712646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813807", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429870605469, 40.72893142700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.765869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00662994384766, 40.74324035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00662994384766, 40.74324035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99372100830078, 40.75189971923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.986083984375, 40.767311096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99140930175781, 40.75020980834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99291229248047, 40.754756927490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97708129882812, 40.7647819519043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843521118164, 40.746158599853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86259460449219, 40.76889419555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97743225097656, 40.76129913330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95930480957031, 40.780033111572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96676635742188, 40.7641716003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96672058105469, 40.77296829223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95488739013672, 40.769222259521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98645782470703, 40.75822830200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97029876708984, 40.79656982421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814338", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98715209960938, 40.7374267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98385620117188, 40.755149841308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9870376586914, 40.77606964111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0132064819336, 40.716392517089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95502471923828, 40.76922607421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98932647705078, 40.73012924194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95320892333984, 40.76694107055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98663330078125, 40.761627197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572204589844, 40.738128662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572204589844, 40.738128662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95359802246094, 40.771148681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95359802246094, 40.771148681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98443603515625, 40.73691940307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813953", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9869155883789, 40.733299255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95215606689453, 40.781925201416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95752716064453, 40.761993408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95960998535156, 40.76703643798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98294830322266, 40.76700973510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98876953125, 40.75694274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9835433959961, 40.75947189331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95339965820312, 40.76693344116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94416809082031, 40.74638748168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01469421386719, 40.717079162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98250579833984, 40.74812698364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99373626708984, 40.73616027832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00086212158203, 40.736141204833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00462341308594, 40.737640380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.73414993286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.73414993286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98749542236328, 40.7552604675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98749542236328, 40.7552604675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97348022460938, 40.75509262084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.75689697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95610046386719, 40.76380920410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216033935547, 40.759544372558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97877502441406, 40.762115478515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.77791213989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.77791213989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00464630126953, 40.75205993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814436", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96947479248047, 40.80011749267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96947479248047, 40.80011749267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.73396682739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96339416503906, 40.79925537109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0026626586914, 40.728179931640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95226287841797, 40.78404998779297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9894027709961, 40.75772476196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96390533447266, 40.76610565185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96390533447266, 40.76610565185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99405670166016, 40.751121520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815008", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78182220458984, 40.64471435546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98115539550781, 40.78447723388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9593734741211, 40.808650970458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78214263916016, 40.64472961425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99600219726562, 40.76466751098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289154052734, 40.737022399902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98937225341797, 40.77660369873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97911834716797, 40.75954818725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98753356933594, 40.7607307434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77671813964844, 40.645530700683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9834213256836, 40.766048431396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98137664794922, 40.767967224121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96131896972656, 40.76913833618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97528076171875, 40.75202178955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95458221435547, 40.769779205322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94908905029297, 40.77730941772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98445892333984, 40.736942291259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99523162841797, 40.67967987060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95195007324219, 40.782955169677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96167755126953, 40.795902252197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97210693359375, 40.78670883178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96345520019531, 40.80877685546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98747253417969, 40.755943298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97441864013672, 40.78339767456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97708892822266, 40.76464080810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96219635009766, 40.779293060302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96183776855469, 40.759700775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97264862060547, 40.7529411315918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9740982055664, 40.763038635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96379852294922, 40.77125930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00167083740234, 40.73237991333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97911834716797, 40.75309753417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95491790771484, 40.76560974121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9498062133789, 40.772029876708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98042297363281, 40.7603645324707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99601745605469, 40.72618103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.755489349365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.755489349365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00550842285156, 40.73937225341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8640365600586, 40.7700309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813827", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.7834243774414, 40.648536682128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0023422241211, 40.724727630615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98085021972656, 40.7745246887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00389099121094, 40.7258186340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99308776855469, 40.75050354003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0128402709961, 40.70616149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00675964355469, 40.7415885925293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98361206054688, 40.76291275024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94692993164062, 40.79133224487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97095489501953, 40.755821228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97425079345703, 40.75129699707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00601959228516, 40.73518753051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94457244873047, 40.77955627441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00091552734375, 40.725711822509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0036392211914, 40.722328186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96636962890625, 40.76154327392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814493", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0141372680664, 40.71375274658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99872589111328, 40.68244934082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95320129394531, 40.77254104614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95526123046875, 40.7690315246582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99176788330078, 40.74919128417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97051239013672, 40.78899383544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94544982910156, 40.780296325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01139068603516, 40.71501922607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97350311279297, 40.75645065307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98375701904297, 40.72956848144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94066619873047, 40.71186828613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814960", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98119354248047, 40.733070373535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9774169921875, 40.75261306762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814294", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98856353759766, 40.72267532348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97865295410156, 40.7566032409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99217987060547, 40.7439079284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87171173095703, 40.77412414550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814250", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96915435791016, 40.7853889465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98015594482422, 40.78580856323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9500961303711, 40.826995849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9520034790039, 40.798702239990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814290", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98085021972656, 40.77983856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99783325195312, 40.72922134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98652648925781, 40.75366973876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900131225586, 40.7347297668457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928970336914, 40.735599517822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814576", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99304962158203, 40.76841735839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814006", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9943618774414, 40.75099563598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255157470703, 40.767799377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98912048339844, 40.69010925292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98948669433594, 40.74156951904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.734718322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9645767211914, 40.75584030151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813815", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97295379638672, 40.78044128417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99156188964844, 40.75632858276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97374725341797, 40.751380920410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95246124267578, 40.82377624511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227142333984, 40.75324630737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98268127441406, 40.6925048828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98834991455078, 40.7590217590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0009994506836, 40.7418327331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97062683105469, 40.7559700012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98851776123047, 40.74873352050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813906", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96128845214844, 40.7751579284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00553131103516, 40.74095916748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97753143310547, 40.78702163696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99210357666016, 40.759159088134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7901840209961, 40.64667510986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9494857788086, 40.77269744873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9510726928711, 40.78554916381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.74125671386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95603942871094, 40.78459167480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.74125671386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788589477539, 40.74074172973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95501708984375, 40.77336883544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95053100585938, 40.77153396606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94995880126953, 40.78445053100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00226593017578, 40.740203857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96285247802734, 40.76652908325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814291", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96611022949219, 40.76228332519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814724", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884262084961, 40.74834060668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97813415527344, 40.74177169799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95133972167969, 40.7823486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95426177978516, 40.78712463378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01264190673828, 40.701969146728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96833801269531, 40.799591064453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87065887451172, 40.77363967895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99681854248047, 40.7191276550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611999511719, 40.73343276977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00579071044922, 40.70621109008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97406768798828, 40.7571907043457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95042419433594, 40.786659240722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9798355102539, 40.76032257080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939849853516, 40.78501892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96305084228516, 40.774139404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96305084228516, 40.774139404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9859390258789, 40.7587776184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741912841797, 40.69623565673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8731689453125, 40.77410888671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00167846679688, 40.7564811706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8629150390625, 40.76901626586914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0007095336914, 40.73074722290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98432159423828, 40.74332046508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96288299560547, 40.7679557800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99748992919922, 40.74737548828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98187255859375, 40.75783157348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236846923828, 40.7315673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98465728759766, 40.7321891784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98433685302734, 40.7422981262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97744750976562, 40.75193405151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96688842773438, 40.76704788208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97454833984375, 40.75092315673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95350646972656, 40.77960968017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.86385345458984, 40.769710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9937744140625, 40.73275375366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96831512451172, 40.76191329956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98426818847656, 40.75901412963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.996826171875, 40.76010513305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97795867919922, 40.74607849121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87306213378906, 40.77385330200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97289276123047, 40.74888229370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99120330810547, 40.749576568603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99346160888672, 40.74968338012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98336029052734, 40.742523193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99249267578125, 40.756591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96173858642578, 40.79574203491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98356628417969, 40.74782180786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99068450927734, 40.755802154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95024108886719, 40.7925910949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9796371459961, 40.75898742675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97116088867188, 40.763771057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0042724609375, 40.742427825927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98336791992188, 40.76597595214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95223999023438, 40.80881118774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99237060546875, 40.743492126464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97116088867188, 40.763771057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9634780883789, 40.80328369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.77579879760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9835433959961, 40.755958557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96627044677734, 40.764957427978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96806335449219, 40.75547790527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99282836914062, 40.72834014892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96556854248047, 40.7718505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98566436767578, 40.747276306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98225402832031, 40.77228546142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95481872558594, 40.78913879394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96753692626953, 40.7929801940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00376892089844, 40.748191833496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99421691894531, 40.71971130371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96917724609375, 40.761390686035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98968505859375, 40.75239562988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99900817871094, 40.725128173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99405670166016, 40.751258850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.77017593383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896026611328, 40.7440185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814322", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87307739257812, 40.77415084838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98443603515625, 40.721649169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96752166748047, 40.75593566894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97425079345703, 40.6798210144043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98068237304688, 40.77981185913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97403717041016, 40.747413635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97974395751953, 40.75199890136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98904418945312, 40.763221740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088073730469, 40.76516342163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00247955322266, 40.750038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98807525634766, 40.728050231933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97327423095703, 40.616539001464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97167205810547, 40.75593948364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814145", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98326873779297, 40.76145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9357681274414, 40.80025863647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9996566772461, 40.73360061645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97795867919922, 40.74612045288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901123046875, 40.73519515991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77677154541016, 40.64531326293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95349884033203, 40.77125930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94950866699219, 40.80757141113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94181823730469, 40.83110046386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814809", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9541015625, 40.76625061035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00311279296875, 40.706451416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98835754394531, 40.7025260925293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814328", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751831054688, 40.747440338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901351928711, 40.75048065185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814661", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.768497467041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97127532958984, 40.75514602661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93772888183594, 40.79721450805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98448181152344, 40.74325180053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99016571044922, 40.74068069458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99076080322266, 40.71809005737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.75981140136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0008773803711, 40.742042541503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814047", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0008773803711, 40.742042541503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814047", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98448181152344, 40.74325180053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99282836914062, 40.73571014404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93437194824219, 40.7630615234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.74958038330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98875427246094, 40.73090362548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611999511719, 40.763832092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00616455078125, 40.7343635559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814572", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611999511719, 40.763832092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.985107421875, 40.774044036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9911880493164, 40.7503662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98150634765625, 40.773624420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98150634765625, 40.773624420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.989013671875, 40.718894958496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87326049804688, 40.77402877807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814992", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9697265625, 40.766109466552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052490234375, 40.7196044921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775619506836, 40.75394058227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9810791015625, 40.78186798095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79019165039062, 40.643741607666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98909759521484, 40.72032928466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822998046875, 40.76237869262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98848724365234, 40.7313346862793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235870361328, 40.76525115966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153137207031, 40.74983596801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97076416015625, 40.76169204711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99470520019531, 40.750457763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813862", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99756622314453, 40.7209587097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97516632080078, 40.79264450073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98077392578125, 40.765262603759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97325897216797, 40.76411056518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00724792480469, 40.743568420410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.87286376953125, 40.774169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.774009704589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98710632324219, 40.73332977294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01399230957031, 40.71272277832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98710632324219, 40.73332977294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590087890625, 40.76926040649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98147583007812, 40.74469757080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99498748779297, 40.76030349731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00562286376953, 40.74567794799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97740173339844, 40.764244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01544952392578, 40.71438980102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.92649841308594, 40.76074981689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.969970703125, 40.76551818847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96163177490234, 40.75605392456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96502685546875, 40.77571105957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98859405517578, 40.72758865356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.7717399597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95543670654297, 40.76863098144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00560760498047, 40.726688385009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.985595703125, 40.763187408447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00371551513672, 40.72615432739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98120880126953, 40.763580322265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98007202148438, 40.783470153808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95680236816406, 40.78076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96803283691406, 40.7595100402832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97856903076172, 40.76167678833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814212", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98812103271484, 40.728126525878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97056579589844, 40.7968635559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95603942871094, 40.77608871459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563934326172, 40.745208740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841094970703, 40.745967864990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563934326172, 40.745208740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98094177246094, 40.779483795166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00602722167969, 40.7451286315918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99508666992188, 40.71852111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941635131836, 40.751102447509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86359405517578, 40.76984786987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978271484375, 40.79159164428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96036529541016, 40.78154373168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941635131836, 40.751102447509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01806640625, 40.70588302612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96954345703125, 40.75371170043945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97467041015625, 40.74195861816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266815185547, 40.74296188354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262023925781, 40.745262145996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99388122558594, 40.746585845947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00389862060547, 40.747520446777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9762191772461, 40.76542663574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98001861572266, 40.77092742919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814674", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87291717529297, 40.77415084838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9976577758789, 40.741207122802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98468017578125, 40.748016357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98213195800781, 40.773136138916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9565658569336, 40.76688766479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99503326416016, 40.757015228271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813999", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992919921875, 40.7724609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00253295898438, 40.75527572631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.74864196777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.007568359375, 40.742950439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97370147705078, 40.7631950378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95182037353516, 40.77181625366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99638366699219, 40.72374725341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9888916015625, 40.737281799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00468444824219, 40.751853942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00468444824219, 40.751853942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96110534667969, 40.772010803222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98746490478516, 40.75019073486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97803497314453, 40.74858856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95130157470703, 40.778480529785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98081970214844, 40.76750946044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98963928222656, 40.73432159423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98081970214844, 40.76750946044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99435424804688, 40.751216888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99435424804688, 40.751216888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99331665039062, 40.752410888671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00717163085938, 40.735626220703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98016357421875, 40.76728057861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814669", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96151733398438, 40.68793869018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9761962890625, 40.76552200317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98222351074219, 40.765384674072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9978256225586, 40.75120162963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98321533203125, 40.77409362792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9762954711914, 40.77527618408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97842407226562, 40.742645263671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97818756103516, 40.78327560424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249816894531, 40.768253326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9939193725586, 40.73550033569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98417663574219, 40.74900817871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99127960205078, 40.727500915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870086669922, 40.748939514160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511932373047, 40.74099349975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98809051513672, 40.748138427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96595764160156, 40.75849914550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.91812896728516, 40.74665069580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814485", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97259521484375, 40.79069137573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99031066894531, 40.75672149658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99667358398438, 40.7204475402832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98779296875, 40.729461669921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97318267822266, 40.74830627441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994140625, 40.751129150390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94451141357422, 40.8144416809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95234680175781, 40.77273178100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9781723022461, 40.76681137084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96540832519531, 40.763126373291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98167419433594, 40.68767547607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97303009033203, 40.788536071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00288391113281, 40.733619689941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96166229248047, 40.77986145019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96153259277344, 40.77440643310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9895248413086, 40.73527908325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95491027832031, 40.76551055908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9637222290039, 40.77428436279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99403381347656, 40.724822998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.76511764526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97378540039062, 40.7829704284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94781494140625, 40.783382415771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815177", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00288391113281, 40.73361587524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95374298095703, 40.78541946411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98001098632812, 40.74317932128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98206329345703, 40.77238845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97099304199219, 40.76409912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9896240234375, 40.720401763916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97863006591797, 40.78813171386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9790267944336, 40.74281692504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99262237548828, 40.747989654541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834014892578, 40.76647186279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9588394165039, 40.76369094848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98937225341797, 40.75264358520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99053192138672, 40.756248474121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814052", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98297882080078, 40.74816131591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79158020019531, 40.645206451416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94992065429688, 40.78045654296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99956512451172, 40.74370574951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98966979980469, 40.72589111328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.71786880493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814696", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9561996459961, 40.76749038696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97952270507812, 40.75263977050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97360229492188, 40.77959442138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97750091552734, 40.74934387207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97129821777344, 40.750919342041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814724", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00133514404297, 40.73109817504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96440124511719, 40.79710006713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97055053710938, 40.75077819824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97055053710938, 40.75077819824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.78162384033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901351928711, 40.75154495239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815047", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922866821289, 40.7581901550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97905731201172, 40.74449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8632583618164, 40.76985168457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92957305908203, 40.75651168823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99148559570312, 40.75471878051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814478", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77886199951172, 40.6473388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96444702148438, 40.8000602722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97250366210938, 40.7627067565918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.76828384399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859191894531, 40.783409118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752426147461, 40.75038528442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98365783691406, 40.69483184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9417495727539, 40.798667907714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9417495727539, 40.798667907714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98209381103516, 40.756591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78173828125, 40.64474868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.964111328125, 40.792518615722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99117279052734, 40.733463287353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9727783203125, 40.7644157409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78816986083984, 40.64203643798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00799560546875, 40.74031448364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96697998046875, 40.766868591308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98924255371094, 40.74398422241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99591064453125, 40.75916290283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96682739257812, 40.76100158691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98485565185547, 40.75874710083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0045166015625, 40.707733154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99951171875, 40.719478607177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99852752685547, 40.760650634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9871597290039, 40.750789642333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908676147461, 40.75603485107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00442504882812, 40.724788665771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95126342773438, 40.7741584777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97586822509766, 40.7601432800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95814514160156, 40.768775939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97773742675781, 40.74544906616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01287078857422, 40.70249938964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9783706665039, 40.74530792236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814577", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97198486328125, 40.74654006958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97713470458984, 40.759315490722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97628784179688, 40.77622985839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87120819091797, 40.77384567260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96565246582031, 40.757999420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98005676269531, 40.76074981689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.979248046875, 40.74987030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255157470703, 40.74755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97542572021484, 40.777015686035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814532", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97860717773438, 40.76258087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0012435913086, 40.74092102050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808074951172, 40.773494720458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96768188476562, 40.76873779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97645568847656, 40.755062103271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97715759277344, 40.75847625732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97395324707031, 40.74742126464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98481750488281, 40.76533126831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95793151855469, 40.76858139038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95494079589844, 40.76946258544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00933837890625, 40.71104049682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96211242675781, 40.71318054199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00747680664062, 40.7155647277832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9620590209961, 40.773048400878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9729995727539, 40.785362243652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814276", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843170166016, 40.729698181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9836196899414, 40.764671325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99386596679688, 40.73263168334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94819641113281, 40.78282165527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814289", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96611022949219, 40.80057144165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96154022216797, 40.75556945800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814634", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564910888672, 40.72700881958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78996276855469, 40.64691162109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9935531616211, 40.75027084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99452209472656, 40.74562454223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98750305175781, 40.738399505615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95254516601562, 40.77257537841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788589477539, 40.736358642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97814178466797, 40.75767517089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99413299560547, 40.751190185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99058532714844, 40.75605773925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00663757324219, 40.7441520690918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814377", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658432006836, 40.79047393798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98516082763672, 40.72373962402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00656127929688, 40.732086181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137115478516, 40.74991989135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97148132324219, 40.753944396972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95641326904297, 40.77214813232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99021911621094, 40.73516845703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881820678711, 40.75954055786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01353454589844, 40.713890075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97761535644531, 40.758235931396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98908233642578, 40.730499267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97865295410156, 40.787353515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97354125976562, 40.764461517333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98983764648438, 40.7300910949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814217", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99864959716797, 40.71717834472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99705505371094, 40.736846923828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96041107177734, 40.76620101928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564910888672, 40.74714660644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95369720458984, 40.76689529418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7880859375, 40.6419677734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00657653808594, 40.74447250366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98747253417969, 40.76045608520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96195983886719, 40.75564956665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98747253417969, 40.76045608520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97809600830078, 40.75533676147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9877700805664, 40.74945831298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79045104980469, 40.6468620300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99649047851562, 40.76335525512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79045104980469, 40.6468620300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98788452148438, 40.718360900878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95901489257812, 40.78091812133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98523712158203, 40.7417106628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95341491699219, 40.78239822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420928955078, 40.751121520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97810363769531, 40.756980895996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01119995117188, 40.7040901184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99341583251953, 40.745906829833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0029525756836, 40.72807693481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0029525756836, 40.72807693481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95781707763672, 40.78213882446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95635986328125, 40.78168869018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9888687133789, 40.721858978271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.75477981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96826171875, 40.799110412597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00035095214844, 40.72758102416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95291900634766, 40.78306579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.736671447753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97344207763672, 40.7636833190918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99884033203125, 40.711952209472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95652770996094, 40.813201904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96051788330078, 40.770023345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98097229003906, 40.782466888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.7502555847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00877380371094, 40.74065399169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99166107177734, 40.75985336303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95951843261719, 40.77119064331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9918212890625, 40.74430847167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529815673828, 40.7534294128418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9723892211914, 40.761962890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97282409667969, 40.7826042175293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814444", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96260070800781, 40.76731872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124908447266, 40.74964904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.730892181396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.005126953125, 40.740657806396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.76837158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00143432617188, 40.71611404418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98645782470703, 40.74740219116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99252319335938, 40.748741149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98417663574219, 40.767330169677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748779296875, 40.765411376953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801254272461, 40.755126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99182891845703, 40.75001907348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814820", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98648071289062, 40.73419189453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99755859375, 40.72117614746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96623229980469, 40.78948974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.75907516479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00051879882812, 40.73883056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98848724365234, 40.718467712402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94374084472656, 40.788848876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759750366211, 40.75725555419922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9347915649414, 40.796817779541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98825073242188, 40.7459716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96665954589844, 40.76325988769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96647644042969, 40.75801086425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94869232177734, 40.78097152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9921875, 40.749488830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00907135009766, 40.72602844238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814391", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99114990234375, 40.71747970581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96863555908203, 40.761634826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98687744140625, 40.7666130065918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97412109375, 40.78383255004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9776611328125, 40.75748825073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9969711303711, 40.731441497802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86360168457031, 40.77006149291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.733848571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00161743164062, 40.73579025268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227905273438, 40.76930236816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96729278564453, 40.7934684753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90589141845703, 40.77273178100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96729278564453, 40.7934684753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97279357910156, 40.79560089111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563171386719, 40.781978607177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417877197266, 40.741214752197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065948486328, 40.78009033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97838592529297, 40.75391387939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99185943603516, 40.74988555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98246002197266, 40.76496124267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00267028808594, 40.73434066772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95533752441406, 40.78573226928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9792709350586, 40.75550842285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79033660888672, 40.646568298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86270904541016, 40.76885986328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7767333984375, 40.64536666870117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98497009277344, 40.74468231201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.93096923828125, 40.74468994140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9559555053711, 40.78752517700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814440", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97840881347656, 40.76261901855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9885482788086, 40.7313232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99404907226562, 40.7513427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96723937988281, 40.76068115234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7962646484375, 40.64472198486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124908447266, 40.732078552246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7962646484375, 40.64472198486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97593688964844, 40.75493240356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78179931640625, 40.644771575927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99436950683594, 40.74570846557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9702377319336, 40.7570686340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99273681640625, 40.7529182434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95471954345703, 40.78382110595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94171905517578, 40.82331848144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98542022705078, 40.768489837646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96402740478516, 40.75457763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814309", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78205108642578, 40.64469909667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9958724975586, 40.738651275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98314666748047, 40.76652908325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97784423828125, 40.78911209106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814294", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94740295410156, 40.781898498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97638702392578, 40.7441291809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814819335938, 40.71474838256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814427", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78191375732422, 40.647281646728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97997283935547, 40.752418518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78191375732422, 40.647281646728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97492980957031, 40.78792190551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.77499008178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97063446044922, 40.796287536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.73802185058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97225189208984, 40.75703430175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397064208984, 40.76570129394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98657989501953, 40.75135040283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7820053100586, 40.64466094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97019958496094, 40.757171630859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97886657714844, 40.78231430053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813960", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99735260009766, 40.73659133911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814749", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87055969238281, 40.7735481262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97036743164062, 40.76166534423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9926986694336, 40.75876998901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00799560546875, 40.739471435546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96463775634766, 40.715423583984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814812", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01599884033203, 40.70589065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97804260253906, 40.75938415527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99439239501953, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99661254882812, 40.73720932006836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815058", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.74976348876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99207305908203, 40.75516128540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96138763427734, 40.76033020019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9957504272461, 40.723052978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99995422363281, 40.732940673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814309", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99317169189453, 40.730960845947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97797393798828, 40.72513961791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99371337890625, 40.74993896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98324584960938, 40.76700210571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97953796386719, 40.781089782714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95816802978516, 40.78165054321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814252", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00663757324219, 40.70404052734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95233154296875, 40.77302932739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98448944091797, 40.74410629272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97052764892578, 40.79910659790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96868133544922, 40.78636169433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95984649658203, 40.77589797973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930191040039, 40.75350570678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97113800048828, 40.764259338378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98469543457031, 40.74504852294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99400329589844, 40.7464714050293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96639251708984, 40.757415771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87078094482422, 40.77360534667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940826416016, 40.7654914855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0028076171875, 40.74440383911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.17738342285156, 40.6951904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814593", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98099517822266, 40.774497985839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97447204589844, 40.74702835083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97321319580078, 40.78433609008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98589324951172, 40.760032653808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97150421142578, 40.75062561035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95186614990234, 40.77291488647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934936523438, 40.71902847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815137", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9782485961914, 40.786354064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99452209472656, 40.72478103637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86421203613281, 40.770023345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9603500366211, 40.778648376464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99404907226562, 40.723079681396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97112274169922, 40.75762176513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00601959228516, 40.74000930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814809", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.88524627685547, 40.77299880981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98283386230469, 40.7717170715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99748992919922, 40.741641998291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0124740600586, 40.677764892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942398071289, 40.7513313293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98649597167969, 40.7400016784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97726440429688, 40.75864791870117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9927978515625, 40.7581787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9959945678711, 40.732601165771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98719787597656, 40.73955154418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9976577758789, 40.74138641357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96540069580078, 40.76337814331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815047", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9661865234375, 40.75469207763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98675537109375, 40.739479064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95550537109375, 40.7795295715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97766876220703, 40.755088806152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98367309570312, 40.75944900512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9787826538086, 40.76190948486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99588775634766, 40.732940673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848861694336, 40.748077392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98487091064453, 40.75366973876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9816665649414, 40.76858901977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96186828613281, 40.776710510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0, 40.7386360168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814626", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98678588867188, 40.72111129760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96582794189453, 40.790279388427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99411010742188, 40.751216888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96642303466797, 40.76458740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95623779296875, 40.763282775878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96904754638672, 40.75428771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99541473388672, 40.7441520690918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00457763671875, 40.706966400146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123931884766, 40.7499885559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01303100585938, 40.71684646606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611999511719, 40.74858856201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97949981689453, 40.774295806884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814332", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98719024658203, 40.72922134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793930053711, 40.776649475097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0082778930664, 40.721920013427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.76298904418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97836303710938, 40.7523307800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814078", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97545623779297, 40.74943923950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98196411132812, 40.774166107177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98627471923828, 40.74678039550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97312927246094, 40.7580451965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86353302001953, 40.76959991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78804016113281, 40.641510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99065399169922, 40.73957061767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081146240234, 40.77384567260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97962951660156, 40.74651336669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96804809570312, 40.7553825378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814480", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00438690185547, 40.752288818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9451675415039, 40.77423095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96774291992188, 40.7564811706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98047637939453, 40.73929214477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98259735107422, 40.77294158935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814606", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98702239990234, 40.720909118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.0091323852539, 40.710838317871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97142791748047, 40.75474166870117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98051452636719, 40.7299690246582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9257583618164, 40.70077133178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95463562011719, 40.76991653442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9693374633789, 40.758419036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814361", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96587371826172, 40.77379608154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97169494628906, 40.78215026855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98292541503906, 40.763065338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97640228271484, 40.756202697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99388122558594, 40.73616027832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97968292236328, 40.73517990112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97881317138672, 40.762508392333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98336029052734, 40.7442626953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814384", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95436096191406, 40.76974105834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86314392089844, 40.76839065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97916412353516, 40.760589599609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98235321044922, 40.7752571105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97062683105469, 40.760719299316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98235321044922, 40.7752571105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00120544433594, 40.731292724609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96746063232422, 40.763282775878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00553131103516, 40.74070739746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95597076416016, 40.78196334838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99693298339844, 40.737178802490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01532745361328, 40.70977020263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9595718383789, 40.774234771728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98538970947266, 40.75797653198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78250122070312, 40.64448928833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97126770019531, 40.760860443115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97737121582031, 40.77438735961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97737121582031, 40.77438735961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99040985107422, 40.75617980957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95276641845703, 40.77641296386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97852325439453, 40.76185607910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.77022171020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9507827758789, 40.77875900268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814493", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79139709472656, 40.64560317993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00457763671875, 40.733978271484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174835205078, 40.75453567504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98919677734375, 40.72658920288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99222564697266, 40.76864242553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814633", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00594329833984, 40.73577117919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00068664550781, 40.73202133178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94449615478516, 40.791446685791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9896011352539, 40.72603988647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814001", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98670196533203, 40.739559173583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813916", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9857177734375, 40.747093200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97982788085938, 40.75215148925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9921875, 40.72513961791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759292602539, 40.7521858215332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95120239257812, 40.78556823730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96685791015625, 40.79355239868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.73448181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86283874511719, 40.768943786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97998046875, 40.783653259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9732437133789, 40.78007888793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9782943725586, 40.72956085205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97103118896484, 40.76411056518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98689270019531, 40.76036071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9802017211914, 40.74562072753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804916381836, 40.769981384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98558807373047, 40.76797866821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86270904541016, 40.7689094543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99430084228516, 40.69027328491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98695373535156, 40.76420593261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99247741699219, 40.745452880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00932312011719, 40.703590393066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0110855102539, 40.710086822509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417877197266, 40.75133514404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97480010986328, 40.754249572753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9751205444336, 40.75856399536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95938873291016, 40.78290939331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883056640625, 40.73689651489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99381256103516, 40.73622131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97398376464844, 40.76251983642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9501724243164, 40.77568435668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96965789794922, 40.7532958984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.781982421875, 40.64472198486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96905517578125, 40.758419036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9501724243164, 40.77568435668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96905517578125, 40.758419036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98848724365234, 40.72325897216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98815155029297, 40.754241943359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99552917480469, 40.72475051879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0037612915039, 40.738548278808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94515228271484, 40.7784538269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98014068603516, 40.78351974487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94515228271484, 40.7784538269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00243377685547, 40.71977615356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0036849975586, 40.72377395629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98212432861328, 40.768314361572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.994873046875, 40.735477447509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96546173095703, 40.774688720703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910659790039, 40.75543212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814385", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93757629394531, 40.79743957519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97930145263672, 40.755767822265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95329284667969, 40.76570510864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99161529541016, 40.750064849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96845245361328, 40.75477981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96839141845703, 40.76165771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99148559570312, 40.7496452331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97915649414062, 40.755409240722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00760650634766, 40.74100112915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00023651123047, 40.75822830200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98408508300781, 40.74898147583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95303344726562, 40.77170944213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95172882080078, 40.769371032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00175476074219, 40.74101638793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96790313720703, 40.792545318603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814916", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98599243164062, 40.7328987121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01062774658203, 40.71220016479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97650146484375, 40.78276062011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98475646972656, 40.74241638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079574584961, 40.739810943603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814862", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94499206542969, 40.83420181274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814377", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00566864013672, 40.74113082885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908676147461, 40.739559173583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9816665649414, 40.75973129272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94573211669922, 40.77349853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95526885986328, 40.73616027832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99178314208984, 40.72224807739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "13"}}, {"geometry": {"type": "Point", "coordinates": [-73.99539947509766, 40.7252311706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9773178100586, 40.77727127075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813990", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99220275878906, 40.724952697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97688293457031, 40.7607307434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99462127685547, 40.75049591064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99659729003906, 40.75341033935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99462127685547, 40.75049591064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98101806640625, 40.764305114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00347137451172, 40.7360954284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98499298095703, 40.74220657348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.977294921875, 40.75210189819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97518157958984, 40.7899284362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814871", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78173828125, 40.644710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79029846191406, 40.64360809326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01598358154297, 40.71539306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748016357422, 40.7330207824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95175170898438, 40.769622802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.944091796875, 40.775970458984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00528717041016, 40.71943664550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.944091796875, 40.775970458984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95377349853516, 40.822147369384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814581", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98723602294922, 40.759456634521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00149536132812, 40.730987548828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78193664550781, 40.64461898803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815054", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.81617736816406, 40.70301818847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98546600341797, 40.75800323486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98540496826172, 40.763633728027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96668243408203, 40.80435562133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814309", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97530364990234, 40.7904052734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98373413085938, 40.73182678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813232421875, 40.7330207824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9620361328125, 40.81037521362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9964828491211, 40.737953186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814436", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99262237548828, 40.7430305480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99223327636719, 40.74374008178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99288940429688, 40.741249084472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95687103271484, 40.78342056274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98175811767578, 40.763580322265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98921966552734, 40.75289535522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97122955322266, 40.75632858276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97792053222656, 40.7524299621582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9771499633789, 40.76108169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97158813476562, 40.76253128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065185546875, 40.725730895996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98886108398438, 40.74769592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9885482788086, 40.72261047363281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99832153320312, 40.74522018432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98963165283203, 40.73529815673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0140151977539, 40.71266555786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78217315673828, 40.6446533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78217315673828, 40.6446533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97114562988281, 40.76431655883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94825744628906, 40.78266906738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814620", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0145034790039, 40.716556549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99687957763672, 40.73716354370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942626953125, 40.733768463134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.747066497802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97057342529297, 40.758975982666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813913", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01557922363281, 40.71171951293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9550552368164, 40.765235900878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98092651367188, 40.76279830932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94734954833984, 40.77970886230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01288604736328, 40.70235824584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00616455078125, 40.73991012573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97504425048828, 40.746150970458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664077758789, 40.75343704223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814412", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97247314453125, 40.76502990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97247314453125, 40.76502990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98987579345703, 40.7470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98371124267578, 40.76590347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97987365722656, 40.765689849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97987365722656, 40.765689849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78199005126953, 40.64462661743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00254821777344, 40.739593505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9736557006836, 40.75473403930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854965209961, 40.74634552001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98239135742188, 40.74539566040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052490234375, 40.72871780395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97318267822266, 40.7524299621582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99980926513672, 40.71817398071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814224243164, 40.744178771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98628997802734, 40.72239685058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9720230102539, 40.7630729675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.76573944091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00282287597656, 40.733909606933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97695922851562, 40.74741744995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97364807128906, 40.76314926147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00467681884766, 40.74188232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98222351074219, 40.76947021484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98068237304688, 40.774845123291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99091339111328, 40.75625228881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95526123046875, 40.7657585144043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511932373047, 40.721065521240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97351837158203, 40.76359939575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97502136230469, 40.777801513671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78982543945312, 40.64396667480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9781265258789, 40.74905014038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96934509277344, 40.75941848754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99263000488281, 40.753318786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93801879882812, 40.796791076660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97463989257812, 40.742069244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95889282226562, 40.65126037597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99237823486328, 40.72095489501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98478698730469, 40.74531173706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86337280273438, 40.76935958862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95413970947266, 40.76642990112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9977035522461, 40.75672149658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94519805908203, 40.78268814086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99282836914062, 40.75215148925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00624084472656, 40.71015548706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216796875, 40.79159164428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97623443603516, 40.78045654296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815061", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95603942871094, 40.77864074707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99305725097656, 40.76293182373047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01667785644531, 40.70481872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.7499885559082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.83158874511719, 40.763221740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99712371826172, 40.722381591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98587036132812, 40.767974853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95648956298828, 40.7889289855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9916000366211, 40.759788513183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98231506347656, 40.727787017822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848861694336, 40.76934051513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98173522949219, 40.76765060424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00395202636719, 40.7429313659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814529", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.74562072753906, 40.66590118408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9618911743164, 40.75965118408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94442749023438, 40.779640197753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722961425781, 40.770179748535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873901367188, 40.73699951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99012756347656, 40.729156494140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9999771118164, 40.73475646972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754409790039, 40.758026123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98493957519531, 40.76868438720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96202087402344, 40.76374435424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9740982055664, 40.7915153503418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98179626464844, 40.77851104736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814388", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97480010986328, 40.787837982177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.77802658081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96733093261719, 40.76350021362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814210", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97627258300781, 40.7641487121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97734069824219, 40.77946472167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572204589844, 40.74014663696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97513580322266, 40.77750015258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00096893310547, 40.7618408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86321258544922, 40.769630432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98584747314453, 40.757659912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814715", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98409271240234, 40.743465423583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98401641845703, 40.73740005493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.952880859375, 40.76654815673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0030746459961, 40.738590240478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98401641845703, 40.73740005493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79914855957031, 40.645259857177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.719669342041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95841217041016, 40.76424026489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814633", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97591400146484, 40.74062728881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99830627441406, 40.73539733886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98942565917969, 40.76785659790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96285247802734, 40.76616668701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97760009765625, 40.75464630126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96285247802734, 40.76616668701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97942352294922, 40.746978759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98591613769531, 40.75963592529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95741271972656, 40.774147033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9605484008789, 40.761348724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00718688964844, 40.70515823364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95741271972656, 40.774147033691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9580078125, 40.76940155029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94927215576172, 40.77682876586914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98887634277344, 40.74789810180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77680206298828, 40.645172119140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98634338378906, 40.74029541015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814493", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99717712402344, 40.7418212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815149", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98604583740234, 40.735076904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.75617980957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99463653564453, 40.740238189697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9671859741211, 40.77239990234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174835205078, 40.74614334106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98454284667969, 40.746028900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99638366699219, 40.72197341918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9169921875, 40.7431526184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9952163696289, 40.75307846069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00322723388672, 40.74399185180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0128173828125, 40.702171325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9853286743164, 40.732608795166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93305206298828, 40.76393127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99561309814453, 40.74406814575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.762451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815011", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9229736328125, 40.74385070800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99224090576172, 40.74900436401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9669418334961, 40.772560119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9818115234375, 40.76308822631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97451782226562, 40.75102996826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99176025390625, 40.72943115234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9639663696289, 40.773834228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95970153808594, 40.78123092651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96976470947266, 40.80046463012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99016571044922, 40.756690979003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96025848388672, 40.762001037597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928207397461, 40.748531341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01022338867188, 40.719730377197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813840", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822769165039, 40.768402099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822769165039, 40.768402099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95258331298828, 40.786048889160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98258972167969, 40.73538589477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00697326660156, 40.73991012573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814859", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99476623535156, 40.75054168701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97894287109375, 40.73624038696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722076416016, 40.76618957519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97532653808594, 40.750919342041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814309", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86480712890625, 40.85232925415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01193237304688, 40.70936965942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814809", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99191284179688, 40.7159538269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97733306884766, 40.72652053833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96891784667969, 40.75934600830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99393463134766, 40.74639129638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.89722442626953, 40.867889404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96924591064453, 40.75755310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98322296142578, 40.7559814453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95169830322266, 40.77947998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01042175292969, 40.711978912353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99198150634766, 40.738040924072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00556945800781, 40.74845886230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98763275146484, 40.72151184082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95735931396484, 40.76995849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813763", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95806884765625, 40.76082992553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814973", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78179931640625, 40.64474868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922866821289, 40.730648040771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96356964111328, 40.77460479736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96940612792969, 40.76124572753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95281219482422, 40.776519775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95360565185547, 40.76765441894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97721862792969, 40.7557258605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98908996582031, 40.718929290771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97380828857422, 40.68330764770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133850097656, 40.770999908447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00157928466797, 40.732181549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00943756103516, 40.70555114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814437", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9701156616211, 40.750614166259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96773529052734, 40.762786865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97596740722656, 40.755165100097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97368621826172, 40.76449966430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01007080078125, 40.73392105102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.990478515625, 40.7664909362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96651458740234, 40.7531852722168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814871", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98242950439453, 40.74803161621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00287628173828, 40.760475158691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97589111328125, 40.748870849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9456787109375, 40.77549743652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.76533126831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97074890136719, 40.76176452636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97501373291016, 40.78253173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97422790527344, 40.76197814941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.78109741210938, 40.644020080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941177368164, 40.75093078613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941177368164, 40.75093078613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751068115234, 40.73285675048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78109741210938, 40.644020080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99580383300781, 40.74909591674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814994", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99909973144531, 40.761192321777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86299896240234, 40.769508361816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98470306396484, 40.748329162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.984130859375, 40.75994873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97442626953125, 40.68716812133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00525665283203, 40.7401237487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0090560913086, 40.716915130615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689819335938, 40.664669036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98951721191406, 40.751609802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94792938232422, 40.82963180541992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99027252197266, 40.75828170776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98401641845703, 40.75518035888672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98951721191406, 40.751609802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820785522461, 40.77257537841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96727752685547, 40.76054000854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98238372802734, 40.772220611572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.76239776611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98518371582031, 40.74723434448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97759246826172, 40.78409957885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00373840332031, 40.73240661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95913696289062, 40.801021575927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00373840332031, 40.73240661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78114318847656, 40.64493942260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9609375, 40.77513885498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99347686767578, 40.7271842956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97618103027344, 40.74460983276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00169372558594, 40.73759460449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9609375, 40.77513885498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00169372558594, 40.73759460449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99846649169922, 40.740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814166", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00308227539062, 40.738868713378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97824096679688, 40.762718200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99788665771484, 40.74604034423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95864868164062, 40.77524185180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814677", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233795166016, 40.76873016357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98116302490234, 40.75624084472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98175048828125, 40.7557487487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.729820251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.98606872558594, 40.740718841552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95346069335938, 40.7908935546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9869613647461, 40.72093200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00208282470703, 40.73455047607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97250366210938, 40.75649642944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814428", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99879455566406, 40.73395919799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96513366699219, 40.759422302246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8697280883789, 40.772361755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.8697280883789, 40.772361755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638916015625, 40.746238708496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9645004272461, 40.75593185424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814927", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98391723632812, 40.775516510009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97209930419922, 40.786415100097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98324584960938, 40.73030090332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99361419677734, 40.74998092651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9912109375, 40.762081146240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98954010009766, 40.77301788330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98780059814453, 40.71629333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814336", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.76148986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.76148986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98995971679688, 40.76148986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00814056396484, 40.72589111328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92707824707031, 40.86566162109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99413299560547, 40.751075744628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98099517822266, 40.73763656616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93048858642578, 40.8480110168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98176574707031, 40.76852798461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00044250488281, 40.73741149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97000122070312, 40.78949737548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814969", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99264526367188, 40.74956512451172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689819335938, 40.75101852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98307037353516, 40.75056457519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87348175048828, 40.77392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01580047607422, 40.71462631225586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97766876220703, 40.758724212646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95328521728516, 40.78269577026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97017669677734, 40.74977111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847640991211, 40.750728607177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95442962646484, 40.7641716003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98778533935547, 40.759586334228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97476196289062, 40.76423645019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97179412841797, 40.750518798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99078369140625, 40.75032043457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00801086425781, 40.73952102661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00801086425781, 40.73952102661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.77930450439453, 40.64757537841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00871276855469, 40.74068832397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00469970703125, 40.72555923461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95498657226562, 40.769439697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96923065185547, 40.753700256347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95939636230469, 40.76344680786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98533630371094, 40.7359619140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00929260253906, 40.72945022583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94937896728516, 40.772727966308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96687316894531, 40.79391860961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97016143798828, 40.784481048583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98139190673828, 40.76560974121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97810363769531, 40.74608612060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95214080810547, 40.77305221557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01105499267578, 40.715694427490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98920440673828, 40.7741813659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97191619873047, 40.76335906982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00463104248047, 40.74168395996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00753784179688, 40.74076461791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9919662475586, 40.75899887084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814524", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97817993164062, 40.763824462890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97786712646484, 40.7869873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814857", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97390747070312, 40.76328659057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.81118774414062, 40.666587829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.81118774414062, 40.666587829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96784973144531, 40.76554870605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813461303711, 40.78002166748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815024", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95353698730469, 40.7908821105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00949096679688, 40.73936080932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95745849609375, 40.777122497558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99738311767578, 40.74736022949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98145294189453, 40.69009017944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97947692871094, 40.74071502685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01165771484375, 40.703346252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95562744140625, 40.77946853637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97578430175781, 40.745025634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99284362792969, 40.747806549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-74.00480651855469, 40.72285079956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.966064453125, 40.77092742919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99142456054688, 40.744667053222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96871948242188, 40.74918746948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79013061523438, 40.64368438720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814212", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96089935302734, 40.7700309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96089935302734, 40.7700309753418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98968505859375, 40.74021530151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9598388671875, 40.7736701965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96678161621094, 40.76418685913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98049926757812, 40.7601203918457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.990966796875, 40.77042007446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96085357666016, 40.77239990234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814195", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01150512695312, 40.72218704223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96685791015625, 40.75307846069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9935073852539, 40.736881256103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97191619873047, 40.79430389404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814713", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78279113769531, 40.64445114135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98444366455078, 40.74789810180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99525451660156, 40.72734832763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97949981689453, 40.75791549682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01415252685547, 40.71339797973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98414611816406, 40.76483154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01553344726562, 40.71549987792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005126953125, 40.71949005126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005126953125, 40.71949005126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97652435302734, 40.788116455078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99883270263672, 40.75492858886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814204", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94669342041016, 40.780517578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98097229003906, 40.75355911254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92379760742188, 40.76795959472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96097564697266, 40.812137603759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97911834716797, 40.74052810668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96826934814453, 40.79948043823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9649658203125, 40.791717529296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511169433594, 40.718971252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00071716308594, 40.75199890136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9903564453125, 40.728614807128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97393035888672, 40.779117584228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01426696777344, 40.717281341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95812225341797, 40.700374603271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95130157470703, 40.77016067504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98211669921875, 40.74044418334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97038269042969, 40.762481689453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.996826171875, 40.7475471496582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96942138671875, 40.75120544433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9976577758789, 40.73611068725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9976577758789, 40.73611068725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891128540039, 40.763092041015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95047760009766, 40.77983093261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814003", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822006225586, 40.77143096923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97506713867188, 40.761600494384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98486328125, 40.76919174194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98404693603516, 40.77552795410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98587799072266, 40.762916564941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98121643066406, 40.74732971191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9682388305664, 40.75810241699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99788665771484, 40.76142120361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99260711669922, 40.72385787963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96978759765625, 40.74903106689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00846099853516, 40.71223068237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00794219970703, 40.70537185668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.759498596191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99088287353516, 40.755775451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86286163330078, 40.768653869628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96565246582031, 40.75885009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96259307861328, 40.775718688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95052337646484, 40.769805908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134826660156, 40.74973678588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98016357421875, 40.75194549560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97512817382812, 40.752906799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814328", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98881530761719, 40.731117248535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00552368164062, 40.740440368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86389923095703, 40.77003479003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96553802490234, 40.8060417175293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825668334961, 40.76443099975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825668334961, 40.76443099975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98479461669922, 40.73656463623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.91966247558594, 40.743560791015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814193", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.91966247558594, 40.743560791015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814193", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9790267944336, 40.74446105957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95851135253906, 40.783443450927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95974731445312, 40.770362854003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9951400756836, 40.72515106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399017333984, 40.741878509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399017333984, 40.741878509521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97471618652344, 40.75096893310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98522186279297, 40.76866912841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9521713256836, 40.79275131225586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99237060546875, 40.742801666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98252868652344, 40.765098571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775390625, 40.78736114501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98571014404297, 40.756370544433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87290954589844, 40.774044036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96128845214844, 40.77431869506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00709533691406, 40.72761154174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98699188232422, 40.72256851196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814619", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00414276123047, 40.74274826049805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00777435302734, 40.74298095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86294555664062, 40.768802642822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98400115966797, 40.749141693115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00442504882812, 40.74728775024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813862", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96607208251953, 40.762149810791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814665", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00643920898438, 40.73301315307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085998535156, 40.76081848144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813899", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747543334961, 40.75383758544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97476959228516, 40.73374938964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850799560547, 40.76239013671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99746704101562, 40.729835510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99746704101562, 40.729835510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9835205078125, 40.744049072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759292602539, 40.77638244628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96589660644531, 40.764556884765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97566986083984, 40.756248474121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9547119140625, 40.77668380737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99895477294922, 40.75480651855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99974822998047, 40.738624572753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98243713378906, 40.77045822143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814820", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9702377319336, 40.76465606689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9702377319336, 40.76465606689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94774627685547, 40.83035659790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994873046875, 40.74515914916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00473022460938, 40.75200653076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87078094482422, 40.773746490478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.74994659423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86268615722656, 40.76896667480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97948455810547, 40.76057052612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99272918701172, 40.73741149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96759033203125, 40.756103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814578", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00342559814453, 40.713600158691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0063705444336, 40.720298767089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98471069335938, 40.77452087402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814335", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98342895507812, 40.76202392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00341796875, 40.72524642944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96044921875, 40.78133773803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9696273803711, 40.76200866699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9452896118164, 40.71919250488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99327850341797, 40.724395751953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95789337158203, 40.76872634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.993896484375, 40.72890853881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9746322631836, 40.761619567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99664306640625, 40.73754119873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86332702636719, 40.770057678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98530578613281, 40.753360748291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95592498779297, 40.77898025512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814245", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114013671875, 40.741756439208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00140380859375, 40.73582458496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96417999267578, 40.768009185791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0018310546875, 40.72447204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78182220458984, 40.64461135864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95455932617188, 40.784019470214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98544311523438, 40.75038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95539093017578, 40.7828483581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97559356689453, 40.75429916381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97238159179688, 40.75955581665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95069122314453, 40.82632827758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00154113769531, 40.750709533691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98336029052734, 40.74422073364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78562927246094, 40.65081024169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98673248291016, 40.76132583618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9728012084961, 40.76387405395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9737319946289, 40.76015853881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97709655761719, 40.7489013671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9449691772461, 40.77899932861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95138549804688, 40.768524169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95198822021484, 40.8193473815918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814841", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97784423828125, 40.75761032104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722839355469, 40.75558853149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815000", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98192596435547, 40.77046585083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01322937011719, 40.71330642700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96549224853516, 40.71357345581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.743919372558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97097778320312, 40.7961311340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97740936279297, 40.75450897216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00251770019531, 40.7388801574707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99140167236328, 40.7498893737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0008316040039, 40.74217224121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291778564453, 40.756649017333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97078704833984, 40.7590446472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95577239990234, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97915649414062, 40.73008346557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814187", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9544906616211, 40.784000396728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98518371582031, 40.747432708740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96862030029297, 40.78645706176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96967315673828, 40.76354217529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87100219726562, 40.773616790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94884490966797, 40.781761169433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.88529968261719, 40.77302932739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95103454589844, 40.78270721435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814353", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01736450195312, 40.70918273925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.75027084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95477294921875, 40.77385330200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97978210449219, 40.75498962402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78390502929688, 40.648643493652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747543334961, 40.75747299194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99640655517578, 40.72886657714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98828887939453, 40.73211669921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01042175292969, 40.711891174316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529052734375, 40.72465515136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96735382080078, 40.769378662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96735382080078, 40.769378662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820556640625, 40.7572135925293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9872055053711, 40.7606201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9946060180664, 40.76285171508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9923324584961, 40.725379943847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98580932617188, 40.76790237426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.970458984375, 40.7563591003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98572540283203, 40.726993560791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.988525390625, 40.727264404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813853", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94471740722656, 40.77899169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9776611328125, 40.75774002075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.76671600341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.76671600341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97444915771484, 40.75204849243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97653198242188, 40.73979187011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97319793701172, 40.75556182861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420166015625, 40.752685546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813754", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98734283447266, 40.756160736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99189758300781, 40.73543167114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99697875976562, 40.76240158081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9637222290039, 40.7686653137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99532318115234, 40.74970245361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87252044677734, 40.7743034362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98585510253906, 40.75274658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91716003417969, 40.76130294799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98201751708984, 40.749290466308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99846649169922, 40.724918365478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98087310791016, 40.75102615356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98128509521484, 40.76445007324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813986", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98085021972656, 40.7479133605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93287658691406, 40.691986083984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814242", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97004699707031, 40.75695037841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00173950195312, 40.74100875854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00045776367188, 40.728885650634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00045776367188, 40.728885650634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97888946533203, 40.753501892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.7423210144043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01592254638672, 40.71464157104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99249267578125, 40.714046478271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815444946289, 40.7685661315918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99107360839844, 40.73942184448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99107360839844, 40.73942184448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97884368896484, 40.75032043457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01366424560547, 40.71351623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7862777709961, 40.64187240600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.74799346923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96458435058594, 40.760398864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96458435058594, 40.760398864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00052642822266, 40.74246597290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95372772216797, 40.77879333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97484588623047, 40.76084899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00437927246094, 40.72507095336914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87291717529297, 40.774200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.99119567871094, 40.7502555847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889907836914, 40.763511657714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86368560791016, 40.76884460449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98048400878906, 40.725914001464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95574188232422, 40.772430419921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00287628173828, 40.749290466308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00457763671875, 40.737396240234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94817352294922, 40.770389556884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99803161621094, 40.720428466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.7353515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.7353515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9975814819336, 40.75653076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.96260833740234, 40.772857666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00730895996094, 40.74338912963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97333526611328, 40.75636291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96288299560547, 40.775169372558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95374298095703, 40.766971588134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815106", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416900634766, 40.756553649902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551940917969, 40.752899169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98181915283203, 40.778377532958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78180694580078, 40.644710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99834442138672, 40.74537658691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99886322021484, 40.72390365600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.7620964050293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99352264404297, 40.720733642578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.75271987915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99052429199219, 40.719364166259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814910", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98802185058594, 40.76393127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99921417236328, 40.754329681396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99274444580078, 40.720252990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814910", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0019302368164, 40.737709045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876708984375, 40.73324966430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98159790039062, 40.763431549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96874237060547, 40.80134963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00515747070312, 40.71921920776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98853302001953, 40.760128021240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9992904663086, 40.725013732910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98715209960938, 40.761558532714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814251", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96327209472656, 40.77261734008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.77400207519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98567962646484, 40.780941009521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99160766601562, 40.738914489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.75001907348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96232604980469, 40.77598190307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813959", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94441986083984, 40.77980041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94657897949219, 40.77227783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265075683594, 40.731258392333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98812866210938, 40.72368621826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00687408447266, 40.709712982177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94950866699219, 40.785369873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97863006591797, 40.777748107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886703491211, 40.72141647338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01606750488281, 40.711055755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97721099853516, 40.758121490478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96928405761719, 40.7639274597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0067367553711, 40.74149703979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917938232422, 40.75631332397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.77680969238281, 40.6453857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00546264648438, 40.72843551635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99394226074219, 40.75117111206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00546264648438, 40.72843551635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96944427490234, 40.75733184814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95130920410156, 40.7825813293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9985122680664, 40.74055099487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814525", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9985122680664, 40.74055099487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814525", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95887756347656, 40.775081634521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9731216430664, 40.75643539428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98057556152344, 40.75341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815048", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78807830810547, 40.641456604003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9537353515625, 40.710697174072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814624", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00447082519531, 40.724246978759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99321746826172, 40.747188568115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97073364257812, 40.78866958618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.997802734375, 40.751258850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9510726928711, 40.7824821472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98681640625, 40.76136016845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98221588134766, 40.76924514770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97411346435547, 40.75981140136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98535919189453, 40.74161911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97225189208984, 40.7430305480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98138427734375, 40.771427154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747085571289, 40.7566032409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0126953125, 40.704261779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974136352539, 40.741519927978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814904", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822784423828, 40.71831130981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00871276855469, 40.71382141113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94910430908203, 40.77742004394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99068450927734, 40.75597381591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97753143310547, 40.745391845703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98988342285156, 40.7340202331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9623031616211, 40.77899932861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99304962158203, 40.7630500793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99686431884766, 40.75284957885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747314453125, 40.760963439941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95992279052734, 40.79827117919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9511947631836, 40.76613235473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94493103027344, 40.79397964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96656799316406, 40.75669479370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9723892211914, 40.75492858886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96656799316406, 40.75669479370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94397735595703, 40.815181732177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00283813476562, 40.73384094238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97644805908203, 40.75505065917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00308990478516, 40.749420166015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814391", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102783203125, 40.72984313964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813999", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97425842285156, 40.783058166503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9990005493164, 40.72660827636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93605041503906, 40.79938888549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97750091552734, 40.76382827758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98234558105469, 40.772987365722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00721740722656, 40.706119537353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95601654052734, 40.76770782470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98345947265625, 40.749881744384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073791503906, 40.766021728515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99099731445312, 40.751136779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01123809814453, 40.72848129272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96392059326172, 40.77398681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00704956054688, 40.74378204345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814190", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99909973144531, 40.71366882324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97013092041016, 40.75605773925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.977783203125, 40.78364181518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01376342773438, 40.71445846557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99276733398438, 40.73350143432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01439666748047, 40.714012145996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00257110595703, 40.739627838134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814389", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96760559082031, 40.76026153564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.728721618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93792724609375, 40.79684829711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.972412109375, 40.78628921508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97234344482422, 40.759239196777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96977996826172, 40.75743103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99100494384766, 40.744903564453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98199462890625, 40.7738037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96309661865234, 40.711769104003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98743438720703, 40.75788497924805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97852325439453, 40.75646209716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98509216308594, 40.76845932006836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97810363769531, 40.78292465209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99261474609375, 40.74818420410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99891662597656, 40.74448013305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97992706298828, 40.78369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814255", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93927764892578, 40.79060745239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98013305664062, 40.781898498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00807189941406, 40.732662200927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97172546386719, 40.78219985961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87313079833984, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.80167388916016, 40.666873931884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96556854248047, 40.7742805480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99790954589844, 40.726070404052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.69625473022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814811", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95797729492188, 40.7652702331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98636627197266, 40.73434066772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96461486816406, 40.773136138916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0098648071289, 40.721397399902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98989868164062, 40.71867370605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95793914794922, 40.765113830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96769714355469, 40.80205154418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98209381103516, 40.775299072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00492095947266, 40.72319030761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99292755126953, 40.74806213378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97003173828125, 40.75619125366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815084", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97325134277344, 40.68729019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00243377685547, 40.75017547607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99108123779297, 40.75032043457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9768295288086, 40.752079010009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.87305450439453, 40.773956298828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99384307861328, 40.741573333740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97173309326172, 40.76049041748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98450469970703, 40.732154846191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873138427734, 40.76375961303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98534393310547, 40.72758483886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98308563232422, 40.766048431396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96568298339844, 40.76639938354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.752052307128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0015640258789, 40.71985626220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98804473876953, 40.759769439697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00244903564453, 40.750091552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96610260009766, 40.75391387939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9572525024414, 40.708072662353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.005859375, 40.71757888793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99884796142578, 40.73408889770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01052856445312, 40.720211029052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9640884399414, 40.773616790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97569274902344, 40.75469970703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98462677001953, 40.75305938720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00745391845703, 40.7258415222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98048400878906, 40.782981872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00894927978516, 40.706809997558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99871063232422, 40.74509811401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93907165527344, 40.75229263305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98639678955078, 40.75181579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590087890625, 40.76266098022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.998291015625, 40.74052810668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00755310058594, 40.72582244873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98816680908203, 40.72268295288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99031829833984, 40.756431579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9695816040039, 40.76289749145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95713806152344, 40.77069854736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205017089844, 40.72266387939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99152374267578, 40.750091552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00325775146484, 40.73558044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00325775146484, 40.73558044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.749969482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99405670166016, 40.72010803222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99065399169922, 40.75606155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98290252685547, 40.74209976196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96210479736328, 40.7792854309082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99319458007812, 40.731712341308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814099", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820785522461, 40.764949798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820785522461, 40.764949798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9681167602539, 40.75642013549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94835662841797, 40.79808044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814441", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99634552001953, 40.723751068115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87083435058594, 40.773780822753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917938232422, 40.75257873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97917938232422, 40.75257873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00820922851562, 40.737918853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749526977539, 40.75831985473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99568176269531, 40.74360275268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99003601074219, 40.735023498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96501922607422, 40.772613525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93106079101562, 40.703895568847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97628784179688, 40.77589416503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813964", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99303436279297, 40.75865173339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98912048339844, 40.7324104309082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98127746582031, 40.75810623168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78965759277344, 40.64664077758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95012664794922, 40.772220611572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95012664794922, 40.772220611572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99458312988281, 40.75054931640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9639663696289, 40.76802444458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99468994140625, 40.7164306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00721740722656, 40.706119537353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96958923339844, 40.768924713134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95265197753906, 40.772369384765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97972869873047, 40.743350982666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814245", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99434661865234, 40.72630310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291015625, 40.693641662597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99089050292969, 40.75339889526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99822235107422, 40.72426223754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96916198730469, 40.766761779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98724365234375, 40.761878967285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98110961914062, 40.78092956542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00914001464844, 40.70616912841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815135", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99822235107422, 40.72426223754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96446990966797, 40.77318572998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99822235107422, 40.72426223754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95618438720703, 40.778846740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814540", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00151062011719, 40.75681686401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95618438720703, 40.778846740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814540", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98110961914062, 40.78092956542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00578308105469, 40.750648498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98321533203125, 40.738739013671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98651123046875, 40.761470794677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814583", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99041748046875, 40.73719024658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814355", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.71889114379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822998046875, 40.77809524536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96678161621094, 40.75498962402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813966", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9549331665039, 40.7773551940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99520111083984, 40.74989700317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98231506347656, 40.76299285888672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815177", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.745384216308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.745384216308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.745384216308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992156982422, 40.757266998291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98502349853516, 40.76883316040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98338317871094, 40.738433837890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99024200439453, 40.73128128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98171997070312, 40.74634552001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.78907012939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.863525390625, 40.76961898803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00254821777344, 40.72816467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98846435546875, 40.75920486450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00511169433594, 40.719112396240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97895050048828, 40.76382064819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98912048339844, 40.75798416137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97521209716797, 40.76140594482422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98179626464844, 40.7681999206543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99186706542969, 40.73844528198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98495483398438, 40.75969314575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95567321777344, 40.7796516418457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98074340820312, 40.72883987426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814776", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97361755371094, 40.78964614868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94970703125, 40.77714538574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9860610961914, 40.76203155517578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99180603027344, 40.72629165649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99180603027344, 40.72629165649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94847106933594, 40.781551361083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98174285888672, 40.767601013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99732208251953, 40.74647521972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98567199707031, 40.7520866394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97020721435547, 40.788875579833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87100219726562, 40.773746490478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97820281982422, 40.75281524658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01513671875, 40.71128845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97805786132812, 40.75296401977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97163391113281, 40.756019592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00161743164062, 40.756561279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97760772705078, 40.754276275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87079620361328, 40.7736701965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9697265625, 40.76287841796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00080108642578, 40.72590255737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98985290527344, 40.719940185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99291229248047, 40.72806167602539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98202514648438, 40.769046783447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99617767333984, 40.74279022216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.766571044921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96708679199219, 40.772491455078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834777832031, 40.73699951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97531127929688, 40.77484130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99870300292969, 40.72837829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97827911376953, 40.755191802978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9730224609375, 40.793113708496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9676513671875, 40.80307388305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99178314208984, 40.7222900390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.98805236816406, 40.71873474121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814288", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00818634033203, 40.71686935424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98312377929688, 40.72248077392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9513931274414, 40.77867889404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78218078613281, 40.644569396972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813839", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77918243408203, 40.64760971069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96987915039062, 40.765628814697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98704528808594, 40.73337173461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95378112792969, 40.77109146118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98650360107422, 40.74364471435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96803283691406, 40.80131912231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99398803710938, 40.75901794433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98503875732422, 40.74197769165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98347473144531, 40.73827362060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95171356201172, 40.71488571166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814478", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95237731933594, 40.78084182739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00228118896484, 40.73997116088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98119354248047, 40.77912139892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98119354248047, 40.77912139892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98423767089844, 40.748695373535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99250793457031, 40.758323669433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8570556640625, 40.728397369384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.969970703125, 40.78449630737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87291717529297, 40.774200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9773178100586, 40.758323669433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95223999023438, 40.79824447631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95223999023438, 40.79824447631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98307800292969, 40.75558090209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98704528808594, 40.7555046081543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97306060791016, 40.780086517333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814259", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98514556884766, 40.77913284301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99217224121094, 40.74393081665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96550750732422, 40.79068374633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065185546875, 40.73064041137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814208", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9721450805664, 40.76046371459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9721450805664, 40.76046371459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99404907226562, 40.751258850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97371673583984, 40.78446960449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98089599609375, 40.764095306396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95236206054688, 40.786407470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814090", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94823455810547, 40.789608001708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9175796508789, 40.771148681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00138854980469, 40.746368408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814508", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091888427734, 40.74205017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814436", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99504089355469, 40.760108947753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95140838623047, 40.76997756958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87183380126953, 40.774139404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.92431640625, 40.774383544921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00827026367188, 40.722137451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00292205810547, 40.760414123535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97212219238281, 40.750038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814903", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9482650756836, 40.78672409057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95345306396484, 40.77958297729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95686340332031, 40.768280029296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98355865478516, 40.7625732421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925765991211, 40.72837829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94908905029297, 40.781009674072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98068237304688, 40.74822998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95237731933594, 40.798187255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00614166259766, 40.73960876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00437927246094, 40.72465896606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906234741211, 40.724849700927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97586059570312, 40.749488830566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99376678466797, 40.756622314453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0073471069336, 40.743560791015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99369812011719, 40.736061096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97840881347656, 40.78303146362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99939727783203, 40.738563537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9697036743164, 40.80043029785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813827", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97046661376953, 40.796669006347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.977294921875, 40.76307678222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98527526855469, 40.746910095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99454498291016, 40.750606536865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95903778076172, 40.78112030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99739074707031, 40.730098724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.732688903808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97760772705078, 40.75794219970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.74238967895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9623794555664, 40.7673454284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9808120727539, 40.75167465209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98021697998047, 40.759910583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95482635498047, 40.78363800048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97210693359375, 40.745628356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98099517822266, 40.7640380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814053", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96737670898438, 40.7633171081543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9917984008789, 40.724151611328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01410675048828, 40.7139778137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99656677246094, 40.74283981323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97040557861328, 40.754398345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97196197509766, 40.79450988769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814771", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9830093383789, 40.75080871582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97819519042969, 40.746002197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98046875, 40.72187805175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00279998779297, 40.76054382324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97789001464844, 40.737789154052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9983901977539, 40.7404670715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96004486083984, 40.7705078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98245239257812, 40.73566818237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814984", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86359405517578, 40.7697868347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00528717041016, 40.7400016784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091125488281, 40.78452682495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95649719238281, 40.77152633666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96147155761719, 40.77504348754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96061706542969, 40.773040771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96025848388672, 40.77022171020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97582244873047, 40.78155517578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.78533172607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97721099853516, 40.76158905029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194122314453, 40.77758026123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99006652832031, 40.756561279296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814734", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9698486328125, 40.79376220703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99977111816406, 40.73419189453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729248046875, 40.773887634277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.7818603515625, 40.644691467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99736022949219, 40.762306213378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99864959716797, 40.745357513427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99156188964844, 40.73905944824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00390625, 40.71309280395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9795150756836, 40.74392318725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99298858642578, 40.72982406616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9872817993164, 40.743988037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233795166016, 40.777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00148010253906, 40.70964431762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95620727539062, 40.7780876159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97393035888672, 40.756988525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9389877319336, 40.805511474609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99337005615234, 40.724449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95233154296875, 40.777076721191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96501922607422, 40.769126892089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87091827392578, 40.773826599121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9660873413086, 40.75383377075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.990478515625, 40.730621337890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8715591430664, 40.77412414550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8715591430664, 40.77412414550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99427032470703, 40.752567291259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00991821289062, 40.72077178955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95496368408203, 40.80018997192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00363159179688, 40.722511291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9756088256836, 40.78778076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97716522216797, 40.75456237792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97802734375, 40.75453186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99052429199219, 40.75114059448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.970947265625, 40.79319381713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0015869140625, 40.74128341674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95392608642578, 40.7432861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813858", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97525024414062, 40.73308563232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95619201660156, 40.717281341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98051452636719, 40.78299331665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813883", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99150848388672, 40.74987030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847183227539, 40.71052169799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98228454589844, 40.77518844604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.998046875, 40.75572204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9997787475586, 40.733245849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97367095947266, 40.76430130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99083709716797, 40.734649658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97879791259766, 40.74496078491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813804", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9943618774414, 40.74789810180664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01571655273438, 40.71453094482422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00554656982422, 40.74113082885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01353454589844, 40.704132080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406982421875, 40.76369857788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909896850586, 40.74951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97380065917969, 40.7871208190918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814390", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00381469726562, 40.742008209228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98579406738281, 40.74409484863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96552276611328, 40.795433044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075866699219, 40.72993850708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97431945800781, 40.75326919555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0035171508789, 40.73255157470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98336029052734, 40.75581359863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99440002441406, 40.740577697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00325012207031, 40.74831008911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9684066772461, 40.7548713684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97645568847656, 40.765811920166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99317932128906, 40.752559661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99690246582031, 40.72301483154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99430847167969, 40.76096725463867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97187805175781, 40.787071228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99913787841797, 40.726680755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98521423339844, 40.76017379760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814810", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97925567626953, 40.75278854370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814262", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.74970626831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95337677001953, 40.779998779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98696899414062, 40.738983154296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00796508789062, 40.71283721923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98405456542969, 40.74639129638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98380279541016, 40.74666976928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99232482910156, 40.74921417236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814325", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896789550781, 40.758018493652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98998260498047, 40.76145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78807067871094, 40.64194869995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814583", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.779296875, 40.6476936340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99775695800781, 40.72072982788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00760650634766, 40.74083709716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97441101074219, 40.736778259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97327423095703, 40.75590515136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97171020507812, 40.7611198425293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98345184326172, 40.76702117919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96180725097656, 40.77666091918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814169", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97106170654297, 40.75590896606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848861694336, 40.744285583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98692321777344, 40.73341751098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95664978027344, 40.78647232055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814211", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9573974609375, 40.774112701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95498657226562, 40.76517868041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97554779052734, 40.75101852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99463653564453, 40.7391357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99019622802734, 40.755550384521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814297", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97470092773438, 40.75345993041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99820709228516, 40.72237014770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90406799316406, 40.74561309814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00068664550781, 40.731971740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97610473632812, 40.765865325927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96614837646484, 40.757652282714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94640350341797, 40.78314971923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814290", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99054718017578, 40.746131896972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96751403808594, 40.80235290527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98418426513672, 40.7435302734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99415588378906, 40.75114822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9782485961914, 40.68422317504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95484161376953, 40.805179595947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96360778808594, 40.77704620361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99415588378906, 40.75114822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.76438522338867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9558334350586, 40.76411819458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.994384765625, 40.75038528442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96771240234375, 40.80290603637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95173645019531, 40.78135299682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96006774902344, 40.773651123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9627685546875, 40.76311111450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99078369140625, 40.74935531616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9750747680664, 40.76122283935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.994384765625, 40.75038528442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87057495117188, 40.77359390258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97871398925781, 40.76236343383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98809814453125, 40.761619567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99869537353516, 40.71495819091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98663330078125, 40.761619567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814859", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99720001220703, 40.73756408691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98847198486328, 40.71849822998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9736328125, 40.754302978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99610900878906, 40.72481918334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99610900878906, 40.72481918334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97492980957031, 40.79261779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99099731445312, 40.73011779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95957946777344, 40.813720703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.77504348754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95738220214844, 40.773983001708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98890686035156, 40.693443298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817886352539, 40.73237991333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00001525878906, 40.7409553527832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98448181152344, 40.77499008178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814147", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98504638671875, 40.75956344604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815119", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98077392578125, 40.74807357788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00001525878906, 40.7409553527832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98077392578125, 40.74807357788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96743774414062, 40.80339813232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9969482421875, 40.737281799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324035644531, 40.72212219238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813755", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9917221069336, 40.74471664428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97065734863281, 40.76755905151367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97599792480469, 40.78620147705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95320129394531, 40.779197692871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87308502197266, 40.7739372253418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95169067382812, 40.71498107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96678161621094, 40.757179260253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96499633789062, 40.791343688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0093765258789, 40.715389251708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98800659179688, 40.749271392822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97498321533203, 40.765037536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95658111572266, 40.77798843383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00269317626953, 40.733768463134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99310302734375, 40.72236251831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97864532470703, 40.762603759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97871398925781, 40.724063873291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99642181396484, 40.298828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0007095336914, 40.742061614990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9779052734375, 40.75469207763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9737548828125, 40.75098419189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814208", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99471282958984, 40.74038314819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96790313720703, 40.765621185302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98102569580078, 40.764732360839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97906494140625, 40.75310134887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98921966552734, 40.736366271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98910522460938, 40.763267517089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78084564208984, 40.64805603027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99820709228516, 40.72407913208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94760131835938, 40.78371810913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95479583740234, 40.7806396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99867248535156, 40.744808197021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96101379394531, 40.780853271484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814532", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97632598876953, 40.74427032470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9617919921875, 40.76526641845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00526428222656, 40.72828674316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99980926513672, 40.743499755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9894027709961, 40.73097610473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815012", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99874114990234, 40.717220306396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94737243652344, 40.7756462097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95416259765625, 40.82158279418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813811", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77677154541016, 40.64568328857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814291", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397827148438, 40.760318756103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99515533447266, 40.74994659423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97822570800781, 40.75223159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95146179199219, 40.77840042114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813986", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97379302978516, 40.747840881347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97943878173828, 40.765106201171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99429321289062, 40.73223114013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98692321777344, 40.75015640258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815444946289, 40.763572692871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95321655273438, 40.78583908081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052978515625, 40.751121520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9562759399414, 40.772216796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7828140258789, 40.648868560791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98765563964844, 40.73966598510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96881866455078, 40.76399612426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98146057128906, 40.7405891418457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99433898925781, 40.729339599609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01714324951172, 40.704872131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97947692871094, 40.74916076660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00431060791016, 40.74249267578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95601654052734, 40.78483581542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95326232910156, 40.78533935546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223114013672, 40.768619537353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98235321044922, 40.77297592163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99388122558594, 40.746585845947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99475860595703, 40.76068878173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814241", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97017669677734, 40.761348724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00035858154297, 40.741371154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96399688720703, 40.797828674316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99759674072266, 40.72098159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96393585205078, 40.76011657714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96293640136719, 40.77238845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99761962890625, 40.721649169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98917388916016, 40.77299880981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9991683959961, 40.73939895629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814961", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97241973876953, 40.79644775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99332427978516, 40.74728012084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97970581054688, 40.72761917114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.73933792114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96674346923828, 40.76141357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98983001708984, 40.756900787353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98605346679688, 40.755985260009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883804321289, 40.73960876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96842956542969, 40.79970169067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813962", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883804321289, 40.73960876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99632263183594, 40.75006103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97093963623047, 40.76422882080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.982421875, 40.76177215576172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814532", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95269775390625, 40.742488861083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98979949951172, 40.75720977783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99579620361328, 40.74895477294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99867248535156, 40.74003982543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98926544189453, 40.723289489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00605010986328, 40.70658874511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542236328125, 40.764190673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542236328125, 40.764190673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542236328125, 40.764190673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0028305053711, 40.76050567626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00749206542969, 40.70476150512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96192169189453, 40.76791000366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98574829101562, 40.760040283203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78250122070312, 40.646846771240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98574829101562, 40.760040283203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194122314453, 40.77251052856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99201965332031, 40.74906921386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002075195312, 40.72563934326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.0111312866211, 40.7163200378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002075195312, 40.72563934326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.974609375, 40.75110626220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95127868652344, 40.799991607666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664535522461, 40.80486297607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.974609375, 40.75110626220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.769981384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94735717773438, 40.77560043334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0006103515625, 40.73720169067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814677", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0048828125, 40.75205993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9864730834961, 40.74028778076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00007629394531, 40.7347297668457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95568084716797, 40.787078857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291015625, 40.73904037475586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00531005859375, 40.74055862426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814493", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96040344238281, 40.761409759521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98040008544922, 40.73429870605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96566772460938, 40.762882232666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95391845703125, 40.774932861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814326", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98245239257812, 40.75096130371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97866821289062, 40.78246307373047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86370086669922, 40.76974868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814438", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99111938476562, 40.739559173583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9693603515625, 40.78544998168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97257995605469, 40.74985885620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99301147460938, 40.7023811340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87303161621094, 40.77419662475586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9570083618164, 40.78371810913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114776611328, 40.74724197387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97257995605469, 40.74985885620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091888427734, 40.764461517333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814038", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00193786621094, 40.74053192138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97958374023438, 40.7493896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97937774658203, 40.74420166015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854736328125, 40.738548278808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8823471069336, 40.8283805847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814664", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9779281616211, 40.77880096435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9962387084961, 40.72394943237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97040557861328, 40.7556266784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97602081298828, 40.795230865478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98860168457031, 40.73770523071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97380065917969, 40.761146545410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97874450683594, 40.74043655395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814715", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99241638183594, 40.74026870727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99739074707031, 40.72134017944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814135", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9676284790039, 40.76521301269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814135", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96747589111328, 40.75234603881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96221160888672, 40.76553726196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86353302001953, 40.76993179321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99581146240234, 40.76449966430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99315643310547, 40.75239944458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97100830078125, 40.755157470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97100830078125, 40.761070251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99406433105469, 40.75119400024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97490692138672, 40.7530632019043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00711059570312, 40.7393684387207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96540832519531, 40.76930618286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99535369873047, 40.75960159301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97490692138672, 40.7530632019043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97804260253906, 40.752349853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759521484375, 40.760841369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.980712890625, 40.76433181762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95165252685547, 40.71406936645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96473693847656, 40.773250579833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97671508789062, 40.747440338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99650573730469, 40.7237663269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.78084182739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87273406982422, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.94055938720703, 40.84019088745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940185546875, 40.746219635009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99932098388672, 40.7493896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99932098388672, 40.7493896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96128845214844, 40.76058578491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97114562988281, 40.7555046081543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551177978516, 40.727169036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99842834472656, 40.71366500854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97248077392578, 40.76240921020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940185546875, 40.746219635009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.994384765625, 40.74055099487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01306915283203, 40.717403411865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99588012695312, 40.764095306396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320007324219, 40.76546096801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95433044433594, 40.7661018371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00224304199219, 40.74209976196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99896240234375, 40.720115661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00357818603516, 40.748329162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9766616821289, 40.76517105102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96207427978516, 40.763065338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97747039794922, 40.77937698364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99308013916016, 40.74776077270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.738468170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97355651855469, 40.759212493896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96582794189453, 40.758670806884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94735717773438, 40.6803092956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844909667969, 40.75390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94728088378906, 40.77582550048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99658966064453, 40.737396240234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97493743896484, 40.761714935302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94728088378906, 40.77582550048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98937225341797, 40.75743865966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.947509765625, 40.77507781982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.76415252685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815007", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9699478149414, 40.79951095581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.947509765625, 40.77507781982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95890045166016, 40.71493911743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00067901611328, 40.72090530395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814540", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98335266113281, 40.74397277832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97215270996094, 40.7625617980957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99354553222656, 40.73570251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.17739868164062, 40.69525909423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99586486816406, 40.75421142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98866271972656, 40.72154235839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9966812133789, 40.737327575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98587036132812, 40.7528190612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7819595336914, 40.644588470458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98644256591797, 40.75606918334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97039794921875, 40.76508712768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00872039794922, 40.71925354003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9710693359375, 40.788089752197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98918914794922, 40.76280975341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78193664550781, 40.64474868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814380", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416137695312, 40.74337387084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99250793457031, 40.74808883666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814426", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86376953125, 40.76957321166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00137329101562, 40.7412109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814058", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95677185058594, 40.77122497558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96846771240234, 40.7646598815918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95922088623047, 40.763389587402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99217224121094, 40.7252311706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98568725585938, 40.74713134765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98712158203125, 40.729339599609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96038818359375, 40.781700134277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98160552978516, 40.76462173461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9472885131836, 40.77513122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95801544189453, 40.710418701171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9819564819336, 40.74070358276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97522735595703, 40.761741638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96965026855469, 40.7612190246582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759292602539, 40.77629852294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95438385009766, 40.76399612426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.774566650390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9564437866211, 40.7753791809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99348449707031, 40.740760803222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98294067382812, 40.76190185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97535705566406, 40.76482009887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00833129882812, 40.7117805480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95576477050781, 40.768550872802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98857116699219, 40.722721099853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96882629394531, 40.764522552490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97636413574219, 40.744258880615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814341", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99282836914062, 40.749698638916016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96882629394531, 40.764522552490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01534271240234, 40.71591567993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97909545898438, 40.7613639831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96263122558594, 40.775848388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99662780761719, 40.72359848022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99185180664062, 40.72592544555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.99067687988281, 40.7420539855957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97661590576172, 40.75168991088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95610809326172, 40.80339813232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00228881835938, 40.739742279052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813804", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9581527709961, 40.71745681762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814863", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9559097290039, 40.77981948852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9922103881836, 40.72435760498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814135", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99889373779297, 40.726436614990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88706970214844, 40.74733352661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97916412353516, 40.78718948364258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98239135742188, 40.73979187011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97650146484375, 40.7517204284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.78831100463867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052490234375, 40.74034118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86457824707031, 40.77058410644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9537582397461, 40.77492904663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98798370361328, 40.72380065917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95323181152344, 40.77935791015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00818634033203, 40.72175979614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99313354492188, 40.73638153076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00008392333984, 40.73275375366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97821044921875, 40.783260345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814661", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98267364501953, 40.76742172241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9711685180664, 40.754695892333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9537582397461, 40.775211334228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97132873535156, 40.74620819091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94698333740234, 40.78035354614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98049926757812, 40.753971099853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.975830078125, 40.78899002075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97530364990234, 40.78007888793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95700073242188, 40.78078079223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98311614990234, 40.7265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9637680053711, 40.77368927001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86351776123047, 40.7697868347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01295471191406, 40.70771026611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.762752532958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908676147461, 40.741851806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98018646240234, 40.69361877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00093841552734, 40.72013854980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815040", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01377868652344, 40.70232391357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97527313232422, 40.733150482177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95600128173828, 40.77616500854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813879", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97545623779297, 40.75785446166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97978210449219, 40.77212142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99160766601562, 40.74989318847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815673828125, 40.77540969848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99186706542969, 40.749202728271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99625396728516, 40.72416687011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99125671386719, 40.749839782714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96894073486328, 40.754390716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99319458007812, 40.729610443115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00564575195312, 40.711212158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95159149169922, 40.76986312866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99726104736328, 40.74924087524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814970", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99739837646484, 40.74088668823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98217010498047, 40.75680923461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97189331054688, 40.757118225097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97529602050781, 40.75291442871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96142578125, 40.76042938232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815156", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9986572265625, 40.74216842651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9398422241211, 40.68747329711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95291900634766, 40.78306198120117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99171447753906, 40.74995040893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97142791748047, 40.79479217529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813922", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00743103027344, 40.725830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96626281738281, 40.764869689941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97024536132812, 40.74925994873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77674102783203, 40.64514923095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96598815917969, 40.80533981323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95636749267578, 40.781036376953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99168395996094, 40.754451751708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99168395996094, 40.754451751708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94001007080078, 40.750980377197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99752044677734, 40.71942138671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97875213623047, 40.753353118896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98004913330078, 40.76095962524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95108795166016, 40.78580856323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814915", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99536895751953, 40.71744155883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95469665527344, 40.769657135009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814457", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99838256835938, 40.74540328979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.737606048583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98796081542969, 40.74964904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98854064941406, 40.7783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98542022705078, 40.76777648925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9802017211914, 40.746700286865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96410369873047, 40.767459869384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9238510131836, 40.77039337158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0108413696289, 40.708858489990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98445892333984, 40.756370544433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98395538330078, 40.72160720825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96698760986328, 40.7609748840332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98609924316406, 40.726478576660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97378540039062, 40.744136810302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9840087890625, 40.7376594543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97830963134766, 40.788475036621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98033142089844, 40.765499114990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.992431640625, 40.76376724243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00653839111328, 40.719085693359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98248291015625, 40.774932861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0156021118164, 40.7137336730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99775695800781, 40.736087799072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814211", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99069213867188, 40.71847152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9668197631836, 40.803958892822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00381469726562, 40.7481803894043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98626708984375, 40.735687255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98626708984375, 40.735687255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884262084961, 40.74899673461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0074691772461, 40.708709716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98138427734375, 40.72086715698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98343658447266, 40.76074981689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96009826660156, 40.77375411987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96009826660156, 40.77375411987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99215698242188, 40.74943542480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00326538085938, 40.73894119262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9771499633789, 40.75441360473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99419403076172, 40.761619567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889907836914, 40.73072052001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97276306152344, 40.75274658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814135", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99545288085938, 40.74977111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9786148071289, 40.777587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814476", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97860717773438, 40.75898361206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97860717773438, 40.75898361206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96365356445312, 40.76837158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027801513672, 40.78062057495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814379", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97624969482422, 40.73982238769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95589447021484, 40.764156341552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00013732910156, 40.7430305480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815048", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833984375, 40.72633743286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98170471191406, 40.763031005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00601959228516, 40.73988342285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.873046875, 40.77411651611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00506591796875, 40.74067687988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9986801147461, 40.74460220336914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.76118087768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.76118087768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00636291503906, 40.731746673583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98924255371094, 40.730682373046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98924255371094, 40.730682373046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97364807128906, 40.76374435424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814332", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96503448486328, 40.791221618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814246", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99456024169922, 40.7506103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8658218383789, 40.77082443237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9610366821289, 40.76072692871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97321319580078, 40.75520706176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00151062011719, 40.74119186401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95773315429688, 40.76974105834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98140716552734, 40.781211853027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9565200805664, 40.78420639038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320770263672, 40.757991790771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844909667969, 40.77412414550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9756088256836, 40.75508117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822021484375, 40.73711395263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98662567138672, 40.759735107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98662567138672, 40.759735107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96338653564453, 40.7661018371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96780395507812, 40.765830993652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95561981201172, 40.77946853637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98241424560547, 40.771240234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98333740234375, 40.73878860473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0005111694336, 40.746028900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98190307617188, 40.74637222290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87300109863281, 40.774131774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815002", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95236206054688, 40.76613998413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95308685302734, 40.76764678955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94511413574219, 40.80858612060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97686767578125, 40.759010314941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.977294921875, 40.77940368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95744323730469, 40.78295135498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00141143798828, 40.73646926879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97380828857422, 40.74745178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99844360351562, 40.7263298034668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9740982055664, 40.75393295288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815092", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0022201538086, 40.73442459106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99005126953125, 40.73414611816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00054931640625, 40.72886657714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00776672363281, 40.71742630004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99685668945312, 40.71487808227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95075988769531, 40.783199310302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96273803710938, 40.762733459472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98783111572266, 40.765220642089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814688", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98881530761719, 40.71863555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97142791748047, 40.74814987182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97065734863281, 40.754337310791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99840545654297, 40.735496520996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9669189453125, 40.7723388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886245727539, 40.7633056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814435", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96324920654297, 40.76884841918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96199798583984, 40.77362823486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97023010253906, 40.689571380615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97602844238281, 40.75818634033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78973388671875, 40.643798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96756744384766, 40.80311584472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97953033447266, 40.76145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97489929199219, 40.734230041503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97303771972656, 40.758338928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.989013671875, 40.7603874206543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87289428710938, 40.77405548095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96089172363281, 40.769569396972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95982360839844, 40.775390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96280670166016, 40.76668930053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96280670166016, 40.76668930053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96343231201172, 40.76364517211914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97855377197266, 40.73701858520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97997283935547, 40.74338150024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848403930664, 40.724388122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9504165649414, 40.771602630615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9504165649414, 40.771602630615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.74974060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00028991699219, 40.742679595947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9617919921875, 40.75968933105469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95279693603516, 40.766380310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98059844970703, 40.688575744628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814814", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9422378540039, 40.7865104675293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.872802734375, 40.77388000488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884262084961, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114013671875, 40.75346755981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94906616210938, 40.796958923339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99195098876953, 40.74654006958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95558166503906, 40.804264068603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814913", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99401092529297, 40.74176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98860168457031, 40.75014877319336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876708984375, 40.760284423828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722961425781, 40.7828483581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97733306884766, 40.75226974487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00469207763672, 40.719058990478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9757080078125, 40.76065444946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97403717041016, 40.75141525268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97403717041016, 40.75141525268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9560775756836, 40.71382141113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.761009216308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97476959228516, 40.75043869018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99195098876953, 40.73759841918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.752723693847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99415588378906, 40.750972747802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99208068847656, 40.74897003173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98372650146484, 40.75566864013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813806", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98135375976562, 40.74394989013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96163940429688, 40.77701187133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96658325195312, 40.76424026489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96684265136719, 40.76517868041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0040283203125, 40.725502014160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98731994628906, 40.754764556884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95906066894531, 40.77212142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9620361328125, 40.779239654541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9620361328125, 40.779239654541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95393371582031, 40.7666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94454193115234, 40.779476165771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00751495361328, 40.7330322265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886703491211, 40.763919830322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99026489257812, 40.75173568725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97560119628906, 40.752479553222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7894515991211, 40.64665985107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9926986694336, 40.74525833129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99524688720703, 40.73429870605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748779296875, 40.745609283447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95816040039062, 40.778839111328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99400329589844, 40.7511100769043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813887", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.008056640625, 40.7403450012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289154052734, 40.76029968261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00547790527344, 40.71247100830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97235870361328, 40.759178161621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102020263672, 40.750160217285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00138092041016, 40.73622131347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95694732666016, 40.78634262084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99500274658203, 40.75529861450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97067260742188, 40.793888092041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97067260742188, 40.793888092041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95284271240234, 40.78649139404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95020294189453, 40.77992630004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00205993652344, 40.72456741333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00225830078125, 40.73972702026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97273254394531, 40.753318786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97273254394531, 40.753318786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01288604736328, 40.71687316894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97595977783203, 40.76413345336914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97209930419922, 40.75738525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97209930419922, 40.75738525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00337982177734, 40.72724914550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98409271240234, 40.754638671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94637298583984, 40.777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95404052734375, 40.766483306884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97860717773438, 40.76286315917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99662780761719, 40.72568130493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811019897461, 40.747188568115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00116729736328, 40.74176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844146728516, 40.746681213378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97198486328125, 40.756736755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99070739746094, 40.75104904174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97486877441406, 40.741756439208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98197174072266, 40.749168395996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0000991821289, 40.717960357666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814215", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9671859741211, 40.7624397277832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00202941894531, 40.72447967529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9493637084961, 40.781368255615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9610595703125, 40.77508544921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98673248291016, 40.749359130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97693634033203, 40.79301071166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9680404663086, 40.755435943603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01589965820312, 40.71498107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9706039428711, 40.761653900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95230865478516, 40.78390121459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.751190185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9579849243164, 40.80095291137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814041", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97102355957031, 40.76124954223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97102355957031, 40.76124954223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98827362060547, 40.7459602355957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99108123779297, 40.73497009277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729476928711, 40.774131774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99075317382812, 40.751502990722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98211669921875, 40.745849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98344421386719, 40.74989700317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98344421386719, 40.74989700317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97139739990234, 40.763031005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99403381347656, 40.75117874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814692", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97968292236328, 40.786346435546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00321960449219, 40.7328987121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942855834961, 40.72768783569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.99856567382812, 40.72180938720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91793823242188, 40.74327087402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99089813232422, 40.74243927001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99078369140625, 40.765869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98126220703125, 40.74142074584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00428009033203, 40.70758056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93710327148438, 40.76457977294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00741577148438, 40.71595001220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814626", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01345825195312, 40.70576095581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.75483322143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025405883789, 40.73373794555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814000", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9897232055664, 40.74134063720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99210357666016, 40.7216682434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0003890991211, 40.71860885620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97145080566406, 40.78254699707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444793701172, 40.741722106933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00841522216797, 40.71505355834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99657440185547, 40.76324462890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9744873046875, 40.739830017089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98357391357422, 40.725894927978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00724792480469, 40.74357986450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95317840576172, 40.785980224609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95948028564453, 40.77421188354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0141830444336, 40.71234130859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813922", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01652526855469, 40.70723342895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9483413696289, 40.81645584106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90908813476562, 40.68672180175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814251", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95462036132812, 40.783329010009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97937774658203, 40.746395111083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00843811035156, 40.721282958984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98872375488281, 40.75387954711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194885253906, 40.7634162902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01113891601562, 40.71047592163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96208953857422, 40.79534149169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95610046386719, 40.714080810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333953857422, 40.76285934448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99333953857422, 40.76285934448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9826431274414, 40.7570686340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99179077148438, 40.72637176513672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00753021240234, 40.741355895996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99736022949219, 40.71915817260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97464752197266, 40.75648880004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98151397705078, 40.76372528076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97208404541016, 40.78668212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814199", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98381042480469, 40.74644470214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96798706054688, 40.762420654296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97309875488281, 40.78525924682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98686218261719, 40.741188049316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9555435180664, 40.77962875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9555435180664, 40.77962875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97622680664062, 40.77628707885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96029663085938, 40.76218032836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98793029785156, 40.72407150268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.93587493896484, 40.80357360839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94602966308594, 40.77338790893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94808959960938, 40.778900146484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00369262695312, 40.72595977783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9602279663086, 40.76633071899414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98394012451172, 40.7470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99091339111328, 40.76102828979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96559143066406, 40.774513244628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00399780273438, 40.731468200683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814961", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78181457519531, 40.64473342895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97756958007812, 40.786922454833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9531478881836, 40.780025482177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9712905883789, 40.7567024230957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99536895751953, 40.74480056762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96684265136719, 40.79387283325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99561309814453, 40.72330093383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9885025024414, 40.744468688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93827819824219, 40.803321838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93827819824219, 40.803321838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.75022888183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9758529663086, 40.76030731201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95710754394531, 40.777530670166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97484588623047, 40.72987747192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814053", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96184539794922, 40.76804733276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813851", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97621154785156, 40.763980865478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94133758544922, 40.79222106933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.957763671875, 40.7642707824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.779327392578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.979736328125, 40.784507751464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97352600097656, 40.76381301879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97869110107422, 40.736778259277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87307739257812, 40.77389907836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93125915527344, 40.694820404052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814712", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99024200439453, 40.74674987792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97158813476562, 40.76169204711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97061920166016, 40.75628662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.77671813964844, 40.645469665527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891128540039, 40.73648452758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00098419189453, 40.74232482910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550964355469, 40.75297164916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550964355469, 40.75297164916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99405670166016, 40.7412109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97628784179688, 40.74434280395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98422241210938, 40.74315643310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97428131103516, 40.76063537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97428131103516, 40.76063537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843170166016, 40.75251770019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814540", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788818359375, 40.77229690551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95185852050781, 40.777713775634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814209", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95533752441406, 40.77945327758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9525375366211, 40.82387161254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9752426147461, 40.75524139404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98856353759766, 40.72269821166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96382904052734, 40.77155303955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95671844482422, 40.818084716796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95555114746094, 40.764068603515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9975357055664, 40.71938705444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00965881347656, 40.70378875732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97325134277344, 40.74863815307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97325134277344, 40.74863815307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95652770996094, 40.71697998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9583969116211, 40.76020050048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415161132812, 40.7513313293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97415161132812, 40.7513313293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0032730102539, 40.73274230957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722839355469, 40.76594543457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78248596191406, 40.64453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96298217773438, 40.76935958862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99755859375, 40.7449836730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95584106445312, 40.775245666503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97765350341797, 40.74140548706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97358703613281, 40.75441360473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97358703613281, 40.75441360473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99788665771484, 40.67827224731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95703125, 40.76662063598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814196", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95503234863281, 40.82036590576172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00617218017578, 40.717105865478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914321899414, 40.75008010864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.99696350097656, 40.762264251708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99174499511719, 40.74421310424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00035095214844, 40.730133056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99671173095703, 40.76390075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94392395019531, 40.81512451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95481872558594, 40.78360366821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814414", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9655990600586, 40.75840377807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814135", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99331665039062, 40.7524528503418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99504089355469, 40.7446403503418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98645782470703, 40.72327423095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00659942626953, 40.744239807128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815056", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95741271972656, 40.77006149291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97999572753906, 40.78400421142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96613311767578, 40.76219177246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9821548461914, 40.77621078491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.748687744140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814864", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95008850097656, 40.77605056762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052978515625, 40.76757049560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00547790527344, 40.73918914794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00726318359375, 40.733516693115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00870513916016, 40.70438003540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00528717041016, 40.70924377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78181457519531, 40.64491271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97370910644531, 40.757659912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813961", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98971557617188, 40.7342529296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9871826171875, 40.69229507446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99501037597656, 40.740203857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9662094116211, 40.7648811340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814350", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87102508544922, 40.773834228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99156188964844, 40.75008010864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.0041275024414, 40.7420768737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9986572265625, 40.744815826416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95799255371094, 40.761810302734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.75756072998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95426940917969, 40.76610565185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99166870117188, 40.76377487182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99031829833984, 40.75615692138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99449157714844, 40.7457160949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00523376464844, 40.70810317993164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97382354736328, 40.75178909301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94688415527344, 40.77620315551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94688415527344, 40.77620315551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97212219238281, 40.75727081298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97535705566406, 40.75223159790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814314", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9529037475586, 40.78610610961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227905273438, 40.74917984008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98705291748047, 40.744422912597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97008514404297, 40.75457763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98876190185547, 40.74861145019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815177", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00391387939453, 40.7416877746582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98021697998047, 40.751380920410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98516082763672, 40.76874923706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.74383544921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99088287353516, 40.75629425048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99088287353516, 40.75629425048828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99810791015625, 40.73564910888672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95404815673828, 40.77473831176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99279022216797, 40.73078536987305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87297821044922, 40.77409362792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814376", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95480346679688, 40.765708923339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98548126220703, 40.73849868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00348663330078, 40.651649475097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98469543457031, 40.75920867919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86358642578125, 40.76976013183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98050689697266, 40.7599983215332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98663330078125, 40.74713897705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97369384765625, 40.75522232055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94779205322266, 40.79008102416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98823547363281, 40.74808883666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78187561035156, 40.64464569091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95455932617188, 40.7841796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814204", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9915542602539, 40.749935150146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97810363769531, 40.75239944458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99152374267578, 40.75025939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96942138671875, 40.766082763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814169", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0063247680664, 40.70616912841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00823974609375, 40.7323112487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814338", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96685028076172, 40.79383087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95577239990234, 40.77988052368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00592803955078, 40.72496032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9719009399414, 40.76036071777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95879364013672, 40.783939361572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9691162109375, 40.78579330444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00108337402344, 40.72768020629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96438598632812, 40.807254791259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97806549072266, 40.7374153137207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98991394042969, 40.74123001098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96905517578125, 40.76443862915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79016876220703, 40.64686965942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99057006835938, 40.730621337890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196838378906, 40.70822525024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98780059814453, 40.75468063354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9799575805664, 40.784034729003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95661163330078, 40.766876220703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98284149169922, 40.76137924194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97976684570312, 40.75954818725586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99401092529297, 40.75133514404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205780029297, 40.74905014038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95867156982422, 40.76474380493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97205352783203, 40.76007080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814341", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97205352783203, 40.76007080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814341", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98971557617188, 40.747188568115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9521713256836, 40.77286148071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9837875366211, 40.74964904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97573852539062, 40.76068878173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99200439453125, 40.72557067871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.75044631958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815047", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00740814208984, 40.70541763305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00740814208984, 40.70541763305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96733093261719, 40.76327896118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01717376708984, 40.705299377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9705810546875, 40.75586700439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814837", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99027252197266, 40.75667190551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9991683959961, 40.691524505615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814596", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99706268310547, 40.685081481933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98609161376953, 40.75690841674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97588348388672, 40.7605094909668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97857666015625, 40.75694274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99127960205078, 40.74647521972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00473022460938, 40.74181365966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96266174316406, 40.763065338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814028", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96697235107422, 40.788692474365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96697235107422, 40.788692474365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97444915771484, 40.79317092895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9849624633789, 40.736236572265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98150634765625, 40.74980163574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814301", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95189666748047, 40.78481674194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813966", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9945068359375, 40.71934509277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98175048828125, 40.768489837646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99845886230469, 40.76090621948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.76860427856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.76860427856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95523071289062, 40.78567123413086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99411010742188, 40.746280670166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99091339111328, 40.750980377197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95101165771484, 40.775001525878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78211975097656, 40.644630432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065948486328, 40.783241271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96829223632812, 40.799922943115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876937866211, 40.73828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00302124023438, 40.72330093383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255157470703, 40.78486251831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97630310058594, 40.733551025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99293518066406, 40.759178161621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97554016113281, 40.76084518432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99401092529297, 40.72013854980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9948959350586, 40.7489128112793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754638671875, 40.77698516845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815156", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00172424316406, 40.74092102050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97454833984375, 40.76189422607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99296569824219, 40.752193450927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940414428711, 40.75123977661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99403381347656, 40.7574348449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813917", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95520782470703, 40.76903533935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96611022949219, 40.78988265991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99347686767578, 40.75713348388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98406219482422, 40.72506332397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95600891113281, 40.78011703491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00498962402344, 40.72010040283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99510955810547, 40.76025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97257995605469, 40.7650146484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93243408203125, 40.6973762512207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.997314453125, 40.72172164916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98860168457031, 40.757320404052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98873138427734, 40.74885177612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99061584472656, 40.76108169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99590301513672, 40.71645736694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814792", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.985595703125, 40.732757568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00779724121094, 40.71501541137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99459075927734, 40.75054168701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.87305450439453, 40.77421951293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95948028564453, 40.77430725097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00658416748047, 40.71391296386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94912719726562, 40.77069091796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97416687011719, 40.762428283691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99038696289062, 40.75601577758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96675109863281, 40.79363250732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01010131835938, 40.720436096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9880142211914, 40.718719482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9880142211914, 40.718719482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98234558105469, 40.7571907043457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97552490234375, 40.790504455566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97798156738281, 40.754539489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9836654663086, 40.746585845947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939086914062, 40.760379791259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98070526123047, 40.73834228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541809082031, 40.764259338378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01588439941406, 40.71131134033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9774169921875, 40.763946533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96788787841797, 40.78715896606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95545959472656, 40.76856231689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97877502441406, 40.75651550292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98993682861328, 40.7562370300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98165130615234, 40.730995178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97996520996094, 40.764747619628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97725677490234, 40.764007568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814695", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99793243408203, 40.751399993896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98068237304688, 40.73390197753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9840087890625, 40.74652099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98836517333984, 40.723392486572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814593", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98493957519531, 40.7601432800293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542007446289, 40.76592254638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542007446289, 40.76592254638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.06473541259766, 40.73554611206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9692611694336, 40.757144927978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99320983886719, 40.7576904296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01404571533203, 40.712181091308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98213958740234, 40.7806396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.79106903076172, 40.64604949951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814100", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78203582763672, 40.64472579956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78203582763672, 40.64472579956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98822784423828, 40.75906753540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0042495727539, 40.72565841674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78189086914062, 40.64474868774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98779296875, 40.769901275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978515625, 40.7501106262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97396850585938, 40.750709533691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814734", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97767639160156, 40.786991119384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95552062988281, 40.77926254272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97257995605469, 40.760196685791016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.76018142700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0024642944336, 40.73970031738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99981689453125, 40.72195053100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95368194580078, 40.784759521484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97320556640625, 40.74885177612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0078353881836, 40.710330963134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.957275390625, 40.780033111572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00454711914062, 40.722618103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940826416016, 40.75209426879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99120330810547, 40.76353073120117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96958923339844, 40.79779052734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98294067382812, 40.77159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00720977783203, 40.71797180175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00302124023438, 40.70853042602539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814661", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974365234375, 40.721309661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98097229003906, 40.73786926269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00856018066406, 40.718910217285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8637466430664, 40.76961135864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00997924804688, 40.72018814086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97860717773438, 40.747928619384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01049041748047, 40.714027404785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98771667480469, 40.75944900512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98899841308594, 40.743038177490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98784637451172, 40.73231506347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99742889404297, 40.721492767333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94950103759766, 40.79191970825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814989", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87089538574219, 40.77363204956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97148132324219, 40.763458251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00484466552734, 40.73038101196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814434", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.689918518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98871612548828, 40.75883865356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98519897460938, 40.76872634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814950", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00569915771484, 40.72597885131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99606323242188, 40.75917434692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97160339355469, 40.781646728515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94587707519531, 40.801475524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88548278808594, 40.7730827331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97265625, 40.78090286254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99073028564453, 40.74477005004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9937973022461, 40.741722106933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98963928222656, 40.71910858154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96463012695312, 40.760040283203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9860610961914, 40.72655487060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99024963378906, 40.740840911865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93724060058594, 40.81330108642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9803466796875, 40.77534103393555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420928955078, 40.75096130371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97376251220703, 40.76444625854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848861694336, 40.76907730102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99990844726562, 40.73870086669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97055053710938, 40.78356170654297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97819519042969, 40.76173782348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9838638305664, 40.729576110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00017547607422, 40.732666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96421813964844, 40.76478958129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95286560058594, 40.77811050415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814695", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78218841552734, 40.644691467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00517272949219, 40.74821090698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.77711868286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78910064697266, 40.647308349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814667", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9844970703125, 40.769588470458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085998535156, 40.7335090637207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845962524414, 40.73283004760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9874267578125, 40.768463134765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99993896484375, 40.71807861328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96826171875, 40.755008697509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0037841796875, 40.70588684082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99308013916016, 40.72275924682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97628784179688, 40.77587127685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96891784667969, 40.755916595458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95071411132812, 40.786643981933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95071411132812, 40.786643981933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99408721923828, 40.751258850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97209167480469, 40.75738525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97736358642578, 40.7522087097168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741149902344, 40.728878021240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813998", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99504089355469, 40.725318908691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99746704101562, 40.74669647216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96717834472656, 40.769371032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98160552978516, 40.746551513671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9905014038086, 40.75156021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97041320800781, 40.752349853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813861", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01616668701172, 40.71126174926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95785522460938, 40.760929107666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97407531738281, 40.759986877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97977447509766, 40.75537872314453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98641204833984, 40.76746368408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95967864990234, 40.771018981933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97087097167969, 40.761478424072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98933410644531, 40.7579460144043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98684692382812, 40.72251510620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99859619140625, 40.734718322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98811340332031, 40.76443099975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002838134766, 40.734596252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.979248046875, 40.744449615478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324035644531, 40.74311065673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97138977050781, 40.74544143676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814721", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97928619384766, 40.776920318603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93975067138672, 40.70722961425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814907", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96867370605469, 40.75498580932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814244", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9664306640625, 40.75994873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730697631836, 40.77429962158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814487", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98309326171875, 40.77151107788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96597290039062, 40.75857925415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9964370727539, 40.7427978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96340942382812, 40.76201629638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97407531738281, 40.756351470947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0108642578125, 40.71315383911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9882583618164, 40.74856185913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96326446533203, 40.77229690551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9892578125, 40.73649597167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98667907714844, 40.73976135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9317626953125, 40.66878128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95292663574219, 40.789093017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9902572631836, 40.766761779785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844146728516, 40.74936294555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9911117553711, 40.75663375854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99553680419922, 40.739288330078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9652099609375, 40.76325988769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96601867675781, 40.75807189941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96546936035156, 40.71076965332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95510864257812, 40.78023147583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95673370361328, 40.7666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99186706542969, 40.74937057495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95878601074219, 40.77827453613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97549438476562, 40.752723693847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97549438476562, 40.752723693847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95760345458984, 40.7822265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98602294921875, 40.762229919433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99838256835938, 40.72126388549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00370788574219, 40.73212814331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77904510498047, 40.647464752197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86358642578125, 40.76995849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95238494873047, 40.777381896972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98056030273438, 40.75288772583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843170166016, 40.76690673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98206329345703, 40.75777816772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98576354980469, 40.744144439697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00785064697266, 40.71506881713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98159790039062, 40.74082565307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814053", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01538848876953, 40.71461868286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95368957519531, 40.779109954833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96027374267578, 40.76957321166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9703369140625, 40.75881576538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00706481933594, 40.70531463623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0067367553711, 40.74872970581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9923095703125, 40.74943161010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97069549560547, 40.759090423583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99125671386719, 40.727867126464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95948028564453, 40.798866271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96244049072266, 40.767364501953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910888671875, 40.74979019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0003662109375, 40.72861862182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98102569580078, 40.781959533691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9832763671875, 40.7502555847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98931884765625, 40.75754165649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98571014404297, 40.72309112548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96868896484375, 40.799041748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97824096679688, 40.74827194213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97205352783203, 40.78207015991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9646987915039, 40.773033142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99287414550781, 40.73731231689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98489379882812, 40.748268127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814576", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97146606445312, 40.79255676269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814945", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96305084228516, 40.768123626708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884262084961, 40.74991989135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79058837890625, 40.64394760131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96211242675781, 40.773319244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96634674072266, 40.75336837768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98136138916016, 40.75284194946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0094985961914, 40.72615051269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98079681396484, 40.78213119506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98079681396484, 40.78213119506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941635131836, 40.759918212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99148559570312, 40.77030944824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97383880615234, 40.7581787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94175720214844, 40.814517974853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98570251464844, 40.727108001708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99674224853516, 40.74789047241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00012969970703, 40.74302673339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751831054688, 40.762088775634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616790771484, 40.74372863769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95999145507812, 40.77070617675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97927856445312, 40.75617599487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95863342285156, 40.76396942138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98322296142578, 40.7497444152832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813929", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78331756591797, 40.64876174926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814224243164, 40.747074127197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97644805908203, 40.78558349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9788818359375, 40.76189041137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99144744873047, 40.75017166137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813950", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833984375, 40.74396896362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99237823486328, 40.7689094543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99237823486328, 40.7689094543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97531127929688, 40.751644134521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814734", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9588623046875, 40.76393127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814194", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77672576904297, 40.64539337158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98139190673828, 40.77877426147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79049682617188, 40.64390182495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99240112304688, 40.749271392822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815052", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9432601928711, 40.836509704589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86284637451172, 40.76884460449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.74900436401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815096", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226165771484, 40.77055740356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99658203125, 40.763450622558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9774398803711, 40.7870979309082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78843688964844, 40.64496612548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96354675292969, 40.761680603027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00157165527344, 40.73057174682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97972869873047, 40.75591278076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.005859375, 40.70647048950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.005859375, 40.70647048950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98517608642578, 40.758941650390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97576904296875, 40.75226974487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98978424072266, 40.76261520385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9836196899414, 40.729698181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97842407226562, 40.68410110473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94548034667969, 40.78226852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96369934082031, 40.76835250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9249038696289, 40.74051284790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86334228515625, 40.77000045776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814024", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0169906616211, 40.708866119384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96775817871094, 40.765716552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95800018310547, 40.77602005004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813930", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00553131103516, 40.75084686279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0027084350586, 40.74953079223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98173522949219, 40.767616271972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97046661376953, 40.76506042480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01519775390625, 40.70914840698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96205139160156, 40.779361724853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98171997070312, 40.755760192871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9580078125, 40.815494537353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9668960571289, 40.753448486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96356201171875, 40.803531646728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96356201171875, 40.803531646728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9723129272461, 40.749629974365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95073699951172, 40.771060943603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814582", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95073699951172, 40.771060943603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814582", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98625946044922, 40.760650634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814005", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99762725830078, 40.765281677246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0116958618164, 40.70664596557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98824310302734, 40.720237731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814187", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.77700805664062, 40.644989013671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77700805664062, 40.644989013671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814258", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9451904296875, 40.78706359863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99478149414062, 40.76108169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9797134399414, 40.73515701293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658203125, 40.75429916381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95880889892578, 40.76839828491211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814065", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78230285644531, 40.644752502441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93689727783203, 40.76470184326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0112075805664, 40.70307922363281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98906707763672, 40.75767135620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97944641113281, 40.749385833740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813768", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152160644531, 40.75844955444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00064849853516, 40.73656463623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7903823852539, 40.64366149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814604", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00300598144531, 40.72315216064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98539733886719, 40.74441909790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914321899414, 40.73512649536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914321899414, 40.73512649536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814980", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99739074707031, 40.74173355102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9819564819336, 40.77900695800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9544906616211, 40.76719665527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8634262084961, 40.769630432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98686981201172, 40.75128173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97950744628906, 40.776641845703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93164825439453, 40.858699798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99334716796875, 40.7153205871582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934936523438, 40.7579231262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814606", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934936523438, 40.7579231262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814606", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98290252685547, 40.72269058227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992156982422, 40.730430603027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730697631836, 40.77405548095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9368896484375, 40.81000900268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00460052490234, 40.74176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98207092285156, 40.744178771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79007720947266, 40.64405059814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00438690185547, 40.72699737548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79002380371094, 40.646827697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814695", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00515747070312, 40.71937942504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813801", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255157470703, 40.7723388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0059814453125, 40.73998260498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.7352409362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815024", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.731510162353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97782135009766, 40.74610137939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00773620605469, 40.74298858642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9717788696289, 40.74623107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96080017089844, 40.76150894165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825210571289, 40.745140075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97516632080078, 40.79268264770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97870635986328, 40.75263214111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9690933227539, 40.76675796508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.0048599243164, 40.746700286865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99954223632812, 40.7336311340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814000", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98535919189453, 40.7784538269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.720176696777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95207214355469, 40.77106857299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814600", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0049057006836, 40.72203826904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99820709228516, 40.74028015136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95986938476562, 40.773536682128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00594329833984, 40.73519515991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814426", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99334716796875, 40.73579025268555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814268", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00218200683594, 40.72988510131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99626922607422, 40.72365951538086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814792", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99418640136719, 40.74119186401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98047637939453, 40.77068328857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98257446289062, 40.73963165283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98013305664062, 40.780521392822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99050903320312, 40.73114776611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01319885253906, 40.71649169921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00359344482422, 40.73866653442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814912", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87313079833984, 40.77384948730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813840", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769287109375, 40.73624038696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95585632324219, 40.7677116394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94871520996094, 40.77909851074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.7696533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9875717163086, 40.7696533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94461059570312, 40.834632873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814767", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97119140625, 40.759971618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99632263183594, 40.73453903198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99427032470703, 40.726470947265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814745", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99396514892578, 40.69550704956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698974609375, 40.764888763427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87309265136719, 40.774078369140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95323944091797, 40.782737731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87120819091797, 40.7738151550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216033935547, 40.74484634399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97216033935547, 40.74484634399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97554016113281, 40.74879455566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854507446289, 40.73536682128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00199127197266, 40.7393798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814863", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00843048095703, 40.7208251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00843048095703, 40.7208251953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.77912139892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98697662353516, 40.72951126098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854507446289, 40.738494873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98580932617188, 40.73849105834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9652328491211, 40.79521179199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00005340576172, 40.74136734008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00177001953125, 40.724449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9609603881836, 40.77237319946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00778198242188, 40.72494125366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00778198242188, 40.72494125366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0068588256836, 40.70553207397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814121", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98725891113281, 40.75041961669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332214355469, 40.68143081665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332214355469, 40.68143081665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95507049560547, 40.820308685302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00514221191406, 40.72862243652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814043", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99760437011719, 40.74171447753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814346", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95144653320312, 40.775020599365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99472045898438, 40.74036407470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99472045898438, 40.74036407470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0009994506836, 40.736610412597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86312866210938, 40.76988983154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226928710938, 40.76958084106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99812316894531, 40.741268157958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95130157470703, 40.783599853515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99371337890625, 40.72013854980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397064208984, 40.761940002441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814217", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96914672851562, 40.76678466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96914672851562, 40.76678466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99494171142578, 40.745079040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96345520019531, 40.76836395263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97627258300781, 40.78611755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97710418701172, 40.74990463256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052978515625, 40.73054504394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891586303711, 40.723018646240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814471", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00939178466797, 40.712974548339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00939178466797, 40.712974548339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98238372802734, 40.76768112182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95668029785156, 40.779720306396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814444", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98866271972656, 40.749263763427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98361206054688, 40.74393081665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98993682861328, 40.73331832885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0077896118164, 40.74192810058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "10"}}, {"geometry": {"type": "Point", "coordinates": [-73.98426055908203, 40.725006103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98426055908203, 40.725006103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00025177001953, 40.721187591552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262786865234, 40.76729965209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814861", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95570373535156, 40.76826095581055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96686553955078, 40.80377197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97440338134766, 40.7510871887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98909759521484, 40.74174880981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814416", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87300109863281, 40.7740592956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99874114990234, 40.675071716308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00096130371094, 40.73155975341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99311065673828, 40.752159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95160675048828, 40.770015716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95160675048828, 40.770015716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97252655029297, 40.7938232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98501586914062, 40.75993347167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551940917969, 40.752601623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813906", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9676742553711, 40.75603485107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9214096069336, 40.766963958740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95820617675781, 40.7819709777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78026580810547, 40.645870208740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98597717285156, 40.731258392333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97444152832031, 40.736900329589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96397399902344, 40.776878356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98152160644531, 40.77348327636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95227813720703, 40.787147521972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96762084960938, 40.76618957519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98734283447266, 40.7330322265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96019744873047, 40.798160552978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814297", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95418548583984, 40.790157318115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8709716796875, 40.77378845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00282287597656, 40.73078155517578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9918212890625, 40.718441009521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96174621582031, 40.779624938964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97836303710938, 40.76300048828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77668762207031, 40.64537811279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9909439086914, 40.74211883544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99346160888672, 40.752559661865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00588989257812, 40.745479583740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98303985595703, 40.762901306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99717712402344, 40.76536178588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551177978516, 40.7630500793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97749328613281, 40.75822830200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.76028823852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99474334716797, 40.75010299682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98960876464844, 40.720428466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97416687011719, 40.75716018676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98934173583984, 40.758846282958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00125885009766, 40.720123291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99365234375, 40.75210952758789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.005126953125, 40.72056579589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86373901367188, 40.76987075805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9851303100586, 40.7481803894043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96121215820312, 40.76055145263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9935531616211, 40.732994079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9732437133789, 40.79288101196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94023895263672, 40.751060485839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9797592163086, 40.735801696777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97264862060547, 40.79365158081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814740", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99164581298828, 40.749717712402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95015716552734, 40.77986145019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814003", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94602966308594, 40.83271408081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86324310302734, 40.76993179321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815021", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9923095703125, 40.725257873535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815146", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96018981933594, 40.78189468383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86347198486328, 40.769779205322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.73445129394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814696", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01406860351562, 40.713531494140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98120880126953, 40.78120803833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.79233169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.79233169555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98692321777344, 40.720890045166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95970916748047, 40.7713737487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99134826660156, 40.760379791259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00706481933594, 40.72727584838867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98613739013672, 40.755882263183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96881866455078, 40.764400482177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814456", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9986572265625, 40.729713439941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96694946289062, 40.77238845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98692321777344, 40.761329650878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814865", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01151275634766, 40.707706451416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95635986328125, 40.76726531982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928207397461, 40.73702621459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98612976074219, 40.75897979736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98577117919922, 40.73128128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98220825195312, 40.74583053588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95575714111328, 40.78498077392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95632934570312, 40.784088134765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97071075439453, 40.798561096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97583770751953, 40.728553771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97081756591797, 40.758548736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99466705322266, 40.68970489501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97662353515625, 40.75108337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815073", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96511840820312, 40.79172134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98291015625, 40.761688232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814810", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98301696777344, 40.76943588256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01365661621094, 40.70766067504883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9726333618164, 40.75285339355469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.0060806274414, 40.71712875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95999908447266, 40.77342224121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814454", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95863342285156, 40.763999938964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9544677734375, 40.76403045654297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00456237792969, 40.72159957885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00819396972656, 40.73918151855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98589324951172, 40.74069595336914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814250", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00189208984375, 40.75590133666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814187", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97718048095703, 40.7517204284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99742126464844, 40.72127151489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95867919921875, 40.77838897705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9778060913086, 40.75096893310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98982238769531, 40.75197982788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99668884277344, 40.737548828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00556945800781, 40.73860168457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679901123047, 40.75225830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98795318603516, 40.76485061645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96627044677734, 40.761558532714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87295532226562, 40.774173736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96123504638672, 40.7702751159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96123504638672, 40.7702751159668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96031188964844, 40.766082763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99931335449219, 40.74000930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9767074584961, 40.79008483886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99427032470703, 40.77000045776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99040222167969, 40.756568908691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00657653808594, 40.7406005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747314453125, 40.77799606323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00764465332031, 40.70494079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00456237792969, 40.705501556396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99623107910156, 40.72016906738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98026275634766, 40.763389587402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9786605834961, 40.785770416259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92880249023438, 40.81220245361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97283935546875, 40.75265884399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99163818359375, 40.750274658203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97286224365234, 40.75883102416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99240112304688, 40.724361419677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97937774658203, 40.786865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814723", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99449920654297, 40.75904846191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814370", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98211669921875, 40.77605438232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98396301269531, 40.78376770019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814386", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9736328125, 40.75452423095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97687530517578, 40.749656677246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94635009765625, 40.79207992553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00096130371094, 40.73644256591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96356964111328, 40.77530288696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93708038330078, 40.598838806152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0064926147461, 40.73208999633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99153137207031, 40.73165512084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99517822265625, 40.75004959106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95938873291016, 40.767539978027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97535705566406, 40.7524528503418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97535705566406, 40.7524528503418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97943115234375, 40.74396896362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98900604248047, 40.736480712890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00189971923828, 40.7507209777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359130859375, 40.752132415771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814052", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9460220336914, 40.817142486572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814360", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98908233642578, 40.721458435058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99600219726562, 40.74375915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0075454711914, 40.71524429321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96570587158203, 40.768409729003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98371887207031, 40.77360916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98371887207031, 40.77360916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9858169555664, 40.74673843383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814433", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98217010498047, 40.745765686035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815034", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9750747680664, 40.762332916259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813840", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99469757080078, 40.75595474243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99935913085938, 40.754310607910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99935913085938, 40.754310607910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027038574219, 40.78361892700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.745304107666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96929931640625, 40.7641487121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00117492675781, 40.7391471862793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97505187988281, 40.751869201660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9600601196289, 40.769779205322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00580596923828, 40.736148834228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.730098724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97303009033203, 40.74428176879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814078", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.77492141723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.77492141723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94309997558594, 40.81119918823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95535278320312, 40.76873016357422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813858", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9700698852539, 40.75971984863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00486755371094, 40.740848541259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00486755371094, 40.740848541259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96968078613281, 40.76873779296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99346923828125, 40.72757339477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99469757080078, 40.75035858154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98590850830078, 40.73185348510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97077941894531, 40.76744079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814353", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98702239990234, 40.73942947387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9508056640625, 40.77090835571289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98461151123047, 40.74597930908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801254272461, 40.76451873779297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95160675048828, 40.78605651855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96793365478516, 40.76856231689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96455383300781, 40.79709243774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808074951172, 40.7630500793457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96714782714844, 40.76087951660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.7789192199707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.7789192199707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97676086425781, 40.750858306884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95020294189453, 40.77998733520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00100708007812, 40.72401809692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99959564208984, 40.744075775146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814576", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96671295166016, 40.79356002807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97245025634766, 40.75517654418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97799682617188, 40.76237106323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091125488281, 40.78440856933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95912170410156, 40.76325225830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416900634766, 40.73772048950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813999", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775619506836, 40.74943923950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78935241699219, 40.64707946777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99118041992188, 40.75554275512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99118041992188, 40.75554275512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.74684143066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814637", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97260284423828, 40.74654769897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99467468261719, 40.74032974243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95677185058594, 40.78102111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98613739013672, 40.74009323120117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99307250976562, 40.74314880371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00004577636719, 40.7303581237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97331237792969, 40.78507614135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97331237792969, 40.78507614135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205780029297, 40.725738525390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97283172607422, 40.74359893798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98916625976562, 40.748023986816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98886108398438, 40.74837875366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814196", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698974609375, 40.75437545776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97698974609375, 40.75437545776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.965576171875, 40.76676559448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.965576171875, 40.76676559448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9653549194336, 40.766544342041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96021270751953, 40.76192855834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98338317871094, 40.76591873168945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97891235351562, 40.753395080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97346496582031, 40.79255294799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96954345703125, 40.75774383544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98675537109375, 40.73398208618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98675537109375, 40.73398208618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97564697265625, 40.78678894042969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95281219482422, 40.78670883178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98523712158203, 40.74463653564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95973205566406, 40.77106475830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00586700439453, 40.735965728759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96601867675781, 40.758583068847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97300720214844, 40.74372100830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96285247802734, 40.76679992675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98760986328125, 40.725486755371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9923324584961, 40.74980545043945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01595306396484, 40.71112823486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814682006836, 40.7598876953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98125457763672, 40.7707633972168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99528503417969, 40.724937438964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99504089355469, 40.739715576171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0072021484375, 40.70745849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98792266845703, 40.75947952270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854736328125, 40.72378921508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97013092041016, 40.79711151123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96116638183594, 40.77159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98681640625, 40.761268615722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01380157470703, 40.70780944824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814583", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95195770263672, 40.77370071411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97940063476562, 40.755191802978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551177978516, 40.727169036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98790740966797, 40.71860122680664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814642", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97840881347656, 40.78581619262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96804809570312, 40.76277160644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98789978027344, 40.75466537475586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00779724121094, 40.711570739746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9969482421875, 40.72394943237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95547485351562, 40.77935791015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00363159179688, 40.74822235107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98282623291016, 40.77196502685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98894500732422, 40.758262634277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814048", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95780181884766, 40.77361297607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98970031738281, 40.723148345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96375274658203, 40.7613410949707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98139953613281, 40.749759674072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99028778076172, 40.751590728759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99681854248047, 40.72288513183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01306915283203, 40.71501922607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99362182617188, 40.72119903564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815144", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98693084716797, 40.73323059082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98867797851562, 40.774288177490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9538803100586, 40.77901840209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.75503158569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96649932861328, 40.63153839111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814119", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98555755615234, 40.72730255126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813917", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01617431640625, 40.71494674682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95831298828125, 40.800777435302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814412", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98206329345703, 40.73640060424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87273406982422, 40.774208068847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908020019531, 40.76142120361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96573638916016, 40.762725830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00679016113281, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00679016113281, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00679016113281, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00679016113281, 40.75130081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94776916503906, 40.78346252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97473907470703, 40.7615966796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98402404785156, 40.72935104370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98402404785156, 40.72935104370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97295379638672, 40.782470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97109985351562, 40.75090789794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86334228515625, 40.76939010620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97362518310547, 40.76053237915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0023193359375, 40.76036834716797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99474334716797, 40.75038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99107360839844, 40.73599624633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97382354736328, 40.779300689697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97509002685547, 40.741703033447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00531005859375, 40.722286224365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98812866210938, 40.75960922241211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814322", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01313781738281, 40.71669387817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0100326538086, 40.71942138671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9199447631836, 40.76631546020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98019409179688, 40.75498962402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99506378173828, 40.75516128540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0159683227539, 40.71519088745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94961547851562, 40.80221939086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99530792236328, 40.75693893432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86368560791016, 40.769752502441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.87300872802734, 40.774112701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814209", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98139953613281, 40.7535514831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00743103027344, 40.7410774230957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814521", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.76401901245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0079345703125, 40.72333526611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98509216308594, 40.71902084350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01580047607422, 40.70499038696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92827606201172, 40.74393844604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204040527344, 40.727943420410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689056396484, 40.764686584472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7767333984375, 40.6451301574707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00460052490234, 40.75204086303711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884033203125, 40.75873565673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98627471923828, 40.7618293762207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00052642822266, 40.73317337036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99864959716797, 40.739601135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98580169677734, 40.74335861206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815147", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98114776611328, 40.74203109741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95494079589844, 40.785884857177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98750305175781, 40.744686126708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96153259277344, 40.7741813659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98779296875, 40.72277069091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99820709228516, 40.72433090209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814256", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99752044677734, 40.74675750732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95787811279297, 40.77042770385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97087860107422, 40.758323669433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813916", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96709442138672, 40.762447357177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97417449951172, 40.79166030883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99418640136719, 40.75120544433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97999572753906, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227142333984, 40.74448013305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814960", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99691772460938, 40.7476921081543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00592803955078, 40.74018096923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00556182861328, 40.72196960449219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95014953613281, 40.780311584472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9861831665039, 40.74038314819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99889373779297, 40.74467468261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99917602539062, 40.7281608581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99610900878906, 40.724021911621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814327", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.7648811340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.7648811340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.7648811340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99532318115234, 40.71989822387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.74617004394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00499725341797, 40.737403869628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99161529541016, 40.72686767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814625", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98684692382812, 40.755489349365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9894027709961, 40.74720001220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814687", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96843719482422, 40.78633117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96843719482422, 40.78633117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236083984375, 40.771610260009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95545959472656, 40.78193664550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99088287353516, 40.75050735473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98329162597656, 40.75596618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814361", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99695587158203, 40.74738311767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94320678710938, 40.789405822753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00704956054688, 40.743675231933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9934310913086, 40.75233840942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814968", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95555877685547, 40.76839065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98973846435547, 40.73920440673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814930", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.73569869995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814498", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95352935791016, 40.779483795166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96279907226562, 40.76961135864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8635025024414, 40.768760681152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814494", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98385620117188, 40.744834899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98385620117188, 40.744834899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94841766357422, 40.78310775756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814202", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.760520935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96665954589844, 40.80438995361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814508", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95603942871094, 40.77866744995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95259094238281, 40.776954650878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97277069091797, 40.74928665161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99665069580078, 40.737281799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97903442382812, 40.755882263183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98892211914062, 40.74842071533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78123474121094, 40.64497756958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814394", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98313903808594, 40.74418258666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98313903808594, 40.74418258666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99105072021484, 40.739749908447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9521255493164, 40.77299880981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9742660522461, 40.78871154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.008544921875, 40.71434783935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814217", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.753700256347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98924255371094, 40.74854278564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98345184326172, 40.73170852661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.75468826293945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.74774932861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814812", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9527816772461, 40.7767448425293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320007324219, 40.7305793762207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.767059326171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99108123779297, 40.73978805541992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96929168701172, 40.7695198059082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98373413085938, 40.76555252075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814188", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97402954101562, 40.7898063659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96977233886719, 40.766239166259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98405456542969, 40.725379943847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00395202636719, 40.74291229248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814573", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.756019592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96538543701172, 40.790626525878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00776672363281, 40.71236038208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9549789428711, 40.76911926269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.008544921875, 40.71995162963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99260711669922, 40.75870895385742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9508285522461, 40.786033630371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96778106689453, 40.802886962890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925308227539, 40.768218994140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01273345947266, 40.702476501464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99787902832031, 40.761451721191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78209686279297, 40.64472961425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78209686279297, 40.64472961425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00236511230469, 40.71467590332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98346710205078, 40.743980407714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99128723144531, 40.750152587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99051666259766, 40.75119400024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97660064697266, 40.73356628417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9703598022461, 40.756465911865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98316192626953, 40.73870849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97991180419922, 40.73031234741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814356", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196075439453, 40.75090026855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99542236328125, 40.73064041137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98410034179688, 40.725467681884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814325", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99520111083984, 40.76030349731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98348236083984, 40.76615524291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9998779296875, 40.71199035644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00083923339844, 40.720619201660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96159362792969, 40.7743034362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98760223388672, 40.72138977050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814672", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813003540039, 40.769020080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78218078613281, 40.64463424682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815177", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86328887939453, 40.76980972290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99906158447266, 40.72507858276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97261810302734, 40.75642395019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97261810302734, 40.75642395019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.76454162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98577117919922, 40.72214889526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813785", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96295166015625, 40.7667121887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96295166015625, 40.7667121887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814854", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.993408203125, 40.752296447753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814668", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96790313720703, 40.80022048950195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815071", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86357116699219, 40.76966094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814158", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98094940185547, 40.75348663330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97250366210938, 40.76438903808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896026611328, 40.74369812011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96636199951172, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9985580444336, 40.72473907470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86355590820312, 40.76966857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00601196289062, 40.735111236572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95184326171875, 40.80915069580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98646545410156, 40.72226333618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.92472839355469, 40.691131591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814624", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00756072998047, 40.70509719848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97806549072266, 40.75249481201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00527954101562, 40.7287483215332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813838", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01091766357422, 40.71012496948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01091766357422, 40.71012496948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87299346923828, 40.774051666259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97946166992188, 40.766998291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97502899169922, 40.749996185302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98050689697266, 40.76557922363281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9917221069336, 40.77027893066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814697", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97122955322266, 40.79436111450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00709533691406, 40.71328353881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79694366455078, 40.64473342895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749984741211, 40.76229476928711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.762821197509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99632263183594, 40.73796081542969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78214263916016, 40.64466094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95957946777344, 40.779808044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9966812133789, 40.685306549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96092224121094, 40.769142150878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96669006347656, 40.69263458251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00560760498047, 40.74057388305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814041", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898910522461, 40.73346710205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97631072998047, 40.775718688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0000228881836, 40.730403900146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814545", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95372772216797, 40.77783966064453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99232482910156, 40.73080062866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99754333496094, 40.722572326660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97529602050781, 40.75669860839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814305", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01242065429688, 40.708717346191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99703216552734, 40.74209976196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96650695800781, 40.76460647583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815171", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00675201416016, 40.73301315307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9887466430664, 40.75905990600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99517822265625, 40.74495315551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00707244873047, 40.74085998535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00287628173828, 40.76020812988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814938", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78209686279297, 40.644474029541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814340", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78458404541016, 40.64860153198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97905731201172, 40.7852668762207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97905731201172, 40.7852668762207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99593353271484, 40.73295211791992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814015", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98225402832031, 40.75130844116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814065", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97382354736328, 40.779563903808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00920867919922, 40.71360778808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95577239990234, 40.767635345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95577239990234, 40.767635345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99452209472656, 40.765926361083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930419921875, 40.72269821166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930419921875, 40.72269821166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815189", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00370025634766, 40.7225227355957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97846984863281, 40.68434143066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98584747314453, 40.7409782409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397064208984, 40.762115478515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99291229248047, 40.74829864501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00838470458984, 40.73603820800781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96688842773438, 40.770042419433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98697662353516, 40.72959518432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95295715332031, 40.78601837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98250579833984, 40.76832962036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97783660888672, 40.729400634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98318481445312, 40.75630187988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97744750976562, 40.76634979248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99732208251953, 40.72175598144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814858", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99756622314453, 40.735939025878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9856185913086, 40.72322082519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99264526367188, 40.7684440612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99095916748047, 40.75101852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01119995117188, 40.728759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324798583984, 40.74470138549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9190673828125, 40.74342346191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814404", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96724700927734, 40.76046371459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99405670166016, 40.75165939331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90487670898438, 40.7418098449707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98985290527344, 40.735328674316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98056030273438, 40.76003646850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843933105469, 40.7598991394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98738861083984, 40.75033187866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01058959960938, 40.7092399597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97545623779297, 40.75796127319336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.787841796875, 40.64158248901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99224090576172, 40.735389709472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95913696289062, 40.677650451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00389862060547, 40.72593688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96528625488281, 40.759422302246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79254150390625, 40.643211364746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002838134766, 40.733158111572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00563049316406, 40.73875427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834777832031, 40.75233840942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98719787597656, 40.74972152709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.7626953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0042953491211, 40.74240493774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99150085449219, 40.75019836425781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98741149902344, 40.762779235839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9523696899414, 40.772926330566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9523696899414, 40.772926330566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823989868164, 40.771663665771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98794555664062, 40.73830032348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96501922607422, 40.76988220214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814390", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95692443847656, 40.76673126220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97051239013672, 40.764801025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942626953125, 40.75101852416992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99549102783203, 40.749324798583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.77897644042969, 40.64742660522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814523", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97855377197266, 40.765037536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814379", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95671844482422, 40.78382110595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00617980957031, 40.73533248901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814984", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94711303710938, 40.77598190307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97815704345703, 40.786346435546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814363", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893798828125, 40.69083786010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814201", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98126983642578, 40.7582893371582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814745", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98764038085938, 40.74158477783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87313842773438, 40.77423858642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94867706298828, 40.781898498535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00694274902344, 40.7296257019043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78287506103516, 40.64672088623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95923614501953, 40.77182388305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97026824951172, 40.79921340942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99041748046875, 40.71891784667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00093841552734, 40.742069244384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96673583984375, 40.7641487121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98374938964844, 40.74251174926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99211120605469, 40.725364685058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813903", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98707580566406, 40.77043151855469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95418548583984, 40.763946533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95418548583984, 40.763946533203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96082305908203, 40.765769958496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00309753417969, 40.749122619628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.744815826416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86363983154297, 40.76996994018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93537902832031, 40.79621124267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00031280517578, 40.71864318847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98143768310547, 40.750221252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814535", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95452880859375, 40.763771057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99162292480469, 40.76484298706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.93831634521484, 40.796382904052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.7891960144043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99410247802734, 40.75109100341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95278930664062, 40.772483825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.02098083496094, 40.71393585205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00888061523438, 40.703880310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00888061523438, 40.703880310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97200012207031, 40.76123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98595428466797, 40.7327880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86366271972656, 40.769771575927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205017089844, 40.74922561645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0000991821289, 40.73876190185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9765853881836, 40.775535583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98269653320312, 40.76485061645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00020599365234, 40.737789154052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96707916259766, 40.75693893432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9777603149414, 40.75809097290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9655990600586, 40.762691497802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9729995727539, 40.754920959472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814633", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9729995727539, 40.754920959472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814633", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814224243164, 40.771026611328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88568878173828, 40.77313232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99415588378906, 40.75117874145508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814540", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99024200439453, 40.72882080078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98738861083984, 40.744598388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99478149414062, 40.7364616394043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0042953491211, 40.74240493774414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99533081054688, 40.719966888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814814", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97273254394531, 40.78082275390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96444702148438, 40.760318756103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99190521240234, 40.750038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814247", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99056243896484, 40.761451721191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95782470703125, 40.76863098144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9837875366211, 40.76761245727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814216", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99152374267578, 40.75006866455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99152374267578, 40.75006866455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01085662841797, 40.70450973510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98453521728516, 40.76836395263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8783950805664, 40.7563591003418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78268432617188, 40.6446418762207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.762596130371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814155", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9610824584961, 40.7689208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95455932617188, 40.80904006958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813862", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914321899414, 40.75553512573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814422", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97410583496094, 40.764244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97410583496094, 40.764244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98271179199219, 40.751346588134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813844", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98082733154297, 40.747371673583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97068786621094, 40.78349685668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99737548828125, 40.76231384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99470520019531, 40.76590347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97138977050781, 40.792598724365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814606", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255920410156, 40.73957061767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98255920410156, 40.73957061767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00709533691406, 40.708030700683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00125122070312, 40.715579986572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814377", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96760559082031, 40.75611877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99774932861328, 40.737831115722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845199584961, 40.764320373535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0081787109375, 40.748600006103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9655990600586, 40.771514892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78396606445312, 40.64628601074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9988784790039, 40.73971176147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95574951171875, 40.78496170043945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99270629882812, 40.74297332763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97459411621094, 40.75704574584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98119354248047, 40.74149703979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9582290649414, 40.764427185058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96475982666016, 40.77267837524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9594497680664, 40.771514892578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814296", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98143005371094, 40.761085510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95034790039062, 40.782535552978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9868392944336, 40.777339935302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98209381103516, 40.768001556396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814514", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814224243164, 40.747169494628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97787475585938, 40.75324249267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98758697509766, 40.755226135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815094", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97787475585938, 40.75324249267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9624252319336, 40.7790412902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815129", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.77421188354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98834228515625, 40.73454666137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98495483398438, 40.75383377075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98836517333984, 40.749027252197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00472259521484, 40.741668701171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814572", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9563217163086, 40.77838134765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814266", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99220275878906, 40.73540496826172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9876937866211, 40.732704162597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87084197998047, 40.773841857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97974395751953, 40.746578216552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95606994628906, 40.76405334472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813964", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95075225830078, 40.783103942871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98419189453125, 40.743125915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814551", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.76279830932617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78140258789062, 40.644927978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99956512451172, 40.7341194152832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99913024902344, 40.744239807128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9756088256836, 40.74911880493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01545715332031, 40.71083068847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814353", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98495483398438, 40.76835250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8729476928711, 40.77404022216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814039", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96530151367188, 40.77228927612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814102", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88529968261719, 40.77296829223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00447845458984, 40.74216842651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.775062561035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98939514160156, 40.74738693237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00328063964844, 40.74898910522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9825210571289, 40.74525451660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813960", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97955322265625, 40.74637985229492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99755859375, 40.7658805847168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814631", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78195190429688, 40.64458084106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95001220703125, 40.79582977294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814723", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99852752685547, 40.733970642089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9694595336914, 40.75791931152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.958984375, 40.78068161010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87327575683594, 40.77409362792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97356414794922, 40.764774322509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9477310180664, 40.770843505859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236846923828, 40.7484245300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78175354003906, 40.644691467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722961425781, 40.7684211730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813866", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0154037475586, 40.70986557006836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97604370117188, 40.78113555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97604370117188, 40.78113555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99077606201172, 40.755802154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9671630859375, 40.79087829589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01644134521484, 40.71489334106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98404693603516, 40.75012969970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99320983886719, 40.7528076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95655822753906, 40.763160705566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.76430892944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95008850097656, 40.78712844848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8637466430664, 40.769683837890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123168945312, 40.77908706665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99279022216797, 40.75175094604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97402954101562, 40.74776077270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98418426513672, 40.72466278076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814677", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00758361816406, 40.708030700683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99046325683594, 40.737098693847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.72197723388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9638671875, 40.7570686340332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813789", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78357696533203, 40.648651123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9870376586914, 40.720951080322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.97294616699219, 40.79329299926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00214385986328, 40.73438262939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98999786376953, 40.74152755737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98951721191406, 40.73167037963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96756744384766, 40.77180862426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95985412597656, 40.762638092041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95868682861328, 40.783447265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00248718261719, 40.73427963256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93228912353516, 40.76457595825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9678726196289, 40.765869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94966888427734, 40.78058624267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99028778076172, 40.76836013793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97803497314453, 40.757835388183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99272155761719, 40.73735809326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94584655761719, 40.77765655517578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814972", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99398040771484, 40.761592864990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814555", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99860382080078, 40.74517059326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814997", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98107147216797, 40.75598907470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814588", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96472930908203, 40.755760192871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95863342285156, 40.81005859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00064849853516, 40.72064971923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0179214477539, 40.705806732177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97000885009766, 40.789634704589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085998535156, 40.745479583740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98004150390625, 40.783687591552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99000549316406, 40.733219146728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9979476928711, 40.750770568847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98783111572266, 40.72870635986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722076416016, 40.77457809448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797058105469, 40.73575973510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052719116211, 40.7418212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95696258544922, 40.78066635131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815024", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99201202392578, 40.73786163330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00244903564453, 40.750125885009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.77732849121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99369812011719, 40.762142181396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99449920654297, 40.75156021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00348663330078, 40.73207092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00348663330078, 40.73207092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814131", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98023223876953, 40.78329849243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815164", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98614501953125, 40.740966796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95565795898438, 40.76860809326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96321868896484, 40.774417877197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9701919555664, 40.76188278198242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97367095947266, 40.75202560424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124145507812, 40.750240325927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9571533203125, 40.77081298828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9343032836914, 40.74475860595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881362915039, 40.74901580810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99817657470703, 40.74043655395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99506378173828, 40.736690521240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799133300781, 40.72711181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0039291381836, 40.73841857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661804199219, 40.74298095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814745", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027801513672, 40.75164031982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814214", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97496795654297, 40.751949310302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99118041992188, 40.75025939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96665954589844, 40.75716018676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00718688964844, 40.72768783569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01637268066406, 40.71028518676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01384735107422, 40.70939254760742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814539", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00054168701172, 40.730438232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99501037597656, 40.75523376464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98859405517578, 40.76905059814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833984375, 40.765838623046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97289276123047, 40.785369873046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814947", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98815155029297, 40.73745346069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98060607910156, 40.73417282104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98395538330078, 40.75542068481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97733306884766, 40.77946853637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98479461669922, 40.7484016418457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00525665283203, 40.737525939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97440338134766, 40.7872314453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94649505615234, 40.7918586730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679138183594, 40.78857421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94960021972656, 40.80221176147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9716567993164, 40.75688171386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9720230102539, 40.74599838256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9700927734375, 40.762176513671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814413", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99549102783203, 40.749210357666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92700958251953, 40.76478958129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92700958251953, 40.76478958129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814879", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.962158203125, 40.76765441894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95506286621094, 40.780086517333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814445", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97914123535156, 40.75448989868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9467544555664, 40.77220153808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97625732421875, 40.76130294799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.92620849609375, 40.772029876708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814873", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98314666748047, 40.761390686035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00564575195312, 40.75157165527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96883392333984, 40.798458099365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978759765625, 40.753299713134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00313568115234, 40.74885559082031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7890396118164, 40.641510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7890396118164, 40.641510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96551513671875, 40.75518798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97843933105469, 40.74497985839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97308349609375, 40.76408386230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94596862792969, 40.777320861816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814401", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00051879882812, 40.73773193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96234893798828, 40.77901840209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95453643798828, 40.76972198486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97802734375, 40.75542068481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98284149169922, 40.77197265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.990478515625, 40.76167678833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98561096191406, 40.74728775024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97309875488281, 40.76422882080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814886", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95539093017578, 40.77939987182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7893295288086, 40.647220611572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9706802368164, 40.78847885131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99767303466797, 40.74163818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99767303466797, 40.74163818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95368957519531, 40.778568267822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95368957519531, 40.778568267822266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9927749633789, 40.723514556884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97077941894531, 40.7591667175293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9891357421875, 40.758548736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814919", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.988525390625, 40.74329376220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.97148895263672, 40.78179168701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814531", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96199035644531, 40.77069091796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97001647949219, 40.75676727294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9714126586914, 40.757442474365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99813079833984, 40.72267150878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815084", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95841217041016, 40.781429290771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99148559570312, 40.72724533081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00785827636719, 40.742088317871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814478", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78097534179688, 40.645084381103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98355865478516, 40.77952575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01600646972656, 40.71084976196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98259735107422, 40.74544143676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99273681640625, 40.748538970947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814324", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94010925292969, 40.75105667114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815002", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.73710250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99266052246094, 40.73710250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9884262084961, 40.76383972167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95756530761719, 40.78540802001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95756530761719, 40.78540802001953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97730255126953, 40.76451110839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9555435180664, 40.78267288208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98279571533203, 40.782222747802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814857", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00101470947266, 40.75544357299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97853088378906, 40.75640106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99734497070312, 40.75906753540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99635314941406, 40.75099563598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97552490234375, 40.76076889038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814544", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99321746826172, 40.690673828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78958892822266, 40.64699172973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813820", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98900604248047, 40.72212600708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9761962890625, 40.755680084228516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00251770019531, 40.73961639404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95616149902344, 40.77190017700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96943664550781, 40.769100189208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814457", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01380920410156, 40.71345138549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97604370117188, 40.74501037597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815058", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942626953125, 40.74093246459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289916992188, 40.760345458984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98078918457031, 40.76573181152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95987701416016, 40.77358627319336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0058364868164, 40.70610046386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00543975830078, 40.717567443847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97383117675781, 40.74391555786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124908447266, 40.750003814697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96295928955078, 40.768089294433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96772766113281, 40.78765106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.78461837768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.733421325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99382781982422, 40.74073028564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98123931884766, 40.76076889038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99626159667969, 40.73796463012695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324798583984, 40.74298858642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.991455078125, 40.770286560058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95569610595703, 40.77944564819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847412109375, 40.73786163330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813461303711, 40.77939987182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906997680664, 40.75572204589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00122833251953, 40.757041931152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98985290527344, 40.734100341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98219299316406, 40.754642486572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95610046386719, 40.76369857788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00292205810547, 40.73357009887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00142669677734, 40.73111343383789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814245", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.67900848388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98834991455078, 40.74317169189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814766", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95317077636719, 40.78842544555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98027801513672, 40.74563980102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0008316040039, 40.73180389404297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8712158203125, 40.77396774291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9404296875, 40.78938293457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814840", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95280456542969, 40.78660583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444030761719, 40.70722579956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775619506836, 40.76396179199219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98455810546875, 40.742591857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98092651367188, 40.784339904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00627899169922, 40.733421325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815048", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86390686035156, 40.76824951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98845672607422, 40.72313690185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813950", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96683502197266, 40.75346374511719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.755287170410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01313018798828, 40.707130432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814323", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7818603515625, 40.644710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815012", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98405456542969, 40.759910583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9786376953125, 40.73686981201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814102", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9786376953125, 40.73686981201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814102", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95404052734375, 40.78536605834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98652648925781, 40.740108489990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98652648925781, 40.740108489990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0035400390625, 40.756309509277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98444366455078, 40.77476119995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99451446533203, 40.74532699584961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97746276855469, 40.738468170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98003387451172, 40.76047134399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99630737304688, 40.726749420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94851684570312, 40.782352447509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98066711425781, 40.76011657714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98725128173828, 40.73283767700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98683166503906, 40.72560501098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99232482910156, 40.72392654418945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797058105469, 40.73644256591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.74988555908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98509216308594, 40.75360870361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78401184082031, 40.648651123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78401184082031, 40.648651123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98428344726562, 40.758419036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813752", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98380279541016, 40.75556182861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814739", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97750854492188, 40.75236511230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616027832031, 40.740447998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814399", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98210906982422, 40.74599838256836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9648666381836, 40.76424026489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0054931640625, 40.709022521972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96070861816406, 40.812679290771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95699310302734, 40.78628158569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98812866210938, 40.71895217895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96841430664062, 40.75485610961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.983642578125, 40.76082992553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99869537353516, 40.74006652832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99667358398438, 40.72348403930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97997283935547, 40.77555465698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97789764404297, 40.75238037109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.009033203125, 40.713340759277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79033660888672, 40.64681625366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94772338867188, 40.783512115478516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9871826171875, 40.770809173583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124145507812, 40.73917007446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99771118164062, 40.76390075683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99610137939453, 40.73282241821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00931549072266, 40.713218688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99049377441406, 40.75104522705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97920227050781, 40.75104904174805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94020080566406, 40.8354606628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814040", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97566223144531, 40.76285171508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98603820800781, 40.752079010009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96836853027344, 40.76484298706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96836853027344, 40.76484298706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9897232055664, 40.75209045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9708480834961, 40.763450622558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9708480834961, 40.763450622558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223114013672, 40.778587341308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9705581665039, 40.76512908935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98384857177734, 40.75934982299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814335", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98843383789062, 40.7569465637207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814244", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00360870361328, 40.707603454589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96271514892578, 40.770816802978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97846221923828, 40.72462463378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814953", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97528076171875, 40.75746154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97528076171875, 40.75746154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793701171875, 40.75435256958008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.974609375, 40.751060485839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97211456298828, 40.794376373291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78933715820312, 40.64253234863281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97217559814453, 40.75602722167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87093353271484, 40.77371597290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0091552734375, 40.70425033569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551940917969, 40.759559631347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98693084716797, 40.74492263793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97543334960938, 40.792579650878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00139617919922, 40.730892181396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96250915527344, 40.770626068115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9819107055664, 40.77298355102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815094", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420928955078, 40.7615852355957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00723266601562, 40.70529556274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98744201660156, 40.724830627441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98515319824219, 40.728370666503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98515319824219, 40.728370666503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00424194335938, 40.747840881347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99431610107422, 40.75146484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815002", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9834976196289, 40.76106262207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98385620117188, 40.73758316040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0127182006836, 40.70228576660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9576416015625, 40.773685455322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815131", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01529693603516, 40.71140670776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814888", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95587921142578, 40.80375289916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065185546875, 40.74222946166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814581", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95366668701172, 40.78524398803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99581146240234, 40.76448440551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94538116455078, 40.751556396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98989868164062, 40.7198486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97657012939453, 40.73994827270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97872161865234, 40.76213836669922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99799346923828, 40.735740661621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814485", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96183776855469, 40.795555114746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99207305908203, 40.74314880371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00157928466797, 40.735260009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98097229003906, 40.729591369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98294830322266, 40.738956451416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00533294677734, 40.746009826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97844696044922, 40.74086380004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9961166381836, 40.72029495239258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98696899414062, 40.725341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813996", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96647644042969, 40.757747650146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99401092529297, 40.76182174682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99557495117188, 40.74406433105469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98421478271484, 40.74060821533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99783325195312, 40.75647735595703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815065", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96414184570312, 40.76401901245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99864959716797, 40.72285842895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417114257812, 40.75111770629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814792", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96414184570312, 40.76401901245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98562622070312, 40.727088928222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99364471435547, 40.749900817871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9681167602539, 40.80052185058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95632934570312, 40.77827835083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98522186279297, 40.723873138427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01000213623047, 40.73320388793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95314025878906, 40.782798767089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87294006347656, 40.77413558959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99423217773438, 40.75093078613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87299346923828, 40.774131774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96139526367188, 40.79637145996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98180389404297, 40.77431106567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00581359863281, 40.73592758178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00669860839844, 40.74412536621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814768", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9893569946289, 40.74052047729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98499298095703, 40.728031158447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813942", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00833129882812, 40.73720932006836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00025939941406, 40.73781967163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98294830322266, 40.72111892700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01591491699219, 40.71168518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0100326538086, 40.72090530395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00975799560547, 40.720924377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815049", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98201751708984, 40.755699157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815024", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99302673339844, 40.71955108642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78246307373047, 40.6445198059082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9552001953125, 40.78882598876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813964", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00466918945312, 40.7107048034668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.748138427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01461029052734, 40.70463943481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.774200439453125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814696", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97161865234375, 40.75783157348633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97467803955078, 40.7420654296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.78334045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97539520263672, 40.760231018066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875, 40.79106140136719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97786712646484, 40.74599075317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98057556152344, 40.74827194213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98163604736328, 40.732662200927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78482818603516, 40.6503791809082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814552", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97051239013672, 40.761688232421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98155212402344, 40.74102783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.01683807373047, 40.704734802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98577880859375, 40.757389068603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249053955078, 40.76180648803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96233367919922, 40.779056549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638916015625, 40.73358917236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95919799804688, 40.77466583251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9966812133789, 40.742431640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00117492675781, 40.73168182373047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638916015625, 40.73358917236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.91851043701172, 40.743343353271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813913", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99276733398438, 40.75791931152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97807312011719, 40.734161376953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814104", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96945190429688, 40.78500747680664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97767639160156, 40.75680923461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97103118896484, 40.761165618896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814034", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96968078613281, 40.76300811767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98331451416016, 40.755611419677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9473648071289, 40.77941131591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98841094970703, 40.774253845214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95540618896484, 40.77956771850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814533", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96922302246094, 40.79076385498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98760223388672, 40.7562370300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96922302246094, 40.79076385498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97392272949219, 40.76416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813995", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97064208984375, 40.76750183105469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98053741455078, 40.7535514831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99939727783203, 40.7393798828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00846862792969, 40.72096252441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814994", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00003051757812, 40.738651275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98645782470703, 40.75669479370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00003051757812, 40.738651275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814602", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96542358398438, 40.77472686767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99219512939453, 40.75456619262695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98096466064453, 40.76320266723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99083709716797, 40.751163482666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98982238769531, 40.73434066772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814464", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98352813720703, 40.7623291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9742202758789, 40.731285095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97830200195312, 40.752323150634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814493", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95857238769531, 40.760189056396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0049819946289, 40.722904205322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814278", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00332641601562, 40.734764099121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0082778930664, 40.74884033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0082778930664, 40.74884033203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97371673583984, 40.75156021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814661", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98141479492188, 40.7587776184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99742889404297, 40.716678619384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814016", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98141479492188, 40.7587776184082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9635009765625, 40.77455139160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00566101074219, 40.71683883666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814153", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9770736694336, 40.75557327270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98235321044922, 40.77370834350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00992584228516, 40.71009063720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.967041015625, 40.769168853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99301147460938, 40.75194549560547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813832", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99539184570312, 40.74946212768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99555969238281, 40.726539611816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091888427734, 40.753448486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814614", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9878921508789, 40.764671325683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813780", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00508117675781, 40.751583099365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00711059570312, 40.743717193603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814524", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99971771240234, 40.73331069946289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01551055908203, 40.71552658081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97858428955078, 40.78561782836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97962188720703, 40.771392822265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814106", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87071228027344, 40.7738151550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97858428955078, 40.78561782836914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87071228027344, 40.7738151550293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97673034667969, 40.743770599365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87095642089844, 40.77376174926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97403717041016, 40.75228500366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97817993164062, 40.74496841430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906005859375, 40.75606155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78963470458984, 40.643577575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96399688720703, 40.77125930786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95500946044922, 40.77429962158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97782897949219, 40.749755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98155212402344, 40.76158142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01704406738281, 40.70563507080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98992919921875, 40.75636672973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99119567871094, 40.735958099365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896789550781, 40.73400115966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896789550781, 40.73400115966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.84524536132812, 40.72026824951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.84524536132812, 40.72026824951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00614166259766, 40.705928802490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814211", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845962524414, 40.74602127075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9737548828125, 40.7514533996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98686981201172, 40.74123764038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.758750915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97928619384766, 40.781890869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00397491455078, 40.713253021240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97836303710938, 40.752628326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814827", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97632598876953, 40.76399230957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.7615966796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814885", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97649383544922, 40.766117095947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.8730239868164, 40.774173736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814352", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8633804321289, 40.770015716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95664978027344, 40.784156799316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814678", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86268615722656, 40.76894760131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98314666748047, 40.74556350708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99351501464844, 40.727237701416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97695922851562, 40.792625427246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814456", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96046447753906, 40.77618408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98965454101562, 40.757198333740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815024", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98938751220703, 40.726959228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814901", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98370361328125, 40.76032638549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814184", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9626235961914, 40.79423141479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814591", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231842041016, 40.770511627197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00344848632812, 40.728885650634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814232", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850799560547, 40.78744888305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97638702392578, 40.75927734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814758", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98002624511719, 40.74569320678711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00457000732422, 40.70773696899414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98844146728516, 40.75925827026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814443", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97584533691406, 40.75232696533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814822", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.89381408691406, 40.774192810058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.88127899169922, 40.74193572998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814716", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99140930175781, 40.75000762939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194122314453, 40.74332046508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99022674560547, 40.73472213745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98088836669922, 40.75925064086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886703491211, 40.74098587036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00344848632812, 40.73875045776367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95108795166016, 40.770652770996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01004028320312, 40.72064208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99154663085938, 40.74960708618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939849853516, 40.79766845703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572967529297, 40.745460510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95524597167969, 40.782798767089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98274230957031, 40.75676727294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814089", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99407958984375, 40.722721099853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98240661621094, 40.776710510253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99201202392578, 40.753841400146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99260711669922, 40.72850036621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9718246459961, 40.75957107543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99703979492188, 40.737518310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99905395507812, 40.744346618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.82781219482422, 40.743408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137878417969, 40.6961784362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97508239746094, 40.74176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95097351074219, 40.770938873291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98802947998047, 40.77925491333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99002838134766, 40.757232666015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814197", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420166015625, 40.74608612060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95097351074219, 40.770938873291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99427795410156, 40.740821838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99331665039062, 40.73643112182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97753143310547, 40.7495002746582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262786865234, 40.77130889892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262786865234, 40.77130889892578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96994018554688, 40.762535095214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98397827148438, 40.7579231262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95429992675781, 40.78437042236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9334945678711, 40.795257568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95279693603516, 40.776329040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814304", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98680114746094, 40.7476806640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97799682617188, 40.75230407714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96231079101562, 40.75546646118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95474243164062, 40.77783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815039", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97284698486328, 40.785560607910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98719024658203, 40.744781494140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9765625, 40.75162887573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814002", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9571762084961, 40.76631546020508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00826263427734, 40.73747634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97440338134766, 40.760719299316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98361206054688, 40.726009368896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98314666748047, 40.747352600097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97075653076172, 40.794090270996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814547", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98760986328125, 40.72172927856445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79058837890625, 40.646629333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99154663085938, 40.75999450683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98676300048828, 40.736663818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97381591796875, 40.75209045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.7504997253418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9703598022461, 40.79387283325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814632", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99754333496094, 40.721031188964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00724792480469, 40.72829055786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814167", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98162078857422, 40.749637603759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01155853271484, 40.702701568603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98562622070312, 40.778411865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814283", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96763610839844, 40.768707275390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97666931152344, 40.76593017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98601531982422, 40.74535369873047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.760459899902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.976318359375, 40.76401138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813776", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97920227050781, 40.785118103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00982666015625, 40.720916748046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9970932006836, 40.73263168334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97679138183594, 40.78025817871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95057678222656, 40.77970886230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814474", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97675323486328, 40.78602981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.004150390625, 40.752540588378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00373840332031, 40.73849105834961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99286651611328, 40.75282669067383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98777770996094, 40.74797821044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98632049560547, 40.734737396240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814533", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97664642333984, 40.76510238647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98632049560547, 40.734737396240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814533", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9645767211914, 40.76724624633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814437", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0067138671875, 40.73059844970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98285675048828, 40.755619049072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97411346435547, 40.77890396118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814229", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.7884750366211, 40.64186096191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79007720947266, 40.64693069458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814411", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99859619140625, 40.72618865966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87117004394531, 40.77389144897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98542785644531, 40.76836013793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98619842529297, 40.76182174682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97486877441406, 40.76114273071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98987579345703, 40.756778717041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0070571899414, 40.70513153076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98709106445312, 40.7293586730957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00225067138672, 40.7342643737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9782943725586, 40.75252151489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99608612060547, 40.72351837158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.77764892578125, 40.64670181274414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98576354980469, 40.7587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815063", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9443588256836, 40.787940979003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814458", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00325012207031, 40.72693634033203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9970932006836, 40.73701858520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98454284667969, 40.76171112060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9970932006836, 40.73701858520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99475860595703, 40.74007034301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99407958984375, 40.740291595458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98365020751953, 40.76401138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9920883178711, 40.74882888793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814311", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86274719238281, 40.769073486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813974", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444793701172, 40.74863815307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00320434570312, 40.72775650024414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815125", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99742126464844, 40.66093063354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99540710449219, 40.764522552490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.72998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814230", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420166015625, 40.75114059448242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814569", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78958129882812, 40.6435432434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99103546142578, 40.750587463378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99694061279297, 40.72003173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813856", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00376892089844, 40.73845672607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572967529297, 40.74528884887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97700500488281, 40.751041412353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95751953125, 40.76578140258789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00667572021484, 40.73563766479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9988021850586, 40.73465347290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814136", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00667572021484, 40.73563766479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9831771850586, 40.766868591308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815159", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96804809570312, 40.75558090209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97756958007812, 40.7423095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94761657714844, 40.79029083251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96672821044922, 40.75733947753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616790771484, 40.75307083129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99166107177734, 40.74919509887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814567", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98108673095703, 40.73733139038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813763", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98138427734375, 40.720848083496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97772979736328, 40.749176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98454284667969, 40.77960968017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814354", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99724578857422, 40.71937561035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814088", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98693084716797, 40.739479064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00505065917969, 40.7418212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96576690673828, 40.76543045043945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99124145507812, 40.75511169433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97581481933594, 40.75950622558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99649047851562, 40.73773956298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.77407455444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01052856445312, 40.711517333984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813977", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00801086425781, 40.74525833129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97718048095703, 40.77479553222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98237609863281, 40.76950454711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97905731201172, 40.74458694458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9755630493164, 40.79233932495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814450", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00618743896484, 40.72275924682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00618743896484, 40.72275924682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9888916015625, 40.736793518066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98417663574219, 40.72080612182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98417663574219, 40.72080612182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97171020507812, 40.78213882446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95104217529297, 40.78281021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98766326904297, 40.72189712524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00273132324219, 40.73945236206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814205", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98387145996094, 40.72539138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98387145996094, 40.72539138793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86357879638672, 40.76994323730469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814152", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98664093017578, 40.722347259521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233032226562, 40.765869140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814180", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.75967025756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814732", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95636749267578, 40.77131271362305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99885559082031, 40.73973083496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814502", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99545288085938, 40.73989486694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722839355469, 40.74156951904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9763412475586, 40.74430847167969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815121", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98458862304688, 40.759761810302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95282745361328, 40.77824783325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95349884033203, 40.775638580322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00868225097656, 40.72584915161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9865951538086, 40.739906311035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813882", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793472290039, 40.73581314086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814223", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96453094482422, 40.760414123535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99310302734375, 40.742610931396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99310302734375, 40.742610931396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906997680664, 40.7420768737793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97061157226562, 40.79413604736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814313", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86373901367188, 40.769859313964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814752", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00122833251953, 40.73133850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99578857421875, 40.76435852050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.85894775390625, 40.76107406616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.85894775390625, 40.76107406616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814663", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00533294677734, 40.7397575378418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9731216430664, 40.75861358642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9573974609375, 40.722293853759766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99700164794922, 40.72539520263672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97505187988281, 40.75836181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97505187988281, 40.75836181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95407104492188, 40.78818130493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815080", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95242309570312, 40.77281188964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96080780029297, 40.76953887939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95292663574219, 40.77614974975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910888671875, 40.7277946472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99382019042969, 40.73550033569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00993347167969, 40.720359802246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814895", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95560455322266, 40.77933883666992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814970", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8636703491211, 40.769874572753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01094818115234, 40.71949768066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01094818115234, 40.71949768066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99102783203125, 40.750816345214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95709228515625, 40.770484924316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99109649658203, 40.74447250366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9450912475586, 40.80247497558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814772", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00729370117188, 40.7099494934082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814780", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9662094116211, 40.758419036865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96498107910156, 40.75516891479492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814406", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0044937133789, 40.70541763305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.706993103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98200988769531, 40.77246856689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814448", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00354766845703, 40.74347686767578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95227813720703, 40.772621154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94760131835938, 40.779300689697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814644", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98304748535156, 40.734954833984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98356628417969, 40.760555267333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94660186767578, 40.785091400146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98677825927734, 40.77165985107422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99114990234375, 40.73505783081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9769515991211, 40.7652702331543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98511505126953, 40.75581741333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814658", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9571762084961, 40.768310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814533", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98910522460938, 40.744384765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98817443847656, 40.7433967590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249053955078, 40.76272964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.7717399597168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9928970336914, 40.73672866821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00202178955078, 40.7298698425293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813761", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.74993896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.74993896484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814708", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324798583984, 40.73524856567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00518035888672, 40.706886291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814750", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97606658935547, 40.78876876831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96075439453125, 40.77253341674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226928710938, 40.7559700012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99098205566406, 40.75151062011719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95326232910156, 40.767578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00177001953125, 40.7459831237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98480224609375, 40.76831817626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00721740722656, 40.743831634521484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96916961669922, 40.75739288330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025863647461, 40.739559173583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9693603515625, 40.760520935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97919464111328, 40.75547790527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98783111572266, 40.72108840942383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814762", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98270416259766, 40.73927688598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98070526123047, 40.744728088378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.94522857666016, 40.77437210083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814222", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99056243896484, 40.760833740234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97821044921875, 40.772945404052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98546600341797, 40.76182174682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815091", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96890258789062, 40.763938903808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814777", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98428344726562, 40.754398345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98833465576172, 40.7236442565918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9759521484375, 40.76536560058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9662857055664, 40.76494598388672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813911", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0040283203125, 40.71338653564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96686553955078, 40.772552490234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813795", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99642944335938, 40.73799514770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96234130859375, 40.756385803222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98843383789062, 40.764183044433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01522827148438, 40.709869384765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96752166748047, 40.765411376953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97198486328125, 40.75356674194336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97288513183594, 40.740333557128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814601", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78176879882812, 40.644779205322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814649", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96305847167969, 40.79906463623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814262", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98421478271484, 40.73213577270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94992065429688, 40.77214050292969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9745864868164, 40.742218017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233032226562, 40.77294921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95392608642578, 40.770240783691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.75033187866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99504089355469, 40.755210876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96527099609375, 40.75508117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813955", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98847961425781, 40.74859619140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813812", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98764038085938, 40.728660583496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0007553100586, 40.74226760864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00177001953125, 40.73945236206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98312377929688, 40.76176071166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99475860595703, 40.731449127197266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98690795898438, 40.72966003417969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78189849853516, 40.644718170166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78971099853516, 40.6470832824707]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814632", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00495147705078, 40.723506927490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96662902832031, 40.80448913574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96800994873047, 40.80091094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98865509033203, 40.74863052368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813766", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.74321365356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0083999633789, 40.72153091430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97791290283203, 40.759971618652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97736358642578, 40.75871658325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813775", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9700927734375, 40.75628662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97361755371094, 40.75278854370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97624206542969, 40.744468688964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99066925048828, 40.714561462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813849", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99168395996094, 40.74148941040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94740295410156, 40.81855010986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99179077148438, 40.75463104248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97293853759766, 40.75520324707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99359130859375, 40.74979019165039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0064468383789, 40.73746109008789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98110961914062, 40.78068161010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9697265625, 40.797359466552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97856140136719, 40.7566032409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9954605102539, 40.72486877441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95059967041016, 40.77909851074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98167419433594, 40.75880432128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97360229492188, 40.76270294189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97982788085938, 40.74332046508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95288848876953, 40.768226623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97401428222656, 40.74753189086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97592163085938, 40.77638626098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98442077636719, 40.74271774291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97808074951172, 40.745849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814510", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9817123413086, 40.76205825805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98855590820312, 40.73707962036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9905014038086, 40.74079132080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94816589355469, 40.80916213989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99481964111328, 40.76057052612305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814231", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9789810180664, 40.73112106323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814592", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99158477783203, 40.726802825927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96476745605469, 40.76415252685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00300598144531, 40.74433517456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97772216796875, 40.778831481933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00206756591797, 40.71531677246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97540283203125, 40.752159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97540283203125, 40.752159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813945", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.72216033935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814084", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00726318359375, 40.71171188354492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814653", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95390319824219, 40.80638885498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97427368164062, 40.7523193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9594955444336, 40.779396057128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98770141601562, 40.72135543823242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814621", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99993896484375, 40.743499755859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815151", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833755493164, 40.738555908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97725677490234, 40.75873947143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87301635742188, 40.77411651611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98173522949219, 40.76331329345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814682006836, 40.778621673583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9848403930664, 40.74277877807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99764251708984, 40.72098922729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97223663330078, 40.7553596496582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97898864746094, 40.736385345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96868896484375, 40.76737976074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814685", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99764251708984, 40.72098922729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78942108154297, 40.64262771606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97499084472656, 40.75550079345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95610809326172, 40.776119232177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638153076172, 40.74583053588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813950", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00015258789062, 40.73284149169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813958", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98638153076172, 40.74583053588867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813950", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00492095947266, 40.74068069458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91471099853516, 40.775726318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98480987548828, 40.76041030883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99557495117188, 40.72164535522461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00691223144531, 40.7039680480957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99640655517578, 40.76335906982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97752380371094, 40.7552490234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9687271118164, 40.76416015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00695037841797, 40.71609115600586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.972900390625, 40.744686126708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99214172363281, 40.753509521484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940414428711, 40.75131607055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940414428711, 40.75131607055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9660873413086, 40.754058837890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99396514892578, 40.765621185302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99131774902344, 40.76520919799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99480438232422, 40.72789001464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99222564697266, 40.754066467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98421478271484, 40.737388610839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98330688476562, 40.747535705566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98421478271484, 40.737388610839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95433807373047, 40.77891159057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9532699584961, 40.775726318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814198", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883804321289, 40.7592887878418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815068", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97049713134766, 40.75944900512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814340", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.982666015625, 40.75720977783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99341583251953, 40.76774215698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98648834228516, 40.777130126953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814987", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.75465774536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815122", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98265838623047, 40.77333450317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00274658203125, 40.73430633544922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99138641357422, 40.74982833862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95438385009766, 40.76619338989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99302673339844, 40.727783203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0902328491211, 40.64244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99491119384766, 40.75012969970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0902328491211, 40.64244079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815179", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9845962524414, 40.74321365356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98381042480469, 40.730960845947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814690", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99468231201172, 40.7258415222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814284", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00467681884766, 40.74687957763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78849792480469, 40.64141082763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98096466064453, 40.76912307739258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96866607666016, 40.76176834106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529815673828, 40.73593521118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854736328125, 40.744293212890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98224639892578, 40.76253128051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99219512939453, 40.75925827026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815180", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98687744140625, 40.733341217041016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97831726074219, 40.75154113769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99127960205078, 40.75048065185547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00383758544922, 40.7417106628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815052", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00383758544922, 40.7417106628418]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815052", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99095916748047, 40.7557258605957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813869", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205017089844, 40.72584915161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813808", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98175811767578, 40.763671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793930053711, 40.781646728515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814368", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95604705810547, 40.80363082885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.968017578125, 40.76224136352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95276641845703, 40.78047561645508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00532531738281, 40.74604034423828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97489929199219, 40.752159118652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813987", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98522186279297, 40.72760772705078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98759460449219, 40.743980407714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97734069824219, 40.74958038330078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98737335205078, 40.72203063964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95618438720703, 40.778907775878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86359405517578, 40.76966094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95513153076172, 40.81346893310547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99235534667969, 40.76810073852539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95896911621094, 40.764278411865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87095642089844, 40.77347183227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814272", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94770812988281, 40.77519607543945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95655822753906, 40.77804183959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9501953125, 40.775901794433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86299896240234, 40.76880645751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98820495605469, 40.76960372924805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98582458496094, 40.75724792480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9732666015625, 40.75883865356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94544982910156, 40.827659606933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00125885009766, 40.762630462646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00090026855469, 40.74232864379883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814935", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01094055175781, 40.71391296386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99514770507812, 40.720760345458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813949", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86273193359375, 40.7689208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814271", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9603042602539, 40.778873443603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7794418334961, 40.64725112915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97523498535156, 40.75786590576172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97500610351562, 40.790409088134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814261", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98408508300781, 40.74848937988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00834655761719, 40.74945831298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814610", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98849487304688, 40.754180908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96067810058594, 40.80172348022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97441101074219, 40.793479919433594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814309", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98405456542969, 40.74641799926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95941925048828, 40.80134963989258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9716567993164, 40.794769287109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78203582763672, 40.64491653442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0107650756836, 40.71704864501953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00556945800781, 40.736881256103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814065", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99925231933594, 40.76163101196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86273956298828, 40.76887893676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814228", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00590515136719, 40.74306869506836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.86270904541016, 40.76860809326172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813981", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93682861328125, 40.79844284057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97725677490234, 40.754066467285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01732635498047, 40.70491027832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814516", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98213195800781, 40.77256774902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98399353027344, 40.74322509765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814144", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.983642578125, 40.738067626953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98748016357422, 40.744140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96902465820312, 40.756675720214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96552276611328, 40.79068374633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00252532958984, 40.714378356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814063", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93289184570312, 40.79555130004883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98672485351562, 40.75844955444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9903335571289, 40.71898651123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96134948730469, 40.81180953979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98928833007812, 40.761287689208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0080795288086, 40.71470642089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814500", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98076629638672, 40.78488540649414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814296", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97982025146484, 40.77083969116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96430206298828, 40.77404022216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95085144042969, 40.77067565917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9887924194336, 40.748348236083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00696563720703, 40.75139617919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.93925476074219, 40.80434036254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93925476074219, 40.80434036254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86248016357422, 40.76896286010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97394561767578, 40.794254302978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.950439453125, 40.775455474853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814011", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.89420318603516, 40.67298889160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87086486816406, 40.77370834350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.983642578125, 40.73814010620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99205017089844, 40.74967575073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98252868652344, 40.766658782958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96669006347656, 40.770111083984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95735931396484, 40.77997589111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9730224609375, 40.74402618408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.91828918457031, 40.769805908203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98046875, 40.76483917236328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.92478942871094, 40.761661529541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.92591094970703, 40.799530029296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00653839111328, 40.705810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815013", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98979187011719, 40.757076263427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98005676269531, 40.751678466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99642181396484, 40.73810958862305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97954559326172, 40.72031021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97954559326172, 40.72031021118164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814981", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96870422363281, 40.76717758178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95596313476562, 40.74687957763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9734878540039, 40.78961181640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97252655029297, 40.7434196472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98075103759766, 40.73822021484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95761108398438, 40.7827033996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813918", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77888488769531, 40.6474494934082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814698", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9657974243164, 40.76530075073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98847961425781, 40.76426315307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814679", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95503234863281, 40.77238845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0080337524414, 40.73883056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95365142822266, 40.77995681762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95365142822266, 40.77995681762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813910", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9729995727539, 40.7652587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99540710449219, 40.74424362182617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814709", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9840087890625, 40.73677062988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813771", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99464416503906, 40.73447799682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814887", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95255279541016, 40.80070877075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.77777862548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00562286376953, 40.73679733276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814702", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9654769897461, 40.77442932128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815165", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97432708740234, 40.78860092163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.01375579833984, 40.715789794921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96247863769531, 40.76731872558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814991", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97711181640625, 40.76411819458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.989013671875, 40.736331939697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814001", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98956298828125, 40.73989486694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814008", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98676300048828, 40.729888916015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98979949951172, 40.76728057861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98795318603516, 40.75967025756836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814456", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97929382324219, 40.77681350708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813232421875, 40.75836944580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815183", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96025848388672, 40.77885818481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97598266601562, 40.749568939208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96733093261719, 40.76844024658203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01136779785156, 40.715118408203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96295166015625, 40.774986267089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98181915283203, 40.73666000366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9447021484375, 40.81414031982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814330", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564147949219, 40.744049072265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97822570800781, 40.75421142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814699", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.007568359375, 40.74095916748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97066497802734, 40.75847625732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814649", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96478271484375, 40.68321228027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9600830078125, 40.77614974975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814165", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.994873046875, 40.723148345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00504302978516, 40.7169075012207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814889", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00041198730469, 40.72382354736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95897674560547, 40.77679443359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95897674560547, 40.77679443359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815161", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96614074707031, 40.765350341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99162292480469, 40.754459381103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813946", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98713684082031, 40.72042465209961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814699", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9806137084961, 40.780029296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814161", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95416259765625, 40.77870559692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823226928711, 40.766815185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95670318603516, 40.77819061279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96666717529297, 40.79412078857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98893737792969, 40.72999954223633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00855255126953, 40.72004318237305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.967041015625, 40.79331970214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814609", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99845886230469, 40.723289489746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97815704345703, 40.78327178955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78667449951172, 40.645015716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9880599975586, 40.73773956298828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814393", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95417022705078, 40.76404571533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814349", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94741821289062, 40.77136993408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814726", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97740936279297, 40.73828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9886474609375, 40.77396011352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86328125, 40.76966857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95598602294922, 40.78774642944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0129165649414, 40.70210647583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00617980957031, 40.73421859741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814440", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9621810913086, 40.76056671142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98053741455078, 40.72249221801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97779083251953, 40.773521423339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.8638687133789, 40.76964569091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9468994140625, 40.78034973144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99468231201172, 40.745330810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96466827392578, 40.79686737060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9963607788086, 40.73215866088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97602844238281, 40.75204849243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98129272460938, 40.74148178100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99420928955078, 40.75105667114258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814833", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.959716796875, 40.81382369995117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00621032714844, 40.74222183227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813897", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.7506217956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814985", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97181701660156, 40.75400161743164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97551727294922, 40.752254486083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813860", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97339630126953, 40.757999420166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99004364013672, 40.73242950439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77674865722656, 40.64527893066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814227", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97903442382812, 40.77218246459961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815142", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99110412597656, 40.76542663574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99110412597656, 40.76542663574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97467803955078, 40.76395034790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97474670410156, 40.75712966918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813919", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95960235595703, 40.76266860961914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98722839355469, 40.72500228881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.91706848144531, 40.7464485168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814484", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98818969726562, 40.737709045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815188", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96929168701172, 40.75776290893555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0093765258789, 40.71059036254883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9690933227539, 40.79436111450195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814173", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95594024658203, 40.78200149536133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.76161575317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813969", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9559097290039, 40.77190399169922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95361328125, 40.77894973754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814646", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98136901855469, 40.759578704833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98387908935547, 40.75508117675781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814705", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00688171386719, 40.70682907104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00688171386719, 40.70682907104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78861999511719, 40.6419677734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78861999511719, 40.6419677734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00798797607422, 40.741146087646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814525", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00847625732422, 40.71446990966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94764709472656, 40.79016876220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98817443847656, 40.747806549072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813917", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98787689208984, 40.7440185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95832824707031, 40.81599044799805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814077", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97938537597656, 40.75208282470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97270965576172, 40.758758544921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052215576172, 40.754520416259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813931", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97785949707031, 40.757591247558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00462341308594, 40.7237663269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814620", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97174072265625, 40.7821159362793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97344207763672, 40.75786209106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814557", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00101470947266, 40.741722106933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97270202636719, 40.78682327270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97782135009766, 40.78631591796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95471954345703, 40.7657470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814013", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9713134765625, 40.76387023925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814556", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98051452636719, 40.74860382080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814756", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9866714477539, 40.74686050415039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814839", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96492004394531, 40.76651382446289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815173", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9544677734375, 40.77123260498047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815060", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78667449951172, 40.645015716552734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98543548583984, 40.74871063232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96662139892578, 40.76155471801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8637466430664, 40.76959228515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814739", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96073913574219, 40.764854431152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813867", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94558715820312, 40.75168228149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94558715820312, 40.75168228149414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814059", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.749839782714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95779418945312, 40.7653923034668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814986", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0097427368164, 40.70998001098633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98430633544922, 40.75775146484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00977325439453, 40.70538330078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99436950683594, 40.75102233886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95626068115234, 40.77889633178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97816467285156, 40.75225067138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99512481689453, 40.73986053466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815108", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97689056396484, 40.74724197387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98723602294922, 40.729217529296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813914", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9449691772461, 40.783287048339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96459197998047, 40.75724792480469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814018", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00452423095703, 40.7243537902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9757080078125, 40.748924255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9757080078125, 40.748924255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9757080078125, 40.748924255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9868392944336, 40.72249984741211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.98120880126953, 40.749088287353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98462677001953, 40.75386047363281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814640", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9892807006836, 40.76315689086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814241", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99137115478516, 40.723976135253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813833", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95426177978516, 40.778629302978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98883819580078, 40.74871826171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00626373291016, 40.733673095703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814665", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.78398132324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.78398132324219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92740631103516, 40.76811981201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814473", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98240661621094, 40.77469253540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814882", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9485092163086, 40.78430938720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97282409667969, 40.75625228881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00381469726562, 40.728546142578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.984130859375, 40.74863052368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.984130859375, 40.74863052368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0083236694336, 40.735939025878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97611236572266, 40.7889404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93350982666016, 40.76303482055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289154052734, 40.749610900878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96940612792969, 40.766319274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814789", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96920013427734, 40.76091384887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9764633178711, 40.78573989868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815082", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95789337158203, 40.77267837524414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9761734008789, 40.733543395996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9677505493164, 40.75603103637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9677505493164, 40.75603103637695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.94928741455078, 40.77259826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814546", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9914779663086, 40.729801177978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96348571777344, 40.774471282958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98086547851562, 40.7447509765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814196", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9532699584961, 40.771568298339844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814066", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97088623046875, 40.783302307128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9874496459961, 40.73326873779297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813800", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98918151855469, 40.75286102294922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814597", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96775817871094, 40.76870346069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814218", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95903015136719, 40.76356887817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814295", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99105072021484, 40.75543975830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813951", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96192932128906, 40.77095413208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00286102294922, 40.72819137573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00286102294922, 40.72819137573242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815098", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95453643798828, 40.77294921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814934", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00981903076172, 40.70566177368164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814884", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96855163574219, 40.759151458740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98933410644531, 40.77191162109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99122619628906, 40.770320892333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97848510742188, 40.74835205078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0044937133789, 40.71004867553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94206237792969, 40.75434112548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96158599853516, 40.76850891113281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815114", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7835464477539, 40.64876937866211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97702026367188, 40.7434196472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00624084472656, 40.74480056762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95643615722656, 40.781429290771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814785", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99549865722656, 40.764827728271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95645904541016, 40.77553939819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97706604003906, 40.751670837402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96107482910156, 40.760860443115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814977", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00779724121094, 40.71538162231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98945617675781, 40.73981857299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00213623046875, 40.7294807434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99510955810547, 40.73408889770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99598693847656, 40.687095642089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814392", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00486755371094, 40.72856903076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814133", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99207305908203, 40.74504089355469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9754409790039, 40.75835418701172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96806335449219, 40.75140380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86289978027344, 40.76888656616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813979", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96092224121094, 40.775184631347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98674011230469, 40.747440338134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814896", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96745300292969, 40.77193832397461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814703", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87071990966797, 40.77366638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.87071990966797, 40.77366638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.9738998413086, 40.789100646972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814661", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98981475830078, 40.73461151123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814517", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0024185180664, 40.75016784667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814289", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.997314453125, 40.724754333496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814598", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96759033203125, 40.75605010986328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98616027832031, 40.76210403442383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814290", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98210144042969, 40.77530288696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94461822509766, 40.78786849975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814099", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98988342285156, 40.746849060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95870208740234, 40.80091094970703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814871", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96357727050781, 40.7617301940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00749206542969, 40.72568130493164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815163", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97339630126953, 40.76373291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9739761352539, 40.754844665527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9743881225586, 40.75497055053711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814467", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96788024902344, 40.76318359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00630950927734, 40.73350143432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94644927978516, 40.772640228271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94644927978516, 40.772640228271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97563934326172, 40.75151824951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813784", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00647735595703, 40.732486724853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814419", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99285888671875, 40.74778366088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98660278320312, 40.77744674682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.990478515625, 40.75640106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814867", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.01175689697266, 40.70759582519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96127319335938, 40.80172348022461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99117279052734, 40.73273849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99117279052734, 40.73273849487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814148", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94436645507812, 40.83494567871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98262023925781, 40.76190185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96341705322266, 40.8026123046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0030288696289, 40.733280181884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814617", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9878158569336, 40.728572845458984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814956", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99409484863281, 40.7513427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9800796508789, 40.76051712036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0052490234375, 40.71967697143555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236083984375, 40.765438079833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97834014892578, 40.76121139526367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814073", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99899291992188, 40.756160736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96788787841797, 40.80061721801758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00177001953125, 40.72605895996094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99141693115234, 40.74996566772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.97053527832031, 40.756248474121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99873352050781, 40.723121643066406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814643", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96925354003906, 40.76952362060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99885559082031, 40.68104553222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0015640258789, 40.73258590698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814270", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9811782836914, 40.76050567626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9977798461914, 40.74614334106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9977798461914, 40.74614334106445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091125488281, 40.7642936706543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815155", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9774398803711, 40.758636474609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815187", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96680450439453, 40.79243087768555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814287", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96247100830078, 40.75872039794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815038", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92771911621094, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.92771911621094, 40.76417922973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815124", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025634765625, 40.72889709472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78192901611328, 40.644813537597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97159576416016, 40.687503814697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9857177734375, 40.746498107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98909759521484, 40.7215690612793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98859405517578, 40.74849319458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815074", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98487854003906, 40.75975036621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.87293243408203, 40.77413558959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814402", "demand": "8"}}, {"geometry": {"type": "Point", "coordinates": [-73.99463653564453, 40.745628356933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96288299560547, 40.7751579284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814806", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95095825195312, 40.82577133178711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9865493774414, 40.76692581176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814125", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94927215576172, 40.7734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98499298095703, 40.77431106567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.78196716308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99054718017578, 40.73393630981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814932", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99579620361328, 40.764404296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96136474609375, 40.76895523071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97938537597656, 40.74696350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814263", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99244689941406, 40.75239181518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814358", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98278045654297, 40.76774215698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97842407226562, 40.74788284301758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813773", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194122314453, 40.746341705322266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.7889404296875, 40.64760971069336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814318", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79535675048828, 40.666648864746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95655822753906, 40.771331787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974594116211, 40.71907043457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99185180664062, 40.74955368041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814738", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00552368164062, 40.72657012939453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814911", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98545837402344, 40.738399505615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00434875488281, 40.747802734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97420501708984, 40.75678253173828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815084", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98430633544922, 40.73714065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00985717773438, 40.738521575927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815138", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00293731689453, 40.76034164428711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814538", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97994995117188, 40.78053665161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98096466064453, 40.75388717651367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99535369873047, 40.73384475708008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814028", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96316528320312, 40.77488708496094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99417877197266, 40.74626922607422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.747962951660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814501", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99746704101562, 40.72084045410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813903", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.975341796875, 40.765098571777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97765350341797, 40.725746154785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814236", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.74570846557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99104309082031, 40.74570846557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97538757324219, 40.76122283935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814328", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99452209472656, 40.74054718017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814999", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00607299804688, 40.74038314819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813753", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00607299804688, 40.74038314819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813753", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98767852783203, 40.744110107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98767852783203, 40.744110107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95864868164062, 40.7783088684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813824", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00668334960938, 40.70585250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813774", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98763275146484, 40.728729248046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95618438720703, 40.70745849609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814954", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01090240478516, 40.72572326660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97090911865234, 40.78325653076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97515869140625, 40.75244140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99919891357422, 40.72795104980469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9749755859375, 40.76359939575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814804", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93148803710938, 40.67756652832031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78204345703125, 40.645416259765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99700164794922, 40.74079132080078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98184967041016, 40.728370666503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00756072998047, 40.74354934692383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814310", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9659194946289, 40.75259017944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814362", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98554229736328, 40.74440383911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00310516357422, 40.71809768676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814748", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98174285888672, 40.772769927978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97624969482422, 40.78847885131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.89725494384766, 40.86758804321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98223876953125, 40.768310546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96691131591797, 40.76128005981445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95453643798828, 40.76953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813825", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00625610351562, 40.751163482666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932632446289, 40.74467849731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932632446289, 40.74467849731445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94476318359375, 40.77915954589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814449", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9548568725586, 40.769386291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99848937988281, 40.75040817260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9344482421875, 40.795528411865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9838638305664, 40.75813293457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814126", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875, 40.76155090332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99967956542969, 40.71836471557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814976", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065948486328, 40.75362777709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814163", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99354553222656, 40.73612976074219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814711", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95659637451172, 40.70799255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815141", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9598388671875, 40.77957534790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813834", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97632598876953, 40.7757568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814537", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081909179688, 40.77366638183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9833984375, 40.76263427734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00946044921875, 40.715415954589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815130", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99373626708984, 40.73587417602539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98206329345703, 40.777469635009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98206329345703, 40.777469635009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98426055908203, 40.72883987426758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814892", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95417022705078, 40.774757385253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814566", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97814178466797, 40.78647232055664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00052642822266, 40.75791549682617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.977783203125, 40.75246047973633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814727", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96119689941406, 40.77008056640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86266326904297, 40.76897430419922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99029541015625, 40.75620651245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96807861328125, 40.76200866699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814658", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00133514404297, 40.68559646606445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00211334228516, 40.73280334472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814273", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97825622558594, 40.76211929321289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814495", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98866271972656, 40.723388671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813794", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86274719238281, 40.76872634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00936889648438, 40.72146987915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00038146972656, 40.7111701965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814974", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00753021240234, 40.72886276245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.75341033935547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814068", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93544006347656, 40.800315856933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9910888671875, 40.691951751708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814513", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98772430419922, 40.73824691772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814108", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98414611816406, 40.75453186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0053939819336, 40.740535736083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814083", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96589660644531, 40.7932014465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96589660644531, 40.7932014465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96589660644531, 40.7932014465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98710632324219, 40.73871612548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9714126586914, 40.75725555419922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00282287597656, 40.73992919921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97481536865234, 40.75748062133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97481536865234, 40.75748062133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00955963134766, 40.70975875854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815126", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9903564453125, 40.771663665771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97515869140625, 40.75547409057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814543", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96668243408203, 40.75735092163086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814743", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9602279663086, 40.70920944213867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98467254638672, 40.742919921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814134", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00431823730469, 40.742454528808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00788879394531, 40.7164306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814006", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95394897460938, 40.730350494384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00594329833984, 40.73581314086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98237609863281, 40.756858825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814741", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99960327148438, 40.753578186035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814064", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98092651367188, 40.737571716308594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814398", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00703430175781, 40.742549896240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813952", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99835968017578, 40.745418548583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97181701660156, 40.76018142700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00242614746094, 40.75534439086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00682067871094, 40.708290100097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95977783203125, 40.76256561279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99381256103516, 40.74689865112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98389434814453, 40.765602111816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95303344726562, 40.77595138549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.989990234375, 40.75703048706055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814006", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0074462890625, 40.7127685546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813830", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01142120361328, 40.71065902709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813925", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99620819091797, 40.73886489868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86397552490234, 40.769927978515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814686", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97181701660156, 40.79433822631836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814525", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87075805664062, 40.773590087890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99694061279297, 40.73236846923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814691", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00273132324219, 40.74441146850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814648", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98777770996094, 40.75883865356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814952", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.7559928894043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95806884765625, 40.77265930175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99800872802734, 40.73535919189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814903", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9994125366211, 40.743919372558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98585510253906, 40.7193717956543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814718", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95171356201172, 40.78152847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95171356201172, 40.78152847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814151", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99183654785156, 40.74424743652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99365234375, 40.74140930175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814240", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9593505859375, 40.77439880371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814057", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98605346679688, 40.67346954345703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194885253906, 40.76284408569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95536804199219, 40.78852844238281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00901794433594, 40.71755599975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00901794433594, 40.71755599975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814612", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94850158691406, 40.82893753051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.778526306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814496", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0042495727539, 40.722068786621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814462", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97919464111328, 40.76502227783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813963", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97510528564453, 40.75572967529297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814421", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97771453857422, 40.75243377685547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97743225097656, 40.78431701660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94044494628906, 40.79352569580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813927", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96798706054688, 40.765689849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96798706054688, 40.765689849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97382354736328, 40.74763107299805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97283172607422, 40.76433181762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814638", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95864868164062, 40.76469039916992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97048950195312, 40.79909133911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96664428710938, 40.770484924316406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00901794433594, 40.71028518676758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813788", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97850036621094, 40.763641357421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00220489501953, 40.70888137817383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814378", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98056030273438, 40.753761291503906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814745", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98707580566406, 40.733192443847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97891998291016, 40.7464485168457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814674", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99327087402344, 40.74755096435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814664", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98991394042969, 40.767494201660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00163269042969, 40.73081588745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815021", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97783660888672, 40.75868225097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814561", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98068237304688, 40.7824592590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814298", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96344757080078, 40.77178955078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96344757080078, 40.77178955078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96150207519531, 40.77714157104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793472290039, 40.7440071105957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813877", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97479248046875, 40.74201965332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98615264892578, 40.7434196472168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814787", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9823989868164, 40.777896881103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98058319091797, 40.74689483642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9968490600586, 40.74732971191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9968490600586, 40.74068069458008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814542", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.796024322509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98243713378906, 40.7712516784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814451", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00822448730469, 40.71504592895508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815093", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9814224243164, 40.75327682495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814470", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96427917480469, 40.75666046142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813859", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99178314208984, 40.754398345947266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00308990478516, 40.73339080810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815170", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95735168457031, 40.77439498901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814965", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00936126708984, 40.7153205871582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98560333251953, 40.73549270629883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99193572998047, 40.74421691894531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814519", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97832489013672, 40.782962799072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97892761230469, 40.747398376464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97892761230469, 40.747398376464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98835754394531, 40.73455810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815191", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95682525634766, 40.77077102661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813829", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98919677734375, 40.75862121582031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814959", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96566772460938, 40.76274108886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813822", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98299407958984, 40.76487731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814053", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97473907470703, 40.79323196411133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94261932373047, 40.803077697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98331451416016, 40.75025939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814397", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96698760986328, 40.79356384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96334838867188, 40.77153778076172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813782", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98407745361328, 40.76163864135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97396087646484, 40.757118225097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97705078125, 40.788604736328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814107", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98548126220703, 40.7471923828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814576", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.7897720336914, 40.643829345703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99697875976562, 40.72467803955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99697875976562, 40.72467803955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814129", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.972900390625, 40.7619743347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98361206054688, 40.73011016845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815096", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00483703613281, 40.72140884399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813901", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96338653564453, 40.774288177490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99656677246094, 40.73631286621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00222778320312, 40.734466552734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813769", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98926544189453, 40.72105026245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814285", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-74.00494384765625, 40.71866226196289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0097427368164, 40.70343017578125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95626831054688, 40.77581787109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814853", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97179412841797, 40.757205963134766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814225", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98030090332031, 40.76179122924805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814755", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00605773925781, 40.735069274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98614501953125, 40.74773025512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814137", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98651885986328, 40.75629806518555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814373", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96157836914062, 40.80112075805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97931671142578, 40.78152847290039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9747314453125, 40.76292037963867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814461", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97109985351562, 40.75820541381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97109985351562, 40.75820541381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9708023071289, 40.67543029785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814029", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9980697631836, 40.75122833251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814728", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96907043457031, 40.7590217590332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814807", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99794006347656, 40.750755310058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814250", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96768951416016, 40.75954055786133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813798", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96405029296875, 40.773529052734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814455", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233032226562, 40.762725830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01364135742188, 40.709171295166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98976135253906, 40.757293701171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813915", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9776611328125, 40.75299835205078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96521759033203, 40.76018142700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96651458740234, 40.79328918457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98530578613281, 40.751834869384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95413970947266, 40.78467559814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98600769042969, 40.756935119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815140", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091888427734, 40.753910064697266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.746070861816406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9767074584961, 40.7541618347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814831", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97091674804688, 40.76240158081055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814075", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196075439453, 40.750850677490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815133", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94940948486328, 40.785118103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98896026611328, 40.72288131713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814657", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01321411132812, 40.705482482910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9793701171875, 40.77671432495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98999786376953, 40.73834991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98188781738281, 40.783321380615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98188781738281, 40.783321380615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814933", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9936752319336, 40.74987030029297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814779", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97840118408203, 40.748416900634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95789337158203, 40.765281677246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815067", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95648956298828, 40.767189025878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814446", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95285034179688, 40.818172454833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9999771118164, 40.73304748535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99700164794922, 40.72536849975586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97962188720703, 40.735538482666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814297", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99162292480469, 40.722557067871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813947", "demand": "7"}}, {"geometry": {"type": "Point", "coordinates": [-73.99408721923828, 40.75103759765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815109", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9924087524414, 40.75736618041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814805", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01434326171875, 40.7140998840332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97537231445312, 40.749656677246094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9872055053711, 40.72258377075195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00788116455078, 40.72431564331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814982", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97211456298828, 40.76332092285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98982238769531, 40.762359619140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96405792236328, 40.767425537109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97650146484375, 40.78559112548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00605773925781, 40.73570251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00605773925781, 40.73570251464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9688491821289, 40.76447296142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98889923095703, 40.7437858581543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814425", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78274536132812, 40.64448928833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814846", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99369812011719, 40.741783142089844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814033", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99861145019531, 40.750179290771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00119018554688, 40.7180290222168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814731", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98860168457031, 40.75360107421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95785522460938, 40.776363372802734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95816040039062, 40.71993637084961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00492095947266, 40.71940231323242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97562408447266, 40.759483337402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814689", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95982360839844, 40.77360916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97098541259766, 40.76138687133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00718688964844, 40.74085998535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98471069335938, 40.733150482177734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99098205566406, 40.750823974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814875", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00762176513672, 40.72574996948242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814701", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97420501708984, 40.762855529785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9996566772461, 40.7333869934082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814303", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.994140625, 40.72483825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814564", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00042724609375, 40.73044204711914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814559", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78244018554688, 40.64469909667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0016860961914, 40.73085021972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814618", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97489166259766, 40.758270263671875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814065", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99162292480469, 40.73944854736328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814506", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98888397216797, 40.71669006347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95976257324219, 40.75849914550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814109", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00582885742188, 40.740020751953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97708892822266, 40.74113845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815085", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9756088256836, 40.75836944580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814023", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97232055664062, 40.759803771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9761962890625, 40.75204849243164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94742584228516, 40.77611541748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95874786376953, 40.772159576416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814128", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98135375976562, 40.741512298583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95722198486328, 40.77436065673828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814056", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99913024902344, 40.759639739990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9648208618164, 40.76005935668945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814424", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98029327392578, 40.76558303833008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99781036376953, 40.72562026977539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98287963867188, 40.73092269897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815158", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95967102050781, 40.77989196777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814111", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97392272949219, 40.75129699707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847640991211, 40.75685119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847640991211, 40.75685119628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98600769042969, 40.74734878540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00592803955078, 40.7399787902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94221496582031, 40.84202575683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814554", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95305633544922, 40.77082824707031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815089", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9583740234375, 40.78426742553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814022", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96000671386719, 40.77634048461914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815088", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99063110351562, 40.755950927734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98416900634766, 40.76994705200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99021911621094, 40.74082565307617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97429656982422, 40.74710464477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015045166016, 40.73517990112305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97113800048828, 40.75514221191406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815166", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.962646484375, 40.76652908325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814005", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97853088378906, 40.76442337036133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814536", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00579833984375, 40.7507209777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99021911621094, 40.71464157104492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78214263916016, 40.64466857910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814000", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9772720336914, 40.74275207519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814722", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00099182128906, 40.73706817626953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814570", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98832702636719, 40.738868713378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00711059570312, 40.718963623046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96438598632812, 40.80229949951172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95713806152344, 40.777584075927734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814507", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99373626708984, 40.75043869018555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97614288330078, 40.776180267333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883041381836, 40.75580596923828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815059", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.96904754638672, 40.76123809814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814835", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98214721679688, 40.77190017700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814515", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0068588256836, 40.7487907409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814714", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.986083984375, 40.72240447998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95539855957031, 40.78253173828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98770141601562, 40.719661712646484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814897", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98851013183594, 40.77485656738281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9804458618164, 40.7791862487793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814497", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9850845336914, 40.747581481933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814808", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96238708496094, 40.77553176879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78228759765625, 40.64457321166992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99990844726562, 40.71917724609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00482177734375, 40.7211799621582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550964355469, 40.75756072998047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99713897705078, 40.72201156616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98275756835938, 40.77159881591797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77667236328125, 40.64532470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814375", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98885345458984, 40.74617385864258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814894", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00521087646484, 40.7407112121582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814521", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.00347137451172, 40.738685607910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814343", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9815673828125, 40.76797103881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96835327148438, 40.791561126708984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813970", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98629760742188, 40.75215148925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814216", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98788452148438, 40.74958801269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814662", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98222351074219, 40.777122497558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00509643554688, 40.72005081176758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814550", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98200225830078, 40.77895736694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814114", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98445129394531, 40.73646926879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97918701171875, 40.76533126831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815104", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98184204101562, 40.76570129394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815128", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99430847167969, 40.681087493896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814706", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00316619873047, 40.733192443847656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814851", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99034881591797, 40.75632858276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814998", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96694946289062, 40.766666412353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98070526123047, 40.747589111328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813889", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95945739746094, 40.80122375488281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9770278930664, 40.779911041259766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814207", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98117065429688, 40.7471809387207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813892", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98866271972656, 40.7626838684082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814759", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00115203857422, 40.746829986572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814267", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98793029785156, 40.74851989746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814315", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95956420898438, 40.77704620361328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98004150390625, 40.7857780456543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814468", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97161865234375, 40.7629508972168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99842834472656, 40.75551986694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9974365234375, 40.721920013427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814660", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87296295166016, 40.77413558959961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814871", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529052734375, 40.759761810302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00220489501953, 40.72998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00220489501953, 40.72998046875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815087", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.99199676513672, 40.74974060058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814243", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99443054199219, 40.72481155395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814206", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99980163574219, 40.73331832885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815050", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95574951171875, 40.777061462402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813965", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98324584960938, 40.76645278930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814260", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9949951171875, 40.728553771972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814460", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98127746582031, 40.764549255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814749", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97518920898438, 40.751670837402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00250244140625, 40.73979568481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813781", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98907470703125, 40.71897506713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814239", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.01203155517578, 40.70970916748047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814975", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9853744506836, 40.76864242553711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97228240966797, 40.75669860839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97228240966797, 40.75669860839844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96920013427734, 40.75691604614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814279", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289154052734, 40.73362731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00289154052734, 40.73362731933594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813993", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01660919189453, 40.709571838378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814902", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99852752685547, 40.76411437988281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00679779052734, 40.730220794677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815094", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9674301147461, 40.786495208740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814215", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98101806640625, 40.764198303222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814415", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99235534667969, 40.7150764465332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814676", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98551177978516, 40.748619079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97471618652344, 40.78322982788086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813813", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97125244140625, 40.75490188598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97125244140625, 40.75490188598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814522", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99727630615234, 40.72246170043945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95093536376953, 40.785850524902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814984", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9575424194336, 40.80160903930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814050", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9575424194336, 40.80160903930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814050", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98133087158203, 40.753662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814216", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99812316894531, 40.74055480957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814906", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0063705444336, 40.733280181884766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814200", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98214721679688, 40.76239776611328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813854", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86335754394531, 40.769893646240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99636840820312, 40.753379821777344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813968", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.993408203125, 40.74700164794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814730", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96481323242188, 40.76004409790039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.987548828125, 40.719825744628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814664", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97697448730469, 40.764549255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97697448730469, 40.764549255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01443481445312, 40.704315185546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814607", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99867248535156, 40.733917236328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78931427001953, 40.641788482666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814581", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98574829101562, 40.72705078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814744", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96700286865234, 40.77259826660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99519348144531, 40.74958801269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815045", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99011993408203, 40.75164031982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99011993408203, 40.75164031982422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815097", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96923828125, 40.76081848144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814367", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01319885253906, 40.714935302734375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814456", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97295379638672, 40.7587890625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814486", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96589660644531, 40.76544952392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815042", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99187469482422, 40.72585678100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95455932617188, 40.78929138183594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98725891113281, 40.73905944824219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814221", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.80402374267578, 40.64931106567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99981689453125, 40.73318862915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94721221923828, 40.779991149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813770", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0044937133789, 40.724369049072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98605346679688, 40.74349594116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813763", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.74447250366211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98046875, 40.74856185913086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99939727783203, 40.719581604003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95932006835938, 40.77452087402344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01483154296875, 40.709930419921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814723", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0049819946289, 40.721378326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0049819946289, 40.721378326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813845", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95612335205078, 40.77180099487305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95309448242188, 40.7718620300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932861328125, 40.75248718261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815190", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98455047607422, 40.75912094116211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814958", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901351928711, 40.73780059814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.89315795898438, 40.77367401123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814966", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96842193603516, 40.754661560058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814489", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97372436523438, 40.7477912902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98480224609375, 40.76424026489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815145", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98576354980469, 40.75226593017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814020", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00524139404297, 40.74044418334961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814086", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96466827392578, 40.77286911010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814076", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98906707763672, 40.758148193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98906707763672, 40.758148193359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814967", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01443481445312, 40.71809387207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814490", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01065063476562, 40.70302200317383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813939", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00341796875, 40.74113845825195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814624", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78134155273438, 40.64488983154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813825", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96214294433594, 40.77923583984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9732894897461, 40.75495910644531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98617553710938, 40.74641799926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814172", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96870422363281, 40.75798034667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813797", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.87086486816406, 40.773681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814611", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87335205078125, 40.773990631103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.750553131103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98664855957031, 40.74207305908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99260711669922, 40.746612548828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99260711669922, 40.746612548828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814684", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86268615722656, 40.76887512207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97480010986328, 40.790771484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97362518310547, 40.75525665283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814447", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96600341796875, 40.71365737915039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97315216064453, 40.7952766418457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814793", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.946533203125, 40.78086471557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813896", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95262145996094, 40.780635833740234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847183227539, 40.72659683227539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99154663085938, 40.73891830444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.93109130859375, 40.797611236572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9526596069336, 40.78272247314453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9526596069336, 40.78272247314453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814587", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00288391113281, 40.73921203613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814593", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97747802734375, 40.77958297729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814939", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96441650390625, 40.76431655883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814409", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0044937133789, 40.74734878540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814760", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01105499267578, 40.71565628051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814505", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94776153564453, 40.779022216796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814364", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98835754394531, 40.74747848510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815132", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97277069091797, 40.74896240234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814751", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00752258300781, 40.70528030395508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814773", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97560119628906, 40.789180755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00165557861328, 40.71916580200195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814432", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98689270019531, 40.75141143798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814027", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00255584716797, 40.750038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-74.00255584716797, 40.750038146972656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97332763671875, 40.75533676147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00382232666016, 40.70590591430664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814509", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99484252929688, 40.7315788269043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98828125, 40.750587463378906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97724914550781, 40.784515380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814081", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99085998535156, 40.74568176269531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813840", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98531341552734, 40.73579788208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813817", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98975372314453, 40.7565803527832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814599", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9681167602539, 40.76548385620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814707", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95765686035156, 40.77281951904297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814680", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98246765136719, 40.76795959472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9857177734375, 40.75640106201172]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814139", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99783325195312, 40.7360954284668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814651", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97897338867188, 40.78749084472656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.91411590576172, 40.73039245605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814067", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87039947509766, 40.77360916137695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97854614257812, 40.78223419189453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95211791992188, 40.78409957885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814319", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97525024414062, 40.753150939941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98095703125, 40.782501220703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95344543457031, 40.76476287841797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00090026855469, 40.73196029663086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97747802734375, 40.76450729370117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95014953613281, 40.771419525146484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9807357788086, 40.75969696044922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98091888427734, 40.74161148071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814647", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97984313964844, 40.766029357910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814836", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0061264038086, 40.73988342285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814594", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97525024414062, 40.765071868896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814796", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.86344146728516, 40.7700080871582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99142456054688, 40.74935531616211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95118713378906, 40.78236389160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98834991455078, 40.748374938964844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814568", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9508056640625, 40.79465866088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814623", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94286346435547, 40.79914093017578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814600", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99581909179688, 40.7567253112793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815070", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96784210205078, 40.768470764160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97541046142578, 40.68968963623047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815037", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95674896240234, 40.7669563293457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814442", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99797058105469, 40.730220794677734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814069", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9859848022461, 40.72843551635742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813935", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97184753417969, 40.745887756347656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814192", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95968627929688, 40.762569427490234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814357", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99224090576172, 40.737632751464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98661804199219, 40.759281158447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814248", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98387908935547, 40.76026153564453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9881591796875, 40.759830474853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814220", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99483489990234, 40.74029541015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0025634765625, 40.73974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814208", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99065399169922, 40.75621032714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814534", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97948455810547, 40.76420593261719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814019", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99130249023438, 40.75007629394531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815000", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97285461425781, 40.67780303955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814012", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99235534667969, 40.73461151123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99235534667969, 40.73461151123047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814463", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.94642639160156, 40.79206848144531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815167", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96858978271484, 40.75484085083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01400756835938, 40.71424865722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95819091796875, 40.714656829833984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814082", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99642181396484, 40.7484245300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815041", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97752380371094, 40.74660110473633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814465", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99617004394531, 40.7216682434082]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814659", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98381042480469, 40.74751663208008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814031", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97441864013672, 40.75157928466797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98715209960938, 40.733558654785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99411010742188, 40.755855560302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813841", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9912109375, 40.7394905090332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815184", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99099731445312, 40.73733139038086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814423", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9908218383789, 40.72771072387695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814562", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00262451171875, 40.739585876464844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814265", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98065185546875, 40.73392868041992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99163055419922, 40.74966812133789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814893", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95182037353516, 40.76945114135742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814832", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97891998291016, 40.7503662109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95255279541016, 40.7685661315918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98633575439453, 40.76215362548828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813912", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94673156738281, 40.77212142944336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.79225158691406, 40.64506530761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814452", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96980285644531, 40.794837951660156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814026", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0012435913086, 40.73689651489258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814130", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99402618408203, 40.73204040527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98444366455078, 40.769798278808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814541", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98332977294922, 40.771263122558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814589", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98146057128906, 40.78056716918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9658203125, 40.76201629638672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814316", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97262573242188, 40.78077697753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814453", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9858169555664, 40.74692153930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814912", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98764038085938, 40.76524353027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98764038085938, 40.76524353027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95289611816406, 40.74628829956055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813893", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86383819580078, 40.769596099853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814036", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98898315429688, 40.7364501953125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814548", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97321319580078, 40.759254455566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813842", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99357604980469, 40.75711441040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97186279296875, 40.759708404541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9859390258789, 40.72301483154297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814710", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99324798583984, 40.752655029296875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813944", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99391174316406, 40.73729705810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01103210449219, 40.704219818115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95374298095703, 40.785064697265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814102", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95935821533203, 40.774261474609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814794", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97405242919922, 40.760711669921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99739074707031, 40.7562370300293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814682", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9889144897461, 40.75343322753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97975158691406, 40.76155090332031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814344", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98124694824219, 40.74148941040039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814369", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99832153320312, 40.73814010620117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98532104492188, 40.73249053955078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813880", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081146240234, 40.77378463745117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814941", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97418975830078, 40.78868103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813786", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9712905883789, 40.76072311401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9660415649414, 40.76466369628906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9557876586914, 40.7790412902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814765", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9899673461914, 40.689796447753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814943", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99496459960938, 40.75486373901367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814203", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.78910064697266, 40.64788818359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815076", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00532531738281, 40.73982238769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815102", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0092544555664, 40.71303176879883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814166", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96664428710938, 40.753353118896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815062", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94073486328125, 40.83243942260742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813905", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.004150390625, 40.722015380859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814508", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99836730957031, 40.72888946533203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813933", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00846099853516, 40.74631881713867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814254", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99349212646484, 40.752071380615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814775", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99531555175781, 40.744850158691406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814485", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96817016601562, 40.765506744384766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813876", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95075988769531, 40.77925491333008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814233", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95980834960938, 40.77671432495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813818", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99665832519531, 40.76505661010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813894", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97040557861328, 40.7616081237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00859832763672, 40.73276138305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814881", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99836730957031, 40.74551010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814709", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249053955078, 40.766998291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814405", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00364685058594, 40.743282318115234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99376678466797, 40.75163650512695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95011138916016, 40.776145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813937", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98789978027344, 40.738243103027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814877", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99754333496094, 40.74140930175781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94888305664062, 40.79719924926758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814176", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98040771484375, 40.759761810302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814269", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99382781982422, 40.75678634643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814654", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95281219482422, 40.780235290527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813878", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9493408203125, 40.79716110229492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94627380371094, 40.65440368652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9847183227539, 40.75947189331055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814996", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9773941040039, 40.72603988647461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813988", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98320007324219, 40.76112747192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814306", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95684051513672, 40.78052520751953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99227905273438, 40.75189208984375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814209", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96566009521484, 40.76525115966797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815168", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883804321289, 40.75894546508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813843", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.75433349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99149322509766, 40.75433349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99021911621094, 40.73455810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814282", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96914672851562, 40.757259368896484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814926", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00594329833984, 40.73581314086914]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814650", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9810791015625, 40.75925827026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00113677978516, 40.710350036621094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814122", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96285247802734, 40.762725830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814132", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96095275878906, 40.77228546142578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814054", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97814178466797, 40.77298355102539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97509002685547, 40.75242614746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815079", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9966812133789, 40.75286865234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814021", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97042846679688, 40.7556266784668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98665618896484, 40.751068115234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97164154052734, 40.75725555419922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814408", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99036407470703, 40.75605773925781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814390", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00721740722656, 40.70511245727539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9883041381836, 40.72338104248047]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96114349365234, 40.777610778808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96114349365234, 40.777610778808594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814345", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95658111572266, 40.766998291015625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814160", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99066162109375, 40.75093078613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814936", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96556854248047, 40.7630615234375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814226", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00076293945312, 40.71839904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98566436767578, 40.75393295288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814729", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99164581298828, 40.735008239746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99164581298828, 40.735008239746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.77938842773438, 40.647735595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815046", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97286224365234, 40.755802154541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96961975097656, 40.78512191772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815172", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96509552001953, 40.76647186279297]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9985580444336, 40.71711730957031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814113", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0101318359375, 40.712188720703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815120", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0, 40.73476791381836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815182", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00077056884766, 40.76115036010742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814645", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96868133544922, 40.75477600097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814899", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98751068115234, 40.71984100341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814469", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98721313476562, 40.729270935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814753", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99608612060547, 40.74433517456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95972442626953, 40.77396774291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814219", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9799575805664, 40.75225830078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813887", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799896240234, 40.734619140625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814518", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94035339355469, 40.6963996887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94035339355469, 40.6963996887207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99575805664062, 40.764503479003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814955", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96894836425781, 40.798282623291016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814860", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97724914550781, 40.75564956665039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814829", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97640991210938, 40.75190353393555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98870849609375, 40.77402114868164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813881", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96906280517578, 40.758033752441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814359", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99433898925781, 40.75081253051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814803", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9970932006836, 40.72391128540039]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814275", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97664642333984, 40.7514533996582]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814737", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98621368408203, 40.76217269897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99264526367188, 40.75634765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814626", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9796142578125, 40.77642822265625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813895", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9879379272461, 40.719905853271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815169", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99957275390625, 40.738651275634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814869", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95490264892578, 40.77777099609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814212", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9940185546875, 40.72831344604492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814488", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01668548583984, 40.71466827392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814641", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0023193359375, 40.72654724121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815010", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98274230957031, 40.73937225341797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93960571289062, 40.70675277709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814922", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226928710938, 40.76885986328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814280", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00778198242188, 40.74039840698242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814329", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9942398071289, 40.7589225769043]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814177", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99628448486328, 40.73816680908203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813922", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00196075439453, 40.725215911865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96998596191406, 40.76294708251953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814795", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95411682128906, 40.77861022949219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0080795288086, 40.739479064941406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814492", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98918151855469, 40.72981262207031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99443817138672, 40.760902404785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814174", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9846420288086, 40.74274826049805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815143", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98043060302734, 40.75470733642578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814466", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95702362060547, 40.7806396484375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814365", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9799575805664, 40.761043548583984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814395", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96349334716797, 40.75779724121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814925", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9958267211914, 40.76445388793945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814549", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9598159790039, 40.80873107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814979", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95294189453125, 40.772308349609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814878", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.89334869384766, 40.75477981567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814436", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98509216308594, 40.72917938232422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813792", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00596618652344, 40.7351188659668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814009", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98979187011719, 40.75694274902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815066", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97057342529297, 40.79413986206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814171", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9941177368164, 40.7412223815918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814253", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00251770019531, 40.7501106262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814014", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98052978515625, 40.774898529052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814666", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99323272705078, 40.74745178222656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814300", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95438385009766, 40.76402282714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814403", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97640991210938, 40.748172760009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814790", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9542465209961, 40.774478912353516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814850", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9787826538086, 40.74522018432617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813848", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99462127685547, 40.73469543457031]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813821", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98430633544922, 40.74503707885742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814948", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96759033203125, 40.80131530761719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98517608642578, 40.74482727050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814080", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96997833251953, 40.75996017456055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813984", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00625610351562, 40.73338317871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814186", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9557113647461, 40.77920913696289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814584", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99371337890625, 40.72739028930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.97322082519531, 40.7535514831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814736", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9803237915039, 40.74549102783203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99199676513672, 40.74441146850586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813802", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96871948242188, 40.75835037231445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815029", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97350311279297, 40.76149368286133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815031", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9813003540039, 40.74687957763672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813902", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97049713134766, 40.7580451965332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99317169189453, 40.76258850097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814636", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97770690917969, 40.74608612060547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814157", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95858764648438, 40.764469146728516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814937", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97701263427734, 40.75833511352539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814652", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95587921142578, 40.779632568359375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9855728149414, 40.73577880859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813864", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.0012435913086, 40.73582077026367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814762", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96728515625, 40.76348114013672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813868", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9906005859375, 40.73055648803711]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815123", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99427032470703, 40.75090408325195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814828", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98246765136719, 40.76567077636719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97669219970703, 40.788143157958984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98490142822266, 40.769020080566406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813886", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94830322265625, 40.80411148071289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99549865722656, 40.739173889160156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813846", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98204803466797, 40.76285171508789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813872", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9898681640625, 40.68895721435547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814639", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98529052734375, 40.74711990356445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814908", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99019622802734, 40.75612258911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814302", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97290802001953, 40.78240203857422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814849", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95465850830078, 40.76409912109375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814351", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97660064697266, 40.74385452270508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86284637451172, 40.768714904785156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815078", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99930572509766, 40.71748733520508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814035", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97377014160156, 40.763221740722656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814746", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0032958984375, 40.73281478881836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813799", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96028137207031, 40.781639099121094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813990", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98894500732422, 40.74449157714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814616", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98394012451172, 40.78023147583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95687866210938, 40.766510009765625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00270080566406, 40.73369216918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814799", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99374389648438, 40.72730255126953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814191", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97581481933594, 40.76005172729492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813873", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00344848632812, 40.73194885253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813852", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99486541748047, 40.73310852050781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814898", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95297241210938, 40.7801628112793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814091", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00004577636719, 40.76136016845703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814400", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87081909179688, 40.773719787597656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814396", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95271301269531, 40.76564025878906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813816", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97189331054688, 40.79437255859375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814434", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0075912475586, 40.72572708129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814957", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9921646118164, 40.7532844543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98210906982422, 40.77150344848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97835540771484, 40.77779769897461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814308", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99195098876953, 40.749664306640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814274", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.9672622680664, 40.763343811035156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814920", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97941589355469, 40.776580810546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814372", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.77680969238281, 40.64546203613281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814162", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.78801727294922, 40.64145278930664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814499", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97964477539062, 40.72299575805664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814929", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9932632446289, 40.72945022583008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.96774291992188, 40.76295852661133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814342", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78340148925781, 40.6485481262207]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814560", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95524597167969, 40.76924514770508]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814410", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96833801269531, 40.75525665283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815044", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98051452636719, 40.73855209350586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814520", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98517608642578, 40.741966247558594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814931", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98179626464844, 40.74671173095703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815110", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98021697998047, 40.78076934814453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814778", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9801025390625, 40.74570846557617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97100067138672, 40.751468658447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97100067138672, 40.751468658447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814257", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95613861083984, 40.77580642700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814558", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00017547607422, 40.7429084777832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814949", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.94634246826172, 40.78101348876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815033", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78182983398438, 40.644710540771484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814844", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9854736328125, 40.74679946899414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814565", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98185729980469, 40.74605941772461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815160", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98211669921875, 40.77922439575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814388", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.77908325195312, 40.647483825683594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814533", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0041275024414, 40.74176025390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96857452392578, 40.76754379272461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814105", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99937438964844, 40.73399353027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.99937438964844, 40.73399353027344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813941", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-73.95088195800781, 40.774696350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95088195800781, 40.774696350097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814183", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96989440917969, 40.7656364440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96989440917969, 40.7656364440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813772", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00440216064453, 40.707149505615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813870", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9730224609375, 40.75798034667969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814693", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97845458984375, 40.76530075073242]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814030", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96427917480469, 40.76496124267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814700", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97561645507812, 40.75598907470703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815112", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98078918457031, 40.74454116821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98078918457031, 40.74454116821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814238", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0101547241211, 40.71416091918945]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814407", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.84793090820312, 40.72346878051758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814918", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99661254882812, 40.73230743408203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9591293334961, 40.77922439575195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813985", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97283935546875, 40.76459884643555]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98885345458984, 40.754661560058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9948959350586, 40.750064849853516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814800", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00658416748047, 40.732547760009766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813787", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.978759765625, 40.7528076171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815117", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9860610961914, 40.73029327392578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814797", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.989013671875, 40.72166061401367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814971", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9455337524414, 40.77825164794922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814312", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99272918701172, 40.74277877807617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814087", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.957763671875, 40.779659271240234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814112", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01715087890625, 40.70542907714844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97908782958984, 40.752601623535156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814512", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9826431274414, 40.762901306152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813777", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96939849853516, 40.753448486328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815181", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97859954833984, 40.75897216796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814615", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00407409667969, 40.73764419555664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814249", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.982177734375, 40.774261474609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814371", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99017333984375, 40.73788833618164]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814704", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97621154785156, 40.74443817138672]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815003", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9822998046875, 40.73103332519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814320", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98986053466797, 40.75625991821289]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813823", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96926879882812, 40.7855339050293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814590", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98958587646484, 40.76282501220703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814681", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00501251220703, 40.7409782409668]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814085", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9742202758789, 40.74723815917969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814459", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99418640136719, 40.75112533569336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814694", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.00469970703125, 40.751895904541016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814622", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444030761719, 40.740604400634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00444030761719, 40.740604400634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813891", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9529037475586, 40.78321075439453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815061", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95906066894531, 40.769161224365234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814055", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01415252685547, 40.711944580078125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814553", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.93973541259766, 40.75143051147461]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815096", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00206756591797, 40.74542999267578]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814213", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00517272949219, 40.72039794921875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814563", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96992492675781, 40.75751876831055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0022201538086, 40.73990249633789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814747", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.0066146850586, 40.731788635253906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814600", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98477935791016, 40.73244094848633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814235", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95201110839844, 40.78445053100586]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813814", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96472930908203, 40.75559616088867]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814883", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01683807373047, 40.70766830444336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814472", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99214172363281, 40.72405242919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99214172363281, 40.72405242919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814586", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9799575805664, 40.77460861206055]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814420", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98296356201172, 40.75642013549805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813938", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98890686035156, 40.760189056396484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.77909851074219, 40.6474723815918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814608", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95748138427734, 40.76401901245117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814880", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98429870605469, 40.74320983886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814185", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97261047363281, 40.78491973876953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814852", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99713897705078, 40.72528839111328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95521545410156, 40.78000259399414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813967", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015808105469, 40.7404670715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99015808105469, 40.7404670715332]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814503", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97686767578125, 40.75599670410156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814438", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97673797607422, 40.748619079589844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814900", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96224212646484, 40.77049255371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813936", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98226165771484, 40.76824951171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814942", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99544525146484, 40.744441986083984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815043", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99142456054688, 40.74480056762695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814571", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98146057128906, 40.74306106567383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813934", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9635009765625, 40.718475341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9635009765625, 40.718475341796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813904", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00615692138672, 40.73429870605469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814178", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96875762939453, 40.79005813598633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814635", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.951416015625, 40.770198822021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813980", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99372863769531, 40.74151611328125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814116", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01399230957031, 40.7137451171875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814123", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97339630126953, 40.763893127441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814874", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97583770751953, 40.76238250732422]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815186", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97825622558594, 40.785987854003906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813978", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.0045394897461, 40.73065948486328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814101", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00349426269531, 40.71778106689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00349426269531, 40.71778106689453]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814277", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9879150390625, 40.7381706237793]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814245", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78199768066406, 40.64463806152344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813859", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97677612304688, 40.75139617919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97677612304688, 40.75139617919922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814973", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9843978881836, 40.7398681640625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98583221435547, 40.74147415161133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814754", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99449157714844, 40.725799560546875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813790", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9852523803711, 40.75053024291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9852523803711, 40.75053024291992]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814150", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9737777709961, 40.78425979614258]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814264", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96845245361328, 40.76145935058594]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815025", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99089050292969, 40.74198913574219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813791", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96245574951172, 40.77296447753906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813783", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9900894165039, 40.756019592285156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814735", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98564910888672, 40.74461364746094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813909", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96458435058594, 40.80728530883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96458435058594, 40.80728530883789]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814439", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00244903564453, 40.73993682861328]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814855", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99060821533203, 40.72437286376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.99060821533203, 40.72437286376953]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814281", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.96202087402344, 40.76784133911133]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814156", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.79013061523438, 40.646854400634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815086", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99485778808594, 40.75539016723633]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814826", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9901123046875, 40.71903991699219]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814234", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99150085449219, 40.749969482421875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815090", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-74.00030517578125, 40.742740631103516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813837", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95494079589844, 40.77748107910156]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814007", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95413208007812, 40.77032470703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815095", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.86255645751953, 40.76890182495117]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815178", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98532104492188, 40.76772689819336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814656", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96410369873047, 40.77372360229492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813928", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.00559997558594, 40.73834991455078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814574", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97953796386719, 40.7775993347168]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814603", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95367431640625, 40.766841888427734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00823211669922, 40.73759078979492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813940", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-74.01187896728516, 40.71540069580078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814801", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9671401977539, 40.7610969543457]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814072", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98455810546875, 40.736995697021484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814175", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99787902832031, 40.74100875854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814074", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.95958709716797, 40.77091598510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813924", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99568939208984, 40.74901580810547]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813913", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97667694091797, 40.749996185302734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815032", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98236083984375, 40.77891159057617]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814725", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.94475555419922, 40.77585983276367]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814923", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.974365234375, 40.76258087158203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814988", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98289489746094, 40.77678680419922]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815115", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95523834228516, 40.78572082519531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572204589844, 40.74551010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572204589844, 40.74551010131836]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814655", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.97044372558594, 40.752174377441406]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814504", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99212646484375, 40.72980880737305]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815127", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01026153564453, 40.720218658447266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814821", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95568084716797, 40.77936935424805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814366", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95281982421875, 40.78609085083008]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813973", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98230743408203, 40.76723861694336]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814099", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87066650390625, 40.773643493652344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814374", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98757934570312, 40.779197692871094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815110", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96910858154297, 40.75931167602539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9913330078125, 40.735660552978516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814838", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95659637451172, 40.77804946899414]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814159", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9930419921875, 40.75688171386719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814733", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00413513183594, 40.7477912902832]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814757", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96273803710938, 40.77088165283203]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814819", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9973373413086, 40.72182083129883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.79049682617188, 40.64372634887695]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814307", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97564697265625, 40.751678466796875]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814418", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799896240234, 40.74372100830078]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813836", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00792694091797, 40.75151443481445]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814417", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98872375488281, 40.72151565551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814288", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.95159149169922, 40.7923698425293]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814179", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96546173095703, 40.75919723510742]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815136", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99372863769531, 40.751461029052734]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813796", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87093353271484, 40.7735595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.87093353271484, 40.7735595703125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814683", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99142456054688, 40.7500114440918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814613", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98491668701172, 40.76144027709961]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815096", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96102142333984, 40.76893997192383]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814017", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99252319335938, 40.73149108886719]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814491", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.0081787109375, 40.70785140991211]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813767", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97773742675781, 40.78376770019531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814170", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97547912597656, 40.76231384277344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815023", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.97339630126953, 40.779666900634766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813778", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00806427001953, 40.71495819091797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814865", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.04951477050781, 40.790225982666016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813903", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.8638687133789, 40.76910400390625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814010", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98194885253906, 40.768680572509766]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813847", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9792251586914, 40.76313018798828]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814168", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9820327758789, 40.76835250854492]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814124", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98910522460938, 40.76839065551758]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814605", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98710632324219, 40.733116149902344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814909", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.9768295288086, 40.775150299072266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814921", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.98233795166016, 40.7695426940918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813793", "demand": "6"}}, {"geometry": {"type": "Point", "coordinates": [-74.01338195800781, 40.71399688720703]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813875", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.90847778320312, 40.89299392700195]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814595", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.00572967529297, 40.705753326416016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814856", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.96127319335938, 40.770050048828125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814317", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96003723144531, 40.7705192565918]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814830", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99687957763672, 40.742305755615234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814005", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-74.01038360595703, 40.71881103515625]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814511", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.96102905273438, 40.77500915527344]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815162", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98050689697266, 40.759952545166016]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813932", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.97888946533203, 40.76167297363281]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815030", "demand": "5"}}, {"geometry": {"type": "Point", "coordinates": [-73.98249053955078, 40.7459602355957]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815028", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925765991211, 40.72426223754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9925765991211, 40.72426223754883]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814321", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.86315155029297, 40.7698974609375]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814224", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-74.00630187988281, 40.739540100097656]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814946", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.9632339477539, 40.766414642333984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814154", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.98712158203125, 40.71974182128906]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814237", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98504638671875, 40.74221420288086]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814347", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95861053466797, 40.769107818603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.95861053466797, 40.769107818603516]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814103", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.78988647460938, 40.64689636230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.78988647460938, 40.64689636230469]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "813890", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9546127319336, 40.784080505371094]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814100", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97865295410156, 40.76272964477539]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814299", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550201416016, 40.7769889831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97550201416016, 40.7769889831543]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815111", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.99093627929688, 40.733577728271484]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814845", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.87301635742188, 40.77409362792969]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815035", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.98799133300781, 40.74448013305664]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814575", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.9710693359375, 40.758087158203125]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815064", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.9775619506836, 40.784019470214844]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814118", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.95527648925781, 40.78279113769531]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814585", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.95797729492188, 40.76862716674805]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814444", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.96955871582031, 40.756465911865234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814983", "demand": "1"}}, {"geometry": {"type": "Point", "coordinates": [-73.97505187988281, 40.742061614990234]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "815077", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99491882324219, 40.755428314208984]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814149", "demand": "3"}}, {"geometry": {"type": "Point", "coordinates": [-73.99243927001953, 40.758548736572266]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814053", "demand": "2"}}, {"geometry": {"type": "Point", "coordinates": [-73.99101257324219, 40.73506164550781]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814742", "demand": "4"}}, {"geometry": {"type": "Point", "coordinates": [-73.98009490966797, 40.75450897216797]}, "type": "Feature", "properties": {"Primary ID": 1, "time": "814070", "demand": "2"}}]} ================================================ FILE: demand-dashboard/public/main.css ================================================ /*************/ /* Variables */ /*************/ :root { --header-height: 60px; --edge-padding: 20px; --section-height: 400px; --section-navbar-height: 40px; --section-icon-width: 70px; --section-title-font-size: 40px; --body-font-size: 18px; --navbar-font-size: 14px; --teal-color: #89E1D0; --dark-teal-color: #4BB7A2; --off-black-color: #333333; --background-grey-color: #F5F5F5; --divider-grey-color: #EEEEEE; --text-grey-color: #565a5c; --text-light-grey-color: #82888a; --field-border-grey-color: #979797; } /**********/ /* Global */ /**********/ * { font-family: "Avenir Next"; } html, body { height: 100%; margin: 0; padding: 0; background-color: var(--background-grey-color); } a { text-decoration: none; } /**********/ /* Header */ /**********/ .header { display: block; width: 100%; height: var(--header-height); background-color: white; } #logo-title { display: inline-flex; margin-left: var(--edge-padding); height: 100%; } #logo-title img { margin: auto 10px auto 0; width: 30px; height: auto; } #logo-title h1 { margin: 0; font-family: "Avenir Next"; font-size: 28px; font-weight: bold; text-align: center; vertical-align: middle; line-height: var(--header-height); color: var(--off-black-color); } #navbar { display: inline-flex; float: right; margin-right: var(--edge-padding); height: 100%; } #navbar h4 { font-size: var(--navbar-font-size); font-weight: 500; margin: auto var(--edge-padding); line-height: calc(var(--header-height) / 2.5); border-top: solid 2px transparent; border-bottom: solid 2px transparent; color: var(--off-black-color); } #navbar a { color: inherit; text-decoration: none; } #navbar h4:hover { border-bottom: solid 2px var(--off-black-color); } /**************/ /* About Page */ /**************/ .section-header { display: table; position: relative; width: 100%; height: var(--section-height); background: linear-gradient( rgba(137, 225, 207, 0.85), /* teal-color */ rgba(137, 225, 207, 0.85) ), url("../assets/Background.png"); } .section-header img { width: var(--section-icon-width); height: auto; } .section-header h1 { margin: var(--edge-padding) auto 0px auto; font-size: var(--section-title-font-size); } .section-logo-title { margin: auto; display: table-cell; vertical-align: middle; text-align: center; } #about-body { margin: 60px auto; width: 60%; text-align: center; } #about-body p { margin: 50px auto; font-size: var(--body-font-size); } .linked-text { color: var(--dark-teal-color); } #github-button { margin: var(--edge-padding) auto; padding: 7px 30px; font-weight: 500; border-radius: 3px; box-shadow: 0px 2px 4px -2px var(--off-black-color); background-color: var(--dark-teal-color); color: white; } #github-button:hover { opacity: 0.8; } /**********************/ /* Documentation Page */ /**********************/ .documentation-title { margin: 60px auto 20px auto; display: block; width: 60%; font-size: var(--section-title-font-size); font-weight: normal; } .section-navbar-container { margin: 0; background-color: var(--dark-teal-color); height: var(--section-navbar-height); } #documentation-navbar { display: inline-flex; margin-left: 20%; width: 60%; height: 100%; } .section-navbar h4 { margin: 0 calc(var(--edge-padding) * 2) 0 0; font-size: var(--navbar-font-size); font-weight: 500; line-height: var(--section-navbar-height); color: var(--text-grey-color); border-top: solid 2px transparent; border-bottom: solid 2px transparent; } .section-navbar h4:hover { color: var(--off-black-color); } .section-navbar a { color: inherit; } .documentation-body { display: block; margin: 0 auto 60px auto; padding: var(--edge-padding); width: 60%; background-color: white; border-radius: 5px; } .subsection { display: inline-block; width: 100%; } .subsection h1 { margin: 0 auto 10px auto; font-size: var(--body-font-size); font-weight: 600; color: var(--text-grey-color); } .subsection p { margin: 0; font-size: var(--body-font-size); color: var(--text-light-grey-color); } .divider { margin: var(--edge-padding) auto; width: 100%; height: 1px; background-color: var(--divider-grey-color); } /******************/ /* Dashboard Page */ /******************/ #dashboard-header-container { background-color: var(--teal-color); } #dashboard-header { display: inline-flex; height: 100%; width: 100%; } #dashboard-header a { text-decoration: none; } /* Input fields */ .input-field { height: 40px; width: 100%; margin: 10px auto; background-color: var(--divider-grey-color); border-radius: 5px; border: 1px solid var(--field-border-grey-color); } .input-field-icon { position: relative; min-width: 40px; height: 100%; border-radius: 5px 0 0 5px; border-right: 1px solid var(--field-border-grey-color); background-color: #D8D8D8; } .input-field-icon img { position: absolute; margin: auto; width: auto; height: 24px; top:0; right: 0; bottom:0; left: 0; } .input-field { display: inline-flex; } select, input { padding: 0 10px; width: 100%; outline: none; -webkit-appearance: none; -webkit-border-radius: 0; border: none; border-radius: 0 5px 5px 0; font-size: var(--body-font-size); font-weight: 500; background-color: var(--divider-grey-color); color: #A9A9A9; } /* Analysis Dashboard */ #dashboard-analysis { margin-left: var(--edge-padding); } .interactive-section { display: inline-flex; width: 100%; } #dataset-card { width: calc(25% - (var(--edge-padding) * 4)); } #datetime-slider-card { width: calc(75% - (var(--edge-padding) * 4)); } .all-maps-section { flex-wrap: wrap; display: flex; } .all-maps-section .dashboard-card { width: calc(50% - (var(--edge-padding) * 4)); } .all-maps-section .map { height: 300px; } .map { margin: 10px 0; background-color: grey; border-radius: 3px; } .slider-title { width: 54px; font-size: var(--body-font-size); font-weight: 500; color: var(--text-grey-color); } .slider-value { width: 120px; font-size: var(--body-font-size); font-weight: normal; color: var(--text-grey-color); } .datetime-slider-field { margin: 5px 0; display: inline-flex; width: 100%; } #date-slider-field { margin-top: 10px; } .datetime-slider { margin: 5px 0; width: calc(100% - 174px); } .datetime-slider .ui-slider-handle { border-color: var(--teal-color); background: var(--teal-color); border: 1px solid var(--teal-color); outline: none; } /* Prediction Dashboard */ .prediction-dashboard { display: inline-flex; width: 100%; } .query-section { width: 25%; } .dashboard-card { display: block; margin: var(--edge-padding); padding: var(--edge-padding); background-color: white; border-radius: 3px; box-shadow: -1px 2px 4px -1px var(--divider-grey-color); } .card-title { display: inline-block; margin: 0; font-size: var(--body-font-size); font-weight: 600; color: var(--text-grey-color); } .card-divider { display: inline-block; width: 100%; height: 1px; background-color: var(--divider-grey-color); } #time-field, #longitude-field, #algorithm-field { margin-bottom: 0px; } #prediction-map { height: 500px; } .map-section { width: 75%; } ================================================ FILE: demand-dashboard/public/prediction.js ================================================ $(function() { // todo: apply code to demand popup on map // todo: use a default center based on data or get user's location var mapCenter = [-73.9440917, 40.7682802]; $("#latitude-input").val(mapCenter[1]); $("#longitude-input").val(mapCenter[0]); var date = "2017-03-22" var time = "16:00" var lat = 40.7682802 var lng = -73.9440917 var temperature = 20 var weather = 0 var weatherArray = [1,0,0,0,0,0,0] var algorithm = 0 $("#date-select").on("change", function(){ console.log(typeof($("#date-select").val())) date = $("#date-select").val() }); $("#time-select").on("change", function(){ console.log($("#time-select").val()) time = $("#time-select").val() }); $("#temperature-input").on("input", function(data){ temperature = parseFloat($("#temperature-input").val()); console.log(temperature); console.log(typeof(temperature)); }); $("#weather-select").on("change", function(){ weather = parseInt($("#weather-select").val()) console.log(weather) console.log(typeof(weather)) weatherArray = [0,0,0,0,0,0,0] weatherArray[weather] = 1 console.log(weatherArray) }); $("#algorithm-select").on("change", function(){ algorithm = parseInt($("#algorithm-select").val()) }); var predictionMap = new mapboxgl.Map({ container: 'prediction-map', style: 'mapbox://styles/mapbox/streets-v9', zoom: 11, center: mapCenter }); predictionMap.addControl(new mapboxgl.NavigationControl({position: 'top-left'})); var pop = new mapboxgl.Popup() predictionMap.on('click', function(data) { lat = data.lngLat.lat; lng = data.lngLat.lng; $("#latitude-input").val(lat); $("#longitude-input").val(lng); pop.remove() pop.setLngLat(data.lngLat) try { predictionMap.removeSource("demand"); predictionMap.removeLayer("prediction"); } catch (e) { // ignored } predictionMap.addSource("demand", { type: "geojson", data: "/predict?" + buildQueryString(lat, lng) }); predictionMap.addLayer({ "id": "prediction", "type": "circle", "source": "demand", "paint": { "circle-color": { property: 'demand', type: 'exponential', stops: [ [15.0, '#fee5d9'], [30.0, '#fcae91'], [45.0, '#fb6a4a'], [60.0, '#de2d26'], [75.0, '#a50f15'] ] }, "circle-radius": { 'base': 1.75, 'stops': [[12, 3], [22, 180]] }, 'circle-opacity' : 0.8 } }); }); predictionMap.on('data', function (data) { try { var demands = predictionMap.querySourceFeatures('demand', data.point); if (demands[0]){ pop.setHTML('

Demand:' + demands[0]["properties"]["demand"] + '

') .addTo(predictionMap); } } catch (e) { // ignored // console.log(e) } }); predictionMap.on('mousemove', function (data) { try { // console.log(data.point) var demands = predictionMap.querySourceFeatures('demand', data.point); if (demands[0]){ pop.remove() var i = findNearestIndex(demands, data); if (i != -1){ pop.setHTML('

Demand:' + demands[i]["properties"]["demand"] + '

') .addTo(predictionMap); pop.setLngLat([demands[i]["geometry"]["coordinates"][0], demands[i]["geometry"]["coordinates"][1]]) } } } catch (e) { // ignored // console.log(e) } }); function makeCluster(lat, lng) { lats = [lat]; lngs = [lng]; lats.push(lat + 2*0.0016, lat + 0.0016, lat + 0.0016, lat + 0.0016, lat, lat, lat, lat, lat - 0.0016, lat - 0.0016, lat - 0.0016, lat - 2*0.0016); lngs.push(lng, lng - 0.0016, lng, lng + 0.0016, lng - 2*0.0016, lng - 0.0016, lng + 0.0016, lng + 2*0.0016, lng - 0.0016, lng, lng + 0.0016, lng); return [lats, lngs]; } function buildQueryJson(lat, lng){ result = {} var datetime = date + " " + time; var eventTime = new Date(datetime); result = { "eventTime":eventTime.toISOString(), "lat":lat, "lng":lng, "temperature":temperature, "clear":weatherArray[0], "fog":weatherArray[1], "rain": weatherArray[2], "snow": weatherArray[3], "hail": weatherArray[4], "thunder":weatherArray[5], "tornado":weatherArray[6] } return JSON.stringify(result) } function buildQueryString(lat, lng){ var datetime = date + " " + time; var eventTime = new Date(datetime); return "eventTime=" + eventTime.toISOString() + "&lat=" + lat + "&lng=" + lng + "&temperature=" + temperature + "&clear=" + weatherArray[0] + "&fog=" + weatherArray[1] + "&rain=" + weatherArray[2] + "&snow=" + weatherArray[3] + "&hail=" + weatherArray[4] + "&thunder=" + weatherArray[5] + "&tornado=" + weatherArray[6] + "&algorithm=" + algorithm } }); function findNearestIndex(demands, data){ var nIndex = 0; var nDistance = Number.MAX_SAFE_INTEGER for (i = 0; i < demands.length; i++){ var dist = Math.pow((data.lngLat.lng - demands[i]["geometry"]["coordinates"][0]), 2) + Math.pow((data.lngLat.lat - demands[i]["geometry"]["coordinates"][1]),2); if (dist < nDistance){ nDistance = dist; nIndex = i; } } if (nDistance > 0.00002){ nIndex = -1 console.log("greater") } return nIndex; } ================================================ FILE: demo-data/build.sbt ================================================ name := "demo-data" libraryDependencies ++= Seq( "org.apache.commons" % "commons-io" % "1.3.2", "com.typesafe.akka" %% "akka-stream-kafka" % "0.14", "com.typesafe.play" %% "play-json" % "2.5.12", "org.slf4j" % "slf4j-simple" % "1.7.21" ) ================================================ FILE: demo-data/src/main/scala/DemoData.scala ================================================ import java.time.ZonedDateTime import akka.NotUsed import akka.actor.ActorSystem import akka.kafka.ProducerSettings import akka.kafka.scaladsl.Producer import akka.stream.ActorMaterializer import akka.stream.scaladsl.{Flow, Sink, Source} import helpers.KafkaHelper import org.apache.kafka.clients.producer.ProducerRecord import org.apache.kafka.common.serialization.StringSerializer import play.api.libs.json.JsValue import scala.concurrent.ExecutionContext.Implicits.global import scala.util.{Failure, Success, Try} object DemoData extends App { implicit val system = ActorSystem() implicit val materializer = ActorMaterializer() def flowFromDestination(destination: String): Try[Flow[JsValue, JsValue, NotUsed]] = { if (destination.toLowerCase == "kafka") { val producerSettings = ProducerSettings[String, JsValue](materializer.system, new StringSerializer(), KafkaHelper.jsValueSerializer) .withBootstrapServers(KafkaHelper.kafkaUrl(materializer.system.settings.config)) val sink = Producer.plainSink(producerSettings).contramap[JsValue](new ProducerRecord("rider", "", _)) Success(Flow[JsValue].alsoTo(sink)) } else if (destination.toLowerCase == "pio") { val maybeAccessKey = sys.env.get("PIO_ACCESS_KEY") maybeAccessKey.fold[Try[Flow[JsValue, JsValue, NotUsed]]] { Failure(new Exception("You must set the PIO_ACCESS_KEY env var!")) } { accessKey => println("Sending to PIO: " + PioFlow.pioUrl) Success(PioFlow(accessKey)) } } else { Failure(new Exception(s"The destination $destination must be either kafka or pio")) } } val sourceTry: Try[Source[JsValue, NotUsed]] = args match { case Array(destination, dataType, numMonths, sampleRate) if dataType == "ny" => val source = NewYorkDataSource(numMonths.toInt, sampleRate.toInt) val flowTry = flowFromDestination(destination).map(source.via) flowTry.foreach(_ => println(s"Sending New York data to $destination")) flowTry case Array(destination, dataType, numRecords, numMonths, numClusters) if dataType == "fake" => val endDate = ZonedDateTime.now() val startDate = endDate.minusMonths(numMonths.toInt) val source = FakeDataSource(numRecords.toInt, startDate, endDate, numClusters.toInt, 10) val flowTry = flowFromDestination(destination).map(source.via) flowTry.foreach(_ => println(s"Sending Fake data to $destination")) flowTry case _ => Failure(CommandNotRecognized()) } sourceTry.foreach { source => val countSink = Sink.fold[Int, JsValue](0) { case (count, _) => count + 1 } val flow = source.runWith(countSink) flow.onComplete { result => result.foreach { records => println(s"Sent $records records") } system.terminate() } } sourceTry.recover { case t: Throwable => println(t.getMessage) t.printStackTrace() system.terminate() } case class CommandNotRecognized() extends Throwable { override def getMessage: String = { """Command args must be either: | ny | fake """.stripMargin } } } ================================================ FILE: demo-data/src/main/scala/FakeDataSource.scala ================================================ import java.time.{Duration, ZonedDateTime} import akka.NotUsed import akka.stream.scaladsl.Source import org.joda.time.DateTime import play.api.libs.json.{JsObject, Json} import scala.collection.immutable.Iterable import scala.util.Random object FakeDataSource { val baseLat: Double = 40.7550506592 val baseLng: Double = -73.96534729 def randomJson(dateTime: ZonedDateTime): JsObject = { val randomLat = baseLat + (Random.nextDouble() - 0.5) val randomLng = baseLng + (Random.nextDouble() - 0.5) val randomTemperature = Random.nextDouble() val randomClear = 1 val randomFog = 0 val randomRain = 0 val randomSnow = 0 val randomHail = 0 val randomThunder = 0 val randomTornado = 0 val randomHeat = Random.nextDouble() val randomWindchill = Random.nextDouble() val randomPrecipitation = Random.nextDouble() Json.obj( "properties" -> Json.obj( // Location Properties "lat" -> randomLat, "lng" -> randomLng, // Weather Properties "temperature" -> randomTemperature, "clear" -> randomClear, "fog" -> randomFog, "rain" -> randomRain, "snow" -> randomSnow, "hail" -> randomHail, "thunder" -> randomThunder, "tornado" -> randomTornado, "heat" -> randomHeat, "windchill" -> randomWindchill, "precipitation" -> randomPrecipitation ), "status" -> "pickup", "datetime" -> new DateTime(dateTime.toEpochSecond * 1000) ) } def apply(numRecords: Int, startDate: ZonedDateTime, endDate: ZonedDateTime, numClusters: Int, demandDistPerCluster: Int): Source[JsObject, NotUsed] = { val timeBetween = Duration.between(startDate, endDate) val numBaseRecords = (numRecords * 0.20).toInt // 20% of numRecords get random dates val baseRandomIterable = Iterable.fill(numBaseRecords) { val randomSecondsToAddToStart: Long = (timeBetween.getSeconds * Random.nextDouble()).toLong val randomZonedDateTime = startDate.plusSeconds(randomSecondsToAddToStart) randomJson(randomZonedDateTime) } val baseRandomSource = Source[JsObject](baseRandomIterable) // 80% of numRecords get clustered with the same date and location // todo: is this correctly partitioning? val numClusteredRecords = numRecords - numBaseRecords val numRecordsPerCluster = (numClusteredRecords.toFloat / numClusters).ceil.toInt val clustersIterator = Iterator.fill(numClusteredRecords)(Unit).grouped(numRecordsPerCluster).flatMap { partition => val randomSecondsToAddToStart: Long = (timeBetween.getSeconds * Random.nextDouble()).toLong val randomZonedDateTime = startDate.plusSeconds(randomSecondsToAddToStart) val json = randomJson(randomZonedDateTime) partition.map(_ => json) } val clusteredSource = Source.fromIterator(() => clustersIterator) baseRandomSource ++ clusteredSource } } ================================================ FILE: demo-data/src/main/scala/NewYorkDataSource.scala ================================================ import java.io.{File, FileOutputStream} import java.net.URL import akka.NotUsed import akka.stream.scaladsl.{FileIO, Framing, Source} import akka.util.ByteString import org.apache.commons.io.IOUtils import org.joda.time.format.{DateTimeFormat, DateTimeFormatter} import play.api.libs.json.{JsObject, Json} import scala.collection.immutable.Range.Inclusive import scala.collection.immutable.{IndexedSeq, Seq} import scala.util.Try // Right now only yellow cab data // List of sources: https://github.com/toddwschneider/nyc-taxi-data/blob/master/raw_data_urls.txt object NewYorkDataSource { val years: Inclusive = 2009 to 2016 val months: Inclusive = 1 to 12 val yearsMonths: IndexedSeq[(Int, Int)] = for { year <- years month <- months if !(year >= 2016 && month >= 7) // the data does not contain GPS coordinates starting in July 2016 } yield (year, month) val dateTimeFormatter: DateTimeFormatter = DateTimeFormat.forPattern("yyyy-MM-dd HH:mm:ss") def filename(yearMonth: (Int, Int)): String = { val (year, month) = yearMonth val monthString = if (month >= 10) month else "0" + month s"yellow_tripdata_$year-$monthString.csv" } // todo: maybe random files? def apply(numMonths: Int, sampleRate: Int): Source[JsObject, NotUsed] = { // takes the most recent months val filenames: Seq[String] = yearsMonths.takeRight(numMonths).map(filename) // todo: don't save these locally if there isn't the space for it val files = filenames.map { filename => val url = new URL(s"https://s3.amazonaws.com/predictionio-temp-file/ny_yellowcab_with_weather_data.csv") val tmpFile = new File("/tmp", filename) if (!tmpFile.exists()) { val inputStream = url.openConnection().getInputStream val tmpFileOutputStream = new FileOutputStream(tmpFile) println(s"Downloading $url to $tmpFile") IOUtils.copy(inputStream, tmpFileOutputStream) tmpFileOutputStream.close() inputStream.close() } tmpFile } val fileSources = Source.zipN[ByteString](files.map(file => FileIO.fromPath(file.toPath))).mapConcat(identity) val allLinesSource = fileSources.via(Framing.delimiter(ByteString(System.lineSeparator), 10000)).map(_.utf8String) val partitionedLinesSource = allLinesSource.grouped(sampleRate).mapConcat(_.headOption.toList) // todo: data structure changes? val parsedLines = partitionedLinesSource.mapConcat { line => val parseTry = Try { val parts = line.split(",") val lng = parts(5).toDouble val lat = parts(6).toDouble val datetime = dateTimeFormatter.parseDateTime(parts(1)) val temperature = parts(19).toDouble val clear = parts(20).toInt val fog = parts(21).toInt val rain = parts(22).toInt val snow = parts(23).toInt val hail = parts(24).toInt val thunder = parts(25).toInt val tornado = parts(26).toInt val heat = parts(21).toDouble val windchill = parts(22).toDouble val precipitation = parts(23).toDouble (lat, lng, datetime, temperature, clear, fog, rain, snow, hail, thunder, tornado, heat, windchill, precipitation) } val onlyGoodLocations = parseTry.filter { case (lat, lng, datetime, temperature, clear, fog, rain, snow, hail, thunder, tornado, heat, windchill, precipitation) => lat != 0 && lng != 0 } val jsonTry = onlyGoodLocations.map { case (lat, lng, datetime, temperature, clear, fog, rain, snow, hail, thunder, tornado, heat, windchill, precipitation) => Json.obj( "properties" -> Json.obj( // Location Properties "lat" -> lat, "lng" -> lng, // Weather Properties "temperature" -> temperature, "clear" -> clear, "fog" -> fog, "rain" -> rain, "snow" -> snow, "hail" -> hail, "thunder" -> thunder, "tornado" -> tornado, "heat" -> heat, "windchill" -> windchill, "precipitation" -> precipitation ), "status" -> "pickup", "datetime" -> datetime ) } // we won't be able to parse some rows jsonTry.toOption.toList } parsedLines } } ================================================ FILE: demo-data/src/test/scala/FakeDataSourceSpec.scala ================================================ import java.time.ZonedDateTime import akka.actor.ActorSystem import akka.stream.ActorMaterializer import org.joda.time.DateTime import org.scalatest.{AsyncFlatSpec, MustMatchers} import play.api.libs.json.JsObject class FakeDataSourceSpec extends AsyncFlatSpec with MustMatchers { implicit val actorSystem = ActorSystem() implicit val materializer = ActorMaterializer() it should "generate some records" in { val numRecords = 1024 val numClusters = 10 val demandDistPerCluster = 10 val source = FakeDataSource(numRecords, ZonedDateTime.now().minusMonths(1), ZonedDateTime.now(), numClusters, demandDistPerCluster) val recordsFuture = source.runFold(Seq.empty[JsObject])(_ :+ _) recordsFuture.map { records => records.size must equal (numRecords) (records.head \ "datetime").asOpt[DateTime] must be ('defined) (records.head \ "datetime").as[DateTime].getYear must equal (ZonedDateTime.now().getYear) } } } ================================================ FILE: demo-data/src/test/scala/NewYorkDataSourceSpec.scala ================================================ import akka.actor.ActorSystem import akka.stream.ActorMaterializer import akka.stream.scaladsl.Sink import org.scalatest.{AsyncFlatSpec, BeforeAndAfterAll, MustMatchers} import play.api.libs.json.JsObject class NewYorkDataSourceSpec extends AsyncFlatSpec with MustMatchers with BeforeAndAfterAll { implicit val actorSystem = ActorSystem() implicit val materializer = ActorMaterializer() it should "get some records" in { val numMonths = 1 val sampleRate = 100 val source = NewYorkDataSource(numMonths, sampleRate) val sink = Sink.seq[JsObject] val recordsFuture = source.runWith(sink) recordsFuture.map { records => records must not be 'empty } } override def afterAll(): Unit = { actorSystem.terminate() } } ================================================ FILE: flink-client/build.sbt ================================================ name := "flink-client" libraryDependencies ++= Seq( "com.github.jkutner" % "env-keystore" % "0.1.2", "org.apache.flink" %% "flink-streaming-scala" % "1.2.0", "org.apache.flink" %% "flink-connector-kafka-0.10" % "1.2.0", "com.typesafe.play" %% "play-json" % "2.5.12" ) ================================================ FILE: flink-client/src/main/resources/log4j.properties ================================================ log4j.rootLogger=INFO, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n ================================================ FILE: flink-client/src/main/scala/FlinkClient.scala ================================================ import java.util.Properties import org.apache.flink.api.common.typeinfo.TypeInformation import org.apache.flink.streaming.api.scala._ import org.apache.flink.streaming.api.scala.StreamExecutionEnvironment import org.apache.flink.streaming.connectors.kafka.FlinkKafkaConsumer010 import org.apache.flink.streaming.util.serialization.DeserializationSchema import play.api.libs.json.{JsValue, Json} object FlinkClient extends App { val env = StreamExecutionEnvironment.createLocalEnvironment() val kafkaConsumerProperties = new Properties() kafkaConsumerProperties.setProperty("bootstrap.servers", "localhost:9092") kafkaConsumerProperties.setProperty("group.id", "flink") val deserializationSchema = new DeserializationSchema[JsValue] { override def isEndOfStream(nextElement: JsValue): Boolean = false override def deserialize(message: Array[Byte]): JsValue = Json.parse(message) override def getProducedType: TypeInformation[JsValue] = createTypeInformation[JsValue] } val kafkaConsumer = new FlinkKafkaConsumer010[JsValue]("driver", deserializationSchema, kafkaConsumerProperties) case class RouteTotals(num: Int = 0, seconds: Int = 0) { lazy val average: Int = seconds / num } val stream = env.addSource(kafkaConsumer) val onlyRoutesStream = stream.flatMap(_.\("route").toOption).keyBy(_ => "") // todo: should partition by broad location val routeTotalsStream = onlyRoutesStream.fold(RouteTotals()) { case (routeTotals, jsValue) => val seconds = (jsValue \ "duration").as[Float].toInt routeTotals.copy(routeTotals.num + 1, routeTotals.seconds + seconds) } routeTotalsStream.map(_.average).print() env.execute() } ================================================ FILE: kafka-common/build.sbt ================================================ name := "kafka-common" libraryDependencies ++= Seq( "org.apache.kafka" % "kafka-clients" % "0.10.1.1", "com.github.jkutner" % "env-keystore" % "0.1.2", "com.typesafe.play" %% "play-json" % "2.5.12" exclude("com.fasterxml.jackson.core", "jackson-databind") ) ================================================ FILE: kafka-common/src/main/scala/helpers/KafkaHelper.scala ================================================ package helpers import com.github.jkutner.EnvKeyStore import com.typesafe.config.{Config, ConfigFactory} import org.apache.kafka.clients.CommonClientConfigs import org.apache.kafka.common.config.SslConfigs import org.apache.kafka.common.serialization.{Deserializer, Serializer} import play.api.libs.json.{JsValue, Json} import scala.collection.JavaConverters._ import scala.util.Try object KafkaHelper { lazy val sslConfig: Config = { val envTrustStore = EnvKeyStore.createWithRandomPassword("KAFKA_TRUSTED_CERT") val envKeyStore = EnvKeyStore.createWithRandomPassword("KAFKA_CLIENT_CERT_KEY", "KAFKA_CLIENT_CERT") val trustStore = envTrustStore.storeTemp() val keyStore = envKeyStore.storeTemp() ConfigFactory.parseMap( Map( "kafka-clients" -> Map( CommonClientConfigs.SECURITY_PROTOCOL_CONFIG -> "SSL", SslConfigs.SSL_CLIENT_AUTH_CONFIG -> "required", SslConfigs.SSL_TRUSTSTORE_TYPE_CONFIG -> envTrustStore.`type`(), SslConfigs.SSL_TRUSTSTORE_LOCATION_CONFIG -> trustStore.getAbsolutePath, SslConfigs.SSL_TRUSTSTORE_PASSWORD_CONFIG -> envTrustStore.password(), SslConfigs.SSL_KEYSTORE_TYPE_CONFIG -> envKeyStore.`type`(), SslConfigs.SSL_KEYSTORE_LOCATION_CONFIG -> keyStore.getAbsolutePath, SslConfigs.SSL_KEYSTORE_PASSWORD_CONFIG -> envKeyStore.password ).asJava ).asJava ) } def maybeKafkaUrl(config: Config): Try[String] = { Try(config.getString("kafka.url")).map { kafkaUrl => import java.net.URI val kafkaUrls = kafkaUrl.split(",").map { urlString => val uri = new URI(urlString) Seq(uri.getHost, uri.getPort).mkString(":") } kafkaUrls.mkString(",") } } def kafkaUrl(config: Config = ConfigFactory.empty()): String = maybeKafkaUrl(config).getOrElse("localhost:9092") def kafkaConfig(config: Config, configKey: String): Config = { val baseConfig = Try(config.getConfig(configKey)).getOrElse(ConfigFactory.empty()) maybeKafkaUrl(config).map(_ => baseConfig.withFallback(sslConfig)).getOrElse(baseConfig) } val jsValueSerializer = new JsValueSerializer() val jsValueDeserializer = new JsValueDeserializer() } class JsValueSerializer extends Serializer[JsValue] { override def configure(configs: java.util.Map[String, _], isKey: Boolean): Unit = Unit override def close(): Unit = Unit override def serialize(topic: String, jsValue: JsValue): Array[Byte] = jsValue.toString().getBytes } class JsValueDeserializer extends Deserializer[JsValue] { override def configure(configs: java.util.Map[String, _], isKey: Boolean): Unit = Unit override def close(): Unit = Unit override def deserialize(topic: String, data: Array[Byte]): JsValue = Json.parse(data) } ================================================ FILE: kafka-server/build.sbt ================================================ libraryDependencies += "org.apache.kafka" %% "kafka" % "0.10.1.1" ================================================ FILE: kafka-server/src/main/resources/log4j.properties ================================================ log4j.rootLogger=INFO, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n ================================================ FILE: kafka-server/src/main/scala/KafkaServer.scala ================================================ import java.net.InetSocketAddress import java.nio.file.Files import java.util.Properties import kafka.server.{KafkaConfig, KafkaServerStartable} import org.apache.zookeeper.server.{ServerConfig, ZooKeeperServerMain} import org.apache.zookeeper.server.quorum.QuorumPeerConfig object KafkaServer extends App { val quorumConfiguration = new QuorumPeerConfig { override def getDataDir: String = Files.createTempDirectory("zookeeper").toString override def getDataLogDir: String = Files.createTempDirectory("zookeeper-logs").toString override def getClientPortAddress: InetSocketAddress = new InetSocketAddress(2181) } class StoppableZooKeeperServerMain extends ZooKeeperServerMain { def stop(): Unit = shutdown() } val zooKeeperServer = new StoppableZooKeeperServerMain() val zooKeeperConfig = new ServerConfig() zooKeeperConfig.readFrom(quorumConfiguration) val zooKeeperThread = new Thread { override def run(): Unit = zooKeeperServer.runFromConfig(zooKeeperConfig) } zooKeeperThread.start() val kafkaProperties = new Properties() kafkaProperties.put("zookeeper.connect", "localhost:2181") kafkaProperties.put("broker.id", "1") kafkaProperties.put("log.dirs", Files.createTempDirectory("kafka-logs").toString) val kafkaConfig = KafkaConfig.fromProps(kafkaProperties) val kafka = new KafkaServerStartable(kafkaConfig) kafka.startup() zooKeeperThread.join() kafka.shutdown() kafka.awaitShutdown() zooKeeperServer.stop() } ================================================ FILE: kafka-to-cassandra/build.sbt ================================================ name := "kafka-to-cassandra" libraryDependencies ++= Seq( "org.apache.spark" %% "spark-core" % "2.1.0", "org.apache.spark" %% "spark-sql" % "2.1.0", "org.apache.spark" %% "spark-streaming" % "2.1.0", "org.apache.spark" %% "spark-streaming-kafka-0-10" % "2.1.0", "com.datastax.spark" %% "spark-cassandra-connector" % "2.0.0-M3" ) ================================================ FILE: kafka-to-cassandra/src/main/resources/log4j.properties ================================================ log4j.rootLogger=INFO, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.Target=System.out log4j.appender.stdout.layout=org.apache.log4j.PatternLayout log4j.appender.stdout.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n ================================================ FILE: kafka-to-cassandra/src/main/scala/KafkaToCassandra.scala ================================================ import java.util.UUID import com.datastax.driver.core.{Cluster, ConsistencyLevel} import com.datastax.spark.connector.streaming._ import com.datastax.spark.connector.writer.WriteConf import com.datastax.spark.connector.SomeColumns import helpers.{JsValueDeserializer, KafkaHelper} import org.apache.kafka.common.serialization.StringDeserializer import org.apache.spark.sql.SparkSession import org.apache.spark.streaming.kafka010.{ConsumerStrategies, KafkaUtils, LocationStrategies} import org.apache.spark.streaming.{Seconds, StreamingContext} import org.apache.spark.{SparkConf, SparkContext} import play.api.libs.json.JsValue object KafkaToCassandra extends App { // setup cassandra val cluster = Cluster.builder().addContactPoint("127.0.0.1").build() val cassandraSession = cluster.connect() cassandraSession.execute("CREATE KEYSPACE IF NOT EXISTS koober WITH replication = {'class':'SimpleStrategy', 'replication_factor':3};") cassandraSession.execute("CREATE TABLE IF NOT EXISTS koober.routes (uid uuid primary key, driver uuid, rider uuid, lnglat map, status text, route text);") cluster.close() val conf = new SparkConf(true).set("spark.cassandra.connection.host", "127.0.0.1").set("spark.sql.warehouse.dir", "spark-warehouse") val context = new SparkContext("local", "KafkaToCassandra", conf) val streamingContext = new StreamingContext(context, Seconds(1)) val sparkSession = SparkSession.builder.config(conf).getOrCreate() import sparkSession.implicits._ val kafkaParams = Map( "bootstrap.servers" -> KafkaHelper.kafkaUrl(), "key.deserializer" -> classOf[StringDeserializer], "value.deserializer" -> classOf[JsValueDeserializer], "group.id" -> "kafka-to-cassandra" ) val ls = LocationStrategies.PreferBrokers val cs = ConsumerStrategies.Subscribe[String, JsValue](List("driver", "rider"), kafkaParams) val rawKafkaStream = KafkaUtils.createDirectStream(streamingContext, ls, cs) case class Route(uid: String, driver: Option[String], rider: Option[String], lnglat: Map[String, Float], status: Option[String], route: Option[String]) val jobStream = rawKafkaStream.map { consumerRecord => Route( UUID.randomUUID().toString, (consumerRecord.value() \ "driver").asOpt[String], (consumerRecord.value() \ "rider").asOpt[String], (consumerRecord.value() \ "lngLat").asOpt[Map[String, Float]].getOrElse(Map.empty[String, Float]), (consumerRecord.value() \ "status").asOpt[String], (consumerRecord.value() \ "route").asOpt[String] ) } val columnMapping = SomeColumns("uid", "driver", "rider", "lnglat", "status", "route") val cassandraWriteConf = WriteConf.fromSparkConf(conf).copy(consistencyLevel = ConsistencyLevel.ONE) jobStream.saveToCassandra("koober", "routes", columnMapping, cassandraWriteConf) jobStream.foreachRDD(_.toDF().show()) streamingContext.start() streamingContext.awaitTermination() } ================================================ FILE: pio-client/build.sbt ================================================ name := "pio-client" libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-stream-kafka" % "0.14", "com.typesafe.play" %% "play-json" % "2.5.12", "com.typesafe.play" %% "play-ws" % "2.5.12" ) ================================================ FILE: pio-client/src/main/scala/PioClient.scala ================================================ import java.util.UUID import akka.NotUsed import akka.actor.ActorSystem import akka.kafka.scaladsl.Consumer import akka.kafka.{ConsumerSettings, Subscriptions} import akka.stream.ActorMaterializer import akka.stream.scaladsl.{Flow, Sink} import helpers.KafkaHelper import org.apache.kafka.common.serialization.StringDeserializer import org.joda.time.DateTime import play.api.http.Status import play.api.libs.json.{JsObject, JsValue, Json} import play.api.libs.ws.ahc.AhcWSClient import scala.concurrent.ExecutionContext.Implicits.global import scala.concurrent.Future object PioClient extends App { implicit val system = ActorSystem() implicit val materializer = ActorMaterializer() val keyDeserializer = new StringDeserializer() val consumerSettings = ConsumerSettings(system, keyDeserializer, KafkaHelper.jsValueDeserializer) .withBootstrapServers(KafkaHelper.kafkaUrl(system.settings.config)) .withGroupId("pio-client") val subscriptions = Subscriptions.topics("rider") val source = Consumer.plainSource(consumerSettings, subscriptions) val accessKey: String = sys.env("PIO_ACCESS_KEY") source.map(_.value()).via(PioFlow(accessKey)).runWith(Sink.ignore) } object PioFlow { val pioUrl: String = "http://localhost:7070/events.json" def apply(accessKey: String)(implicit materializer: ActorMaterializer): Flow[JsValue, JsValue, NotUsed] = { val wsClient = AhcWSClient() materializer.system.registerOnTermination(wsClient.close()) Flow[JsValue].mapAsync(50) { kafkaJson => val status = (kafkaJson \ "status").as[String] val dateTime = (kafkaJson \ "datetime").as[DateTime] val properties = (kafkaJson \ "properties").as[JsObject] val pioJson = Json.obj( "event" -> status, "entityId" -> UUID.randomUUID(), "entityType" -> "location", "properties" -> properties, "eventTime" -> dateTime.toString ) wsClient.url(pioUrl).withQueryString("accessKey" -> accessKey).post(pioJson).flatMap { response => response.status match { case Status.CREATED => Future.successful(response.json) case _ => Future.failed(new Exception((response.json \ "message").as[String])) } } } } } ================================================ FILE: pio-client/src/test/scala/PioClientSpec.scala ================================================ import akka.actor.ActorSystem import akka.stream.ActorMaterializer import akka.stream.scaladsl.{Sink, Source} import org.joda.time.DateTime import org.scalatest.{AsyncFlatSpec, MustMatchers} import play.api.libs.json.{JsValue, Json} class PioClientSpec extends AsyncFlatSpec with MustMatchers { implicit val actorSystem = ActorSystem() implicit val materializer = ActorMaterializer() it should "send data to PIO" in { if (sys.env.get("PIO_ACCESS_KEY").isDefined) { val source = Source.single( Json.obj( "status" -> "foo", "datetime" -> DateTime.now(), "lngLat" -> Json.obj() ) ) val sink = Sink.fold[Seq[JsValue], JsValue](Seq.empty[JsValue])(_ :+ _) val pioFlow = PioFlow(sys.env("PIO_ACCESS_KEY")) source.via(pioFlow).runWith(sink).map { jsValues => jsValues.size must equal(1) } } else { cancel("You need to set the PIO_ACCESS_KEY env var") } } } ================================================ FILE: pio-engine/build.sbt ================================================ name := "predictionio-load-forecasting" scalaVersion := "2.11.8" val sparkVersion = "2.1.1" libraryDependencies ++= Seq( "org.apache.predictionio" %% "apache-predictionio-core" % "0.11.0-incubating" % "provided", "org.apache.spark" %% "spark-core" % sparkVersion % "provided", "org.apache.spark" %% "spark-mllib" % sparkVersion % "provided" ) stage := { assembly.value assemblyPackageDependency.value } ================================================ FILE: pio-engine/engine.json ================================================ { "id": "default", "description": "Demand Prediction for NYC Taxi", "engineFactory": "edu.cs5152.predictionio.demandforecasting.ForecastingEngine", "datasource": { "params": { "appName": "koober" } }, "algorithms": [ { "name": "algGBTree", "params": { "iterations": 200, "maxDepth": 4 } } , { "name": "algRegression", "params": { "iterations": 500, "miniBatchFraction" : 0.5, "regParam" : 0.5, "stepSize": 0.01 } }, { "name": "ridgeRegression", "params": { "iterations": 500, "miniBatchFraction" : 0.5, "regParam" : 0.5, "stepSize": 0.01 } }, { "name": "randomForest", "params": { "numTrees": 4, "maxDepth": 8, "numBins": 10 } } ] } ================================================ FILE: pio-engine/project/assembly.sbt ================================================ addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.4") addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.1.6") ================================================ FILE: pio-engine/src/main/scala/Algorithm.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.predictionio.controller.{CustomQuerySerializer, P2LAlgorithm, Params} import org.apache.spark.SparkContext import org.apache.spark.mllib.clustering.KMeansModel import org.apache.spark.mllib.feature.StandardScalerModel import org.apache.spark.mllib.linalg.Vectors import org.apache.spark.mllib.regression.{LinearRegressionModel, LinearRegressionWithSGD} import org.joda.time.DateTime case class AlgorithmParams( iterations: Int = 500, regParam: Double = 0.0, miniBatchFraction: Double = 0.5, stepSize: Double = 0.01 ) extends Params class Algorithm(val ap: AlgorithmParams) extends P2LAlgorithm[PreparedData, Model, Query, PredictedResult] with MyQuerySerializer { @transient lazy val logger = Logger[this.type] def train(sc: SparkContext, preparedData: PreparedData): Model = { val lin = new LinearRegressionWithSGD() lin.setIntercept(true) lin.setValidateData(true) lin.optimizer .setNumIterations(ap.iterations) .setMiniBatchFraction(ap.miniBatchFraction) .setStepSize(ap.stepSize) .setRegParam(ap.regParam) val linearRegressionModel = lin.run(preparedData.data) new Model(linearRegressionModel, Preparator.locationClusterModel.get, Preparator.standardScalerModel.get) } def predict(model: Model, query: Query): PredictedResult = { val label : Double = model.predict(query) new PredictedResult(label, Map("algRegression" -> label)) } } class Model(mod: LinearRegressionModel, locationClusterModel: KMeansModel, standardScalerModel: StandardScalerModel) extends Serializable { @transient lazy val logger = Logger[this.type] def predict(query: Query): Double = { val normalizedFeatureVector = standardScalerModel.transform(Preparator.toFeaturesVector(DateTime.parse(query.eventTime), query.temperature, query.clear, query.fog, query.rain, query.snow, query.hail, query.thunder, query.tornado)) val locationClusterLabel = locationClusterModel.predict(Vectors.dense(query.lat, query.lng)) val features = Preparator.combineFeatureVectors(normalizedFeatureVector, locationClusterLabel) mod.predict((features)) } } trait MyQuerySerializer extends CustomQuerySerializer { @transient override lazy val querySerializer = org.json4s.DefaultFormats ++ org.json4s.ext.JodaTimeSerializers.all } ================================================ FILE: pio-engine/src/main/scala/AlgorithmGBTree.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.predictionio.controller.{CustomQuerySerializer, P2LAlgorithm, Params} import org.apache.spark.SparkContext import org.apache.spark.mllib.clustering.KMeansModel import org.apache.spark.mllib.linalg.Vectors import org.apache.spark.mllib.regression.LinearRegressionModel import org.apache.spark.mllib.feature.StandardScalerModel import org.apache.spark.mllib.tree.GradientBoostedTrees import org.apache.spark.mllib.tree.configuration.BoostingStrategy import org.apache.spark.mllib.tree.model.GradientBoostedTreesModel import org.joda.time.DateTime /** * Created by YitingWang on 3/2/17. */ case class GBTreeParams( iterations: Int = 100, maxDepth: Int = 10 ) extends Params class AlgorithmGBTree(val ap: GBTreeParams) extends P2LAlgorithm[PreparedData, ModelGBTree, Query, PredictedResult] with MyQuerySerializer{ override def train(sc: SparkContext, preparedData: PreparedData): ModelGBTree ={ val boostingStrategy = BoostingStrategy.defaultParams("Regression") boostingStrategy.setNumIterations(ap.iterations) boostingStrategy.getTreeStrategy().setMaxDepth(ap.maxDepth) val gradientBoostedTreeModel = GradientBoostedTrees.train(preparedData.data, boostingStrategy) new ModelGBTree(gradientBoostedTreeModel, Preparator.locationClusterModel.get, Preparator.standardScalerModel.get) } override def predict(model: ModelGBTree, query: Query): PredictedResult = { val label : Double = model.predict(query) new PredictedResult(label, Map("algGBTree" -> label)) } } class ModelGBTree(mod: GradientBoostedTreesModel, locationClusterModel: KMeansModel, standardScalerModel: StandardScalerModel) extends Serializable { // will not be DateTime after changes // to Preparator @transient lazy val logger = Logger[this.type] def predict(query: Query): Double = { val normalizedFeatureVector = standardScalerModel.transform(Preparator.toFeaturesVector(DateTime.parse(query.eventTime), query.temperature, query.clear, query.fog, query.rain, query.snow, query.hail, query.thunder, query.tornado)) val locationClusterLabel = locationClusterModel.predict(Vectors.dense(query.lat, query.lng)) val features = Preparator.combineFeatureVectors(normalizedFeatureVector, locationClusterLabel) mod.predict(features) } } ================================================ FILE: pio-engine/src/main/scala/Coder.scala ================================================ package detrevid.predictionio.loadforecasting import scala.math.{cos, sin, Pi} object Coder { def simpleCoding(value: Int, maxValue: Int): Array[Double] = { Array[Double](value.toDouble / maxValue.toDouble) } def circleCoding(value: Int, maxValue: Int): Array[Double] = { Array[Double](cos(2 * Pi * (value.toDouble / maxValue.toDouble)), sin(2 * Pi * (value.toDouble / maxValue.toDouble))) } def dummyCoding(value: Int, maxValue: Int): Array[Double] = { val arr = Array.fill[Double](maxValue)(0.0) if (value != 0) arr(value - 1) = 1.0 arr } def effectCoding(value: Int, maxValue: Int): Array[Double] = { var arr = Array.fill[Double](maxValue)(0.0) if (value != 0) arr(value - 1) = 1.0 else arr = arr map (_ => -1.0) arr } } ================================================ FILE: pio-engine/src/main/scala/DataSource.scala ================================================ package edu.cs5152.predictionio.demandforecasting import org.apache.predictionio.controller.PDataSource import org.apache.predictionio.controller.EmptyEvaluationInfo import org.apache.predictionio.controller.Params import org.apache.predictionio.controller.SanityCheck import org.apache.predictionio.data.store.PEventStore import grizzled.slf4j.Logger import org.apache.spark.SparkContext import org.apache.spark.rdd.RDD import org.joda.time.DateTime case class DataSourceParams( appName: String, evalK: Option[Double] ) extends Params class UserEvent( val eventTime: DateTime, val lat: Double, val lng: Double, val temperature: Double, val clear: Int, val fog: Int, val rain: Int, val snow: Int, val hail: Int, val thunder: Int, val tornado: Int ) extends Serializable class DataSource(val dsp: DataSourceParams) extends PDataSource[TrainingData, EmptyEvaluationInfo, Query, ActualResult] { type UserEvents = RDD[UserEvent] @transient lazy val logger = Logger[this.type] def readData(sc: SparkContext): UserEvents = { PEventStore.find( appName = dsp.appName, entityType = Some("location"))(sc) .map { event => try { new UserEvent( eventTime = event.eventTime, lat = event.properties.get[Double]("lat"), lng = event.properties.get[Double]("lng"), temperature = event.properties.get[Double]("temperature"), clear = event.properties.get[Int]("clear"), fog = event.properties.get[Int]("fog"), rain = event.properties.get[Int]("rain"), snow = event.properties.get[Int]("snow"), hail = event.properties.get[Int]("hail"), thunder = event.properties.get[Int]("thunder"), tornado = event.properties.get[Int]("tornado") ) } catch { case e: Exception => logger.error(s"Failed to get properties $event.properties of" + s" $event.entityId. Exception: $e.") throw e } } .cache() } override def readTraining(sc: SparkContext): TrainingData = { val data: UserEvents = readData(sc) new TrainingData(data) } override def readEval(sc: SparkContext) : Seq[(TrainingData, EmptyEvaluationInfo, RDD[(Query, ActualResult)])] = { require(dsp.evalK.nonEmpty, "DataSourceParams.evalK must not be None") val data: UserEvents = readData(sc) // have eventTime, lng and lat // splitting by time based on what evalK is. evalK should be the percent of data to be in the training points val evalK = dsp.evalK.get val sortedData = data.sortBy(ue=>ue.eventTime.getMillis()); val indexedPoints: RDD[(UserEvent, Long)] = sortedData.zipWithIndex() val count = sortedData.count().toInt val trainingPoints = indexedPoints.filter(_._2 <= evalK*count).map(_._1) val testingPoints = indexedPoints.filter(_._2 > evalK*count).map(_._1) (0 until count).map { idx => val testingNormalized = KooberUtil.createNormalizedMap(testingPoints) val testingCountMap = KooberUtil.createCountMap(testingNormalized.values) val testingNormalizedMap = testingNormalized.collectAsMap() ( new TrainingData(trainingPoints), new EmptyEvaluationInfo(), testingPoints.map { p => (new Query(p.eventTime.toString(), p.lat, p.lng, p.temperature, p.clear, p.fog, p.rain, p.snow, p.hail, p.thunder, p.tornado), new ActualResult(testingCountMap(testingNormalizedMap(p.eventTime)))) } ) } } } class TrainingData( val data: RDD[UserEvent] ) extends Serializable with SanityCheck { override def sanityCheck(): Unit = { require(data.take(1).nonEmpty, s"data cannot be empty!") } } ================================================ FILE: pio-engine/src/main/scala/Engine.scala ================================================ package edu.cs5152.predictionio.demandforecasting import org.apache.predictionio.controller.{Engine, EngineFactory} import org.joda.time.DateTime class Query( val eventTime: String, val lng: Double, val lat: Double, val temperature: Double, val clear: Int, val fog: Int, val rain: Int, val snow: Int, val hail: Int, val thunder: Int, val tornado: Int ) extends Serializable class PredictedResult( val demand: Double, val algorithms: Map[String, Double] ) extends Serializable class ActualResult( val demand: Double ) extends Serializable object ForecastingEngine extends EngineFactory { def apply() = { new Engine( classOf[DataSource], classOf[Preparator], Map("algRegression" -> classOf[Algorithm], "algGBTree" -> classOf[AlgorithmGBTree], "ridgeRegression" -> classOf[RidgeRegressionAlgorithm], "randomForest" -> classOf[RandomForestAlgorithm]), classOf[Serving]) } } ================================================ FILE: pio-engine/src/main/scala/Evaluation.scala ================================================ package edu.cs5152.predictionio.demandforecasting import org.apache.predictionio.controller.AverageMetric import org.apache.predictionio.controller.EmptyEvaluationInfo import org.apache.predictionio.controller.EngineParams import org.apache.predictionio.controller.EngineParamsGenerator import org.apache.predictionio.controller.Evaluation import org.apache.spark.SparkContext import org.apache.spark.rdd.RDD import math.{pow, sqrt} case class RMSEMetric() extends AverageMetric[EmptyEvaluationInfo, Query, PredictedResult, ActualResult] { override def calculate(sc: SparkContext, evalDataSet: Seq[(EmptyEvaluationInfo, RDD[(Query, PredictedResult, ActualResult)])]): Double = { sqrt(super.calculate(sc, evalDataSet)) } def calculate(query: Query, predicted: PredictedResult, actual: ActualResult): Double = pow(predicted.demand - actual.demand, 2) override def compare(r0: Double, r1: Double): scala.Int = { -1 * super.compare(r0, r1) } } object RMSEEvaluation extends Evaluation { engineMetric = (ForecastingEngine(), new RMSEMetric()) } object EngineParamsList extends EngineParamsGenerator { private[this] val baseEP = EngineParams( dataSourceParams = DataSourceParams(appName = "koober", evalK = Some(0.8))) engineParamsList = Seq( baseEP.copy( algorithmParamsList = Seq( ("algGBTree", GBTreeParams(iterations = 20, maxDepth = 10)), ("algGBTree", GBTreeParams(iterations = 20, maxDepth = 20)) )), baseEP.copy( algorithmParamsList = Seq( ("algRegression", AlgorithmParams(iterations = 1000, miniBatchFraction = 0.5, stepSize = 0.01)), ("algRegression", AlgorithmParams(iterations = 5000, miniBatchFraction = 0.5, stepSize = 0.01)) )), baseEP.copy( algorithmParamsList = Seq( ("ridgeRegression", RidgeRegressionParams(iterations = 1000, miniBatchFraction = 1.0, stepSize = 0.01, regParam = 0.5)), ("ridgeRegression", RidgeRegressionParams(iterations = 5000, miniBatchFraction = 1.0, stepSize = 0.01, regParam = 0.5)), ("ridgeRegression", RidgeRegressionParams(iterations = 5000, miniBatchFraction = 1.0, stepSize = 0.01, regParam = 1.0)) )), baseEP.copy( algorithmParamsList = Seq( ("randomForest", ForestParams(numTrees = 10, maxDepth = 10, numBins = 32)), ("randomForest", ForestParams(numTrees = 30, maxDepth = 20, numBins = 32)), ("randomForest", ForestParams(numTrees = 100, maxDepth = 30, numBins = 64)) )) ) } ================================================ FILE: pio-engine/src/main/scala/KooberUtil.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.spark.SparkContext import org.apache.spark.mllib.clustering.KMeansModel import org.apache.spark.mllib.linalg.{Vector, Vectors} import org.apache.spark.mllib.regression.LabeledPoint import org.apache.spark.rdd.RDD import org.joda.time.DateTime /** * Created by YitingWang on 2/12/17. */ object KooberUtil { val TIME_INTERVAL_LENGTH = "halfHour" def createNormalizedMap(values:RDD[UserEvent]): RDD[(DateTime,Long)] = { values.map(ev => (ev.eventTime, normalize(ev.eventTime, "halfHour"))) //CHANGE THIS to change the granularity of how to group demands } /** * create a map from eventTime to Normalized eventTime * @param timeAndLocationLabels * @return */ def createTimeToNormalizedTimeMap(timestamps:RDD[DateTime]): RDD[(DateTime,Long)] ={ timestamps.map(time => (time, normalize(time, TIME_INTERVAL_LENGTH)))//CHANGE THIS to change the granularity of how to group demands } def createNormalizedTimeAndLocationLabelTuple(timeAndLocationLabels:RDD[(DateTime, Int)]):RDD[(Long, Int)] = { timeAndLocationLabels.map(timeAndLocationLabel => (normalize(timeAndLocationLabel._1, TIME_INTERVAL_LENGTH), timeAndLocationLabel._2)) } /** * create a map from normalized eventTime to the count (demand) * @param values * @return */ def createCountMap(values: RDD[Long])={ val timeMap: RDD[(Long,Long)] = values.map(normalizedTime => (normalizedTime, 1)) timeMap.countByKey()//foldByKey(0)((x, y) => x+y) } def normalize(eventTime: DateTime): Long = { normalize(eventTime, TIME_INTERVAL_LENGTH) } /** * Based on different metrics, try to normalize the event time into a long so we can calculate demand * @param eventTime * @param metric * Supports: minute, fiveMinutes, halfHour, hour * @return */ def normalize(eventTime: DateTime, metric: String): Long ={ metric match{ case "minute" => eventTime.getMillis()/(1000*60) case "fiveMinutes" => eventTime.getMillis()/(1000*60*5) case "halfHour" => eventTime.getMillis()/(1000*60*30) case "hour" => eventTime.getMillis()/(1000*60*60) case _ => throw new NotImplementedError("This normalization method is not implemented") } } def denormalize(normalizedTime: Long): DateTime = { TIME_INTERVAL_LENGTH match{ case "minute" => new DateTime(normalizedTime*(1000*60)) case "fiveMinutes" => new DateTime(normalizedTime*(1000*60*5)) case "halfHour" => new DateTime(normalizedTime*(1000*60*30)) case "hour" => new DateTime(normalizedTime*(1000*60*60)) case _ => throw new NotImplementedError("This normalization method is not implemented") } } def bool2int(b:Boolean) = if (b) 1 else 0 def convertIntToBinaryArray(n:Int, size:Int):Array[Double] = { val ret = new Array[Double](size) for( a <- 0 to (size-1)){ ret.update(a, bool2int(n == a)) } ret } } ================================================ FILE: pio-engine/src/main/scala/Preparator.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.predictionio.controller.{PPreparator, SanityCheck} import org.apache.spark.SparkContext import org.apache.spark.mllib.clustering.{KMeans, KMeansModel} import org.apache.spark.mllib.feature.{StandardScaler, StandardScalerModel} import org.apache.spark.mllib.linalg.{Vector, Vectors} import org.apache.spark.mllib.regression.LabeledPoint import org.apache.spark.rdd.RDD import org.joda.time.DateTime class PreparedData( val data: RDD[LabeledPoint] ) extends Serializable with SanityCheck { override def sanityCheck(): Unit = { require(data.take(1).nonEmpty, s"data cannot be empty!") } } class Preparator extends PPreparator[TrainingData, PreparedData] { @transient lazy val logger = Logger[this.type] def prepare(sc: SparkContext, trainingData: TrainingData): PreparedData = { // clustering coordinates and assign cluster labels. val standardScaler = new StandardScaler(true, true)//Used to calculate mean and std so that we can normalize features val locationData = trainingData.data map {entry => Vectors.dense(entry.lat, entry.lng)} // store them statically so that we can use them when querying Preparator.locationClusterModel = Some(KMeans.train(locationData, Preparator.numOfClustersForLocationModel, Preparator.numOfIterationsForLocationModel)) val timeAndLatLng = trainingData.data map {entry => (entry.eventTime, entry.lat, entry.lng)} distinct() val timeAndLocationLabels = timeAndLatLng map { entry => (entry._1, Preparator.locationClusterModel.get.predict(Vectors.dense(entry._2, entry._3))) } cache() val normalizedTimeAndLocationLabels = KooberUtil.createNormalizedTimeAndLocationLabelTuple(timeAndLocationLabels) val countMap = normalizedTimeAndLocationLabels.countByValue() val timeToWeatherMap = trainingData.data map { trainingDataEntry => (KooberUtil.normalize(trainingDataEntry.eventTime), (trainingDataEntry.temperature, trainingDataEntry.clear, trainingDataEntry.fog, trainingDataEntry.rain, trainingDataEntry.snow, trainingDataEntry.hail, trainingDataEntry.thunder, trainingDataEntry.tornado)) } collectAsMap() val featureVector = normalizedTimeAndLocationLabels map { entry => val weatherDataTuple = timeToWeatherMap.get(entry._1).get val denormalizedEventTime = KooberUtil.denormalize(entry._1) Preparator.toFeaturesVector(denormalizedEventTime, weatherDataTuple._1, weatherDataTuple._2, weatherDataTuple._3, weatherDataTuple._4, weatherDataTuple._5, weatherDataTuple._6, weatherDataTuple._7, weatherDataTuple._8) } cache() // store them statically so that we can normalize query data during query time Preparator.standardScalerModel = Some(standardScaler.fit(featureVector)) val data = normalizedTimeAndLocationLabels map { entry => val demand = countMap.get(entry).get val weatherDataTuple = timeToWeatherMap.get(entry._1).get val denormalizedEventTime = KooberUtil.denormalize(entry._1) val timeFeatureVector = Preparator.toFeaturesVector(denormalizedEventTime, weatherDataTuple._1, weatherDataTuple._2, weatherDataTuple._3, weatherDataTuple._4, weatherDataTuple._5, weatherDataTuple._6, weatherDataTuple._7, weatherDataTuple._8) val normalizedTimeFeatureVector = Preparator.standardScalerModel.get.transform(timeFeatureVector) LabeledPoint(demand, Preparator.combineFeatureVectors(normalizedTimeFeatureVector, entry._2)) } cache () new PreparedData(data) } } object Preparator { @transient lazy val logger = Logger[this.type] var locationClusterModel: Option[KMeansModel] = None var standardScalerModel: Option[StandardScalerModel] = None val numOfClustersForLocationModel = 200 val numOfIterationsForLocationModel = 100 def toFeaturesVector(eventTime: DateTime, temperature: Double, clear: Int, fog: Int, rain: Int, snow: Int, hail: Int, thunder: Int, tornado: Int): Vector = { Vectors.dense(Array( eventTime.dayOfWeek().get().toDouble, eventTime.dayOfMonth().get().toDouble, eventTime.minuteOfDay().get().toDouble, eventTime.monthOfYear().get().toDouble, temperature, clear.toDouble, fog.toDouble, rain.toDouble, snow.toDouble, hail.toDouble, thunder.toDouble, tornado.toDouble )) } def combineFeatureVectors(normalizedFeatureVector: Vector, locationClusterLabel: Int): Vector = { val timeFeatures = normalizedFeatureVector.toArray val locationFeatureOneHotEncoding = KooberUtil.convertIntToBinaryArray(locationClusterLabel, numOfClustersForLocationModel) Vectors.dense(timeFeatures ++ locationFeatureOneHotEncoding) } } ================================================ FILE: pio-engine/src/main/scala/RandomForestAlgorithm.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.predictionio.controller.{P2LAlgorithm, Params} import org.apache.spark.SparkContext import org.apache.spark.mllib.clustering.KMeansModel import org.apache.spark.mllib.feature.StandardScalerModel import org.apache.spark.mllib.linalg.Vectors import org.apache.spark.mllib.tree.RandomForest import org.apache.spark.mllib.tree.model.RandomForestModel import org.joda.time.DateTime case class ForestParams ( numTrees: Int = 10, maxDepth: Int = 10, numBins: Int = 32 ) extends Params class RandomForestAlgorithm(val fp: ForestParams) extends P2LAlgorithm[PreparedData, ForestModel, Query, PredictedResult] with MyQuerySerializer { @transient lazy val logger = Logger[this.type] def train(sc: SparkContext, preparedData: PreparedData): ForestModel = { val randomForestModel = RandomForest.trainRegressor(preparedData.data, Map[Int,Int](), fp.numTrees, "auto", "variance", fp.maxDepth, fp.numBins); new ForestModel(randomForestModel, Preparator.locationClusterModel.get, Preparator.standardScalerModel.get) } def predict(model: ForestModel, query: Query): PredictedResult = { val label : Double = model.predict(query) new PredictedResult(label, Map("randomForest" -> label)) } } class ForestModel(mod: RandomForestModel, locationClusterModel: KMeansModel, standardScalerModel: StandardScalerModel) extends Serializable { @transient lazy val logger = Logger[this.type] def predict(query: Query): Double = { val normalizedFeatureVector = standardScalerModel.transform(Preparator.toFeaturesVector(DateTime.parse(query.eventTime), query.temperature, query.clear, query.fog, query.rain, query.snow, query.hail, query.thunder, query.tornado)) val locationClusterLabel = locationClusterModel.predict(Vectors.dense(query.lat, query.lng)) val features = Preparator.combineFeatureVectors(normalizedFeatureVector, locationClusterLabel) mod.predict(features) } } ================================================ FILE: pio-engine/src/main/scala/RidgeRegressionAlgorithm.scala ================================================ package edu.cs5152.predictionio.demandforecasting import grizzled.slf4j.Logger import org.apache.predictionio.controller.{CustomQuerySerializer, P2LAlgorithm, Params} import org.apache.spark.SparkContext import org.apache.spark.mllib.classification.{LogisticRegressionModel, LogisticRegressionWithLBFGS} import org.apache.spark.mllib.clustering.KMeansModel import org.apache.spark.mllib.feature.StandardScalerModel import org.apache.spark.mllib.linalg.Vectors import org.apache.spark.mllib.optimization.SquaredL2Updater import org.apache.spark.mllib.regression.{RidgeRegressionModel, RidgeRegressionWithSGD, LinearRegressionModel, LinearRegressionWithSGD} import org.joda.time.DateTime case class RidgeRegressionParams( iterations: Int = 1000, regParam: Double = 0.5, miniBatchFraction: Double = 1.0, stepSize: Double = 0.01 ) extends Params class RidgeRegressionAlgorithm(val ap: RidgeRegressionParams) extends P2LAlgorithm[PreparedData, RidgeRegressionAlgorithmModel, Query, PredictedResult] with MyQuerySerializer { @transient lazy val logger = Logger[this.type] def train(sc: SparkContext, preparedData: PreparedData): RidgeRegressionAlgorithmModel = { // val logisticRegression = new LogisticRegressionWithLBFGS() val ridgeRegressionWithSGD = new RidgeRegressionWithSGD(); ridgeRegressionWithSGD.setIntercept(true) ridgeRegressionWithSGD.setValidateData(true) ridgeRegressionWithSGD.optimizer .setNumIterations(ap.iterations) .setMiniBatchFraction(ap.miniBatchFraction) .setStepSize(ap.stepSize) .setRegParam(ap.regParam) // We can use the following sampling to reduce training set by sampling or increase training set by bootstrap // val sample = preparedData.data.sample(true, 0.01).cache(); // sample.foreach(println) val ridgeRegressionModel = ridgeRegressionWithSGD.run(preparedData.data) // println(logisticRegressionModel.intercept) // println(logisticRegressionModel.weights) new RidgeRegressionAlgorithmModel(ridgeRegressionModel, Preparator.locationClusterModel.get, Preparator.standardScalerModel.get) } def predict(model: RidgeRegressionAlgorithmModel, query: Query): PredictedResult = { val label : Double = model.predict(query) new PredictedResult(label, Map("ridgeRegression" -> label)) } } class RidgeRegressionAlgorithmModel(mod: RidgeRegressionModel, locationClusterModel: KMeansModel, standardScalerModel: StandardScalerModel) extends Serializable { @transient lazy val logger = Logger[this.type] def predict(query: Query): Double = { val normalizedFeatureVector = standardScalerModel.transform(Preparator.toFeaturesVector(DateTime.parse(query.eventTime), query.temperature, query.clear, query.fog, query.rain, query.snow, query.hail, query.thunder, query.tornado)) val locationClusterLabel = locationClusterModel.predict(Vectors.dense(query.lat, query.lng)) val features = Preparator.combineFeatureVectors(normalizedFeatureVector, locationClusterLabel) mod.predict(features) } } ================================================ FILE: pio-engine/src/main/scala/Serving.scala ================================================ package edu.cs5152.predictionio.demandforecasting import org.apache.predictionio.controller.LServing class Serving extends LServing[Query, PredictedResult] { override def serve(query: Query, predictedResults: Seq[PredictedResult]): PredictedResult = { val algorithms : Map[String, Double] = predictedResults.foldLeft(Map.empty[String, Double]) { (acc: Map[String, Double], pred: PredictedResult) => (acc.keySet ++ pred.algorithms.keySet).map(i=> (i, acc.getOrElse(i, 0.0) + pred.algorithms.getOrElse(i,0.0))).toMap } val demand = predictedResults.foldLeft(0.0) { (acc : Double, pred: PredictedResult) => acc + pred.demand } new PredictedResult(demand / predictedResults.length, algorithms) } } ================================================ FILE: pio-engine/template.json ================================================ {"pio": {"version": { "min": "0.11.0-incubating" }}} ================================================ FILE: pio-s3/build.sbt ================================================ name := "pio-data-s3" libraryDependencies ++= Seq( "jp.co.bizreach" %% "aws-s3-scala" % "0.0.11", "org.apache.predictionio" %% "apache-predictionio-data" % "0.11.0-incubating" % "provided" ) assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false) assemblyJarName in assembly := "pio-s3.jar" stage := assembly.value ================================================ FILE: pio-s3/src/main/scala/pio/s3/S3Models.scala ================================================ package pio.s3 import java.io.ByteArrayInputStream import awscala.s3.S3 import com.amazonaws.services.s3.model.ObjectMetadata import grizzled.slf4j.Logging import org.apache.predictionio.data.storage.{Model, Models, StorageClientConfig} import scala.io.Source import scala.util.Try class S3Models(s3: S3, config: StorageClientConfig, prefix: String) extends Models with Logging { private val s3BucketName = config.properties("BUCKET_NAME") def insert(model: Model): Unit = { val objectMetadata = new ObjectMetadata() val inputStream = new ByteArrayInputStream(model.models) s3.putObject(s3BucketName, model.id, inputStream, objectMetadata) inputStream.close() } def get(id: String): Option[Model] = { Try(s3.getObject(s3BucketName, id)).toOption.map { s3Object => val inputStream = s3Object.getObjectContent val byteArray = Source.fromInputStream(inputStream).map(_.toByte).toArray inputStream.close() Model(id, byteArray) } } def delete(id: String): Unit = { s3.deleteObject(s3BucketName, id) } } ================================================ FILE: pio-s3/src/main/scala/pio/s3/StorageClient.scala ================================================ package pio.s3 import awscala.Region import grizzled.slf4j.Logging import jp.co.bizreach.s3scala.S3 import org.apache.predictionio.data.storage.{BaseStorageClient, StorageClientConfig} class StorageClient(val config: StorageClientConfig) extends BaseStorageClient with Logging { override val prefix = "S3" private val accessKeyId = config.properties("ACCESS_KEY_ID") private val secretAccessKey = config.properties("SECRET_ACCESS_KEY") override val client: awscala.s3.S3 = S3(accessKeyId, secretAccessKey)(Region.US_EAST_1) } ================================================ FILE: project/build.properties ================================================ sbt.version=0.13.13 ================================================ FILE: project/plugins.sbt ================================================ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.5.12") addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.1") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.4") ================================================ FILE: sbt ================================================ #!/bin/bash SBT_OPTS="-Xms512M -Xmx1536M -Xss1M -XX:+CMSClassUnloadingEnabled -XX:MaxPermSize=256M" java $SBT_OPTS -jar `dirname $0`/sbt-launch.jar "$@" ================================================ FILE: sbt.cmd ================================================ @REM sbt launcher script @setlocal enabledelayedexpansion @echo off set ERROR_CODE=0 set SBT_LAUNCH_JAR=%~dp0%sbt-launch.jar @REM Detect if we were double clicked, although theoretically A user could manually run cmd /c for %%x in (%cmdcmdline%) do if %%~x==/c set DOUBLECLICKED=1 @REM We use the value of the JAVACMD environment variable if defined set _JAVACMD=%JAVACMD% if "%_JAVACMD%"=="" ( if not "%JAVA_HOME%"=="" ( if exist "%JAVA_HOME%\bin\java.exe" set "_JAVACMD=%JAVA_HOME%\bin\java.exe" @@REM if there is a java home set we make sure it is the first picked up when invoking 'java' SET "PATH=%JAVA_HOME%\bin;%PATH%" ) ) if "%_JAVACMD%"=="" set _JAVACMD=java @REM Detect if this java is ok to use. for /F %%j in ('"%_JAVACMD%" -version 2^>^&1') do ( if %%~j==java set JAVAINSTALLED=1 if %%~j==openjdk set JAVAINSTALLED=1 ) @REM Detect the same thing about javac if "%_JAVACCMD%"=="" ( if not "%JAVA_HOME%"=="" ( if exist "%JAVA_HOME%\bin\javac.exe" set "_JAVACCMD=%JAVA_HOME%\bin\javac.exe" ) ) if "%_JAVACCMD%"=="" set _JAVACCMD=javac for /F %%j in ('"%_JAVACCMD%" -version 2^>^&1') do ( if %%~j==javac set JAVACINSTALLED=1 ) @REM Check what Java version is being used for /f "tokens=3" %%g in ('java -version 2^>^&1 ^| findstr /i "version"') do ( set JAVA_VERSION=%%g ) @REM Strips away the " characters set JAVA_VERSION=%JAVA_VERSION:"=% @REM Make sure Java 8 is installed for /f "delims=. tokens=1-3" %%v in ("%JAVA_VERSION%") do ( set MAJOR=%%v set MINOR=%%w set BUILD=%%x if "!MINOR!" GEQ "8" ( set HASJAVA8=true ) ) @REM BAT has no logical or, so we do it OLD SCHOOL! Oppan Redmond Style set JAVAOK=true if not defined JAVAINSTALLED set JAVAOK=false if not defined JAVACINSTALLED set JAVAOK=false if not defined HASJAVA8 set JAVAOK=false if "%JAVAOK%"=="false" ( echo. echo A Java 8 JDK is not installed or can't be found. if not "%JAVA_HOME%"=="" ( echo JAVA_HOME = "%JAVA_HOME%" ) echo. echo Please go to echo http://www.oracle.com/technetwork/java/javase/downloads/index.html echo and download a valid Java 8 JDK and install before running sbt. echo. echo If you think this message is in error, please check echo your environment variables to see if "java.exe" and "javac.exe" are echo available via JAVA_HOME or PATH. echo. if defined DOUBLECLICKED pause exit /B 1 ) if "%~1"=="shell" ( set CMDS= ) else ( if "%~1"=="" ( set CMDS=default ) else ( set CMDS=%~1 ) ) set SBT_OPTS=-Xms512M -Xmx1024M -Xss1M -XX:MetaspaceSize=64M -XX:MaxMetaspaceSize=256M -XX:+CMSClassUnloadingEnabled @REM Checks if the command contains spaces to know if it should be wrapped in quotes or not set NON_SPACED_CMD=%_JAVACMD: =% @REM Run sbt if "%_JAVACMD%"=="%NON_SPACED_CMD%" %_JAVACMD% %SBT_OPTS% -jar "%SBT_LAUNCH_JAR%" %CMDS% if NOT "%_JAVACMD%"=="%NON_SPACED_CMD%" "%_JAVACMD%" %SBT_OPTS% -jar "%SBT_LAUNCH_JAR%" %CMDS% if ERRORLEVEL 1 goto error goto end :error set ERROR_CODE=1 :end @endlocal exit /B %ERROR_CODE% ================================================ FILE: subproc.sh ================================================ #!/bin/bash if [ "$SUB_APP" = "pio-engine" ]; then if [ "$PIO_HOME" = "" ]; then echo "Downloading PredictionIO" wget https://${BUCKETEER_BUCKET_NAME}.s3.amazonaws.com/public/PredictionIO-0.11.0-incubating.zip echo "Unzipping" unzip PredictionIO-0.11.0-incubating.zip PIO_HOME=~/PredictionIO-0.11.0-incubating fi if [ "$DATABASE_URL" != "" ]; then # from: http://stackoverflow.com/a/17287984/77409 # extract the protocol proto="`echo $DATABASE_URL | grep '://' | sed -e's,^\(.*://\).*,\1,g'`" # remove the protocol url=`echo $DATABASE_URL | sed -e s,$proto,,g` # extract the user and password (if any) userpass="`echo $url | grep @ | cut -d@ -f1`" pass=`echo $userpass | grep : | cut -d: -f2` if [ -n "$pass" ]; then user=`echo $userpass | grep : | cut -d: -f1` else user=$userpass fi # extract the host -- updated hostport=`echo $url | sed -e s,$userpass@,,g | cut -d/ -f1` port=`echo $hostport | grep : | cut -d: -f2` if [ -n "$port" ]; then host=`echo $hostport | grep : | cut -d: -f1` else host=$hostport fi # extract the path (if any) path="`echo $url | grep / | cut -d/ -f2-`" echo "PIO_STORAGE_SOURCES_PGSQL_URL=jdbc:postgresql://$hostport/$path" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_PGSQL_USERNAME=$user" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_PGSQL_PASSWORD=$pass" >> $PIO_HOME/conf/pio-env.sh fi if [ "$BUCKETEER_AWS_ACCESS_KEY_ID" != "" ]; then echo "PIO_STORAGE_REPOSITORIES_MODELDATA_SOURCE=S3" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_S3_TYPE=pio.s3" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_S3_ACCESS_KEY_ID=${BUCKETEER_AWS_ACCESS_KEY_ID}" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_S3_SECRET_ACCESS_KEY=${BUCKETEER_AWS_SECRET_ACCESS_KEY}" >> $PIO_HOME/conf/pio-env.sh echo "PIO_STORAGE_SOURCES_S3_BUCKET_NAME=${BUCKETEER_BUCKET_NAME}" >> $PIO_HOME/conf/pio-env.sh fi cp pio-s3/target/scala-2.11/pio-s3.jar $PIO_HOME/lib/spark cd pio-engine if [ "$1" = "web" ]; then echo "Temporarily bind port $PORT to avoid Heroku boot timeout" mkdir tmp pushd tmp python -m SimpleHTTPServer $PORT > /dev/null & echo $! > pid popd fi if [ "$1" = "web" ]; then echo "Build finished. Cleaning up the temporary port bind" cat tmp/pid | xargs kill -9 rm -r tmp/ echo "Starting the PredictionIO Service" if [ "$PORT" = "" ]; then $PIO_HOME/bin/pio deploy else $PIO_HOME/bin/pio deploy --port $PORT fi fi if [ "$1" = "train" ]; then $PIO_HOME/bin/pio build $PIO_HOME/bin/pio train fi elif [ "$SUB_APP" = "demand-dashboard" ]; then demand-dashboard/target/universal/stage/bin/demand-dashboard -Dhttp.port=${PORT} fi ================================================ FILE: weather-backfill/weather-import.py ================================================ #!/usr/bin/python import requests import csv import time import datetime import sys import getopt cache = {} def compareObs(ob1, ob2): if int(ob1['date']['hour']) > int(ob2['date']['hour']) or int(ob1['date']['hour']) == int(ob2['date']['hour']) and int(ob1['date']['min']) > int(ob2['date']['min']): return 1; elif int(ob1['date']['hour']) == int(ob2['date']['hour']) and int(ob1['date']['min']) == int(ob2['date']['min']): return 0; else: return -1; def cmp_to_key(mycmp): 'Convert a cmp= function into a key= function' class K(object): def __init__(self, obj, *args): self.obj = obj def __lt__(self, other): return mycmp(self.obj, other.obj) < 0 def __gt__(self, other): return mycmp(self.obj, other.obj) > 0 def __eq__(self, other): return mycmp(self.obj, other.obj) == 0 def __le__(self, other): return mycmp(self.obj, other.obj) <= 0 def __ge__(self, other): return mycmp(self.obj, other.obj) >= 0 def __ne__(self, other): return mycmp(self.obj, other.obj) != 0 return K def getWeatherData(pickup_hour, observations): for observation in observations: if observation['date']['hour'] == pickup_hour: fog = observation['fog'] rain = observation['rain'] snow = observation['snow'] hail = observation['hail'] thunder = observation['thunder'] tornado = observation['tornado'] heat = 0 if observation['heatindexm'] == '-9999' else observation['heatindexm'] windchill = 0 if observation['windchillm'] == '-999' else observation['windchillm'] precipitation = 0 if observation['precipm'] == '-9999.00' else observation['precipm'] clear = '0' if fog == '0' and rain == '0' and snow == '0' and hail == '0' and thunder == '0' and tornado == '0': clear = '1' return {'temp': observation['tempm'], 'clear':clear, 'fog':fog, 'rain':rain, 'snow':snow, 'hail':hail, 'thunder':thunder, 'tornado':tornado, 'heat':heat, 'windchill':windchill, 'precipitation':precipitation} def import_weather_data(inputfile, outputfile): with open(inputfile, newline='') as csvfile: datareader = csv.DictReader(csvfile) # row_count = sum(1 for row in datareader) headers = datareader.fieldnames headers.extend(['temp', 'clear', 'fog', 'rain', 'snow', 'hail', 'thunder', 'tornado', 'heat', 'windchill', 'precipitation']) with open(outputfile, 'w') as csvfile: outputfilewriter = csv.DictWriter(csvfile, delimiter=',', quotechar='|', fieldnames=headers) # print(headers) outputfilewriter.writeheader() for row in datareader: if datareader.line_num % 10000 == 0: print('line number: ' + str(datareader.line_num)) pickup_datetime = datetime.datetime.strptime(row['tpep_pickup_datetime'], "%Y-%m-%d %H:%M:%S"); pickup_date = pickup_datetime.strftime('%Y%m%d') pickup_hour = pickup_datetime.strftime('%H') # print(pickup_date) if pickup_date not in cache: url = "http://api.wunderground.com/api/c05d3c35081ff3d9/history_" + pickup_date + "/q/NY/New_York.json" # print(url) r = requests.get(url) response_json = r.json() observations = response_json['history']['observations'] cache[pickup_date] = sorted(observations, key=cmp_to_key(compareObs)) weather_data = getWeatherData(pickup_hour, cache[pickup_date]) row.update(weather_data) # print(row) outputfilewriter.writerow(row) def main(argv): inputfile = '' outputfile = '' try: opts, args = getopt.getopt(argv,"hi:o:",["ifile=","ofile="]) except getopt.GetoptError: print('WeatherImport.py -i -o ') sys.exit(2) for opt, arg in opts: if opt == '-h': print('WeatherImport.py -i -o ') sys.exit() elif opt in ("-i", "--ifile"): inputfile = arg elif opt in ("-o", "--ofile"): outputfile = arg print('Input file is "', inputfile) print('Output file is "', outputfile) import_weather_data(inputfile, outputfile) main(sys.argv[1:]) ================================================ FILE: webapp/app/Module.scala ================================================ import com.google.inject.AbstractModule import services.{Kafka, KafkaImpl} class Module extends AbstractModule { override def configure() = { bind(classOf[Kafka]).to(classOf[KafkaImpl]) } } ================================================ FILE: webapp/app/controllers/HomeController.scala ================================================ package controllers import javax.inject._ import akka.stream.scaladsl.Flow import org.apache.kafka.clients.producer.ProducerRecord import play.api.Configuration import play.api.libs.json.JsValue import play.api.mvc.{Action, Controller, WebSocket} import services.Kafka @Singleton class HomeController @Inject() (kafka: Kafka, configuration: Configuration) extends Controller { lazy val mapboxAccessToken: String = configuration.getString("mapbox.access-token").get def driver = Action { implicit request => Ok(views.html.driver(routes.HomeController.driverWs().webSocketURL(), mapboxAccessToken)) } def rider = Action { implicit request => Ok(views.html.rider(routes.HomeController.riderWs().webSocketURL(), mapboxAccessToken)) } // sink is incoming driver messages // source is outgoing rider messages def driverWs = WebSocket.accept { _ => val sink = kafka.sink.contramap[JsValue](new ProducerRecord("driver", "", _)) val source = kafka.source("rider").map(_.value()) Flow.fromSinkAndSource(sink, source) } // sink is incoming rider messages // source is outgoing driver messages def riderWs = WebSocket.accept { _ => val sink = kafka.sink.contramap[JsValue](new ProducerRecord("rider", "", _)) val source = kafka.source("driver").map(_.value()) Flow.fromSinkAndSource(sink, source) } } ================================================ FILE: webapp/app/services/Kafka.scala ================================================ package services import java.util.UUID import javax.inject.{Inject, Singleton} import akka.kafka.scaladsl.{Consumer, Producer} import akka.kafka.{ConsumerSettings, ProducerSettings, Subscriptions} import akka.stream.scaladsl.{Sink, Source} import helpers.KafkaHelper import org.apache.kafka.clients.consumer.ConsumerRecord import org.apache.kafka.clients.producer.ProducerRecord import org.apache.kafka.common.serialization.{StringDeserializer, StringSerializer} import play.api.Configuration import play.api.libs.json.JsValue trait Kafka { def sink: Sink[ProducerRecord[String, JsValue], _] def source(topic: String): Source[ConsumerRecord[String, JsValue], _] } @Singleton class KafkaImpl @Inject() (configuration: Configuration) extends Kafka { def producerSettings: ProducerSettings[String, JsValue] = { val keySerializer = new StringSerializer() val config = KafkaHelper.kafkaConfig(configuration.underlying, "akka.kafka.producer") ProducerSettings[String, JsValue](config, keySerializer, KafkaHelper.jsValueSerializer) .withBootstrapServers(KafkaHelper.kafkaUrl(configuration.underlying)) } def consumerSettings: ConsumerSettings[String, JsValue] = { val keyDeserializer = new StringDeserializer() val config = KafkaHelper.kafkaConfig(configuration.underlying, "akka.kafka.consumer") ConsumerSettings(config, keyDeserializer, KafkaHelper.jsValueDeserializer) .withBootstrapServers(KafkaHelper.kafkaUrl(configuration.underlying)) .withGroupId(UUID.randomUUID().toString) } def sink: Sink[ProducerRecord[String, JsValue], _] = { Producer.plainSink(producerSettings) } def source(topic: String): Source[ConsumerRecord[String, JsValue], _] = { val subscriptions = Subscriptions.topics(topic) Consumer.plainSource(consumerSettings, subscriptions) } } ================================================ FILE: webapp/app/views/driver.scala.html ================================================ @(wsUrl: String, mapboxAccessToken: String) Driver
Your Driver ID: {{ uuid }}
================================================ FILE: webapp/app/views/rider.scala.html ================================================ @(wsUrl: String, mapboxAccessToken: String) Rider
Your Rider ID: {{ uuid }}
================================================ FILE: webapp/build.sbt ================================================ name := "webapp" libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-stream-kafka" % "0.14", "org.webjars" % "vue" % "2.1.3", "org.webjars" % "ionicons" % "2.0.1", "org.webjars.npm" % "google-polyline" % "1.0.0" ) pipelineStages := Seq(digest) ================================================ FILE: webapp/conf/application.conf ================================================ akka { kafka.producer { close-timeout = 60s kafka-clients { acks = "all" retries = 0 batch.size = 16384 linger.ms = 1 buffer.memory = 33554432 max.block.ms = 5000 } } kafka.consumer { poll-interval = 50ms poll-timeout = 50ms stop-timeout = 30s close-timeout = 20s commit-timeout = 15s wakeup-timeout = 5s kafka-clients.enable.auto.commit = true } } kafka.url = ${?KAFKA_URL} mapbox.access-token = ${MAPBOX_ACCESS_TOKEN} play.crypto.secret = "changeme" play.crypto.secret = ${?CRYPTO_SECRET} play.i18n.langs = ["en"] play.http.forwarded.trustedProxies = ["0.0.0.0/0", "::/0"] ================================================ FILE: webapp/conf/routes ================================================ # Routes # This file defines all application routes (Higher priority routes first) # ~~~~ GET /driver controllers.HomeController.driver GET /rider controllers.HomeController.rider GET /driver-ws controllers.HomeController.driverWs GET /rider-ws controllers.HomeController.riderWs GET /assets/*file controllers.Assets.versioned(path="/public", file)