Lecture 5: APIs#

Please sign attendance sheet

APIs#

  • They are very powerful

  • Can be used from any programming language

  • Not expecting you to use them in your Final Project

APIs, conceptually#

Diagram showing how online payments work: Expedia talks to Delta, Delta talks to Stripe, Stripe talks to Visa, and Visa talks to Chase

Diagram showing how notifications flow through systems

Diagram showing relationship between human languages, programming languages, and APIs

interactions between systems ↔️

Ways to get data#

Method

How it happens

Pros

Cons

Bulk

Download, someone hands you a flash drive, etc.

Fast, one-time transfer

Can be large; data gets out of date easily

APIs

If organization makes one available

Usually allows some filtering; can always pull latest-and-greatest

Requires network connection for every call; higher barrier to entry (reading documentation); subject to availability and performance of API

Scraping

Data only available through a web site, PDF, or doc

You can turn anything into data

Tedious; fragile

Scraping#

Common tools:

Please pray to the Demo Gods that these all work and there’s no profanity

Pull table from Wikipedia’s list of countries by area:

import pandas as pd

tables = pd.read_html(
    "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area",
    match="Country / dependency",
)
countries = tables[0]
countries
Unnamed: 0 Country / dependency Total in km2 (mi2) Land in km2 (mi2) Water in km2 (mi2) % water Unnamed: 6
0 Earth 510,072,000 (196,940,000) 148,940,000 (57,506,000) 361,132,000 (139,434,000) 70.8 NaN
1 1 Russia 17,098,246 (6,601,667) 16,376,870 (6,323,142) 721,380 (278,530) 4.2 [b]
2 Antarctica 14,200,000 (5,480,000) 14,200,000 (5,480,000) 0 0.0 [c]
3 2 Canada 9,984,670 (3,855,100) 9,093,507 (3,511,021) 891,163 (344,080) 8.9 [d]
4 3/4 [e] China 9,596,960 (3,705,410) 9,326,410 (3,600,950) 270,550 (104,460) 2.8 [f]
... ... ... ... ... ... ... ...
259 Ashmore and Cartier Islands (Australia) 5.0 (1.9) 5.0 (1.9) 0 0.0 [q]
260 Coral Sea Islands (Australia) 3.0 (1.2) 3.0 (1.2) 0 0.0 [db]
261 Spratly Islands (disputed) 2.0 (0.77) 2.0 (0.77) 0 0.0 [54]
262 194 Monaco 2.0 (0.77) 2.0 (0.77) 0 0.0 [dc]
263 195 Vatican City 0.49 (0.19) 0.49 (0.19) 0 0.0 [dd]

264 rows × 7 columns

Data is only available if it’s available#

API calls in the wild#

  1. Go to Candidates page on fec.gov.

  2. Right click and Inspect.

  3. Go to the Network tab and reload.

  4. Filter to XHR.

  5. Click the API call.

We only see this because the tables on fec.gov are rendered client-side using their JSON API. That won’t be the case for all tables on all sites.

Parts of a URL#

URL structure

source

For APIs:

  • Often split into “base URL” + “endpoint”

  • Endpoints are like function names: they represent the information you are retrieving or thing you are trying to do

  • Parameters are like function arguments:

    • They allow options to be specified

    • Some are required, some are optional

    • They will differ from one endpoint/function to another

  • Anchors won’t be used

API documentation#

FEC API

Try it out#

  1. Visit https://www.fec.gov/data/candidates/

  2. Open Developer Tools.

  3. Reload the page.

  4. In the Network tab’s request list:

    1. Filter to Fetch/XHR/AJAX (terminology will differ by browser)

    2. Right-click the API call row.

  5. Click Open in New Tab. You will see an error.

  6. In the URL bar, replace the api_key value with DEMO_KEY. The URL should therefore contain api_key=DEMO_KEY.

You should see a big wall of JSON data.

API calls from Python#

Usually one of two ways:

  • A software development kit (SDK) like sodapy

    • Abstracts the details away

    • Not available for all APIs

    • May have limitations

  • The requests package (nothing to do with 311 requests)

Get Jimmy McMillan’s latest candidacy information:

import requests

jimmy = {
    "api_key": "DEMO_KEY",
    "q": "Jimmy McMillan",
    "sort": "-first_file_date",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=jimmy)
data = response.json()
data
{'api_version': '1.0',
 'pagination': {'count': 2,
  'is_count_exact': True,
  'page': 1,
  'pages': 1,
  'per_page': 20},
 'results': [{'active_through': 2016,
   'candidate_id': 'P60016805',
   'candidate_inactive': False,
   'candidate_status': 'N',
   'cycles': [2016, 2018],
   'district': '00',
   'district_number': 0,
   'election_districts': ['00'],
   'election_years': [2016],
   'federal_funds_flag': False,
   'first_file_date': '2015-10-13',
   'has_raised_funds': False,
   'inactive_election_years': None,
   'incumbent_challenge': 'O',
   'incumbent_challenge_full': 'Open seat',
   'last_f2_date': '2015-10-13',
   'last_file_date': '2015-10-13',
   'load_date': '2018-02-17T09:16:20',
   'name': 'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH',
   'office': 'P',
   'office_full': 'President',
   'party': 'REP',
   'party_full': 'REPUBLICAN PARTY',
   'state': 'US'},
  {'active_through': 2012,
   'candidate_id': 'P60003290',
   'candidate_inactive': False,
   'candidate_status': 'N',
   'cycles': [1996, 1998, 2012, 2020, 2022],
   'district': '00',
   'district_number': 0,
   'election_districts': ['00', '00'],
   'election_years': [1996, 2012],
   'federal_funds_flag': False,
   'first_file_date': '1995-03-08',
   'has_raised_funds': False,
   'inactive_election_years': None,
   'incumbent_challenge': 'C',
   'incumbent_challenge_full': 'Challenger',
   'last_f2_date': '2011-02-07',
   'last_file_date': '2011-02-07',
   'load_date': '2021-12-08T06:50:50',
   'name': 'MCMILLAN, JIMMY (AKA) JAMES ',
   'office': 'P',
   'office_full': 'President',
   'party': 'REP',
   'party_full': 'REPUBLICAN PARTY',
   'state': 'US'}]}

Retrieving nested data#

data["results"][0]["name"]
'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH'

In-class exercise#

Open a new notebook in Google Colab, and geocode an address from Python using the Nominatim API. Print out the latitude and longitude. Any address is fine:

  • Your own

  • This building

  • etc.

Per their policies, we’ll need to specify a custom User Agent. Include the following in the call to requests.get():

headers={"user-agent": "Python in-class exercise"}

Hint: Try getting the API call working in your browser URL bar before calling it in Python.

Reading into a DataFrame#

candidates_with_funds = {
    "api_key": "DEMO_KEY",
    "has_raised_funds": "true",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=candidates_with_funds)
data = response.json()

candidates = data["results"]
pd.DataFrame(candidates)
active_through candidate_id candidate_inactive candidate_status cycles district district_number election_districts election_years federal_funds_flag ... incumbent_challenge_full last_f2_date last_file_date load_date name office office_full party party_full state
0 2022 H2CO07170 False P [2022, 2024] 07 7 [07] [2022] False ... Open seat 2022-08-10 2022-08-10 2023-03-09T10:16:03 AADLAND, ERIK H House REP REPUBLICAN PARTY CO
1 2022 H2UT03280 False C [2022] 03 3 [03] [2022] False ... Challenger 2022-03-21 2022-03-21 2022-04-13T21:10:09 AALDERS, TIM H House REP REPUBLICAN PARTY UT
2 2018 S2UT00229 False P [2012, 2014, 2016, 2018, 2020] 00 0 [00, 00] [2012, 2018] False ... Open seat 2018-04-23 2018-04-23 2019-03-27T16:02:41 AALDERS, TIMOTHY NOEL S Senate CON CONSTITUTION PARTY UT
3 2020 H0TX22260 False C [2020] 22 22 [22] [2020] False ... Open seat 2019-10-17 2019-10-17 2020-03-18T21:13:37 AALOORI, BANGAR REDDY H House REP REPUBLICAN PARTY TX
4 1978 H6PA16106 False P [1976, 1978, 1980] 16 16 [16, 16] [1976, 1978] False ... None 1978-07-05 1978-07-05 2002-03-30T00:00:00 AAMODT, NORMAN O. H House REP REPUBLICAN PARTY PA
5 2012 H2CA01110 False P [2012, 2014, 2016] 01 1 [01] [2012] False ... Challenger 2012-02-22 2012-02-22 2013-04-26T09:04:30 AANESTAD, SAMUEL H House REP REPUBLICAN PARTY CA
6 2018 H8CO06237 False C [2018] 06 6 [06] [2018] False ... Challenger 2017-04-26 2017-04-26 2017-08-01T20:57:28 AARESTAD, DAVID H House DEM DEMOCRATIC PARTY CO
7 2008 P80002926 False N [2006, 2008, 2010, 2012, 2014, 2016] 00 0 [00] [2008] False ... Open seat 2007-03-13 2007-03-13 2016-11-17T06:10:48 AARON, LAURA DAVIS P President DEM DEMOCRATIC PARTY US
8 2024 H4OR05312 False C [2024] 05 5 [05] [2024] False ... Challenger 2023-07-24 2023-07-24 2023-10-16T21:03:02 AASEN, ANDREW J H House NON NON-PARTY OR
9 2024 H2CA30291 False N [2022, 2024] 32 32 [32, 32] [2022, 2024] False ... Challenger 2022-07-15 2022-07-15 2023-01-12T22:24:01 AAZAMI, SHERVIN H House DEM DEMOCRATIC PARTY CA
10 2022 H2MN07162 False P [2022, 2024] 07 7 [07] [2022] False ... Challenger 2022-06-06 2022-06-06 2023-03-09T10:16:03 ABAHSAIN, JILL H House DFL DEMOCRATIC-FARMER-LABOR MN
11 2000 H0MA01024 False P [2000, 2002, 2004] 01 1 [01] [2000] False ... Challenger 2000-02-02 2000-02-02 2002-04-12T00:00:00 ABAIR, PETER JON H House REP REPUBLICAN PARTY MA
12 2008 H6NJ05155 False C [2006, 2008] 05 5 [05, 05] [2006, 2008] False ... Challenger 2007-06-05 2007-06-05 2009-04-29T00:00:00 ABATE, CAMILLE M H House DEM DEMOCRATIC PARTY NJ
13 1992 H2NJ12036 False P [1992, 1994, 1996, 1998] 12 12 [12] [1992] False ... Challenger 1992-04-15 1992-04-15 2002-04-03T00:00:00 ABATE, FRANK G H House DEM DEMOCRATIC PARTY NJ
14 1990 H0IA03071 False C [1990] 03 3 [03] [1990] False ... Challenger 1990-05-01 1990-05-01 2002-03-30T00:00:00 ABBAS, JEFFREY LYN H House REP REPUBLICAN PARTY IA
15 2024 H4CA32152 False N [2024] 32 32 [32] [2024] False ... Challenger 2024-02-07 2024-02-07 2024-02-08T21:02:32 ABBITT, DAVE H House DEM DEMOCRATIC PARTY CA
16 1994 H4TX15043 False C [1994] 15 15 [15] [1994] False ... Challenger 1994-01-14 1994-01-14 2002-03-30T00:00:00 ABBOTT, BONNIE H House REP REPUBLICAN PARTY TX
17 1996 H6SD00077 False P [1996, 1998] 01 1 [00] [1996] False ... Challenger 1995-10-02 1995-10-02 2002-04-03T00:00:00 ABBOTT, JAMES W H House DEM DEMOCRATIC PARTY SD
18 1988 S6CA00345 False N [1986, 1988] 00 0 [00, 00] [1986, 1988] False ... Challenger 1988-08-29 1988-08-29 2005-05-26T00:00:00 ABBOTT, JOHN HANCOCK S Senate DEM DEMOCRATIC PARTY CA
19 1992 P80002579 False P [1988, 1990, 1992, 1994, 1996, 1998] 00 0 [00, 00] [1988, 1992] True ... Challenger 1992-06-16 1992-06-16 2002-04-03T00:00:00 ABBOTT, JOHN HANCOCK P President DEM DEMOCRATIC PARTY US

20 rows × 24 columns

Back to 311 data#

From NYC Open Data Portal dataset page, click Export -> SODA API -> API Docs.

Most open data sites have APIs#

Often built on platforms that provide them, e.g.

Example: 311 requests from the last week#

The dates shown are from the last time the code was run.

from datetime import datetime, timedelta

now = datetime.utcnow()
now
datetime.datetime(2024, 11, 6, 16, 17, 46, 994025)
start = now - timedelta(weeks=1)
start
datetime.datetime(2024, 10, 30, 16, 17, 46, 994025)
start.isoformat()
'2024-10-30T16:17:46.994025'

Using the Socrata query language (SoQL):

data_id = "erm2-nwe9"
in_past_week = {
    "$where": f"created_date > '{start.isoformat()}'",
}

url = f"https://data.cityofnewyork.us/resource/{data_id}.json"
response = requests.get(url, params=in_past_week)
data = response.json()

data
[{'unique_key': '62984967',
  'created_date': '2024-11-05T01:51:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:53:30.000',
  'community_board': '0 Unspecified',
  'borough': 'Unspecified',
  'x_coordinate_state_plane': '1004279',
  'y_coordinate_state_plane': '196074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'Unspecified',
  'latitude': '40.704831931231496',
  'longitude': '-73.9277611287574',
  'location': {'latitude': '40.704831931231496',
   'longitude': '-73.9277611287574',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985138',
  'created_date': '2024-11-05T01:50:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11435',
  'incident_address': '81-10 135 STREET',
  'street_name': '135 STREET',
  'cross_street_1': 'COOLIDGE AVENUE',
  'cross_street_2': '82 AVENUE',
  'intersection_street_1': 'COOLIDGE AVENUE',
  'intersection_street_2': '82 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '135 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:06:26.000',
  'community_board': '08 QUEENS',
  'bbl': '4096630020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033265',
  'y_coordinate_state_plane': '199832',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71503364248577',
  'longitude': '-73.82318976369032',
  'location': {'latitude': '40.71503364248577',
   'longitude': '-73.82318976369032',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981920',
  'created_date': '2024-11-05T01:48:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11354',
  'incident_address': '27 AVENUE',
  'street_name': '27 AVENUE',
  'cross_street_1': '27 AVENUE',
  'cross_street_2': 'PARSONS BOULEVARD',
  'intersection_street_1': '27 AVENUE',
  'intersection_street_2': 'PARSONS BOULEVARD',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032810',
  'y_coordinate_state_plane': '221232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.773773678664355',
  'longitude': '-73.824676561664',
  'location': {'latitude': '40.773773678664355',
   'longitude': '-73.824676561664',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979988',
  'created_date': '2024-11-05T01:48:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '10128',
  'incident_address': '302 EAST   92 STREET',
  'street_name': 'EAST   92 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '1 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '1 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   92 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:01:54.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015540148',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998491',
  'y_coordinate_state_plane': '224009',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78151772152749',
  'longitude': '-73.9485776370895',
  'location': {'latitude': '40.78151772152749',
   'longitude': '-73.9485776370895',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981690',
  'created_date': '2024-11-05T01:46:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '2061 FREDERICK DOUGLASS BOULEVARD',
  'street_name': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_1': 'WEST  111 STREET',
  'cross_street_2': 'WEST  112 STREET',
  'intersection_street_1': 'WEST  111 STREET',
  'intersection_street_2': 'WEST  112 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '8 AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018460048',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996043',
  'y_coordinate_state_plane': '231342',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.8016484337194',
  'longitude': '-73.95740416331903',
  'location': {'latitude': '40.8016484337194',
   'longitude': '-73.95740416331903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980088',
  'created_date': '2024-11-05T01:44:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '13-04 44 ROAD',
  'street_name': '44 ROAD',
  'cross_street_1': '11 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '11 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '44 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:50:22.000',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '998460',
  'y_coordinate_state_plane': '212218',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.749154529878716',
  'longitude': '-73.94871450074335',
  'location': {'latitude': '40.749154529878716',
   'longitude': '-73.94871450074335',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981704',
  'created_date': '2024-11-05T01:44:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10023',
  'incident_address': '335 COLUMBUS AVENUE',
  'street_name': 'COLUMBUS AVENUE',
  'cross_street_1': 'WEST   75 STREET',
  'cross_street_2': 'WEST   76 STREET',
  'intersection_street_1': 'WEST   75 STREET',
  'intersection_street_2': 'WEST   76 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'COLUMBUS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:41:35.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011280061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990612',
  'y_coordinate_state_plane': '223383',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.77980870052613',
  'longitude': '-73.9770282521443',
  'location': {'latitude': '40.77980870052613',
   'longitude': '-73.9770282521443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976829',
  'created_date': '2024-11-05T01:43:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10475',
  'incident_address': '3500 ROPES AVENUE',
  'street_name': 'ROPES AVENUE',
  'cross_street_1': 'HOLLERS AVENUE',
  'cross_street_2': 'FLINT AVENUE',
  'intersection_street_1': 'HOLLERS AVENUE',
  'intersection_street_2': 'FLINT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ROPES AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2056530035',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1034579',
  'y_coordinate_state_plane': '262950',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88826745623688',
  'longitude': '-73.81797671114954',
  'location': {'latitude': '40.88826745623688',
   'longitude': '-73.81797671114954',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984983',
  'created_date': '2024-11-05T01:42:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11212',
  'incident_address': '290 BLAKE AVENUE',
  'street_name': 'BLAKE AVENUE',
  'cross_street_1': 'ROCKAWAY AVENUE',
  'cross_street_2': 'OSBORN STREET',
  'intersection_street_1': 'ROCKAWAY AVENUE',
  'intersection_street_2': 'OSBORN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BLAKE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:19:15.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035610001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009564',
  'y_coordinate_state_plane': '181844',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66576031487852',
  'longitude': '-73.90875312039908',
  'location': {'latitude': '40.66576031487852',
   'longitude': '-73.90875312039908',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983290',
  'created_date': '2024-11-05T01:42:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11354',
  'incident_address': '144-17 27 AVENUE',
  'street_name': '27 AVENUE',
  'cross_street_1': 'PARSONS BOULEVARD',
  'cross_street_2': '146 STREET',
  'intersection_street_1': 'PARSONS BOULEVARD',
  'intersection_street_2': '146 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '27 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4047810075',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032935',
  'y_coordinate_state_plane': '221235',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77378122528897',
  'longitude': '-73.82422523492467',
  'location': {'latitude': '40.77378122528897',
   'longitude': '-73.82422523492467',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981699',
  'created_date': '2024-11-05T01:41:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '963 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:18:57.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003966',
  'y_coordinate_state_plane': '242285',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831669762919574',
  'longitude': '-73.9287544719845',
  'location': {'latitude': '40.831669762919574',
   'longitude': '-73.9287544719845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980261',
  'created_date': '2024-11-05T01:40:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '2284 BRONX PARK EAST',
  'street_name': 'BRONX PARK EAST',
  'cross_street_1': 'THWAITES PLACE',
  'cross_street_2': 'WARING AVENUE',
  'intersection_street_1': 'THWAITES PLACE',
  'intersection_street_2': 'WARING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRONX PARK EAST',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043400010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019992',
  'y_coordinate_state_plane': '252471',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85957699396822',
  'longitude': '-73.87078885989837',
  'location': {'latitude': '40.85957699396822',
   'longitude': '-73.87078885989837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977211',
  'created_date': '2024-11-05T01:40:21.000',
  'closed_date': '2024-11-05T01:47:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1398 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'ELLIOT PLACE',
  'cross_street_2': 'EAST  170 STREET',
  'intersection_street_1': 'ELLIOT PLACE',
  'intersection_street_2': 'EAST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2024-11-05T01:47:36.000',
  'community_board': '04 BRONX',
  'bbl': '2028310048',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008079',
  'y_coordinate_state_plane': '244798',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83855707927812',
  'longitude': '-73.91388286014495',
  'location': {'latitude': '40.83855707927812',
   'longitude': '-73.91388286014495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986888',
  'created_date': '2024-11-05T01:39:27.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'New Tree Request',
  'descriptor': 'For One Address',
  'location_type': 'Street',
  'incident_zip': '11211',
  'incident_address': '140 HOPE STREET',
  'street_name': 'HOPE STREET',
  'cross_street_1': 'KEAP STREET',
  'cross_street_2': 'POWERS STREET',
  'intersection_street_1': 'KEAP STREET',
  'intersection_street_2': 'POWERS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOPE STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3023870002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997401',
  'y_coordinate_state_plane': '198677',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.711989444544884',
  'longitude': '-73.95256301626101',
  'location': {'latitude': '40.711989444544884',
   'longitude': '-73.95256301626101',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978479',
  'created_date': '2024-11-05T01:39:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10002',
  'incident_address': 'EAST HOUSTON STREET',
  'street_name': 'EAST HOUSTON STREET',
  'cross_street_1': 'EAST HOUSTON STREET',
  'cross_street_2': 'FDR DRIVE',
  'intersection_street_1': 'EAST HOUSTON STREET',
  'intersection_street_2': 'FDR DRIVE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:40:30.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991204',
  'y_coordinate_state_plane': '201178',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.718861131911176',
  'longitude': '-73.9749136351143',
  'location': {'latitude': '40.718861131911176',
   'longitude': '-73.9749136351143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978627',
  'created_date': '2024-11-05T01:38:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': 'WEST  163 STREET',
  'street_name': 'WEST  163 STREET',
  'cross_street_1': 'WEST  163 STREET',
  'cross_street_2': 'WOODYCREST AVENUE',
  'intersection_street_1': 'WEST  163 STREET',
  'intersection_street_2': 'WOODYCREST AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:19:10.000',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004019',
  'y_coordinate_state_plane': '242369',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831900200234024',
  'longitude': '-73.92856270428858',
  'location': {'latitude': '40.831900200234024',
   'longitude': '-73.92856270428858',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978625',
  'created_date': '2024-11-05T01:36:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '957 WOODYCREST AVENUE',
  'street_name': 'WOODYCREST AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  163 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WOODYCREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:19:35.000',
  'community_board': '04 BRONX',
  'bbl': '2025110068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003936',
  'y_coordinate_state_plane': '242233',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8315271048226',
  'longitude': '-73.92886303221528',
  'location': {'latitude': '40.8315271048226',
   'longitude': '-73.92886303221528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976906',
  'created_date': '2024-11-05T01:35:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Store/Commercial',
  'incident_zip': '10026',
  'incident_address': '2057 FREDERICK DOUGLASS BOULEVARD',
  'street_name': 'FREDERICK DOUGLASS BOULEVARD',
  'cross_street_1': 'WEST  111 STREET',
  'cross_street_2': 'WEST  112 STREET',
  'intersection_street_1': 'WEST  111 STREET',
  'intersection_street_2': 'WEST  112 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '8 AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018460044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996027',
  'y_coordinate_state_plane': '231313',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.801568858008054',
  'longitude': '-73.9574620055256',
  'location': {'latitude': '40.801568858008054',
   'longitude': '-73.9574620055256',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981862',
  'created_date': '2024-11-05T01:35:14.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Other',
  'incident_zip': '10035',
  'incident_address': '170 EAST  121 STREET',
  'street_name': 'EAST  121 STREET',
  'cross_street_1': 'SYLVAN COURT',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'SYLVAN COURT',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  121 STREET',
  'status': 'In Progress',
  'community_board': '11 MANHATTAN',
  'bbl': '1017690045',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001312',
  'y_coordinate_state_plane': '231263',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.801422996984556',
  'longitude': '-73.93837295553213',
  'location': {'latitude': '40.801422996984556',
   'longitude': '-73.93837295553213',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978565',
  'created_date': '2024-11-05T01:34:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11001',
  'incident_address': '254-12 84 ROAD',
  'street_name': '84 ROAD',
  'cross_street_1': 'LITTLE NECK PARKWAY',
  'cross_street_2': '256 STREET',
  'intersection_street_1': 'LITTLE NECK PARKWAY',
  'intersection_street_2': '256 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLORAL PARK',
  'landmark': '84 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:02:10.000',
  'community_board': '13 QUEENS',
  'bbl': '4087830010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1063853',
  'y_coordinate_state_plane': '207400',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73558351480602',
  'longitude': '-73.71276177393412',
  'location': {'latitude': '40.73558351480602',
   'longitude': '-73.71276177393412',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985472',
  'created_date': '2024-11-05T01:34:02.000',
  'closed_date': '2024-11-05T01:47:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11237',
  'incident_address': '1084 FLUSHING AVENUE',
  'street_name': 'FLUSHING AVENUE',
  'cross_street_1': 'PORTER AVENUE',
  'cross_street_2': 'VARICK AVENUE',
  'intersection_street_1': 'PORTER AVENUE',
  'intersection_street_2': 'VARICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLUSHING AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:47:46.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031590015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004256',
  'y_coordinate_state_plane': '196156',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.705057053881696',
  'longitude': '-73.92784383952036',
  'location': {'latitude': '40.705057053881696',
   'longitude': '-73.92784383952036',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986939',
  'created_date': '2024-11-05T01:33:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11233',
  'incident_address': '409 CHAUNCEY STREET',
  'street_name': 'CHAUNCEY STREET',
  'cross_street_1': 'HOWARD AVENUE',
  'cross_street_2': 'SARATOGA AVENUE',
  'intersection_street_1': 'HOWARD AVENUE',
  'intersection_street_2': 'SARATOGA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CHAUNCEY STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:29:57.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3015090053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006946',
  'y_coordinate_state_plane': '187651',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.681706316131695',
  'longitude': '-73.91817040733372',
  'location': {'latitude': '40.681706316131695',
   'longitude': '-73.91817040733372',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983700',
  'created_date': '2024-11-05T01:33:13.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Other',
  'incident_zip': '10013',
  'incident_address': '60 LAFAYETTE STREET',
  'street_name': 'LAFAYETTE STREET',
  'cross_street_1': 'LEONARD STREET',
  'cross_street_2': 'FRANKLIN STREET',
  'intersection_street_1': 'LEONARD STREET',
  'intersection_street_2': 'FRANKLIN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LAFAYETTE STREET',
  'status': 'In Progress',
  'community_board': '01 MANHATTAN',
  'bbl': '1001710031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983605',
  'y_coordinate_state_plane': '200302',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.716459431762694',
  'longitude': '-74.0023267359905',
  'location': {'latitude': '40.716459431762694',
   'longitude': '-74.0023267359905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977094',
  'created_date': '2024-11-05T01:31:15.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Subway',
  'status': 'In Progress',
  'community_board': 'Unspecified BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004801',
  'y_coordinate_state_plane': '240930',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'bridge_highway_name': 'D',
  'bridge_highway_direction': 'B D to Bedford Pk Blvd & 205 St',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.827948773847346',
  'longitude': '-73.92574127710843',
  'location': {'latitude': '40.827948773847346',
   'longitude': '-73.92574127710843',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985545',
  'created_date': '2024-11-05T01:26:54.000',
  'closed_date': '2024-11-05T01:33:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '535 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:33:58.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850069',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995845',
  'y_coordinate_state_plane': '172805',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.640978830435685',
  'longitude': '-73.95822017503669',
  'location': {'latitude': '40.640978830435685',
   'longitude': '-73.95822017503669',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980747',
  'created_date': '2024-11-05T01:26:29.000',
  'closed_date': '2024-11-05T01:33:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '30 AVENUE',
  'street_name': '30 AVENUE',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '57 STREET',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '57 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:33:38.000',
  'community_board': '01 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010690',
  'y_coordinate_state_plane': '215992',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'SUV',
  'latitude': '40.75948508447133',
  'longitude': '-73.90456023231575',
  'location': {'latitude': '40.75948508447133',
   'longitude': '-73.90456023231575',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982519',
  'created_date': '2024-11-05T01:26:24.000',
  'closed_date': '2024-11-05T01:33:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '535 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:33:54.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850069',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995845',
  'y_coordinate_state_plane': '172805',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.640978830435685',
  'longitude': '-73.95822017503669',
  'location': {'latitude': '40.640978830435685',
   'longitude': '-73.95822017503669',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980807',
  'created_date': '2024-11-05T01:26:23.000',
  'closed_date': '2024-11-05T01:33:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '51-40 30 AVENUE',
  'street_name': '30 AVENUE',
  'cross_street_1': '56 PLACE',
  'cross_street_2': '57 STREET',
  'intersection_street_1': '56 PLACE',
  'intersection_street_2': '57 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '30 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:33:49.000',
  'community_board': '01 QUEENS',
  'bbl': '4011110001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010570',
  'y_coordinate_state_plane': '216003',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75951563467958',
  'longitude': '-73.90499334973188',
  'location': {'latitude': '40.75951563467958',
   'longitude': '-73.90499334973188',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982505',
  'created_date': '2024-11-05T01:25:49.000',
  'closed_date': '2024-11-05T01:42:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '36 AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'EAST    4 STREET',
  'cross_street_2': 'EAST    5 STREET',
  'intersection_street_1': 'EAST    4 STREET',
  'intersection_street_2': 'EAST    5 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE D',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:42:28.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003560001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990431',
  'y_coordinate_state_plane': '202096',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.721381394507155',
  'longitude': '-73.97770136834177',
  'location': {'latitude': '40.721381394507155',
   'longitude': '-73.97770136834177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978352',
  'created_date': '2024-11-05T01:25:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '2873 EAST  195 STREET',
  'street_name': 'EAST  195 STREET',
  'cross_street_1': 'MAYFLOWER AVENUE',
  'cross_street_2': 'HOBART AVENUE',
  'intersection_street_1': 'MAYFLOWER AVENUE',
  'intersection_street_2': 'HOBART AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  195 STREET',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2042420047',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1030698',
  'y_coordinate_state_plane': '250161',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85318691033629',
  'longitude': '-73.83210161872913',
  'location': {'latitude': '40.85318691033629',
   'longitude': '-73.83210161872913',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975610',
  'created_date': '2024-11-05T01:24:53.000',
  'closed_date': '2024-11-05T01:29:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10038',
  'incident_address': '246 FRONT STREET',
  'street_name': 'FRONT STREET',
  'cross_street_1': 'PECK SLIP',
  'cross_street_2': 'DOVER STREET',
  'intersection_street_1': 'PECK SLIP',
  'intersection_street_2': 'DOVER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FRONT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:29:39.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1001070034',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983961',
  'y_coordinate_state_plane': '197251',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70808518187062',
  'longitude': '-74.00104239104822',
  'location': {'latitude': '40.70808518187062',
   'longitude': '-74.00104239104822',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975381',
  'created_date': '2024-11-05T01:24:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2735 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': 'SHORE PARKWAY',
  'cross_street_2': 'NASSAU COURT',
  'intersection_street_1': 'SHORE PARKWAY',
  'intersection_street_2': 'NASSAU COURT',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   13 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3087667501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996585',
  'y_coordinate_state_plane': '152262',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58459153978958',
  'longitude': '-73.9555912879191',
  'location': {'latitude': '40.58459153978958',
   'longitude': '-73.9555912879191',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980188',
  'created_date': '2024-11-05T01:24:23.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Non-Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11208',
  'incident_address': 'EUCLID AVENUE',
  'street_name': 'EUCLID AVENUE',
  'cross_street_1': 'EUCLID AVENUE',
  'cross_street_2': 'PITKIN AVENUE',
  'intersection_street_1': 'EUCLID AVENUE',
  'intersection_street_2': 'PITKIN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1019779',
  'y_coordinate_state_plane': '185370',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.675403287021595',
  'longitude': '-73.87191357758088',
  'location': {'latitude': '40.675403287021595',
   'longitude': '-73.87191357758088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985570',
  'created_date': '2024-11-05T01:24:20.000',
  'closed_date': '2024-11-05T01:48:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '157 MOFFAT STREET',
  'street_name': 'MOFFAT STREET',
  'cross_street_1': 'EVERGREEN AVENUE',
  'cross_street_2': 'CENTRAL AVENUE',
  'intersection_street_1': 'EVERGREEN AVENUE',
  'intersection_street_2': 'CENTRAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MOFFAT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:49:03.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034400047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010054',
  'y_coordinate_state_plane': '189581',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68699520788959',
  'longitude': '-73.90695724452216',
  'location': {'latitude': '40.68699520788959',
   'longitude': '-73.90695724452216',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980262',
  'created_date': '2024-11-05T01:24:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '37 PINE STREET',
  'street_name': 'PINE STREET',
  'cross_street_1': 'ETNA STREET',
  'cross_street_2': 'RIDGEWOOD AVENUE',
  'intersection_street_1': 'ETNA STREET',
  'intersection_street_2': 'RIDGEWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PINE STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3041180005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1019249',
  'y_coordinate_state_plane': '189167',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68582729053537',
  'longitude': '-73.8738045699107',
  'location': {'latitude': '40.68582729053537',
   'longitude': '-73.8738045699107',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980717',
  'created_date': '2024-11-05T01:24:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10473',
  'incident_address': '820 THIERIOT AVENUE',
  'street_name': 'THIERIOT AVENUE',
  'cross_street_1': 'LAFAYETTE AVENUE',
  'cross_street_2': 'STORY AVENUE',
  'intersection_street_1': 'LAFAYETTE AVENUE',
  'intersection_street_2': 'STORY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'THIERIOT AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2036420030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022397',
  'y_coordinate_state_plane': '238840',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82215385559872',
  'longitude': '-73.8621720769862',
  'location': {'latitude': '40.82215385559872',
   'longitude': '-73.8621720769862',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982485',
  'created_date': '2024-11-05T01:23:27.000',
  'closed_date': '2024-11-05T01:46:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11101',
  'incident_address': '40-04 VERNON BOULEVARD',
  'street_name': 'VERNON BOULEVARD',
  'cross_street_1': '40 AVENUE',
  'cross_street_2': '41 AVENUE',
  'intersection_street_1': '40 AVENUE',
  'intersection_street_2': '41 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': 'VERNON BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:46:39.000',
  'community_board': '01 QUEENS',
  'bbl': '4004700001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '999242',
  'y_coordinate_state_plane': '215345',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75773605874535',
  'longitude': '-73.94588520293681',
  'location': {'latitude': '40.75773605874535',
   'longitude': '-73.94588520293681',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978353',
  'created_date': '2024-11-05T01:23:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '2889 EAST  195 STREET',
  'street_name': 'EAST  195 STREET',
  'cross_street_1': 'MAYFLOWER AVENUE',
  'cross_street_2': 'HOBART AVENUE',
  'intersection_street_1': 'MAYFLOWER AVENUE',
  'intersection_street_2': 'HOBART AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  195 STREET',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2042420039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1030828',
  'y_coordinate_state_plane': '250151',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85315877850086',
  'longitude': '-73.8316317705385',
  'location': {'latitude': '40.85315877850086',
   'longitude': '-73.8316317705385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985423',
  'created_date': '2024-11-05T01:22:07.000',
  'closed_date': '2024-11-05T01:41:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11435',
  'incident_address': '109-28 LIVERPOOL STREET',
  'street_name': 'LIVERPOOL STREET',
  'cross_street_1': 'FERNDALE AVENUE',
  'cross_street_2': 'GLASSBORO AVENUE',
  'intersection_street_1': 'FERNDALE AVENUE',
  'intersection_street_2': 'GLASSBORO AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'LIVERPOOL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:41:29.000',
  'community_board': '12 QUEENS',
  'bbl': '4119410250',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039867',
  'y_coordinate_state_plane': '190687',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68989378900059',
  'longitude': '-73.79945018473455',
  'location': {'latitude': '40.68989378900059',
   'longitude': '-73.79945018473455',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983418',
  'created_date': '2024-11-05T01:21:50.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Subway',
  'status': 'In Progress',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '995833',
  'y_coordinate_state_plane': '230961',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': 'C',
  'bridge_highway_direction': 'B C Uptown & The Bronx',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.80060297084577',
  'longitude': '-73.95816333192323',
  'location': {'latitude': '40.80060297084577',
   'longitude': '-73.95816333192323',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979182',
  'created_date': '2024-11-05T01:20:51.000',
  'closed_date': '2024-11-05T01:47:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '11237',
  'incident_address': '1084 FLUSHING AVENUE',
  'street_name': 'FLUSHING AVENUE',
  'cross_street_1': 'PORTER AVENUE',
  'cross_street_2': 'VARICK AVENUE',
  'intersection_street_1': 'PORTER AVENUE',
  'intersection_street_2': 'VARICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLUSHING AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:47:29.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031590015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004256',
  'y_coordinate_state_plane': '196156',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.705057053881696',
  'longitude': '-73.92784383952036',
  'location': {'latitude': '40.705057053881696',
   'longitude': '-73.92784383952036',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983294',
  'created_date': '2024-11-05T01:19:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11417',
  'incident_address': '107-32 76 STREET',
  'street_name': '76 STREET',
  'cross_street_1': 'PITKIN AVENUE',
  'cross_street_2': 'NORTH CONDUIT AVENUE',
  'intersection_street_1': 'PITKIN AVENUE',
  'intersection_street_2': 'NORTH CONDUIT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '76 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4091270033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022885',
  'y_coordinate_state_plane': '185731',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67638113868592',
  'longitude': '-73.86071401361735',
  'location': {'latitude': '40.67638113868592',
   'longitude': '-73.86071401361735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984986',
  'created_date': '2024-11-05T01:18:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '2 SEAMAN AVENUE',
  'street_name': 'SEAMAN AVENUE',
  'cross_street_1': 'DYCKMAN STREET',
  'cross_street_2': 'CUMMING STREET',
  'intersection_street_1': 'DYCKMAN STREET',
  'intersection_street_2': 'CUMMING STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SEAMAN AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1022470056',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004197',
  'y_coordinate_state_plane': '254915',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8663348510651',
  'longitude': '-73.92788215861218',
  'location': {'latitude': '40.8663348510651',
   'longitude': '-73.92788215861218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983404',
  'created_date': '2024-11-05T01:18:19.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '11205',
  'incident_address': '54 CUMBERLAND STREET',
  'street_name': 'CUMBERLAND STREET',
  'cross_street_1': 'FLUSHING AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'FLUSHING AVENUE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CUMBERLAND STREET',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3020290048',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991308',
  'y_coordinate_state_plane': '193102',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.696694340077364',
  'longitude': '-73.97454692341307',
  'location': {'latitude': '40.696694340077364',
   'longitude': '-73.97454692341307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986591',
  'created_date': '2024-11-05T01:17:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11218',
  'incident_address': '3841 18 AVENUE',
  'street_name': '18 AVENUE',
  'cross_street_1': 'EAST    7 STREET',
  'cross_street_2': 'OCEAN PARKWAY',
  'intersection_street_1': 'EAST    7 STREET',
  'intersection_street_2': 'OCEAN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:23:12.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3054170020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992274',
  'y_coordinate_state_plane': '170118',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.633607543827594',
  'longitude': '-73.97109061843709',
  'location': {'latitude': '40.633607543827594',
   'longitude': '-73.97109061843709',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978571',
  'created_date': '2024-11-05T01:16:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '131 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  116 STREET',
  'cross_street_2': 'WEST  117 STREET',
  'intersection_street_1': 'WEST  116 STREET',
  'intersection_street_2': 'WEST  117 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:53:04.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019220041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997339',
  'y_coordinate_state_plane': '232197',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.803993349077885',
  'longitude': '-73.95272139805937',
  'location': {'latitude': '40.803993349077885',
   'longitude': '-73.95272139805937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981932',
  'created_date': '2024-11-05T01:16:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '6720 19 AVENUE',
  'street_name': '19 AVENUE',
  'cross_street_1': '67 STREET',
  'cross_street_2': '68 STREET',
  'intersection_street_1': '67 STREET',
  'intersection_street_2': '68 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '19 AVENUE',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3055690045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987179',
  'y_coordinate_state_plane': '163895',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.616529863535874',
  'longitude': '-73.98944991101895',
  'location': {'latitude': '40.616529863535874',
   'longitude': '-73.98944991101895',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975362',
  'created_date': '2024-11-05T01:16:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Indoor',
  'location_type': 'Other',
  'incident_zip': '10473',
  'incident_address': '740 BEACH AVENUE',
  'street_name': 'BEACH AVENUE',
  'cross_street_1': 'SEWARD AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'intersection_street_1': 'SEWARD AVENUE',
  'intersection_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BEACH AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:08:11.000',
  'community_board': '09 BRONX',
  'bbl': '2035980017',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022009',
  'y_coordinate_state_plane': '238046',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.819976219579004',
  'longitude': '-73.86357841506774',
  'location': {'latitude': '40.819976219579004',
   'longitude': '-73.86357841506774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975371',
  'created_date': '2024-11-05T01:15:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '24-26 78 STREET',
  'street_name': '78 STREET',
  'cross_street_1': '24 AVENUE',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': '24 AVENUE',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '78 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4010410022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014538',
  'y_coordinate_state_plane': '217595',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76387255937824',
  'longitude': '-73.89066299980581',
  'location': {'latitude': '40.76387255937824',
   'longitude': '-73.89066299980581',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980815',
  'created_date': '2024-11-05T01:14:33.000',
  'closed_date': '2024-11-05T01:30:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '233 LANDING ROAD',
  'street_name': 'LANDING ROAD',
  'cross_street_1': 'CEDAR AVENUE',
  'cross_street_2': 'MAJOR DEEGAN EXPRESSWAY',
  'intersection_street_1': 'CEDAR AVENUE',
  'intersection_street_2': 'MAJOR DEEGAN EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LANDING ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:30:39.000',
  'community_board': '07 BRONX',
  'bbl': '2032367501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008841',
  'y_coordinate_state_plane': '253488',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86240645467484',
  'longitude': '-73.91109714827905',
  'location': {'latitude': '40.86240645467484',
   'longitude': '-73.91109714827905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985433',
  'created_date': '2024-11-05T01:13:39.000',
  'closed_date': '2024-11-05T01:37:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8705 21 AVENUE',
  'street_name': '21 AVENUE',
  'cross_street_1': 'BENSON AVENUE',
  'cross_street_2': 'BATH AVENUE',
  'intersection_street_1': 'BENSON AVENUE',
  'intersection_street_2': 'BATH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '21 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:37:13.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064120030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984705',
  'y_coordinate_state_plane': '158255',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60104969234449',
  'longitude': '-73.99836149623887',
  'location': {'latitude': '40.60104969234449',
   'longitude': '-73.99836149623887',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987524',
  'created_date': '2024-11-05T01:12:05.000',
  'closed_date': '2024-11-05T01:41:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '50 AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'EAST    4 STREET',
  'cross_street_2': 'EAST    5 STREET',
  'intersection_street_1': 'EAST    4 STREET',
  'intersection_street_2': 'EAST    5 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE D',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:41:18.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003560001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990491',
  'y_coordinate_state_plane': '202203',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72167504153717',
  'longitude': '-73.97748481258955',
  'location': {'latitude': '40.72167504153717',
   'longitude': '-73.97748481258955',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985764',
  'created_date': '2024-11-05T01:11:49.000',
  'closed_date': '2024-11-05T01:24:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11236',
  'incident_address': '1663 RALPH AVENUE',
  'street_name': 'RALPH AVENUE',
  'cross_street_1': 'EAST   77 STREET',
  'cross_street_2': 'EAST   76 STREET',
  'intersection_street_1': 'EAST   77 STREET',
  'intersection_street_2': 'EAST   76 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RALPH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:24:09.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3079817501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006721',
  'y_coordinate_state_plane': '171099',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63627531109799',
  'longitude': '-73.9190367941174',
  'location': {'latitude': '40.63627531109799',
   'longitude': '-73.9190367941174',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986808',
  'created_date': '2024-11-05T01:10:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '32-04 86 STREET',
  'street_name': '86 STREET',
  'cross_street_1': '32 AVENUE',
  'cross_street_2': 'NORTHERN BOULEVARD',
  'intersection_street_1': '32 AVENUE',
  'intersection_street_2': 'NORTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '86 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:07:11.000',
  'community_board': '03 QUEENS',
  'bbl': '4014150008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016945',
  'y_coordinate_state_plane': '215361',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7577322343659',
  'longitude': '-73.88198481783013',
  'location': {'latitude': '40.7577322343659',
   'longitude': '-73.88198481783013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976754',
  'created_date': '2024-11-05T01:10:30.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Street',
  'incident_zip': '11203',
  'incident_address': '354 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'CHURCH AVENUE',
  'cross_street_2': 'SNYDER AVENUE',
  'intersection_street_1': 'CHURCH AVENUE',
  'intersection_street_2': 'SNYDER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   52 STREET',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3046990001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004103',
  'y_coordinate_state_plane': '176783',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65188291692251',
  'longitude': '-73.92845273897026',
  'location': {'latitude': '40.65188291692251',
   'longitude': '-73.92845273897026',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981640',
  'created_date': '2024-11-05T01:10:16.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '11432',
  'incident_address': '169-13 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': '169 STREET',
  'cross_street_2': '170 STREET',
  'intersection_street_1': '169 STREET',
  'intersection_street_2': '170 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4098440001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041692',
  'y_coordinate_state_plane': '198309',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71080268192493',
  'longitude': '-73.7928044168754',
  'location': {'latitude': '40.71080268192493',
   'longitude': '-73.7928044168754',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987514',
  'created_date': '2024-11-05T01:09:55.000',
  'closed_date': '2024-11-05T01:43:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': 'AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'AVENUE D',
  'cross_street_2': 'EAST    4 STREET',
  'intersection_street_1': 'AVENUE D',
  'intersection_street_2': 'EAST    4 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:43:04.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990406',
  'y_coordinate_state_plane': '202058',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72127711111485',
  'longitude': '-73.97779159332066',
  'location': {'latitude': '40.72127711111485',
   'longitude': '-73.97779159332066',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979997',
  'created_date': '2024-11-05T01:09:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10009',
  'incident_address': '298 EAST    3 STREET',
  'street_name': 'EAST    3 STREET',
  'cross_street_1': 'AVENUE C',
  'cross_street_2': 'AVENUE D',
  'intersection_street_1': 'AVENUE C',
  'intersection_street_2': 'AVENUE D',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:03:54.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003720022',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989835',
  'y_coordinate_state_plane': '202084',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72134885375417',
  'longitude': '-73.97985151322482',
  'location': {'latitude': '40.72134885375417',
   'longitude': '-73.97985151322482',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980131',
  'created_date': '2024-11-05T01:09:41.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Indoor Air Quality',
  'descriptor': 'Chemical Vapors/Gases/Odors',
  'location_type': '1-2 Family Dwelling',
  'incident_zip': '11692',
  'incident_address': '192 WHITE SANDS WAY',
  'street_name': 'WHITE SANDS WAY',
  'cross_street_1': 'OCEAN AVENUE NORTH',
  'cross_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'intersection_street_1': 'OCEAN AVENUE NORTH',
  'intersection_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ARVERNE',
  'landmark': 'WHITE SANDS WAY',
  'status': 'In Progress',
  'community_board': '14 QUEENS',
  'bbl': '4159050114',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041713',
  'y_coordinate_state_plane': '154728',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.591182531645806',
  'longitude': '-73.79309996296654',
  'location': {'latitude': '40.591182531645806',
   'longitude': '-73.79309996296654',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978549',
  'created_date': '2024-11-05T01:09:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11226',
  'incident_address': '738 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'PARKSIDE AVENUE',
  'cross_street_2': 'CLARKSON AVENUE',
  'intersection_street_1': 'PARKSIDE AVENUE',
  'intersection_street_2': 'CLARKSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLATBUSH AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:21:21.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050540035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995423',
  'y_coordinate_state_plane': '177898',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65495855380513',
  'longitude': '-73.95973231547305',
  'location': {'latitude': '40.65495855380513',
   'longitude': '-73.95973231547305',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987221',
  'created_date': '2024-11-05T01:09:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1864 WALLACE AVENUE',
  'street_name': 'WALLACE AVENUE',
  'cross_street_1': 'MORRIS PARK AVENUE',
  'cross_street_2': 'RHINELANDER AVENUE',
  'intersection_street_1': 'MORRIS PARK AVENUE',
  'intersection_street_2': 'RHINELANDER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALLACE AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2040530032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021898',
  'y_coordinate_state_plane': '247934',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84711637129384',
  'longitude': '-73.86392395643452',
  'location': {'latitude': '40.84711637129384',
   'longitude': '-73.86392395643452',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977070',
  'created_date': '2024-11-05T01:08:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:52:44.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012386',
  'y_coordinate_state_plane': '212417',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'R',
  'bridge_highway_segment': 'Other',
  'latitude': '40.74966739007307',
  'longitude': '-73.89845319094752',
  'location': {'latitude': '40.74966739007307',
   'longitude': '-73.89845319094752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975565',
  'created_date': '2024-11-05T01:07:53.000',
  'closed_date': '2024-11-05T01:47:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11237',
  'incident_address': '1084 FLUSHING AVENUE',
  'street_name': 'FLUSHING AVENUE',
  'cross_street_1': 'PORTER AVENUE',
  'cross_street_2': 'VARICK AVENUE',
  'intersection_street_1': 'PORTER AVENUE',
  'intersection_street_2': 'VARICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLUSHING AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:47:14.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031590015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004256',
  'y_coordinate_state_plane': '196156',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.705057053881696',
  'longitude': '-73.92784383952036',
  'location': {'latitude': '40.705057053881696',
   'longitude': '-73.92784383952036',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985634',
  'created_date': '2024-11-05T01:07:04.000',
  'closed_date': '2024-11-05T01:17:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11229',
  'incident_address': '37 CELESTE COURT',
  'street_name': 'CELESTE COURT',
  'cross_street_1': 'EVERETT AVENUE',
  'cross_street_2': 'DEVON AVENUE',
  'intersection_street_1': 'EVERETT AVENUE',
  'intersection_street_2': 'DEVON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CELESTE COURT',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:17:29.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3089320656',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004455',
  'y_coordinate_state_plane': '155283',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59286913398554',
  'longitude': '-73.92724853506311',
  'location': {'latitude': '40.59286913398554',
   'longitude': '-73.92724853506311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978601',
  'created_date': '2024-11-05T01:06:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10472',
  'incident_address': '1329 COMMONWEALTH AVENUE',
  'street_name': 'COMMONWEALTH AVENUE',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'EAST  174 STREET',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'EAST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COMMONWEALTH AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2038740063',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020596',
  'y_coordinate_state_plane': '242945',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83342849023004',
  'longitude': '-73.86865697421297',
  'location': {'latitude': '40.83342849023004',
   'longitude': '-73.86865697421297',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982504',
  'created_date': '2024-11-05T01:06:22.000',
  'closed_date': '2024-11-05T01:16:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '525 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:16:29.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995836',
  'y_coordinate_state_plane': '172872',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641162742829806',
  'longitude': '-73.95825248933495',
  'location': {'latitude': '40.641162742829806',
   'longitude': '-73.95825248933495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985475',
  'created_date': '2024-11-05T01:06:02.000',
  'closed_date': '2024-11-05T01:39:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11213',
  'incident_address': '1389 ST JOHNS PLACE',
  'street_name': 'ST JOHNS PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST JOHNS PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T01:39:44.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013780069',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003026',
  'y_coordinate_state_plane': '183625',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67066504048014',
  'longitude': '-73.9323150328069',
  'location': {'latitude': '40.67066504048014',
   'longitude': '-73.9323150328069',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975223',
  'created_date': '2024-11-05T01:05:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '1525 MYRTLE AVENUE',
  'street_name': 'MYRTLE AVENUE',
  'cross_street_1': 'IRVING AVENUE',
  'cross_street_2': 'LINDEN STREET',
  'intersection_street_1': 'IRVING AVENUE',
  'intersection_street_2': 'LINDEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MYRTLE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:58:20.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3033280008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008017',
  'y_coordinate_state_plane': '194040',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69923983004887',
  'longitude': '-73.91428641870384',
  'location': {'latitude': '40.69923983004887',
   'longitude': '-73.91428641870384',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976926',
  'created_date': '2024-11-05T01:05:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': 'AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'AVENUE D',
  'cross_street_2': 'EAST    5 STREET',
  'intersection_street_1': 'AVENUE D',
  'intersection_street_2': 'EAST    5 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:09:31.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990529',
  'y_coordinate_state_plane': '202280',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72188636104147',
  'longitude': '-73.97734765101214',
  'location': {'latitude': '40.72188636104147',
   'longitude': '-73.97734765101214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985133',
  'created_date': '2024-11-05T01:05:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '256 EAST  166 STREET',
  'street_name': 'EAST  166 STREET',
  'cross_street_1': 'GRANT AVENUE',
  'cross_street_2': 'MORRIS AVENUE',
  'intersection_street_1': 'GRANT AVENUE',
  'intersection_street_2': 'MORRIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  166 STREET',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2024480016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007462',
  'y_coordinate_state_plane': '241924',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.830670425742035',
  'longitude': '-73.91612261979722',
  'location': {'latitude': '40.830670425742035',
   'longitude': '-73.91612261979722',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981752',
  'created_date': '2024-11-05T01:04:15.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10473',
  'incident_address': '314 NEWMAN AVENUE',
  'street_name': 'NEWMAN AVENUE',
  'cross_street_1': "O'BRIEN AVENUE",
  'cross_street_2': 'COMPTON AVENUE',
  'intersection_street_1': "O'BRIEN AVENUE",
  'intersection_street_2': 'COMPTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'NEWMAN AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2034760014',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024433',
  'y_coordinate_state_plane': '235192',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81213210580248',
  'longitude': '-73.85483771414489',
  'location': {'latitude': '40.81213210580248',
   'longitude': '-73.85483771414489',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983513',
  'created_date': '2024-11-05T01:04:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '753 EAST    5 STREET',
  'street_name': 'EAST    5 STREET',
  'cross_street_1': 'AVENUE C',
  'cross_street_2': 'AVENUE D',
  'intersection_street_1': 'AVENUE C',
  'intersection_street_2': 'AVENUE D',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    5 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:09:20.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003757502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990247',
  'y_coordinate_state_plane': '202440',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.72232571802728',
  'longitude': '-73.97836486187134',
  'location': {'latitude': '40.72232571802728',
   'longitude': '-73.97836486187134',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980485',
  'created_date': '2024-11-05T01:04:00.000',
  'closed_date': '2024-11-05T01:31:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10309',
  'incident_address': '184 WOODVALE AVENUE',
  'street_name': 'WOODVALE AVENUE',
  'cross_street_1': 'EXCELSIOR AVENUE',
  'cross_street_2': 'FINLAY AVENUE',
  'intersection_street_1': 'EXCELSIOR AVENUE',
  'intersection_street_2': 'FINLAY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WOODVALE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:31:23.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5067890048',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '926118',
  'y_coordinate_state_plane': '128747',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.51986550726496',
  'longitude': '-74.20908552918102',
  'location': {'latitude': '40.51986550726496',
   'longitude': '-74.20908552918102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987276',
  'created_date': '2024-11-05T01:03:58.000',
  'closed_date': '2024-11-05T01:16:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '535 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:16:13.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850069',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995845',
  'y_coordinate_state_plane': '172805',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.640978830435685',
  'longitude': '-73.95822017503669',
  'location': {'latitude': '40.640978830435685',
   'longitude': '-73.95822017503669',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976918',
  'created_date': '2024-11-05T01:03:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10458',
  'incident_address': '4656 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'EAST  186 STREET',
  'cross_street_2': 'EAST  187 STREET',
  'intersection_street_1': 'EAST  186 STREET',
  'intersection_street_2': 'EAST  187 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARK AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:13:26.000',
  'community_board': '06 BRONX',
  'bbl': '2030400005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013871',
  'y_coordinate_state_plane': '251924',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85809830373529',
  'longitude': '-73.89291932036653',
  'location': {'latitude': '40.85809830373529',
   'longitude': '-73.89291932036653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986940',
  'created_date': '2024-11-05T01:03:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10463',
  'incident_address': '225 WEST  232 STREET',
  'street_name': 'WEST  232 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'GODWIN TERRACE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'GODWIN TERRACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  232 STREET',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2057540090',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010709',
  'y_coordinate_state_plane': '260028',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.880351339751236',
  'longitude': '-73.90431802232457',
  'location': {'latitude': '40.880351339751236',
   'longitude': '-73.90431802232457',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979901',
  'created_date': '2024-11-05T01:03:08.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10473',
  'incident_address': '314 NEWMAN AVENUE',
  'street_name': 'NEWMAN AVENUE',
  'cross_street_1': "O'BRIEN AVENUE",
  'cross_street_2': 'COMPTON AVENUE',
  'intersection_street_1': "O'BRIEN AVENUE",
  'intersection_street_2': 'COMPTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'NEWMAN AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2034760014',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024433',
  'y_coordinate_state_plane': '235192',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81213210580248',
  'longitude': '-73.85483771414489',
  'location': {'latitude': '40.81213210580248',
   'longitude': '-73.85483771414489',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979092',
  'created_date': '2024-11-05T01:02:53.000',
  'closed_date': '2024-11-05T01:34:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10031',
  'incident_address': '3628 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  149 STREET',
  'cross_street_2': 'WEST  150 STREET',
  'intersection_street_1': 'WEST  149 STREET',
  'intersection_street_2': 'WEST  150 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:34:18.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020810001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998537',
  'y_coordinate_state_plane': '241402',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82925663237593',
  'longitude': '-73.94837452376649',
  'location': {'latitude': '40.82925663237593',
   'longitude': '-73.94837452376649',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975784',
  'created_date': '2024-11-05T01:02:51.000',
  'closed_date': '2024-11-05T01:15:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '525 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:15:55.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995836',
  'y_coordinate_state_plane': '172872',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641162742829806',
  'longitude': '-73.95825248933495',
  'location': {'latitude': '40.641162742829806',
   'longitude': '-73.95825248933495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982274',
  'created_date': '2024-11-05T01:02:50.000',
  'closed_date': '2024-11-05T01:17:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11229',
  'incident_address': '37 CELESTE COURT',
  'street_name': 'CELESTE COURT',
  'cross_street_1': 'EVERETT AVENUE',
  'cross_street_2': 'DEVON AVENUE',
  'intersection_street_1': 'EVERETT AVENUE',
  'intersection_street_2': 'DEVON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CELESTE COURT',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:17:24.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3089320656',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004455',
  'y_coordinate_state_plane': '155283',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59286913398554',
  'longitude': '-73.92724853506311',
  'location': {'latitude': '40.59286913398554',
   'longitude': '-73.92724853506311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987110',
  'created_date': '2024-11-05T01:02:02.000',
  'closed_date': '2024-11-05T01:46:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '11237',
  'incident_address': '1084 FLUSHING AVENUE',
  'street_name': 'FLUSHING AVENUE',
  'cross_street_1': 'PORTER AVENUE',
  'cross_street_2': 'VARICK AVENUE',
  'intersection_street_1': 'PORTER AVENUE',
  'intersection_street_2': 'VARICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLUSHING AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:47:00.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031590015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004256',
  'y_coordinate_state_plane': '196156',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.705057053881696',
  'longitude': '-73.92784383952036',
  'location': {'latitude': '40.705057053881696',
   'longitude': '-73.92784383952036',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975726',
  'created_date': '2024-11-05T01:01:59.000',
  'closed_date': '2024-11-05T01:47:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11230',
  'incident_address': '1555 EAST   19 STREET',
  'street_name': 'EAST   19 STREET',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   19 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:47:10.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067660077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996733',
  'y_coordinate_state_plane': '162304',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61215458834643',
  'longitude': '-73.95503989939718',
  'location': {'latitude': '40.61215458834643',
   'longitude': '-73.95503989939718',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983967',
  'created_date': '2024-11-05T01:01:56.000',
  'closed_date': '2024-11-05T01:15:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '538 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:15:43.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051840025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995841',
  'y_coordinate_state_plane': '172790',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64093766389099',
  'longitude': '-73.95823461385314',
  'location': {'latitude': '40.64093766389099',
   'longitude': '-73.95823461385314',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980147',
  'created_date': '2024-11-05T01:01:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11691',
  'incident_address': '205 BEACH   11 STREET',
  'street_name': 'BEACH   11 STREET',
  'cross_street_1': 'HEYSON ROAD',
  'cross_street_2': 'PLAINVIEW AVENUE',
  'intersection_street_1': 'HEYSON ROAD',
  'intersection_street_2': 'PLAINVIEW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   11 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:14:04.000',
  'community_board': '14 QUEENS',
  'bbl': '4156180024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1054978',
  'y_coordinate_state_plane': '156705',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59651305252812',
  'longitude': '-73.74531783831242',
  'location': {'latitude': '40.59651305252812',
   'longitude': '-73.74531783831242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983480',
  'created_date': '2024-11-05T01:01:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '228 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'ACADEMY STREET',
  'cross_street_2': 'WEST  204 STREET',
  'intersection_street_1': 'ACADEMY STREET',
  'intersection_street_2': 'WEST  204 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1022180035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005865',
  'y_coordinate_state_plane': '253577',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.86265852104764',
  'longitude': '-73.92185586806289',
  'location': {'latitude': '40.86265852104764',
   'longitude': '-73.92185586806289',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984990',
  'created_date': '2024-11-05T01:01:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': 'AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'AVENUE D',
  'cross_street_2': 'EAST    5 STREET',
  'intersection_street_1': 'AVENUE D',
  'intersection_street_2': 'EAST    5 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:09:05.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990529',
  'y_coordinate_state_plane': '202280',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.72188636104147',
  'longitude': '-73.97734765101214',
  'location': {'latitude': '40.72188636104147',
   'longitude': '-73.97734765101214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975846',
  'created_date': '2024-11-05T01:01:06.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Cat',
  'location_type': 'Street',
  'incident_zip': '11219',
  'incident_address': '4901 15 AVENUE',
  'street_name': '15 AVENUE',
  'cross_street_1': '49 STREET',
  'cross_street_2': '50 STREET',
  'intersection_street_1': '49 STREET',
  'intersection_street_2': '50 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '15 AVENUE',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'bbl': '3054530008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987638',
  'y_coordinate_state_plane': '169632',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63227656319504',
  'longitude': '-73.98779374004715',
  'location': {'latitude': '40.63227656319504',
   'longitude': '-73.98779374004715',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985134',
  'created_date': '2024-11-05T01:01:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10461',
  'incident_address': '2516 TRATMAN AVENUE',
  'street_name': 'TRATMAN AVENUE',
  'cross_street_1': 'ST PETERS AVENUE',
  'cross_street_2': 'OVERING STREET',
  'intersection_street_1': 'ST PETERS AVENUE',
  'intersection_street_2': 'OVERING STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TRATMAN AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2039800020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027100',
  'y_coordinate_state_plane': '245167',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83949806593444',
  'longitude': '-73.84513941141752',
  'location': {'latitude': '40.83949806593444',
   'longitude': '-73.84513941141752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976928',
  'created_date': '2024-11-05T01:00:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '322 EAST    4 STREET',
  'street_name': 'EAST    4 STREET',
  'cross_street_1': 'AVENUE C',
  'cross_street_2': 'AVENUE D',
  'intersection_street_1': 'AVENUE C',
  'intersection_street_2': 'AVENUE D',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    4 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:03:26.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003730014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990011',
  'y_coordinate_state_plane': '202274',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.72187024499436',
  'longitude': '-73.97921641173247',
  'location': {'latitude': '40.72187024499436',
   'longitude': '-73.97921641173247',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983298',
  'created_date': '2024-11-05T01:00:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '72 EAST  167 STREET',
  'street_name': 'EAST  167 STREET',
  'cross_street_1': 'GERARD AVENUE',
  'cross_street_2': 'WALTON AVENUE',
  'intersection_street_1': 'GERARD AVENUE',
  'intersection_street_2': 'WALTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  167 STREET',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2024790019',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006389',
  'y_coordinate_state_plane': '243602',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83527880560734',
  'longitude': '-73.91999440289617',
  'location': {'latitude': '40.83527880560734',
   'longitude': '-73.91999440289617',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980516',
  'created_date': '2024-11-05T01:00:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11436',
  'incident_address': '123-34 147 STREET',
  'street_name': '147 STREET',
  'cross_street_1': '123 AVENUE',
  'cross_street_2': 'ROCKAWAY BOULEVARD',
  'intersection_street_1': '123 AVENUE',
  'intersection_street_2': 'ROCKAWAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '147 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:58:26.000',
  'community_board': '12 QUEENS',
  'bbl': '4120500205',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042112',
  'y_coordinate_state_plane': '185399',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67536508181497',
  'longitude': '-73.7914003576766',
  'location': {'latitude': '40.67536508181497',
   'longitude': '-73.7914003576766',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975191',
  'created_date': '2024-11-05T00:59:59.000',
  'closed_date': '2024-11-05T01:39:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10305',
  'incident_address': '196 SAND LANE',
  'street_name': 'SAND LANE',
  'cross_street_1': 'CEDAR AVENUE',
  'cross_street_2': 'OLYMPIA BOULEVARD',
  'intersection_street_1': 'CEDAR AVENUE',
  'intersection_street_2': 'OLYMPIA BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'SAND LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:39:29.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5032840067',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '964986',
  'y_coordinate_state_plane': '155955',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.594715733522115',
  'longitude': '-74.06936515532364',
  'location': {'latitude': '40.594715733522115',
   'longitude': '-74.06936515532364',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982382',
  'created_date': '2024-11-05T00:59:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '59-28 48 AVENUE',
  'street_name': '48 AVENUE',
  'cross_street_1': '59 PLACE',
  'cross_street_2': '60 STREET',
  'intersection_street_1': '59 PLACE',
  'intersection_street_2': '60 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '48 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:42:42.000',
  'community_board': '02 QUEENS',
  'bbl': '4023300012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010479',
  'y_coordinate_state_plane': '208367',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73855702128717',
  'longitude': '-73.90535161211153',
  'location': {'latitude': '40.73855702128717',
   'longitude': '-73.90535161211153',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975360',
  'created_date': '2024-11-05T00:58:13.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Grass/Weeds',
  'location_type': 'Park',
  'incident_zip': '11214',
  'incident_address': '2000 SHORE PARKWAY SR SOUTH',
  'street_name': 'SHORE PARKWAY SR SOUTH',
  'cross_street_1': '27 AVENUE PEDESTRIAN OVERPASS',
  'cross_street_2': 'BELT PARKWAY EXIT    6 EASTBOUND',
  'intersection_street_1': '27 AVENUE PEDESTRIAN OVERPASS',
  'intersection_street_2': 'BELT PARKWAY EXIT    6 EASTBOUND',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHORE PARKWAY',
  'status': 'In Progress',
  'community_board': '13 BROOKLYN',
  'bbl': '3069440165',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986485',
  'y_coordinate_state_plane': '153135',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58699605157698',
  'longitude': '-73.99195321920783',
  'location': {'latitude': '40.58699605157698',
   'longitude': '-73.99195321920783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983973',
  'created_date': '2024-11-05T00:57:44.000',
  'closed_date': '2024-11-05T01:32:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10301',
  'incident_address': '363 VICTORY BOULEVARD',
  'street_name': 'VICTORY BOULEVARD',
  'cross_street_1': 'CEBRA AVENUE',
  'cross_street_2': 'AUSTIN PLACE',
  'intersection_street_1': 'CEBRA AVENUE',
  'intersection_street_2': 'AUSTIN PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VICTORY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:32:59.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001150074',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960304',
  'y_coordinate_state_plane': '170025',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.633323545974164',
  'longitude': '-74.08627382904405',
  'location': {'latitude': '40.633323545974164',
   'longitude': '-74.08627382904405',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984958',
  'created_date': '2024-11-05T00:57:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1729 HARMON STREET',
  'street_name': 'HARMON STREET',
  'cross_street_1': 'CYPRESS AVENUE',
  'cross_street_2': 'SENECA AVENUE',
  'intersection_street_1': 'CYPRESS AVENUE',
  'intersection_street_2': 'SENECA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'HARMAN STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4034320052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008195',
  'y_coordinate_state_plane': '196193',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.705148827559306',
  'longitude': '-73.91363682266224',
  'location': {'latitude': '40.705148827559306',
   'longitude': '-73.91363682266224',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985831',
  'created_date': '2024-11-05T00:56:45.000',
  'closed_date': '2024-11-05T01:46:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '825 GERARD AVENUE',
  'street_name': 'GERARD AVENUE',
  'cross_street_1': 'EAST  157 STREET',
  'cross_street_2': 'EAST  158 STREET',
  'intersection_street_1': 'EAST  157 STREET',
  'intersection_street_2': 'EAST  158 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GERARD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:46:44.000',
  'community_board': '04 BRONX',
  'bbl': '2024830015',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004754',
  'y_coordinate_state_plane': '240171',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.825865645198235',
  'longitude': '-73.92591342579004',
  'location': {'latitude': '40.825865645198235',
   'longitude': '-73.92591342579004',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977257',
  'created_date': '2024-11-05T00:55:56.000',
  'closed_date': '2024-11-05T01:28:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '63-12 75 STREET',
  'street_name': '75 STREET',
  'cross_street_1': 'JUNIPER BOULEVARD SOUTH',
  'cross_street_2': 'PENELOPE AVENUE',
  'intersection_street_1': 'JUNIPER BOULEVARD SOUTH',
  'intersection_street_2': 'PENELOPE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '75 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:29:03.000',
  'community_board': '05 QUEENS',
  'bbl': '4029830015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017102',
  'y_coordinate_state_plane': '200958',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71819902116769',
  'longitude': '-73.88148845093568',
  'location': {'latitude': '40.71819902116769',
   'longitude': '-73.88148845093568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978463',
  'created_date': '2024-11-05T00:54:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '22-54 43 STREET',
  'street_name': '43 STREET',
  'cross_street_1': 'DITMARS BOULEVARD',
  'cross_street_2': '23 AVENUE',
  'intersection_street_1': 'DITMARS BOULEVARD',
  'intersection_street_2': '23 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '43 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:03:41.000',
  'community_board': '01 QUEENS',
  'bbl': '4007830026',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010529',
  'y_coordinate_state_plane': '219947',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77034101156876',
  'longitude': '-73.90512592709108',
  'location': {'latitude': '40.77034101156876',
   'longitude': '-73.90512592709108',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986594',
  'created_date': '2024-11-05T00:54:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '70 MALCOLM X BOULEVARD',
  'street_name': 'MALCOLM X BOULEVARD',
  'cross_street_1': 'WEST  113 STREET',
  'cross_street_2': 'WEST  114 STREET',
  'intersection_street_1': 'WEST  113 STREET',
  'intersection_street_2': 'WEST  114 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LENOX AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:23:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1015960001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997833',
  'y_coordinate_state_plane': '230847',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800287223920805',
  'longitude': '-73.95093975868865',
  'location': {'latitude': '40.800287223920805',
   'longitude': '-73.95093975868865',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978784',
  'created_date': '2024-11-05T00:53:46.000',
  'closed_date': '2024-11-05T01:27:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10025',
  'incident_address': '515 WEST  110 STREET',
  'street_name': 'WEST  110 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CATHEDRAL PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T01:27:46.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1018820020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994021',
  'y_coordinate_state_plane': '231956',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80333616261588',
  'longitude': '-73.96470665072458',
  'location': {'latitude': '40.80333616261588',
   'longitude': '-73.96470665072458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980817',
  'created_date': '2024-11-05T00:53:07.000',
  'closed_date': '2024-11-05T01:09:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11224',
  'incident_address': '2929 WEST   30 STREET',
  'street_name': 'WEST   30 STREET',
  'cross_street_1': 'MERMAID AVENUE',
  'cross_street_2': 'SURF AVENUE',
  'intersection_street_1': 'MERMAID AVENUE',
  'intersection_street_2': 'SURF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:09:23.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070510001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985280',
  'y_coordinate_state_plane': '148621',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57460623557571',
  'longitude': '-73.99629232805066',
  'location': {'latitude': '40.57460623557571',
   'longitude': '-73.99629232805066',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983981',
  'created_date': '2024-11-05T00:52:31.000',
  'closed_date': '2024-11-05T01:09:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11224',
  'incident_address': '2961 WEST   30 STREET',
  'street_name': 'WEST   30 STREET',
  'cross_street_1': 'MERMAID AVENUE',
  'cross_street_2': 'SURF AVENUE',
  'intersection_street_1': 'MERMAID AVENUE',
  'intersection_street_2': 'SURF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:09:10.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070510033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985329',
  'y_coordinate_state_plane': '148281',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57367299637156',
  'longitude': '-73.99611599792371',
  'location': {'latitude': '40.57367299637156',
   'longitude': '-73.99611599792371',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987347',
  'created_date': '2024-11-05T00:51:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': '945 EAST   57 STREET',
  'street_name': 'EAST   57 STREET',
  'cross_street_1': 'FLATLANDS AVENUE',
  'cross_street_2': 'AVENUE J',
  'intersection_street_1': 'FLATLANDS AVENUE',
  'intersection_street_2': 'AVENUE J',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   57 STREET',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3077830018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006118',
  'y_coordinate_state_plane': '168677',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62962894633177',
  'longitude': '-73.92121725548597',
  'location': {'latitude': '40.62962894633177',
   'longitude': '-73.92121725548597',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980842',
  'created_date': '2024-11-05T00:51:28.000',
  'closed_date': '2024-11-05T01:08:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11224',
  'incident_address': '2930 WEST   30 STREET',
  'street_name': 'WEST   30 STREET',
  'cross_street_1': 'MERMAID AVENUE',
  'cross_street_2': 'SURF AVENUE',
  'intersection_street_1': 'MERMAID AVENUE',
  'intersection_street_2': 'SURF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:08:54.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070500001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985326',
  'y_coordinate_state_plane': '148262',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57362084545696',
  'longitude': '-73.9961267998414',
  'location': {'latitude': '40.57362084545696',
   'longitude': '-73.9961267998414',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978533',
  'created_date': '2024-11-05T00:50:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '21-62 38 STREET',
  'street_name': '38 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'DITMARS BOULEVARD',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'DITMARS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '38 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:08:10.000',
  'community_board': '01 QUEENS',
  'bbl': '4008080057',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010260',
  'y_coordinate_state_plane': '221261',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77394839179522',
  'longitude': '-73.90609200115286',
  'location': {'latitude': '40.77394839179522',
   'longitude': '-73.90609200115286',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983922',
  'created_date': '2024-11-05T00:50:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11414',
  'incident_address': '151-19 78 STREET',
  'street_name': '78 STREET',
  'cross_street_1': 'STANLEY AVENUE',
  'cross_street_2': '153 AVENUE',
  'intersection_street_1': 'STANLEY AVENUE',
  'intersection_street_2': '153 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '78 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114257502',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024094',
  'y_coordinate_state_plane': '182209',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66670869147315',
  'longitude': '-73.85637618176581',
  'location': {'latitude': '40.66670869147315',
   'longitude': '-73.85637618176581',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987351',
  'created_date': '2024-11-05T00:50:05.000',
  'closed_date': '2024-11-05T01:09:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1246 SHAKESPEARE AVENUE',
  'street_name': 'SHAKESPEARE AVENUE',
  'cross_street_1': 'WEST  168 STREET',
  'cross_street_2': 'WOODYCREST AVENUE',
  'intersection_street_1': 'WEST  168 STREET',
  'intersection_street_2': 'WOODYCREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SHAKESPEARE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:09:25.000',
  'community_board': '04 BRONX',
  'bbl': '2025060075',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005524',
  'y_coordinate_state_plane': '244729',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83837421902348',
  'longitude': '-73.92311675111196',
  'location': {'latitude': '40.83837421902348',
   'longitude': '-73.92311675111196',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984108',
  'created_date': '2024-11-05T00:49:10.000',
  'closed_date': '2024-11-05T00:52:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11201',
  'incident_address': '177 SANDS STREET',
  'street_name': 'SANDS STREET',
  'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'cross_street_2': 'BIKE PATH',
  'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'intersection_street_2': 'BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SANDS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:52:08.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000680001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988793',
  'y_coordinate_state_plane': '194233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699800319891985',
  'longitude': '-73.98361593748928',
  'location': {'latitude': '40.699800319891985',
   'longitude': '-73.98361593748928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980239',
  'created_date': '2024-11-05T00:48:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '748 EAST    5 STREET',
  'street_name': 'EAST    5 STREET',
  'cross_street_1': 'AVENUE C',
  'cross_street_2': 'AVENUE D',
  'intersection_street_1': 'AVENUE C',
  'intersection_street_2': 'AVENUE D',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    5 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:08:51.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003740032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990307',
  'y_coordinate_state_plane': '202400',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7222158868213',
  'longitude': '-73.97814843826714',
  'location': {'latitude': '40.7222158868213',
   'longitude': '-73.97814843826714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985491',
  'created_date': '2024-11-05T00:47:50.000',
  'closed_date': '2024-11-05T00:52:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11201',
  'incident_address': '177 SANDS STREET',
  'street_name': 'SANDS STREET',
  'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'cross_street_2': 'BIKE PATH',
  'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
  'intersection_street_2': 'BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SANDS STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:52:28.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000680001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988793',
  'y_coordinate_state_plane': '194233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699800319891985',
  'longitude': '-73.98361593748928',
  'location': {'latitude': '40.699800319891985',
   'longitude': '-73.98361593748928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982313',
  'created_date': '2024-11-05T00:47:49.000',
  'closed_date': '2024-11-05T01:29:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '233 LANDING ROAD',
  'street_name': 'LANDING ROAD',
  'cross_street_1': 'CEDAR AVENUE',
  'cross_street_2': 'MAJOR DEEGAN EXPRESSWAY',
  'intersection_street_1': 'CEDAR AVENUE',
  'intersection_street_2': 'MAJOR DEEGAN EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LANDING ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:30:00.000',
  'community_board': '07 BRONX',
  'bbl': '2032367501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008841',
  'y_coordinate_state_plane': '253488',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86240645467484',
  'longitude': '-73.91109714827905',
  'location': {'latitude': '40.86240645467484',
   'longitude': '-73.91109714827905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982206',
  'created_date': '2024-11-05T00:47:47.000',
  'closed_date': '2024-11-05T01:22:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '97-14 110 STREET',
  'street_name': '110 STREET',
  'cross_street_1': '95 AVENUE',
  'cross_street_2': '101 AVENUE',
  'intersection_street_1': '95 AVENUE',
  'intersection_street_2': '101 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '110 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:22:14.000',
  'community_board': '09 QUEENS',
  'bbl': '4093950036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030158',
  'y_coordinate_state_plane': '190414',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68920015433953',
  'longitude': '-73.83446171889048',
  'location': {'latitude': '40.68920015433953',
   'longitude': '-73.83446171889048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975577',
  'created_date': '2024-11-05T00:47:38.000',
  'closed_date': '2024-11-05T01:47:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10451',
  'incident_address': '853 WALTON AVENUE',
  'street_name': 'WALTON AVENUE',
  'cross_street_1': 'EAST  158 STREET',
  'cross_street_2': 'EAST  161 STREET',
  'intersection_street_1': 'EAST  158 STREET',
  'intersection_street_2': 'EAST  161 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T01:47:09.000',
  'community_board': '04 BRONX',
  'bbl': '2024740049',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005140',
  'y_coordinate_state_plane': '240403',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82650151441379',
  'longitude': '-73.92451798029217',
  'location': {'latitude': '40.82650151441379',
   'longitude': '-73.92451798029217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987047',
  'created_date': '2024-11-05T00:47:33.000',
  'closed_date': '2024-11-05T01:36:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11423',
  'incident_address': '197-29 HIAWATHA AVENUE',
  'street_name': 'HIAWATHA AVENUE',
  'cross_street_1': '197 STREET',
  'cross_street_2': 'CARPENTER AVENUE',
  'intersection_street_1': '197 STREET',
  'intersection_street_2': 'CARPENTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOLLIS',
  'landmark': 'HIAWATHA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:36:33.000',
  'community_board': '12 QUEENS',
  'bbl': '4108280037',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1050215',
  'y_coordinate_state_plane': '199015',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71268103846349',
  'longitude': '-73.76205484030545',
  'location': {'latitude': '40.71268103846349',
   'longitude': '-73.76205484030545',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982091',
  'created_date': '2024-11-05T00:47:32.000',
  'closed_date': '2024-11-05T01:00:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10014',
  'incident_address': '55 GANSEVOORT STREET',
  'street_name': 'GANSEVOORT STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': 'WASHINGTON STREET',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': 'WASHINGTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'GANSEVOORT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:00:40.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006440060',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982305',
  'y_coordinate_state_plane': '208661',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73940265805482',
  'longitude': '-74.00701869744515',
  'location': {'latitude': '40.73940265805482',
   'longitude': '-74.00701869744515',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975393',
  'created_date': '2024-11-05T00:47:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '173 LENOX ROAD',
  'street_name': 'LENOX ROAD',
  'cross_street_1': 'BEDFORD AVENUE',
  'cross_street_2': 'ROGERS AVENUE',
  'intersection_street_1': 'BEDFORD AVENUE',
  'intersection_street_2': 'ROGERS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LENOX ROAD',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3050650083',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997028',
  'y_coordinate_state_plane': '177519',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.653916111191855',
  'longitude': '-73.95394858690503',
  'location': {'latitude': '40.653916111191855',
   'longitude': '-73.95394858690503',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981813',
  'created_date': '2024-11-05T00:45:35.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Broken Sidewalk',
  'location_type': 'Sidewalk',
  'incident_zip': '11249',
  'incident_address': '50 RUTLEDGE STREET',
  'street_name': 'RUTLEDGE STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'WYTHE AVENUE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'WYTHE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RUTLEDGE STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3022230015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995337',
  'y_coordinate_state_plane': '194355',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70012940217207',
  'longitude': '-73.96001518754997',
  'location': {'latitude': '40.70012940217207',
   'longitude': '-73.96001518754997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981810',
  'created_date': '2024-11-05T00:45:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11375',
  'incident_address': '62-60 108 STREET',
  'street_name': '108 STREET',
  'cross_street_1': '62 DRIVE',
  'cross_street_2': '63 AVENUE',
  'intersection_street_1': '62 DRIVE',
  'intersection_street_2': '63 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': '108 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:55:00.000',
  'community_board': '06 QUEENS',
  'bbl': '4021450028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025568',
  'y_coordinate_state_plane': '207258',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.735455473948804',
  'longitude': '-73.85090925366765',
  'location': {'latitude': '40.735455473948804',
   'longitude': '-73.85090925366765',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982297',
  'created_date': '2024-11-05T00:44:26.000',
  'closed_date': '2024-11-05T01:46:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11230',
  'incident_address': '1555 EAST   19 STREET',
  'street_name': 'EAST   19 STREET',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   19 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:46:53.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067660077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996733',
  'y_coordinate_state_plane': '162304',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61215458834643',
  'longitude': '-73.95503989939718',
  'location': {'latitude': '40.61215458834643',
   'longitude': '-73.95503989939718',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985516',
  'created_date': '2024-11-05T00:44:24.000',
  'closed_date': '2024-11-05T01:43:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11234',
  'incident_address': '1150 EAST   53 STREET',
  'street_name': 'EAST   53 STREET',
  'cross_street_1': 'AVENUE H',
  'cross_street_2': 'AVENUE I',
  'intersection_street_1': 'AVENUE H',
  'intersection_street_2': 'AVENUE I',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   53 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:43:10.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3077560076',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004990',
  'y_coordinate_state_plane': '169280',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.631286766133385',
  'longitude': '-73.92527918930374',
  'location': {'latitude': '40.631286766133385',
   'longitude': '-73.92527918930374',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979151',
  'created_date': '2024-11-05T00:43:50.000',
  'closed_date': '2024-11-05T01:33:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '51-40 30 AVENUE',
  'street_name': '30 AVENUE',
  'cross_street_1': '56 PLACE',
  'cross_street_2': '57 STREET',
  'intersection_street_1': '56 PLACE',
  'intersection_street_2': '57 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '30 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:33:59.000',
  'community_board': '01 QUEENS',
  'bbl': '4011110001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010570',
  'y_coordinate_state_plane': '216003',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75951563467958',
  'longitude': '-73.90499334973188',
  'location': {'latitude': '40.75951563467958',
   'longitude': '-73.90499334973188',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980348',
  'created_date': '2024-11-05T00:43:44.000',
  'closed_date': '2024-11-05T01:45:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '8817 14 AVENUE',
  'street_name': '14 AVENUE',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '14 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:45:54.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064240021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '979746',
  'y_coordinate_state_plane': '160933',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60839912332245',
  'longitude': '-74.0162211723215',
  'location': {'latitude': '40.60839912332245',
   'longitude': '-74.0162211723215',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980728',
  'created_date': '2024-11-05T00:43:39.000',
  'closed_date': '2024-11-05T01:12:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10027',
  'incident_address': '410 WEST  128 STREET',
  'street_name': 'WEST  128 STREET',
  'cross_street_1': 'ST NICHOLAS TERRACE',
  'cross_street_2': 'CONVENT AVENUE',
  'intersection_street_1': 'ST NICHOLAS TERRACE',
  'intersection_street_2': 'CONVENT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:13:03.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019540055',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997490',
  'y_coordinate_state_plane': '235514',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81309736956231',
  'longitude': '-73.95216943096172',
  'location': {'latitude': '40.81309736956231',
   'longitude': '-73.95216943096172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984970',
  'created_date': '2024-11-05T00:43:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10462',
  'incident_address': '2167 CRUGER AVENUE',
  'street_name': 'CRUGER AVENUE',
  'cross_street_1': 'LYDIG AVENUE',
  'cross_street_2': 'PELHAM PARKWAY SOUTH',
  'intersection_street_1': 'LYDIG AVENUE',
  'intersection_street_2': 'PELHAM PARKWAY SOUTH',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRUGER AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043180045',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021133',
  'y_coordinate_state_plane': '250980',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85547995707067',
  'longitude': '-73.86667223359657',
  'location': {'latitude': '40.85547995707067',
   'longitude': '-73.86667223359657',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982520',
  'created_date': '2024-11-05T00:42:52.000',
  'closed_date': '2024-11-05T00:58:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '6740 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'SENATOR STREET',
  'cross_street_2': '68 STREET',
  'intersection_street_1': 'SENATOR STREET',
  'intersection_street_2': '68 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:58:48.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058550045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978544',
  'y_coordinate_state_plane': '170481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.63460569821458',
  'longitude': '-74.02055824987869',
  'location': {'latitude': '40.63460569821458',
   'longitude': '-74.02055824987869',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978563',
  'created_date': '2024-11-05T00:42:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10023',
  'incident_address': '247 WEST   61 STREET',
  'street_name': 'WEST   61 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'WEST END AVENUE',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'WEST END AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   61 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:43:02.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011540101',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987661',
  'y_coordinate_state_plane': '220571',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77209213112608',
  'longitude': '-73.98768507515584',
  'location': {'latitude': '40.77209213112608',
   'longitude': '-73.98768507515584',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978885',
  'created_date': '2024-11-05T00:41:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10460',
  'incident_address': '1792 MERRILL STREET',
  'street_name': 'MERRILL STREET',
  'cross_street_1': 'ST LAWRENCE AVENUE',
  'cross_street_2': 'BEACH AVENUE',
  'intersection_street_1': 'ST LAWRENCE AVENUE',
  'intersection_street_2': 'BEACH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MERRILL STREET',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2038980084',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020906',
  'y_coordinate_state_plane': '244145',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83672085863288',
  'longitude': '-73.86753017550518',
  'location': {'latitude': '40.83672085863288',
   'longitude': '-73.86753017550518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975563',
  'created_date': '2024-11-05T00:39:42.000',
  'closed_date': '2024-11-05T01:19:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10014',
  'incident_address': '122 WASHINGTON PLACE',
  'street_name': 'WASHINGTON PLACE',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': 'BARROW STREET',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': 'BARROW STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WASHINGTON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:19:54.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005920008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983889',
  'y_coordinate_state_plane': '206216',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73269194325258',
  'longitude': '-74.00130256791964',
  'location': {'latitude': '40.73269194325258',
   'longitude': '-74.00130256791964',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975397',
  'created_date': '2024-11-05T00:39:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '255 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'cross_street_1': 'ALBEMARLE ROAD',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'ALBEMARLE ROAD',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   18 STREET',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3051220044',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994724',
  'y_coordinate_state_plane': '174341',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.645196216433646',
  'longitude': '-73.96225704671903',
  'location': {'latitude': '40.645196216433646',
   'longitude': '-73.96225704671903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984163',
  'created_date': '2024-11-05T00:38:42.000',
  'closed_date': '2024-11-05T00:58:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'SENATOR STREET',
  'cross_street_2': '68 STREET',
  'intersection_street_1': 'SENATOR STREET',
  'intersection_street_2': '68 STREET',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:58:33.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other'},
 {'unique_key': '62979944',
  'created_date': '2024-11-05T00:38:23.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '11385',
  'incident_address': '1713 PUTNAM AVENUE',
  'street_name': 'PUTNAM AVENUE',
  'cross_street_1': 'CYPRESS AVENUE',
  'cross_street_2': 'SENECA AVENUE',
  'intersection_street_1': 'CYPRESS AVENUE',
  'intersection_street_2': 'SENECA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'PUTNAM AVENUE',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4034600051',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010216',
  'y_coordinate_state_plane': '194552',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70063897044778',
  'longitude': '-73.90635395169161',
  'location': {'latitude': '40.70063897044778',
   'longitude': '-73.90635395169161',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978604',
  'created_date': '2024-11-05T00:37:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11417',
  'incident_address': '107-20 MURIEL COURT',
  'street_name': 'MURIEL COURT',
  'cross_street_1': '107 STREET',
  'cross_street_2': '108 STREET',
  'intersection_street_1': '107 STREET',
  'intersection_street_2': '108 STREET',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': 'MURIEL COURT',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114820053',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030824',
  'y_coordinate_state_plane': '186170',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67754788352546',
  'longitude': '-73.83208954936134',
  'location': {'latitude': '40.67754788352546',
   'longitude': '-73.83208954936134',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977343',
  'created_date': '2024-11-05T00:37:21.000',
  'closed_date': '2024-11-05T01:06:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2115 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'AVENUE U',
  'cross_street_2': 'AVENUE V',
  'intersection_street_1': 'AVENUE U',
  'intersection_street_2': 'AVENUE V',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   17 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:06:40.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073500072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996913',
  'y_coordinate_state_plane': '157333',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Truck',
  'latitude': '40.5985099542457',
  'longitude': '-73.95440091240773',
  'location': {'latitude': '40.5985099542457',
   'longitude': '-73.95440091240773',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980573',
  'created_date': '2024-11-05T00:37:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3862 SEDGWICK AVENUE',
  'street_name': 'SEDGWICK AVENUE',
  'cross_street_1': 'STEVENSON PLACE',
  'cross_street_2': 'STEVENSON PLACE',
  'intersection_street_1': 'STEVENSON PLACE',
  'intersection_street_2': 'STEVENSON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SEDGWICK AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2032460069',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013386',
  'y_coordinate_state_plane': '260958',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88289546664899',
  'longitude': '-73.89463332322316',
  'location': {'latitude': '40.88289546664899',
   'longitude': '-73.89463332322316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982230',
  'created_date': '2024-11-05T00:36:44.000',
  'closed_date': '2024-11-05T01:08:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10029',
  'incident_address': '1875 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'PEDESTRIAN PATH',
  'cross_street_2': 'EAST  104 STREET',
  'intersection_street_1': 'PEDESTRIAN PATH',
  'intersection_street_2': 'EAST  104 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:08:19.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016520001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999207',
  'y_coordinate_state_plane': '227011',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7897562261136',
  'longitude': '-73.9459855725782',
  'location': {'latitude': '40.7897562261136',
   'longitude': '-73.9459855725782',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977528',
  'created_date': '2024-11-05T00:36:17.000',
  'closed_date': '2024-11-05T00:36:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11201',
  'incident_address': '190 YORK STREET',
  'street_name': 'YORK STREET',
  'cross_street_1': 'BRIDGE STREET',
  'cross_street_2': 'GOLD STREET',
  'intersection_street_1': 'BRIDGE STREET',
  'intersection_street_2': 'GOLD STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'YORK STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:36:48.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000680001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988838',
  'y_coordinate_state_plane': '194807',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70137579240106',
  'longitude': '-73.98345325660519',
  'location': {'latitude': '40.70137579240106',
   'longitude': '-73.98345325660519',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983938',
  'created_date': '2024-11-05T00:36:13.000',
  'closed_date': '2024-11-05T01:29:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '2606 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'WEST  192 STREET',
  'cross_street_2': 'RESERVOIR AVENUE',
  'intersection_street_1': 'WEST  192 STREET',
  'intersection_street_2': 'RESERVOIR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:29:30.000',
  'community_board': '07 BRONX',
  'bbl': '2032050007',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011857',
  'y_coordinate_state_plane': '255112',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86685492320701',
  'longitude': '-73.90018684394367',
  'location': {'latitude': '40.86685492320701',
   'longitude': '-73.90018684394367',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975923',
  'created_date': '2024-11-05T00:35:05.000',
  'closed_date': '2024-11-05T01:22:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10169',
  'incident_address': '230 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'EAST   45 STREET',
  'cross_street_2': 'EAST   46 STREET',
  'intersection_street_1': 'EAST   45 STREET',
  'intersection_street_2': 'EAST   46 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2024-11-05T01:22:56.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1013000001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990913',
  'y_coordinate_state_plane': '214165',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75450745921105',
  'longitude': '-73.97595054706579',
  'location': {'latitude': '40.75450745921105',
   'longitude': '-73.97595054706579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975811',
  'created_date': '2024-11-05T00:34:55.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '10455',
  'incident_address': '537 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'cross_street_1': 'EAST  149 STREET',
  'cross_street_2': 'AVENUE ST JOHN',
  'intersection_street_1': 'EAST  149 STREET',
  'intersection_street_2': 'AVENUE ST JOHN',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SOUTHERN BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:01:19.000',
  'community_board': '02 BRONX',
  'bbl': '2026830001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010898',
  'y_coordinate_state_plane': '235220',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.812260152725216',
  'longitude': '-73.90373314476311',
  'location': {'latitude': '40.812260152725216',
   'longitude': '-73.90373314476311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979980',
  'created_date': '2024-11-05T00:34:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '2131 MANAHAN STREET',
  'street_name': 'MANAHAN STREET',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'FOREST AVENUE',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'FOREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'MENAHAN STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4033720066',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010417',
  'y_coordinate_state_plane': '197781',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709501217893745',
  'longitude': '-73.90561650078787',
  'location': {'latitude': '40.709501217893745',
   'longitude': '-73.90561650078787',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977436',
  'created_date': '2024-11-05T00:34:14.000',
  'closed_date': '2024-11-05T00:56:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '777 JEFFERSON AVENUE',
  'street_name': 'JEFFERSON AVENUE',
  'cross_street_1': 'MALCOLM X BOULEVARD',
  'cross_street_2': 'PATCHEN AVENUE',
  'intersection_street_1': 'MALCOLM X BOULEVARD',
  'intersection_street_2': 'PATCHEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'JEFFERSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:56:22.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016520047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004387',
  'y_coordinate_state_plane': '189176',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6858982833727',
  'longitude': '-73.92739222568741',
  'location': {'latitude': '40.6858982833727',
   'longitude': '-73.92739222568741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985025',
  'created_date': '2024-11-05T00:34:09.000',
  'closed_date': '2024-11-05T00:47:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10025',
  'incident_address': 'WEST  107 STREET',
  'street_name': 'WEST  107 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'WEST  107 STREET',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'WEST  107 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:47:13.000',
  'community_board': '07 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993881',
  'y_coordinate_state_plane': '231145',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.801110343737164',
  'longitude': '-73.96521350110491',
  'location': {'latitude': '40.801110343737164',
   'longitude': '-73.96521350110491',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982306',
  'created_date': '2024-11-05T00:33:00.000',
  'closed_date': '2024-11-05T01:24:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '641 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': 'AVENUE B',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'AVENUE B',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:24:55.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003960010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990530',
  'y_coordinate_state_plane': '204601',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72825694166462',
  'longitude': '-73.97734187751063',
  'location': {'latitude': '40.72825694166462',
   'longitude': '-73.97734187751063',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980279',
  'created_date': '2024-11-05T00:31:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10460',
  'incident_address': '2147 HONEYWELL AVENUE',
  'street_name': 'HONEYWELL AVENUE',
  'cross_street_1': 'HORNADAY PLACE',
  'cross_street_2': 'BRONX PARK SOUTH',
  'intersection_street_1': 'HORNADAY PLACE',
  'intersection_street_2': 'BRONX PARK SOUTH',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HONEYWELL AVENUE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2031240066',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017062',
  'y_coordinate_state_plane': '247593',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.84619972246783',
  'longitude': '-73.88140498345564',
  'location': {'latitude': '40.84619972246783',
   'longitude': '-73.88140498345564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983986',
  'created_date': '2024-11-05T00:31:19.000',
  'closed_date': '2024-11-05T00:39:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '131 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  116 STREET',
  'cross_street_2': 'WEST  117 STREET',
  'intersection_street_1': 'WEST  116 STREET',
  'intersection_street_2': 'WEST  117 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:39:14.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019220041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997339',
  'y_coordinate_state_plane': '232197',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.803993349077885',
  'longitude': '-73.95272139805937',
  'location': {'latitude': '40.803993349077885',
   'longitude': '-73.95272139805937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984055',
  'created_date': '2024-11-05T00:31:19.000',
  'closed_date': '2024-11-05T00:49:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10128',
  'incident_address': '1763 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   91 STREET',
  'cross_street_2': 'EAST   92 STREET',
  'intersection_street_1': 'EAST   91 STREET',
  'intersection_street_2': 'EAST   92 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:49:50.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015370022',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998363',
  'y_coordinate_state_plane': '224038',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78159752413699',
  'longitude': '-73.94903976709567',
  'location': {'latitude': '40.78159752413699',
   'longitude': '-73.94903976709567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980263',
  'created_date': '2024-11-05T00:30:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '31-42 81 STREET',
  'street_name': '81 STREET',
  'cross_street_1': '31 AVENUE',
  'cross_street_2': '32 AVENUE',
  'intersection_street_1': '31 AVENUE',
  'intersection_street_2': '32 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '81 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:06:34.000',
  'community_board': '03 QUEENS',
  'bbl': '4011510027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015597',
  'y_coordinate_state_plane': '215616',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75843702556503',
  'longitude': '-73.88684933571109',
  'location': {'latitude': '40.75843702556503',
   'longitude': '-73.88684933571109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982330',
  'created_date': '2024-11-05T00:29:47.000',
  'closed_date': '2024-11-05T01:18:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '1403 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EAST  170 STREET',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'EAST  170 STREET',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T01:18:59.000',
  'community_board': '04 BRONX',
  'bbl': '2028330030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008147',
  'y_coordinate_state_plane': '244946',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83896311232895',
  'longitude': '-73.91363658344284',
  'location': {'latitude': '40.83896311232895',
   'longitude': '-73.91363658344284',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977540',
  'created_date': '2024-11-05T00:28:42.000',
  'closed_date': '2024-11-05T00:48:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11216',
  'incident_address': 'CLIFTON PLACE',
  'street_name': 'CLIFTON PLACE',
  'cross_street_1': 'CLIFTON PLACE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'CLIFTON PLACE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:48:20.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997751',
  'y_coordinate_state_plane': '190350',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.68913325349826',
  'longitude': '-73.95131722410706',
  'location': {'latitude': '40.68913325349826',
   'longitude': '-73.95131722410706',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981809',
  'created_date': '2024-11-05T00:27:15.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dead Animal',
  'descriptor': 'Raccoon',
  'location_type': 'Street',
  'incident_zip': '11414',
  'incident_address': '78-15 157 AVENUE',
  'street_name': '157 AVENUE',
  'cross_street_1': '78 STREET',
  'cross_street_2': '79 STREET',
  'intersection_street_1': '78 STREET',
  'intersection_street_2': '79 STREET',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '157 AVENUE',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024587',
  'y_coordinate_state_plane': '179961',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66053620532968',
  'longitude': '-73.85461253996914',
  'location': {'latitude': '40.66053620532968',
   'longitude': '-73.85461253996914',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977347',
  'created_date': '2024-11-05T00:27:03.000',
  'closed_date': '2024-11-05T00:46:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10012',
  'incident_address': '95 MACDOUGAL STREET',
  'street_name': 'MACDOUGAL STREET',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'MINETTA LANE',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'MINETTA LANE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MAC DOUGAL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:46:18.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005420053',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983971',
  'y_coordinate_state_plane': '205016',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72939824022615',
  'longitude': '-74.00100664400853',
  'location': {'latitude': '40.72939824022615',
   'longitude': '-74.00100664400853',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980748',
  'created_date': '2024-11-05T00:26:48.000',
  'closed_date': '2024-11-05T00:39:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '131 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  116 STREET',
  'cross_street_2': 'WEST  117 STREET',
  'intersection_street_1': 'WEST  116 STREET',
  'intersection_street_2': 'WEST  117 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:39:38.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019220041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997339',
  'y_coordinate_state_plane': '232197',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'SUV',
  'latitude': '40.803993349077885',
  'longitude': '-73.95272139805937',
  'location': {'latitude': '40.803993349077885',
   'longitude': '-73.95272139805937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975635',
  'created_date': '2024-11-05T00:26:38.000',
  'closed_date': '2024-11-05T00:46:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11103',
  'incident_address': '36-08 30 AVENUE',
  'street_name': '30 AVENUE',
  'cross_street_1': '36 STREET',
  'cross_street_2': '37 STREET',
  'intersection_street_1': '36 STREET',
  'intersection_street_2': '37 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '30 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:46:42.000',
  'community_board': '01 QUEENS',
  'bbl': '4006510044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007178',
  'y_coordinate_state_plane': '217974',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7649349673246',
  'longitude': '-73.91723063750871',
  'location': {'latitude': '40.7649349673246',
   'longitude': '-73.91723063750871',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980000',
  'created_date': '2024-11-05T00:25:35.000',
  'closed_date': '2024-11-05T01:33:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '49-02 28 AVENUE',
  'street_name': '28 AVENUE',
  'cross_street_1': '49 STREET',
  'cross_street_2': '50 STREET',
  'intersection_street_1': '49 STREET',
  'intersection_street_2': '50 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '28 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:33:13.000',
  'community_board': '01 QUEENS',
  'bbl': '4007420022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010183',
  'y_coordinate_state_plane': '216923',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7620419407463',
  'longitude': '-73.90638674397461',
  'location': {'latitude': '40.7620419407463',
   'longitude': '-73.90638674397461',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986828',
  'created_date': '2024-11-05T00:25:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '109-46 113 STREET',
  'street_name': '113 STREET',
  'cross_street_1': '109 AVENUE',
  'cross_street_2': '111 AVENUE',
  'intersection_street_1': '109 AVENUE',
  'intersection_street_2': '111 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '113 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:52:30.000',
  'community_board': '10 QUEENS',
  'bbl': '4115930027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032222',
  'y_coordinate_state_plane': '187253',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.680513001765945',
  'longitude': '-73.82704172739662',
  'location': {'latitude': '40.680513001765945',
   'longitude': '-73.82704172739662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987503',
  'created_date': '2024-11-05T00:24:54.000',
  'closed_date': '2024-11-05T01:16:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10002',
  'incident_address': '133 PITT STREET',
  'street_name': 'PITT STREET',
  'cross_street_1': 'STANTON STREET',
  'cross_street_2': 'AVENUE C',
  'intersection_street_1': 'STANTON STREET',
  'intersection_street_2': 'AVENUE C',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PITT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:16:45.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003450058',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989361',
  'y_coordinate_state_plane': '201675',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.720226533969814',
  'longitude': '-73.98156182961009',
  'location': {'latitude': '40.720226533969814',
   'longitude': '-73.98156182961009',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980781',
  'created_date': '2024-11-05T00:24:28.000',
  'closed_date': '2024-11-05T00:43:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '343 EAST  118 STREET',
  'street_name': 'EAST  118 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '1 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '1 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  118 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:43:35.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017950021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002038',
  'y_coordinate_state_plane': '229967',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.797864399894145',
  'longitude': '-73.93575411594612',
  'location': {'latitude': '40.797864399894145',
   'longitude': '-73.93575411594612',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975348',
  'created_date': '2024-11-05T00:24:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '960 45 STREET',
  'street_name': '45 STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': '10 AVENUE',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': '10 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '45 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:21:41.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056130030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984991',
  'y_coordinate_state_plane': '173105',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641809824812775',
  'longitude': '-73.99732994957456',
  'location': {'latitude': '40.641809824812775',
   'longitude': '-73.99732994957456',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987378',
  'created_date': '2024-11-05T00:23:08.000',
  'closed_date': '2024-11-05T00:47:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10039',
  'incident_address': '123 WEST  147 STREET',
  'street_name': 'WEST  147 STREET',
  'cross_street_1': 'ESPLANADE GARDENS PLAZA',
  'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_1': 'ESPLANADE GARDENS PLAZA',
  'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:47:18.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020160050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001952',
  'y_coordinate_state_plane': '238782',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822059295387305',
  'longitude': '-73.9360414806865',
  'location': {'latitude': '40.822059295387305',
   'longitude': '-73.9360414806865',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982095',
  'created_date': '2024-11-05T00:23:08.000',
  'closed_date': '2024-11-05T01:17:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '1951 19 LANE',
  'street_name': '19 LANE',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': 'BEND',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '19 LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:17:10.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064650049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982746',
  'y_coordinate_state_plane': '157603',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.59925996854532',
  'longitude': '-74.0054159200072',
  'location': {'latitude': '40.59925996854532',
   'longitude': '-74.0054159200072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981755',
  'created_date': '2024-11-05T00:22:46.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Curb Condition',
  'descriptor': 'Defacement',
  'location_type': 'Curb',
  'incident_zip': '11220',
  'incident_address': '815 56 STREET',
  'street_name': '56 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '56 STREET',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'bbl': '3056790074',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982405',
  'y_coordinate_state_plane': '171509',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.637428985085506',
  'longitude': '-74.00664766482275',
  'location': {'latitude': '40.637428985085506',
   'longitude': '-74.00664766482275',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983624',
  'created_date': '2024-11-05T00:22:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '929 45 STREET',
  'street_name': '45 STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': '10 AVENUE',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': '10 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '45 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:22:15.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056070066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984856',
  'y_coordinate_state_plane': '173220',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64212548539485',
  'longitude': '-73.9978163856785',
  'location': {'latitude': '40.64212548539485',
   'longitude': '-73.9978163856785',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986941',
  'created_date': '2024-11-05T00:22:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10460',
  'incident_address': '1290 RODMAN PLACE',
  'street_name': 'RODMAN PLACE',
  'cross_street_1': 'LONGFELLOW AVENUE',
  'cross_street_2': 'WEST FARMS ROAD',
  'intersection_street_1': 'LONGFELLOW AVENUE',
  'intersection_street_2': 'WEST FARMS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RODMAN PLACE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2030167501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017097',
  'y_coordinate_state_plane': '244862',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83870380248861',
  'longitude': '-73.8812918569185',
  'location': {'latitude': '40.83870380248861',
   'longitude': '-73.8812918569185',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979242',
  'created_date': '2024-11-05T00:22:08.000',
  'closed_date': '2024-11-05T00:43:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '343 EAST  118 STREET',
  'street_name': 'EAST  118 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '1 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '1 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  118 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:43:48.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017950021',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002038',
  'y_coordinate_state_plane': '229967',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.797864399894145',
  'longitude': '-73.93575411594612',
  'location': {'latitude': '40.797864399894145',
   'longitude': '-73.93575411594612',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980324',
  'created_date': '2024-11-05T00:22:07.000',
  'closed_date': '2024-11-05T01:16:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '1951 19 LANE',
  'street_name': '19 LANE',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': 'BEND',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '19 LANE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:16:54.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064650049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982746',
  'y_coordinate_state_plane': '157603',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59925996854532',
  'longitude': '-74.0054159200072',
  'location': {'latitude': '40.59925996854532',
   'longitude': '-74.0054159200072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980507',
  'created_date': '2024-11-05T00:22:01.000',
  'closed_date': '2024-11-05T00:58:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11220',
  'incident_address': '6740 5 AVENUE',
  'street_name': '5 AVENUE',
  'cross_street_1': 'SENATOR STREET',
  'cross_street_2': '68 STREET',
  'intersection_street_1': 'SENATOR STREET',
  'intersection_street_2': '68 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '5 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:58:13.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058550045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978544',
  'y_coordinate_state_plane': '170481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63460569821458',
  'longitude': '-74.02055824987869',
  'location': {'latitude': '40.63460569821458',
   'longitude': '-74.02055824987869',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983479',
  'created_date': '2024-11-05T00:21:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': 'AVENUE Z',
  'street_name': 'AVENUE Z',
  'cross_street_1': 'AVENUE Z',
  'cross_street_2': 'EAST   29 STREET',
  'intersection_street_1': 'AVENUE Z',
  'intersection_street_2': 'EAST   29 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:14:35.000',
  'community_board': '15 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000683',
  'y_coordinate_state_plane': '154034',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.589448676003094',
  'longitude': '-73.94083328179187',
  'location': {'latitude': '40.589448676003094',
   'longitude': '-73.94083328179187',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980624',
  'created_date': '2024-11-05T00:21:44.000',
  'closed_date': '2024-11-05T01:16:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '112 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'cross_street_1': 'TENNIS COURT',
  'cross_street_2': 'ALBEMARLE ROAD',
  'intersection_street_1': 'TENNIS COURT',
  'intersection_street_2': 'ALBEMARLE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   18 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:16:59.000',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994562',
  'y_coordinate_state_plane': '175421',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.648160772906714',
  'longitude': '-73.96283916103194',
  'location': {'latitude': '40.648160772906714',
   'longitude': '-73.96283916103194',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984961',
  'created_date': '2024-11-05T00:21:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '104 TERRACE VIEW AVENUE',
  'street_name': 'TERRACE VIEW AVENUE',
  'cross_street_1': 'ADRIAN AVENUE',
  'cross_street_2': 'TEUNISSEN PLACE',
  'intersection_street_1': 'ADRIAN AVENUE',
  'intersection_street_2': 'TEUNISSEN PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TERRACE VIEW AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '1022150237',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008426',
  'y_coordinate_state_plane': '258732',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87680077226638',
  'longitude': '-73.91257855968743',
  'location': {'latitude': '40.87680077226638',
   'longitude': '-73.91257855968743',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987349',
  'created_date': '2024-11-05T00:21:06.000',
  'closed_date': '2024-11-05T01:16:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2334 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST  185 STREET',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST  185 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:16:18.000',
  'community_board': '06 BRONX',
  'bbl': '2030530074',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014031',
  'y_coordinate_state_plane': '251210',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85613805063247',
  'longitude': '-73.89234408899046',
  'location': {'latitude': '40.85613805063247',
   'longitude': '-73.89234408899046',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985326',
  'created_date': '2024-11-05T00:19:54.000',
  'closed_date': '2024-11-05T01:35:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11418',
  'incident_address': '85-11 106 STREET',
  'street_name': '106 STREET',
  'cross_street_1': '85 AVENUE',
  'cross_street_2': '86 AVENUE',
  'intersection_street_1': '85 AVENUE',
  'intersection_street_2': '86 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': '106 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:35:56.000',
  'community_board': '09 QUEENS',
  'bbl': '4091960058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027820',
  'y_coordinate_state_plane': '193899',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.698777475246416',
  'longitude': '-73.84286968298444',
  'location': {'latitude': '40.698777475246416',
   'longitude': '-73.84286968298444',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983952',
  'created_date': '2024-11-05T00:19:14.000',
  'closed_date': '2024-11-05T01:28:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '738 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': '8 AVENUE',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': '8 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '41 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:28:35.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3009220021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984321',
  'y_coordinate_state_plane': '174967',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64692064450418',
  'longitude': '-73.9997441456121',
  'location': {'latitude': '40.64692064450418',
   'longitude': '-73.9997441456121',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986571',
  'created_date': '2024-11-05T00:19:07.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Commercial Disposal Complaint',
  'descriptor': 'Waste Disposal',
  'location_type': 'Sidewalk',
  'incident_zip': '11221',
  'incident_address': '1153 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'KOSCIUSZKO STREET',
  'cross_street_2': 'PATCHEN AVENUE',
  'intersection_street_1': 'KOSCIUSZKO STREET',
  'intersection_street_2': 'PATCHEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BROADWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:01:20.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032527502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004097',
  'y_coordinate_state_plane': '191812',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69313414963103',
  'longitude': '-73.92843010966817',
  'location': {'latitude': '40.69313414963103',
   'longitude': '-73.92843010966817',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975188',
  'created_date': '2024-11-05T00:18:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11436',
  'incident_address': '123-30 147 STREET',
  'street_name': '147 STREET',
  'cross_street_1': '123 AVENUE',
  'cross_street_2': 'ROCKAWAY BOULEVARD',
  'intersection_street_1': '123 AVENUE',
  'intersection_street_2': 'ROCKAWAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '147 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:55:34.000',
  'community_board': '12 QUEENS',
  'bbl': '4120500204',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042111',
  'y_coordinate_state_plane': '185400',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.67536783311813',
  'longitude': '-73.7914039542013',
  'location': {'latitude': '40.67536783311813',
   'longitude': '-73.7914039542013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980264',
  'created_date': '2024-11-05T00:18:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '55-20 111 STREET',
  'street_name': '111 STREET',
  'cross_street_1': '55 AVENUE',
  'cross_street_2': 'CAROUSEL LOOP',
  'intersection_street_1': '55 AVENUE',
  'intersection_street_2': 'CAROUSEL LOOP',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '111 STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4020110023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025601',
  'y_coordinate_state_plane': '209636',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.741982330673174',
  'longitude': '-73.85077556011962',
  'location': {'latitude': '40.741982330673174',
   'longitude': '-73.85077556011962',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982427',
  'created_date': '2024-11-05T00:18:23.000',
  'closed_date': '2024-11-05T00:23:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10002',
  'incident_address': '2 ALLEN STREET',
  'street_name': 'ALLEN STREET',
  'cross_street_1': 'DIVISION STREET',
  'cross_street_2': 'CANAL STREET',
  'intersection_street_1': 'DIVISION STREET',
  'intersection_street_2': 'CANAL STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ALLEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:23:58.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002947502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986248',
  'y_coordinate_state_plane': '199554',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71440614859514',
  'longitude': '-73.99279275146573',
  'location': {'latitude': '40.71440614859514',
   'longitude': '-73.99279275146573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978354',
  'created_date': '2024-11-05T00:17:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '55-20 111 STREET',
  'street_name': '111 STREET',
  'cross_street_1': '55 AVENUE',
  'cross_street_2': 'CAROUSEL LOOP',
  'intersection_street_1': '55 AVENUE',
  'intersection_street_2': 'CAROUSEL LOOP',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '111 STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4020110023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025601',
  'y_coordinate_state_plane': '209636',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.741982330673174',
  'longitude': '-73.85077556011962',
  'location': {'latitude': '40.741982330673174',
   'longitude': '-73.85077556011962',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985255',
  'created_date': '2024-11-05T00:17:38.000',
  'closed_date': '2024-11-05T01:18:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '615 WEST  164 STREET',
  'street_name': 'WEST  164 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'FORT WASHINGTON AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'FORT WASHINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  164 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:18:05.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021370147',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000243',
  'y_coordinate_state_plane': '244827',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83865434342527',
  'longitude': '-73.94220179993421',
  'location': {'latitude': '40.83865434342527',
   'longitude': '-73.94220179993421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986587',
  'created_date': '2024-11-05T00:17:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '84-11 85 AVENUE',
  'street_name': '85 AVENUE',
  'cross_street_1': 'FOREST PARKWAY',
  'cross_street_2': '85 STREET',
  'intersection_street_1': 'FOREST PARKWAY',
  'intersection_street_2': '85 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '85 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:47:20.000',
  'community_board': '09 QUEENS',
  'bbl': '4088580006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022588',
  'y_coordinate_state_plane': '192768',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69569736046038',
  'longitude': '-73.8617447081783',
  'location': {'latitude': '40.69569736046038',
   'longitude': '-73.8617447081783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983648',
  'created_date': '2024-11-05T00:16:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '125 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  116 STREET',
  'cross_street_2': 'WEST  117 STREET',
  'intersection_street_1': 'WEST  116 STREET',
  'intersection_street_2': 'WEST  117 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997342',
  'y_coordinate_state_plane': '232127',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80380121389421',
  'longitude': '-73.95271069830034',
  'location': {'latitude': '40.80380121389421',
   'longitude': '-73.95271069830034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979258',
  'created_date': '2024-11-05T00:16:58.000',
  'closed_date': '2024-11-05T00:55:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11216',
  'incident_address': '360 CLIFTON PLACE',
  'street_name': 'CLIFTON PLACE',
  'cross_street_1': 'NOSTRAND AVENUE',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'NOSTRAND AVENUE',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLIFTON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:55:28.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3017940119',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998089',
  'y_coordinate_state_plane': '190398',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.689264480393184',
  'longitude': '-73.95009834358498',
  'location': {'latitude': '40.689264480393184',
   'longitude': '-73.95009834358498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984041',
  'created_date': '2024-11-05T00:15:40.000',
  'closed_date': '2024-11-05T01:49:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '997 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'DITMARS STREET',
  'cross_street_2': 'WILLOUGHBY AVENUE',
  'intersection_street_1': 'DITMARS STREET',
  'intersection_street_2': 'WILLOUGHBY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:49:49.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031940008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002647',
  'y_coordinate_state_plane': '192891',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69609888662206',
  'longitude': '-73.9336559781734',
  'location': {'latitude': '40.69609888662206',
   'longitude': '-73.9336559781734',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977344',
  'created_date': '2024-11-05T00:15:00.000',
  'closed_date': '2024-11-05T00:21:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '34-09 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': '34 AVENUE',
  'cross_street_2': '35 AVENUE',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '35 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '42 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:21:19.000',
  'community_board': '01 QUEENS',
  'bbl': '4006750016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006547',
  'y_coordinate_state_plane': '214574',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.75560445702323',
  'longitude': '-73.91951980313245',
  'location': {'latitude': '40.75560445702323',
   'longitude': '-73.91951980313245',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980078',
  'created_date': '2024-11-05T00:14:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '27 SICKLES STREET',
  'street_name': 'SICKLES STREET',
  'cross_street_1': 'NAGLE AVENUE',
  'cross_street_2': 'SHERMAN AVENUE',
  'intersection_street_1': 'NAGLE AVENUE',
  'intersection_street_2': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SICKLES STREET',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021740145',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004247',
  'y_coordinate_state_plane': '253063',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86125155997211',
  'longitude': '-73.92770691106014',
  'location': {'latitude': '40.86125155997211',
   'longitude': '-73.92770691106014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983296',
  'created_date': '2024-11-05T00:14:01.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Structure - Outdoors',
  'location_type': 'Park',
  'incident_zip': '10303',
  'incident_address': 'GRANITEVILLE QUARRY PARK',
  'street_name': 'GRANITEVILLE QUARRY PARK',
  'cross_street_1': 'VAN NAME AVENUE',
  'cross_street_2': 'VAN NAME AVENUE',
  'intersection_street_1': 'VAN NAME AVENUE',
  'intersection_street_2': 'VAN NAME AVENUE',
  'address_type': 'UNRECOGNIZED',
  'city': 'STATEN ISLAND',
  'landmark': 'GRANITEVILLE QUARRY PARK',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5017000044',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941521',
  'y_coordinate_state_plane': '167106',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Graniteville Quarry Park',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.625240828113874',
  'longitude': '-74.15392755835339',
  'location': {'latitude': '40.625240828113874',
   'longitude': '-74.15392755835339',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987076',
  'created_date': '2024-11-05T00:13:08.000',
  'closed_date': '2024-11-05T00:52:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Trespassing',
  'location_type': 'Residential Building/House',
  'incident_zip': '11212',
  'incident_address': '365 THATFORD AVENUE',
  'street_name': 'THATFORD AVENUE',
  'cross_street_1': 'THATFORD AVENUE',
  'cross_street_2': 'OSBORN STREET',
  'intersection_street_1': 'THATFORD AVENUE',
  'intersection_street_2': 'OSBORN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'THATFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:52:05.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035900011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010017',
  'y_coordinate_state_plane': '180240',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.661356385690354',
  'longitude': '-73.90712636722496',
  'location': {'latitude': '40.661356385690354',
   'longitude': '-73.90712636722496',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980515',
  'created_date': '2024-11-05T00:13:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '106-02 OTIS AVENUE',
  'street_name': 'OTIS AVENUE',
  'cross_street_1': 'WALDRON STREET',
  'cross_street_2': 'VAN DOREN STREET',
  'intersection_street_1': 'WALDRON STREET',
  'intersection_street_2': 'VAN DOREN STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'OTIS AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4019600001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024582',
  'y_coordinate_state_plane': '208885',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73992573125615',
  'longitude': '-73.85445734824394',
  'location': {'latitude': '40.73992573125615',
   'longitude': '-73.85445734824394',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975667',
  'created_date': '2024-11-05T00:12:24.000',
  'closed_date': '2024-11-05T00:52:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '825 WALTON AVENUE',
  'street_name': 'WALTON AVENUE',
  'cross_street_1': 'EAST  157 STREET',
  'cross_street_2': 'EAST  158 STREET',
  'intersection_street_1': 'EAST  157 STREET',
  'intersection_street_2': 'EAST  158 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:52:33.000',
  'community_board': '04 BRONX',
  'bbl': '2024740015',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004998',
  'y_coordinate_state_plane': '240117',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82571686083186',
  'longitude': '-73.92503195429917',
  'location': {'latitude': '40.82571686083186',
   'longitude': '-73.92503195429917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975413',
  'created_date': '2024-11-05T00:11:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10469',
  'incident_address': '2830 KINGSLAND AVENUE',
  'street_name': 'KINGSLAND AVENUE',
  'cross_street_2': 'ARNOW AVENUE',
  'intersection_street_2': 'ARNOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KINGSLAND AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:33:31.000',
  'community_board': '12 BRONX',
  'bbl': '2047870059',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028639',
  'y_coordinate_state_plane': '255363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.867475403190525',
  'longitude': '-73.83950994150165',
  'location': {'latitude': '40.867475403190525',
   'longitude': '-73.83950994150165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975814',
  'created_date': '2024-11-05T00:10:57.000',
  'closed_date': '2024-11-05T00:23:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '525 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:23:18.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995836',
  'y_coordinate_state_plane': '172872',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641162742829806',
  'longitude': '-73.95825248933495',
  'location': {'latitude': '40.641162742829806',
   'longitude': '-73.95825248933495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978535',
  'created_date': '2024-11-05T00:10:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '70 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'CATON AVENUE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'CATON AVENUE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINDEN BOULEVARD',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3050860041',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996368',
  'y_coordinate_state_plane': '176926',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.652289383483584',
  'longitude': '-73.95632826620981',
  'location': {'latitude': '40.652289383483584',
   'longitude': '-73.95632826620981',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984923',
  'created_date': '2024-11-05T00:10:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11206',
  'incident_address': '54 NOLL STREET',
  'street_name': 'NOLL STREET',
  'cross_street_1': 'STANWIX STREET',
  'cross_street_2': 'EVERGREEN AVENUE',
  'intersection_street_1': 'STANWIX STREET',
  'intersection_street_2': 'EVERGREEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOLL STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T01:53:00.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031520001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002491',
  'y_coordinate_state_plane': '194514',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70055396499139',
  'longitude': '-73.93421415603811',
  'location': {'latitude': '40.70055396499139',
   'longitude': '-73.93421415603811',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976736',
  'created_date': '2024-11-05T00:09:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': '2071 EAST   64 STREET',
  'street_name': 'EAST   64 STREET',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   64 STREET',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3084070047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008444',
  'y_coordinate_state_plane': '164010',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61681296620143',
  'longitude': '-73.9128542243629',
  'location': {'latitude': '40.61681296620143',
   'longitude': '-73.9128542243629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987162',
  'created_date': '2024-11-05T00:09:29.000',
  'closed_date': '2024-11-05T01:09:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2007 EAST    7 STREET',
  'street_name': 'EAST    7 STREET',
  'cross_street_1': 'AVENUE S',
  'cross_street_2': 'AVENUE T',
  'intersection_street_1': 'AVENUE S',
  'intersection_street_2': 'AVENUE T',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST    7 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:09:15.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3070890075',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994033',
  'y_coordinate_state_plane': '158444',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.601563070915645',
  'longitude': '-73.96477009674945',
  'location': {'latitude': '40.601563070915645',
   'longitude': '-73.96477009674945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981683',
  'created_date': '2024-11-05T00:09:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '1395 STANLEY AVENUE',
  'street_name': 'STANLEY AVENUE',
  'cross_street_1': 'EMERALD STREET',
  'cross_street_2': 'AMBER STREET',
  'intersection_street_1': 'EMERALD STREET',
  'intersection_street_2': 'AMBER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STANLEY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:24:20.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045180125',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1023702',
  'y_coordinate_state_plane': '182270',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6668778781298',
  'longitude': '-73.85778884651005',
  'location': {'latitude': '40.6668778781298',
   'longitude': '-73.85778884651005',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981684',
  'created_date': '2024-11-05T00:09:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '7015 16 AVENUE',
  'street_name': '16 AVENUE',
  'cross_street_1': '70 STREET',
  'cross_street_2': '71 STREET',
  'intersection_street_1': '70 STREET',
  'intersection_street_2': '71 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '16 AVENUE',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3061700005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984803',
  'y_coordinate_state_plane': '164798',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.619008878008664',
  'longitude': '-73.99800805193917',
  'location': {'latitude': '40.619008878008664',
   'longitude': '-73.99800805193917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982464',
  'created_date': '2024-11-05T00:09:03.000',
  'closed_date': '2024-11-05T01:20:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11420',
  'incident_address': '125-17 ROCKAWAY BOULEVARD',
  'street_name': 'ROCKAWAY BOULEVARD',
  'cross_street_1': '125 STREET',
  'cross_street_2': '126 STREET',
  'intersection_street_1': '125 STREET',
  'intersection_street_2': '126 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'ROCKAWAY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:20:15.000',
  'community_board': '10 QUEENS',
  'bbl': '4116820032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036286',
  'y_coordinate_state_plane': '185382',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67535458391636',
  'longitude': '-73.8124038692512',
  'location': {'latitude': '40.67535458391636',
   'longitude': '-73.8124038692512',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981707',
  'created_date': '2024-11-05T00:09:02.000',
  'closed_date': '2024-11-05T00:37:59.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Closed',
  'resolution_description': 'The Department of Homeless Services did not have enough information to act on your request.',
  'resolution_action_updated_date': '2024-11-05T00:37:59.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036732',
  'y_coordinate_state_plane': '196351',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'F',
  'bridge_highway_segment': 'Other',
  'latitude': '40.70545925891914',
  'longitude': '-73.81071053776861',
  'location': {'latitude': '40.70545925891914',
   'longitude': '-73.81071053776861',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983891',
  'created_date': '2024-11-05T00:07:35.000',
  'closed_date': '2024-11-05T00:39:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10002',
  'incident_address': '297 GRAND STREET',
  'street_name': 'GRAND STREET',
  'cross_street_1': 'ELDRIDGE STREET',
  'cross_street_2': 'ALLEN STREET',
  'intersection_street_1': 'ELDRIDGE STREET',
  'intersection_street_2': 'ALLEN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'GRAND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:39:14.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003070018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986485',
  'y_coordinate_state_plane': '200705',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71756531132748',
  'longitude': '-73.99193745545756',
  'location': {'latitude': '40.71756531132748',
   'longitude': '-73.99193745545756',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981606',
  'created_date': '2024-11-05T00:07:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '92-17 54 AVENUE',
  'street_name': '54 AVENUE',
  'cross_street_1': '92 STREET',
  'cross_street_2': '94 STREET',
  'intersection_street_1': '92 STREET',
  'intersection_street_2': '94 STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '54 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4018690051',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020187',
  'y_coordinate_state_plane': '208215',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.738105700370596',
  'longitude': '-73.87032076493618',
  'location': {'latitude': '40.738105700370596',
   'longitude': '-73.87032076493618',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975229',
  'created_date': '2024-11-05T00:07:19.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Tree Leaning/Uprooted',
  'location_type': 'Street',
  'incident_zip': '11210',
  'incident_address': '4124 AVENUE H',
  'street_name': 'AVENUE H',
  'cross_street_1': 'ALBANY AVENUE',
  'cross_street_2': 'EAST   42 STREET',
  'intersection_street_1': 'ALBANY AVENUE',
  'intersection_street_2': 'EAST   42 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE H',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3077450046',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001819',
  'y_coordinate_state_plane': '169655',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63232291826695',
  'longitude': '-73.93670249467553',
  'location': {'latitude': '40.63232291826695',
   'longitude': '-73.93670249467553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987160',
  'created_date': '2024-11-05T00:07:13.000',
  'closed_date': '2024-11-05T00:44:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10012',
  'incident_address': '555 LA GUARDIA PLACE',
  'street_name': 'LA GUARDIA PLACE',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'WEST    3 STREET',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'WEST    3 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LA GUARDIA PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:44:30.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005330010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984766',
  'y_coordinate_state_plane': '204871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72900024000052',
  'longitude': '-73.99813826090998',
  'location': {'latitude': '40.72900024000052',
   'longitude': '-73.99813826090998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985238',
  'created_date': '2024-11-05T00:07:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '1250 OCEAN PARKWAY',
  'street_name': 'OCEAN PARKWAY',
  'cross_street_1': 'AVENUE L',
  'cross_street_2': 'AVENUE M',
  'intersection_street_1': 'AVENUE L',
  'intersection_street_2': 'AVENUE M',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'OCEAN PARKWAY',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'bbl': '3065410027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992760',
  'y_coordinate_state_plane': '164504',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61819783943372',
  'longitude': '-73.96934670456503',
  'location': {'latitude': '40.61819783943372',
   'longitude': '-73.96934670456503',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979259',
  'created_date': '2024-11-05T00:06:34.000',
  'closed_date': '2024-11-05T00:25:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10027',
  'incident_address': '277 WEST  127 STREET',
  'street_name': 'WEST  127 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  127 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:25:53.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019330001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998206',
  'y_coordinate_state_plane': '234831',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81122162294716',
  'longitude': '-73.94958424379058',
  'location': {'latitude': '40.81122162294716',
   'longitude': '-73.94958424379058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980803',
  'created_date': '2024-11-05T00:06:31.000',
  'closed_date': '2024-11-05T00:37:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11213',
  'incident_address': '1519 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'ROCHESTER AVENUE',
  'cross_street_2': 'BUFFALO AVENUE',
  'intersection_street_1': 'ROCHESTER AVENUE',
  'intersection_street_2': 'BUFFALO AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T00:37:33.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013860054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004660',
  'y_coordinate_state_plane': '183200',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6694948946308',
  'longitude': '-73.92642597094904',
  'location': {'latitude': '40.6694948946308',
   'longitude': '-73.92642597094904',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982303',
  'created_date': '2024-11-05T00:06:06.000',
  'closed_date': '2024-11-05T01:02:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11225',
  'incident_address': '676 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'HAWTHORNE STREET',
  'cross_street_2': 'WESTBURY COURT',
  'intersection_street_1': 'HAWTHORNE STREET',
  'intersection_street_2': 'WESTBURY COURT',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLATBUSH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:02:19.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050260241',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995299',
  'y_coordinate_state_plane': '178604',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65689652460699',
  'longitude': '-73.96017805684019',
  'location': {'latitude': '40.65689652460699',
   'longitude': '-73.96017805684019',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983627',
  'created_date': '2024-11-05T00:05:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3815 CANNON PLACE',
  'street_name': 'CANNON PLACE',
  'cross_street_1': 'WEST  238 STREET',
  'cross_street_2': 'ORLOFF AVENUE',
  'intersection_street_1': 'WEST  238 STREET',
  'intersection_street_2': 'ORLOFF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CANNON PLACE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2032630156',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012788',
  'y_coordinate_state_plane': '260878',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88267784577077',
  'longitude': '-73.89679625378714',
  'location': {'latitude': '40.88267784577077',
   'longitude': '-73.89679625378714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981933',
  'created_date': '2024-11-05T00:05:21.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Lost Property',
  'descriptor': 'Electronics/Phones',
  'incident_zip': '10012',
  'incident_address': '575 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'PRINCE STREET',
  'cross_street_2': 'EAST HOUSTON STREET',
  'intersection_street_1': 'PRINCE STREET',
  'intersection_street_2': 'EAST HOUSTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'In Progress',
  'community_board': '02 MANHATTAN',
  'bbl': '1005120023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984930',
  'y_coordinate_state_plane': '203242',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'taxi_pick_up_location': '575 BROADWAY, MANHATTAN (NEW YORK), NY, 10012',
  'latitude': '40.72452902040609',
  'longitude': '-73.99754670999269',
  'location': {'latitude': '40.72452902040609',
   'longitude': '-73.99754670999269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978888',
  'created_date': '2024-11-05T00:05:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2218 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'cross_street_1': 'AVENUE V',
  'cross_street_2': 'GRAVESEND NECK ROAD',
  'intersection_street_1': 'AVENUE V',
  'intersection_street_2': 'GRAVESEND NECK ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   18 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:05:09.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073780014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997283',
  'y_coordinate_state_plane': '156618',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59654688754519',
  'longitude': '-73.95306993301581',
  'location': {'latitude': '40.59654688754519',
   'longitude': '-73.95306993301581',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980616',
  'created_date': '2024-11-05T00:04:38.000',
  'closed_date': '2024-11-05T00:27:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11230',
  'incident_address': '1703 MCDONALD AVENUE',
  'street_name': 'MCDONALD AVENUE',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': '65 STREET',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': '65 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MCDONALD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:27:24.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3066080001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991626',
  'y_coordinate_state_plane': '161940',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611161206272136',
  'longitude': '-73.97343420990082',
  'location': {'latitude': '40.611161206272136',
   'longitude': '-73.97343420990082',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976830',
  'created_date': '2024-11-05T00:04:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3840 ORLOFF AVENUE',
  'street_name': 'ORLOFF AVENUE',
  'cross_street_1': 'CANNON PLACE',
  'cross_street_2': 'CHARLES HALLEY PLACE',
  'intersection_street_1': 'CANNON PLACE',
  'intersection_street_2': 'CHARLES HALLEY PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ORLOFF AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2032630172',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012834',
  'y_coordinate_state_plane': '261212',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.8835944220052',
  'longitude': '-73.89662847590374',
  'location': {'latitude': '40.8835944220052',
   'longitude': '-73.89662847590374',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977414',
  'created_date': '2024-11-05T00:04:20.000',
  'closed_date': '2024-11-05T01:27:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '1240 WALTON AVENUE',
  'street_name': 'WALTON AVENUE',
  'cross_street_1': 'EAST  167 STREET',
  'cross_street_2': 'EAST  168 STREET',
  'intersection_street_1': 'EAST  167 STREET',
  'intersection_street_2': 'EAST  168 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:28:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024650025',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006709',
  'y_coordinate_state_plane': '243821',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83587908905498',
  'longitude': '-73.91883725890963',
  'location': {'latitude': '40.83587908905498',
   'longitude': '-73.91883725890963',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985250',
  'created_date': '2024-11-05T00:03:37.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Structure - Indoors',
  'location_type': 'Park',
  'incident_zip': '11415',
  'incident_address': '80-30 PARK LANE',
  'street_name': 'PARK LANE',
  'cross_street_1': 'FOREST PARK DRIVE',
  'cross_street_2': '80 ROAD',
  'intersection_street_1': 'FOREST PARK DRIVE',
  'intersection_street_2': '80 ROAD',
  'address_type': 'ADDRESS',
  'city': 'KEW GARDENS',
  'landmark': 'PARK LANE',
  'status': 'In Progress',
  'community_board': '82 QUEENS',
  'bbl': '4033122000',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029953',
  'y_coordinate_state_plane': '198339',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71095344959411',
  'longitude': '-73.83514714122289',
  'location': {'latitude': '40.71095344959411',
   'longitude': '-73.83514714122289',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980062',
  'created_date': '2024-11-05T00:03:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '3822 ORLOFF AVENUE',
  'street_name': 'ORLOFF AVENUE',
  'cross_street_1': 'CANNON PLACE',
  'cross_street_2': 'CHARLES HALLEY PLACE',
  'intersection_street_1': 'CANNON PLACE',
  'intersection_street_2': 'CHARLES HALLEY PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ORLOFF AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2032630165',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012783',
  'y_coordinate_state_plane': '261080',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88323228851747',
  'longitude': '-73.89681347507215',
  'location': {'latitude': '40.88323228851747',
   'longitude': '-73.89681347507215',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981649',
  'created_date': '2024-11-05T00:03:20.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11435',
  'incident_address': '147-25 94 AVENUE',
  'street_name': '94 AVENUE',
  'cross_street_1': 'SUTPHIN BOULEVARD',
  'cross_street_2': '148 STREET',
  'intersection_street_1': 'SUTPHIN BOULEVARD',
  'intersection_street_2': '148 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '94 AVENUE',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-11-05T00:31:43.000',
  'community_board': '12 QUEENS',
  'bbl': '4099987502',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037925',
  'y_coordinate_state_plane': '194081',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69922150012847',
  'longitude': '-73.80642579116335',
  'location': {'latitude': '40.69922150012847',
   'longitude': '-73.80642579116335',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978723',
  'created_date': '2024-11-05T00:01:37.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11375',
  'incident_address': '105-02 QUEENS BOULEVARD',
  'street_name': 'QUEENS BOULEVARD',
  'cross_street_1': 'YELLOWSTONE BOULEVARD',
  'cross_street_2': '69 ROAD',
  'intersection_street_1': 'YELLOWSTONE BOULEVARD',
  'intersection_street_2': '69 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'QUEENS BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:01:16.000',
  'community_board': '06 QUEENS',
  'bbl': '4032360001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026395',
  'y_coordinate_state_plane': '202613',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.722702200727795',
  'longitude': '-73.84795422779239',
  'location': {'latitude': '40.722702200727795',
   'longitude': '-73.84795422779239',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980790',
  'created_date': '2024-11-05T00:01:30.000',
  'closed_date': '2024-11-05T01:29:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '31 35 STREET',
  'street_name': '35 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '35 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:29:09.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006870001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982201',
  'y_coordinate_state_plane': '178653',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.657037675182345',
  'longitude': '-74.00738486120589',
  'location': {'latitude': '40.657037675182345',
   'longitude': '-74.00738486120589',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984130',
  'created_date': '2024-11-05T00:01:18.000',
  'closed_date': '2024-11-05T01:24:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10009',
  'incident_address': '691 FRANKLIN D ROOSEVELT DRIVE',
  'street_name': 'FRANKLIN D ROOSEVELT DRIVE',
  'cross_street_1': 'EAST HOUSTON STREET',
  'cross_street_2': 'EAST    4 WALK',
  'intersection_street_1': 'EAST HOUSTON STREET',
  'intersection_street_2': 'EAST    4 WALK',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FRANKLIN D ROOSEVELT DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:24:20.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003560001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991180',
  'y_coordinate_state_plane': '201527',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.719819071722334',
  'longitude': '-73.97499985513412',
  'location': {'latitude': '40.719819071722334',
   'longitude': '-73.97499985513412',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975355',
  'created_date': '2024-11-05T00:01:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '145-67 FIFTH AVENUE',
  'street_name': 'FIFTH AVENUE',
  'cross_street_1': 'WHITESTONE EXPRESSWAY',
  'cross_street_2': '147 STREET',
  'intersection_street_1': 'WHITESTONE EXPRESSWAY',
  'intersection_street_2': '147 STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '5 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4044520046',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032971',
  'y_coordinate_state_plane': '228778',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.79448451175973',
  'longitude': '-73.82404055406084',
  'location': {'latitude': '40.79448451175973',
   'longitude': '-73.82404055406084',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981872',
  'created_date': '2024-11-05T00:00:53.000',
  'closed_date': '2024-11-05T01:00:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '678 WEST  165 STREET',
  'street_name': 'WEST  165 STREET',
  'cross_street_1': 'FORT WASHINGTON AVENUE',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'FORT WASHINGTON AVENUE',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  165 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:00:24.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021360245',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999738',
  'y_coordinate_state_plane': '245570',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.840694561922035',
  'longitude': '-73.94402513774403',
  'location': {'latitude': '40.840694561922035',
   'longitude': '-73.94402513774403',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978828',
  'created_date': '2024-11-05T00:00:52.000',
  'closed_date': '2024-11-05T00:15:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11694',
  'incident_address': '148 BEACH  149 STREET',
  'street_name': 'BEACH  149 STREET',
  'cross_street_1': 'OCEAN PROMENADE',
  'cross_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'intersection_street_1': 'OCEAN PROMENADE',
  'intersection_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH  149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:15:14.000',
  'community_board': '14 QUEENS',
  'bbl': '4163220047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022272',
  'y_coordinate_state_plane': '146142',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.56772040127598',
  'longitude': '-73.863146962464',
  'location': {'latitude': '40.56772040127598',
   'longitude': '-73.863146962464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987244',
  'created_date': '2024-11-05T00:00:46.000',
  'closed_date': '2024-11-05T00:34:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10039',
  'incident_address': '206 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T00:34:58.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020330038',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001331',
  'y_coordinate_state_plane': '239421',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.823814391623685',
  'longitude': '-73.93828356816849',
  'location': {'latitude': '40.823814391623685',
   'longitude': '-73.93828356816849',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975567',
  'created_date': '2024-11-05T00:00:43.000',
  'closed_date': '2024-11-05T01:10:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10309',
  'incident_address': '2945 ARTHUR KILL ROAD',
  'street_name': 'ARTHUR KILL ROAD',
  'cross_street_1': 'INDUSTRIAL LOOP',
  'cross_street_2': 'INDUSTRIAL LOOP',
  'intersection_street_1': 'INDUSTRIAL LOOP',
  'intersection_street_2': 'INDUSTRIAL LOOP',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'ARTHUR KILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:10:43.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5072060001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '920602',
  'y_coordinate_state_plane': '138469',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.54651263946786',
  'longitude': '-74.22901646501312',
  'location': {'latitude': '40.54651263946786',
   'longitude': '-74.22901646501312',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975343',
  'created_date': '2024-11-05T00:00:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Indoor',
  'location_type': 'Other',
  'incident_zip': '10472',
  'incident_address': '1750 EAST  172 STREET',
  'street_name': 'EAST  172 STREET',
  'cross_street_1': 'ROSEDALE AVENUE',
  'cross_street_2': 'COMMONWEALTH AVENUE',
  'intersection_street_1': 'ROSEDALE AVENUE',
  'intersection_street_2': 'COMMONWEALTH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  172 STREET',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037840021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020529',
  'y_coordinate_state_plane': '242652',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83262456596203',
  'longitude': '-73.86890067543244',
  'location': {'latitude': '40.83262456596203',
   'longitude': '-73.86890067543244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979053',
  'created_date': '2024-11-05T00:00:30.000',
  'closed_date': '2024-11-05T00:20:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '309 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'MENAHAN STREET',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'MENAHAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:20:57.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3033070003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006765',
  'y_coordinate_state_plane': '193142',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69677830430262',
  'longitude': '-73.91880464507305',
  'location': {'latitude': '40.69677830430262',
   'longitude': '-73.91880464507305',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982802',
  'created_date': '2024-11-04T23:59:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '601 EAST  167 STREET',
  'street_name': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '03 BRONX',
  'bbl': '2026140056',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010775',
  'y_coordinate_state_plane': '241101',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.828402199245986',
  'longitude': '-73.90415424045243',
  'location': {'latitude': '40.828402199245986',
   'longitude': '-73.90415424045243',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982600',
  'created_date': '2024-11-04T23:59:43.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11218',
  'incident_address': '465 OCEAN PARKWAY',
  'street_name': 'OCEAN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053900066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991764',
  'y_coordinate_state_plane': '171429',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63720640715453',
  'longitude': '-73.97292661917737',
  'location': {'latitude': '40.63720640715453',
   'longitude': '-73.97292661917737',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980681',
  'created_date': '2024-11-04T23:59:34.000',
  'closed_date': '2024-11-05T00:22:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10453',
  'incident_address': '66 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'WALTON AVENUE',
  'cross_street_2': 'MORRIS AVENUE',
  'intersection_street_1': 'WALTON AVENUE',
  'intersection_street_2': 'MORRIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:22:39.000',
  'community_board': '05 BRONX',
  'bbl': '2028280024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009767',
  'y_coordinate_state_plane': '249304',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.850920004344225',
  'longitude': '-73.90776534723888',
  'location': {'latitude': '40.850920004344225',
   'longitude': '-73.90776534723888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981701',
  'created_date': '2024-11-04T23:59:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11373',
  'incident_address': '86-45 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'VAN LOON STREET',
  'cross_street_2': 'SEABURY STREET',
  'intersection_street_1': 'VAN LOON STREET',
  'intersection_street_2': 'SEABURY STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'GRAND AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4024770031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017754',
  'y_coordinate_state_plane': '207495',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.736139031774165',
  'longitude': '-73.87910385828452',
  'location': {'latitude': '40.736139031774165',
   'longitude': '-73.87910385828452',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976625',
  'created_date': '2024-11-04T23:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Leaking (WC1)',
  'incident_zip': '10016',
  'incident_address': '135 EAST   29 STREET',
  'street_name': 'EAST   29 STREET',
  'cross_street_1': 'LEXINGTON AVE',
  'cross_street_2': '3 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'community_board': '06 MANHATTAN',
  'bbl': '1008850032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989330',
  'y_coordinate_state_plane': '210019',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74312878485213',
  'longitude': '-73.98166736383652',
  'location': {'latitude': '40.74312878485213',
   'longitude': '-73.98166736383652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986027',
  'created_date': '2024-11-04T23:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '1647 HENDRICKSON STREET',
  'street_name': 'HENDRICKSON STREET',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'QUENTIN RD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3078660021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002731',
  'y_coordinate_state_plane': '164544',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61829244331292',
  'longitude': '-73.93343074044688',
  'location': {'latitude': '40.61829244331292',
   'longitude': '-73.93343074044688',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982420',
  'created_date': '2024-11-04T23:58:31.000',
  'closed_date': '2024-11-05T00:42:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11219',
  'incident_address': '926 47 STREET',
  'street_name': '47 STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': '10 AVENUE',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': '10 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '47 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:42:23.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056250011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984520',
  'y_coordinate_state_plane': '172815',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64101386389138',
  'longitude': '-73.9990271187378',
  'location': {'latitude': '40.64101386389138',
   'longitude': '-73.9990271187378',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977534',
  'created_date': '2024-11-04T23:58:27.000',
  'closed_date': '2024-11-05T01:17:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '1466 EAST GUN HILL ROAD',
  'street_name': 'EAST GUN HILL ROAD',
  'cross_street_1': 'ADEE AVENUE',
  'cross_street_2': "O'NEILL PLACE",
  'intersection_street_1': 'ADEE AVENUE',
  'intersection_street_2': "O'NEILL PLACE",
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST GUN HILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:17:21.000',
  'community_board': '11 BRONX',
  'bbl': '2045670107',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027536',
  'y_coordinate_state_plane': '255927',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.869028886546516',
  'longitude': '-73.84349422661482',
  'location': {'latitude': '40.869028886546516',
   'longitude': '-73.84349422661482',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981782',
  'created_date': '2024-11-04T23:58:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '71-42 160 STREET',
  'street_name': '160 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': '72 AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': '72 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '160 STREET',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4067980081',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037169',
  'y_coordinate_state_plane': '204782',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.728597674442256',
  'longitude': '-73.8090681129075',
  'location': {'latitude': '40.728597674442256',
   'longitude': '-73.8090681129075',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984846',
  'created_date': '2024-11-04T23:57:46.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Root/Sewer/Sidewalk Condition',
  'descriptor': 'Trees and Sidewalks Program',
  'location_type': 'Street',
  'incident_zip': '11204',
  'incident_address': '1966 51 STREET',
  'street_name': '51 STREET',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '51 STREET',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'bbl': '3054690031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990241',
  'y_coordinate_state_plane': '166951',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.624916405152476',
  'longitude': '-73.9784180520407',
  'location': {'latitude': '40.624916405152476',
   'longitude': '-73.9784180520407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980194',
  'created_date': '2024-11-04T23:57:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '50-48 96 STREET',
  'street_name': '96 STREET',
  'cross_street_1': '51 AVENUE',
  'cross_street_2': 'CHRISTIE AVENUE',
  'intersection_street_1': '51 AVENUE',
  'intersection_street_2': 'CHRISTIE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '96 STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4018870056',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021238',
  'y_coordinate_state_plane': '209195',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.740791220984626',
  'longitude': '-73.86652283199825',
  'location': {'latitude': '40.740791220984626',
   'longitude': '-73.86652283199825',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985652',
  'created_date': '2024-11-04T23:57:43.000',
  'closed_date': '2024-11-05T00:25:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10027',
  'incident_address': '368 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'WEST  128 STREET',
  'cross_street_2': 'WEST  129 STREET',
  'intersection_street_1': 'WEST  128 STREET',
  'intersection_street_2': 'WEST  129 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:25:27.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019557501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997916',
  'y_coordinate_state_plane': '235429',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81286341958018',
  'longitude': '-73.9506306449487',
  'location': {'latitude': '40.81286341958018',
   'longitude': '-73.9506306449487',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981626',
  'created_date': '2024-11-04T23:57:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11368',
  'incident_address': '104-17 39 AVENUE',
  'street_name': '39 AVENUE',
  'cross_street_1': '104 STREET',
  'cross_street_2': '108 STREET',
  'intersection_street_1': '104 STREET',
  'intersection_street_2': '108 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '39 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:15:05.000',
  'community_board': '03 QUEENS',
  'bbl': '4017750073',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022580',
  'y_coordinate_state_plane': '212842',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75079559477626',
  'longitude': '-73.86165923172027',
  'location': {'latitude': '40.75079559477626',
   'longitude': '-73.86165923172027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979953',
  'created_date': '2024-11-04T23:57:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Indoor',
  'location_type': 'Hallway',
  'incident_zip': '10472',
  'incident_address': '1750 EAST  172 STREET',
  'street_name': 'EAST  172 STREET',
  'cross_street_1': 'ROSEDALE AVENUE',
  'cross_street_2': 'COMMONWEALTH AVENUE',
  'intersection_street_1': 'ROSEDALE AVENUE',
  'intersection_street_2': 'COMMONWEALTH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  172 STREET',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037840021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020529',
  'y_coordinate_state_plane': '242652',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83262456596203',
  'longitude': '-73.86890067543244',
  'location': {'latitude': '40.83262456596203',
   'longitude': '-73.86890067543244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975999',
  'created_date': '2024-11-04T23:57:00.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10469',
  'incident_address': '1040B EAST  217 STREET',
  'street_name': 'EAST  217 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2046990051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024543',
  'y_coordinate_state_plane': '259628',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8792011486289',
  'longitude': '-73.85429350155603',
  'location': {'latitude': '40.8792011486289',
   'longitude': '-73.85429350155603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982147',
  'created_date': '2024-11-04T23:56:56.000',
  'closed_date': '2024-11-05T00:26:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '56-03 JUNCTION BOULEVARD',
  'street_name': 'JUNCTION BOULEVARD',
  'cross_street_1': '56 AVENUE',
  'cross_street_2': '57 AVENUE',
  'intersection_street_1': '56 AVENUE',
  'intersection_street_2': '57 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'JUNCTION BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T00:26:34.000',
  'community_board': '04 QUEENS',
  'bbl': '4019030007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021374',
  'y_coordinate_state_plane': '207871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737156603780576',
  'longitude': '-73.86603936150006',
  'location': {'latitude': '40.737156603780576',
   'longitude': '-73.86603936150006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979273',
  'created_date': '2024-11-04T23:56:27.000',
  'closed_date': '2024-11-05T00:40:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11225',
  'incident_address': '1207 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'HAWTHORNE STREET',
  'cross_street_2': 'WINTHROP STREET',
  'intersection_street_1': 'HAWTHORNE STREET',
  'intersection_street_2': 'WINTHROP STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:40:14.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3048190010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998038',
  'y_coordinate_state_plane': '178908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65772709647846',
  'longitude': '-73.95030574722443',
  'location': {'latitude': '40.65772709647846',
   'longitude': '-73.95030574722443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975086',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '10458',
  'intersection_street_1': 'BRIGGS AVENUE',
  'intersection_street_2': 'EAST KINGSBRIDGE ROAD',
  'address_type': 'INTERSECTION',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '07 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013516',
  'y_coordinate_state_plane': '253770',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86316619834823',
  'longitude': '-73.8941945928046',
  'location': {'latitude': '40.86316619834823',
   'longitude': '-73.8941945928046',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984758',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Catch Basin Search (SC2)',
  'incident_zip': '11372',
  'incident_address': '37-06 80 STREET',
  'street_name': '80 STREET',
  'cross_street_1': '37 AVE',
  'cross_street_2': 'ROOSEVELT AVE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'status': 'Open',
  'community_board': '03 QUEENS',
  'bbl': '4012900001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015803',
  'y_coordinate_state_plane': '212262',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74923042196342',
  'longitude': '-73.88612149437733',
  'location': {'latitude': '40.74923042196342',
   'longitude': '-73.88612149437733',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977993',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Hazardous Materials',
  'descriptor': 'Chemical Odor (HD1)',
  'incident_zip': '10016',
  'incident_address': '35 EAST   38 STREET',
  'street_name': 'EAST   38 STREET',
  'cross_street_1': 'MADISON AVE',
  'cross_street_2': 'PARK AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '06 MANHATTAN',
  'bbl': '1008687501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989682',
  'y_coordinate_state_plane': '212518',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74998770329827',
  'longitude': '-73.98039505259884',
  'location': {'latitude': '40.74998770329827',
   'longitude': '-73.98039505259884',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981412',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10003',
  'incident_address': '201 EAST   12 STREET',
  'street_name': 'EAST   12 STREET',
  'cross_street_1': '3 AVE',
  'cross_street_2': '2 AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '03 MANHATTAN',
  'bbl': '1004680001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987561',
  'y_coordinate_state_plane': '205939',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73193103390708',
  'longitude': '-73.98805331538149',
  'location': {'latitude': '40.73193103390708',
   'longitude': '-73.98805331538149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978007',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11219',
  'incident_address': '971 44 STREET',
  'street_name': '44 STREET',
  'cross_street_1': '9 AVE',
  'cross_street_2': '10 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '12 BROOKLYN',
  'bbl': '3056010047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985200',
  'y_coordinate_state_plane': '173279',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64228739750914',
  'longitude': '-73.99657683392837',
  'location': {'latitude': '40.64228739750914',
   'longitude': '-73.99657683392837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982979',
  'created_date': '2024-11-04T23:56:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11204',
  'incident_address': '1676 71 STREET',
  'street_name': '71 STREET',
  'cross_street_1': '16 AVE',
  'cross_street_2': '17 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '11 BROOKLYN',
  'bbl': '3061810043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985149',
  'y_coordinate_state_plane': '164270',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.617559599311974',
  'longitude': '-73.99676180393071',
  'location': {'latitude': '40.617559599311974',
   'longitude': '-73.99676180393071',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975441',
  'created_date': '2024-11-04T23:55:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10461',
  'incident_address': '3104 WILKINSON AVENUE',
  'street_name': 'WILKINSON AVENUE',
  'cross_street_1': 'WESTCHESTER AVENUE',
  'cross_street_2': 'CONTINENTAL AVENUE',
  'intersection_street_1': 'WESTCHESTER AVENUE',
  'intersection_street_2': 'CONTINENTAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILKINSON AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2042380011',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031509',
  'y_coordinate_state_plane': '249597',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85163459705322',
  'longitude': '-73.82917403135737',
  'location': {'latitude': '40.85163459705322',
   'longitude': '-73.82917403135737',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985108',
  'created_date': '2024-11-04T23:55:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': '649 EAST  169 STREET',
  'street_name': 'EAST  169 STREET',
  'cross_street_1': 'FRANKLIN AVENUE',
  'cross_street_2': 'BOSTON ROAD',
  'intersection_street_1': 'FRANKLIN AVENUE',
  'intersection_street_2': 'BOSTON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  169 STREET',
  'status': 'In Progress',
  'community_board': '03 BRONX',
  'bbl': '2029330061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011645',
  'y_coordinate_state_plane': '242189',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Van',
  'latitude': '40.83138579008091',
  'longitude': '-73.90100613156598',
  'location': {'latitude': '40.83138579008091',
   'longitude': '-73.90100613156598',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975433',
  'created_date': '2024-11-04T23:54:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10457',
  'incident_address': '1923 CROTONA AVENUE',
  'street_name': 'CROTONA AVENUE',
  'cross_street_1': 'FAIRMOUNT PLACE',
  'cross_street_2': 'EAST TREMONT AVENUE',
  'intersection_street_1': 'FAIRMOUNT PLACE',
  'intersection_street_2': 'EAST TREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROTONA AVENUE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2029460129',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014223',
  'y_coordinate_state_plane': '247076',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8447908036492',
  'longitude': '-73.89166850652421',
  'location': {'latitude': '40.8447908036492',
   'longitude': '-73.89166850652421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984056',
  'created_date': '2024-11-04T23:54:06.000',
  'closed_date': '2024-11-05T01:09:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1234 SHAKESPEARE AVENUE',
  'street_name': 'SHAKESPEARE AVENUE',
  'cross_street_1': 'ANDERSON AVENUE',
  'cross_street_2': 'WEST  168 STREET',
  'intersection_street_1': 'ANDERSON AVENUE',
  'intersection_street_2': 'WEST  168 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SHAKESPEARE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:09:08.000',
  'community_board': '04 BRONX',
  'bbl': '2025060033',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005492',
  'y_coordinate_state_plane': '244605',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83803395218191',
  'longitude': '-73.9232327902938',
  'location': {'latitude': '40.83803395218191',
   'longitude': '-73.9232327902938',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985913',
  'created_date': '2024-11-04T23:53:45.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11367',
  'incident_address': '153-35 75 AVENUE',
  'street_name': '75 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '08 QUEENS',
  'bbl': '4068070002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036090',
  'y_coordinate_state_plane': '203917',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72622985504032',
  'longitude': '-73.81296779929708',
  'location': {'latitude': '40.72622985504032',
   'longitude': '-73.81296779929708',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979321',
  'created_date': '2024-11-04T23:53:44.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '2265 OLINVILLE AVENUE',
  'street_name': 'OLINVILLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '11 BRONX',
  'bbl': '2043410075',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020606',
  'y_coordinate_state_plane': '252399',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.859376868633596',
  'longitude': '-73.868569578283',
  'location': {'latitude': '40.859376868633596',
   'longitude': '-73.868569578283',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987091',
  'created_date': '2024-11-04T23:53:06.000',
  'closed_date': '2024-11-05T00:50:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '589 WEST   42 STREET',
  'street_name': 'WEST   42 STREET',
  'cross_street_1': 'AMTRAK-NORTHEAST LINE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': 'AMTRAK-NORTHEAST LINE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   42 STREET',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2024-11-05T00:51:00.000',
  'community_board': '04 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984839',
  'y_coordinate_state_plane': '216401',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.76064719915369',
  'longitude': '-73.99787386562625',
  'location': {'latitude': '40.76064719915369',
   'longitude': '-73.99787386562625',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982965',
  'created_date': '2024-11-04T23:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '11220',
  'intersection_street_1': '61 STREET',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '07 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978429',
  'y_coordinate_state_plane': '172967',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64142916256103',
  'longitude': '-74.02097473010343',
  'location': {'latitude': '40.64142916256103',
   'longitude': '-74.02097473010343',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981340',
  'created_date': '2024-11-04T23:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11223',
  'incident_address': '2059 WEST   10 STREET',
  'street_name': 'WEST   10 STREET',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '11 BROOKLYN',
  'bbl': '3070960058',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989399',
  'y_coordinate_state_plane': '156806',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.5970709965573',
  'longitude': '-73.9814590039228',
  'location': {'latitude': '40.5970709965573',
   'longitude': '-73.9814590039228',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984514',
  'created_date': '2024-11-04T23:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10035',
  'incident_address': '1787 MADISON AVENUE',
  'street_name': 'MADISON AVENUE',
  'cross_street_1': 'E 117 ST',
  'cross_street_2': 'E 118 ST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '11 MANHATTAN',
  'bbl': '1016237501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999694',
  'y_coordinate_state_plane': '231047',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80083311239078',
  'longitude': '-73.94421758138964',
  'location': {'latitude': '40.80083311239078',
   'longitude': '-73.94421758138964',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976615',
  'created_date': '2024-11-04T23:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10302',
  'incident_address': '567 JEWETT AVENUE',
  'street_name': 'JEWETT AVENUE',
  'cross_street_1': 'RAVENHURST AVE',
  'cross_street_2': 'BURNSIDE AVE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5003560304',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '947590',
  'y_coordinate_state_plane': '166224',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.622847118663536',
  'longitude': '-74.1320597520878',
  'location': {'latitude': '40.622847118663536',
   'longitude': '-74.1320597520878',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981505',
  'created_date': '2024-11-04T23:53:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10012',
  'intersection_street_1': 'BLEEKER STREET',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '02 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985402',
  'y_coordinate_state_plane': '203970',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72652715467351',
  'longitude': '-73.99584371348764',
  'location': {'latitude': '40.72652715467351',
   'longitude': '-73.99584371348764',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975379',
  'created_date': '2024-11-04T23:52:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11372',
  'incident_address': '35-24 95 STREET',
  'street_name': '95 STREET',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '37 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '37 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '95 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:40:21.000',
  'community_board': '03 QUEENS',
  'bbl': '4014680017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019558',
  'y_coordinate_state_plane': '213567',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.752798117381175',
  'longitude': '-73.8725624217355',
  'location': {'latitude': '40.752798117381175',
   'longitude': '-73.8725624217355',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975818',
  'created_date': '2024-11-04T23:52:45.000',
  'closed_date': '2024-11-05T00:24:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '864 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '42 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:24:59.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009250033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984884',
  'y_coordinate_state_plane': '174188',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64478243522447',
  'longitude': '-73.99771540163759',
  'location': {'latitude': '40.64478243522447',
   'longitude': '-73.99771540163759',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985366',
  'created_date': '2024-11-04T23:52:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10465',
  'incident_address': '281 BLAIR AVENUE',
  'street_name': 'BLAIR AVENUE',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'MILES AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'MILES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BLAIR AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055180175',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1037261',
  'y_coordinate_state_plane': '238656',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.821572130823235',
  'longitude': '-73.80846895004679',
  'location': {'latitude': '40.821572130823235',
   'longitude': '-73.80846895004679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983745',
  'created_date': '2024-11-04T23:52:08.000',
  'closed_date': '2024-11-05T02:22:24.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Graffiti',
  'descriptor': 'Graffiti',
  'incident_address': 'Bedford Park Blvd W',
  'street_name': 'Bedford Park Blvd W',
  'address_type': 'ADDRESS',
  'facility_type': 'N/A',
  'status': 'Closed',
  'resolution_action_updated_date': '2024-11-05T02:22:24.000',
  'community_board': 'Unspecified BRONX',
  'borough': 'BRONX',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX'},
 {'unique_key': '62984819',
  'created_date': '2024-11-04T23:51:35.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Dog Waste',
  'location_type': 'Sidewalk',
  'incident_zip': '11233',
  'incident_address': '210 MAC DOUGAL STREET',
  'street_name': 'MAC DOUGAL STREET',
  'cross_street_1': 'THOMAS S BOYLAND STREET',
  'cross_street_2': 'ROCKAWAY AVENUE',
  'intersection_street_1': 'THOMAS S BOYLAND STREET',
  'intersection_street_2': 'ROCKAWAY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MAC DOUGAL STREET',
  'status': 'In Progress',
  'community_board': '16 BROOKLYN',
  'bbl': '3015330028',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008591',
  'y_coordinate_state_plane': '187073',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68011546747693',
  'longitude': '-73.91224151200643',
  'location': {'latitude': '40.68011546747693',
   'longitude': '-73.91224151200643',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978711',
  'created_date': '2024-11-04T23:50:30.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Chronic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '50-19 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': '49 STREET',
  'cross_street_2': '51 STREET',
  'intersection_street_1': '49 STREET',
  'intersection_street_2': '51 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': 'BROADWAY',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-11-05T00:26:46.000',
  'community_board': '01 QUEENS',
  'bbl': '4007380050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009055',
  'y_coordinate_state_plane': '214346',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75497197513116',
  'longitude': '-73.91046811700716',
  'location': {'latitude': '40.75497197513116',
   'longitude': '-73.91046811700716',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980517',
  'created_date': '2024-11-04T23:50:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10473',
  'incident_address': '1401 STORY AVENUE',
  'street_name': 'STORY AVENUE',
  'cross_street_1': 'BRONX RIVER AVENUE',
  'cross_street_2': 'BRUCKNER BOULEVARD',
  'intersection_street_1': 'BRONX RIVER AVENUE',
  'intersection_street_2': 'BRUCKNER BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'STORY AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2036460001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016817',
  'y_coordinate_state_plane': '238525',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82131160582587',
  'longitude': '-73.88233453077042',
  'location': {'latitude': '40.82131160582587',
   'longitude': '-73.88233453077042',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976622',
  'created_date': '2024-11-04T23:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Jack Hammering (NC2)',
  'incident_zip': '11211',
  'incident_address': '387 MANHATTAN AVENUE',
  'street_name': 'MANHATTAN AVENUE',
  'cross_street_1': 'WITHERS ST',
  'cross_street_2': 'FROST ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 BROOKLYN',
  'bbl': '3027387501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999046',
  'y_coordinate_state_plane': '200750',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71767673504138',
  'longitude': '-73.94662478044951',
  'location': {'latitude': '40.71767673504138',
   'longitude': '-73.94662478044951',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984597',
  'created_date': '2024-11-04T23:50:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11212',
  'incident_address': '452 EAST   91 STREET',
  'street_name': 'EAST   91 STREET',
  'cross_street_1': 'KINGS HWY',
  'cross_street_2': 'WILLMOHR ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '17 BROOKLYN',
  'bbl': '3046650039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006144',
  'y_coordinate_state_plane': '177915',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.654985197826385',
  'longitude': '-73.92109360732897',
  'location': {'latitude': '40.654985197826385',
   'longitude': '-73.92109360732897',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976766',
  'created_date': '2024-11-04T23:49:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10029',
  'incident_address': '2149 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST  110 STREET',
  'cross_street_2': 'EAST  111 STREET',
  'intersection_street_1': 'EAST  110 STREET',
  'intersection_street_2': 'EAST  111 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'In Progress',
  'community_board': '11 MANHATTAN',
  'bbl': '1016600025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000768',
  'y_coordinate_state_plane': '228378',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.79350549212279',
  'longitude': '-73.9403449507305',
  'location': {'latitude': '40.79350549212279',
   'longitude': '-73.9403449507305',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975616',
  'created_date': '2024-11-04T23:49:34.000',
  'closed_date': '2024-11-05T01:12:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11101',
  'incident_address': '29-17 40 AVENUE',
  'street_name': '40 AVENUE',
  'cross_street_1': '29 STREET',
  'cross_street_2': '30 STREET',
  'intersection_street_1': '29 STREET',
  'intersection_street_2': '30 STREET',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '40 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:12:03.000',
  'community_board': '01 QUEENS',
  'bbl': '4003990034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1002154',
  'y_coordinate_state_plane': '213332',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75220546996098',
  'longitude': '-73.93537947477927',
  'location': {'latitude': '40.75220546996098',
   'longitude': '-73.93537947477927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980559',
  'created_date': '2024-11-04T23:48:46.000',
  'closed_date': '2024-11-05T00:59:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper Use',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '300 SCHERMERHORN STREET',
  'street_name': 'SCHERMERHORN STREET',
  'cross_street_1': 'BOND STREET',
  'cross_street_2': 'NEVINS STREET',
  'intersection_street_1': 'BOND STREET',
  'intersection_street_2': 'NEVINS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHERMERHORN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:59:33.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001720024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989106',
  'y_coordinate_state_plane': '189782',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687583189195095',
  'longitude': '-73.98249033007562',
  'location': {'latitude': '40.687583189195095',
   'longitude': '-73.98249033007562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983975',
  'created_date': '2024-11-04T23:48:43.000',
  'closed_date': '2024-11-05T00:40:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '972 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'PUTNAM AVENUE',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'PUTNAM AVENUE',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FULTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:40:18.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020140026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994794',
  'y_coordinate_state_plane': '187912',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.682445518546295',
  'longitude': '-73.9619835790069',
  'location': {'latitude': '40.682445518546295',
   'longitude': '-73.9619835790069',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984060',
  'created_date': '2024-11-04T23:48:39.000',
  'closed_date': '2024-11-05T01:35:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11101',
  'incident_address': '39-28 30 STREET',
  'street_name': '30 STREET',
  'cross_street_1': '39 AVENUE',
  'cross_street_2': '40 AVENUE',
  'intersection_street_1': '39 AVENUE',
  'intersection_street_2': '40 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '30 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:35:05.000',
  'community_board': '01 QUEENS',
  'bbl': '4003990031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1002515',
  'y_coordinate_state_plane': '213517',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75271250963604',
  'longitude': '-73.93407602315781',
  'location': {'latitude': '40.75271250963604',
   'longitude': '-73.93407602315781',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987578',
  'created_date': '2024-11-04T23:48:27.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '450 EAST  184 STREET',
  'street_name': 'EAST  184 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '06 BRONX',
  'bbl': '2030380055',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013697',
  'y_coordinate_state_plane': '251229',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85619132024811',
  'longitude': '-73.89355138736937',
  'location': {'latitude': '40.85619132024811',
   'longitude': '-73.89355138736937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981723',
  'created_date': '2024-11-04T23:48:16.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Highway Condition',
  'descriptor': 'Pothole - Highway',
  'location_type': 'Highway',
  'status': 'In Progress',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'Cross Island Pkwy',
  'bridge_highway_direction': 'North/Bronx Bound',
  'road_ramp': 'Roadway',
  'bridge_highway_segment': 'Hempstead Ave Belmost Racetrack (NY 24) (Exit 26 B) - Nassau County Boundary'},
 {'unique_key': '62980841',
  'created_date': '2024-11-04T23:48:06.000',
  'closed_date': '2024-11-05T01:03:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11211',
  'incident_address': '103 RICHARDSON STREET',
  'street_name': 'RICHARDSON STREET',
  'cross_street_2': 'MEEKER AVENUE',
  'intersection_street_2': 'MEEKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RICHARDSON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:03:05.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027230038',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998780',
  'y_coordinate_state_plane': '201063',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71853628558324',
  'longitude': '-73.94758367529947',
  'location': {'latitude': '40.71853628558324',
   'longitude': '-73.94758367529947',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975159',
  'created_date': '2024-11-04T23:48:02.000',
  'closed_date': '2024-11-05T00:53:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10314',
  'incident_address': '126 DENKER PLACE',
  'street_name': 'DENKER PLACE',
  'cross_street_1': 'TRAVIS AVENUE',
  'cross_street_2': 'KLONDIKE AVENUE',
  'intersection_street_1': 'TRAVIS AVENUE',
  'intersection_street_2': 'KLONDIKE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'DENKER PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:53:55.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023720189',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941212',
  'y_coordinate_state_plane': '153510',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Truck',
  'latitude': '40.58792115060695',
  'longitude': '-74.15495406233927',
  'location': {'latitude': '40.58792115060695',
   'longitude': '-74.15495406233927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980838',
  'created_date': '2024-11-04T23:47:42.000',
  'closed_date': '2024-11-05T00:40:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '972 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'PUTNAM AVENUE',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'PUTNAM AVENUE',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FULTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:40:12.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020140026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994794',
  'y_coordinate_state_plane': '187912',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.682445518546295',
  'longitude': '-73.9619835790069',
  'location': {'latitude': '40.682445518546295',
   'longitude': '-73.9619835790069',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979998',
  'created_date': '2024-11-04T23:47:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11212',
  'incident_address': '9427 KINGS HIGHWAY',
  'street_name': 'KINGS HIGHWAY',
  'cross_street_1': 'EAST   94 STREET',
  'cross_street_2': 'EAST   95 STREET',
  'intersection_street_1': 'EAST   94 STREET',
  'intersection_street_2': 'EAST   95 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGS HIGHWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:20:42.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3046490024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006300',
  'y_coordinate_state_plane': '179260',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6586765393415',
  'longitude': '-73.92052698283617',
  'location': {'latitude': '40.6586765393415',
   'longitude': '-73.92052698283617',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984129',
  'created_date': '2024-11-04T23:47:23.000',
  'closed_date': '2024-11-05T00:20:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10305',
  'incident_address': '70 HANCOCK STREET',
  'street_name': 'HANCOCK STREET',
  'cross_street_1': 'GARRETSON AVENUE',
  'cross_street_2': 'SEAVIEW AVENUE',
  'intersection_street_1': 'GARRETSON AVENUE',
  'intersection_street_2': 'SEAVIEW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HANCOCK STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:20:47.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5033420021',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '957699',
  'y_coordinate_state_plane': '153757',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.588663833683576',
  'longitude': '-74.09559528173874',
  'location': {'latitude': '40.588663833683576',
   'longitude': '-74.09559528173874',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984229',
  'created_date': '2024-11-04T23:47:15.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1265 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2024390057',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008475',
  'y_coordinate_state_plane': '243268',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.834356596873015',
  'longitude': '-73.9124572574072',
  'location': {'latitude': '40.834356596873015',
   'longitude': '-73.9124572574072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981418',
  'created_date': '2024-11-04T23:47:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '2161 EAST   36 STREET',
  'street_name': 'EAST   36 STREET',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3085360015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004116',
  'y_coordinate_state_plane': '160495',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60717577937649',
  'longitude': '-73.9284538325117',
  'location': {'latitude': '40.60717577937649',
   'longitude': '-73.9284538325117',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976497',
  'created_date': '2024-11-04T23:47:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10038',
  'incident_address': '8 SPRUCE STREET',
  'street_name': 'SPRUCE STREET',
  'cross_street_1': 'NASSAU ST',
  'cross_street_2': 'WILLIAM ST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 MANHATTAN',
  'bbl': '1001007502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982754',
  'y_coordinate_state_plane': '198402',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71124428219808',
  'longitude': '-74.00539616233843',
  'location': {'latitude': '40.71124428219808',
   'longitude': '-74.00539616233843',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975595',
  'created_date': '2024-11-04T23:46:49.000',
  'closed_date': '2024-11-05T00:02:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11229',
  'incident_address': '3342 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:02:06.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073340005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000283',
  'y_coordinate_state_plane': '158732',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.602344468950996',
  'longitude': '-73.94226232493995',
  'location': {'latitude': '40.602344468950996',
   'longitude': '-73.94226232493995',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985477',
  'created_date': '2024-11-04T23:46:38.000',
  'closed_date': '2024-11-05T00:48:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10031',
  'incident_address': '3671 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  151 STREET',
  'cross_street_2': 'WEST  152 STREET',
  'intersection_street_1': 'WEST  151 STREET',
  'intersection_street_2': 'WEST  152 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:48:57.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020980036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998818',
  'y_coordinate_state_plane': '241922',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83068342413223',
  'longitude': '-73.94735801308232',
  'location': {'latitude': '40.83068342413223',
   'longitude': '-73.94735801308232',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983956',
  'created_date': '2024-11-04T23:46:07.000',
  'closed_date': '2024-11-05T00:02:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11229',
  'incident_address': '3342 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:02:24.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073340005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000283',
  'y_coordinate_state_plane': '158732',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.602344468950996',
  'longitude': '-73.94226232493995',
  'location': {'latitude': '40.602344468950996',
   'longitude': '-73.94226232493995',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980352',
  'created_date': '2024-11-04T23:45:37.000',
  'closed_date': '2024-11-05T01:24:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '223 AVENUE N',
  'street_name': 'AVENUE N',
  'cross_street_1': 'EAST    2 STREET',
  'cross_street_2': 'EAST    3 STREET',
  'intersection_street_1': 'EAST    2 STREET',
  'intersection_street_2': 'EAST    3 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE N',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:24:44.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3065650044',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991860',
  'y_coordinate_state_plane': '163046',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61419675030122',
  'longitude': '-73.97259017678594',
  'location': {'latitude': '40.61419675030122',
   'longitude': '-73.97259017678594',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985562',
  'created_date': '2024-11-04T23:45:33.000',
  'closed_date': '2024-11-05T00:52:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '100 EAST  158 STREET',
  'street_name': 'EAST  158 STREET',
  'cross_street_1': 'GERARD AVENUE',
  'cross_street_2': 'WALTON AVENUE',
  'intersection_street_1': 'GERARD AVENUE',
  'intersection_street_2': 'WALTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  158 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:52:57.000',
  'community_board': '04 BRONX',
  'bbl': '2024740010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004860',
  'y_coordinate_state_plane': '240306',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.826235934929635',
  'longitude': '-73.92553000421697',
  'location': {'latitude': '40.826235934929635',
   'longitude': '-73.92553000421697',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987259',
  'created_date': '2024-11-04T23:45:00.000',
  'closed_date': '2024-11-05T01:18:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '1403 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EAST  170 STREET',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'EAST  170 STREET',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T01:18:46.000',
  'community_board': '04 BRONX',
  'bbl': '2028330030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008147',
  'y_coordinate_state_plane': '244946',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83896311232895',
  'longitude': '-73.91363658344284',
  'location': {'latitude': '40.83896311232895',
   'longitude': '-73.91363658344284',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987131',
  'created_date': '2024-11-04T23:44:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '151 BAYARD STREET',
  'street_name': 'BAYARD STREET',
  'cross_street_1': 'MANHATTAN AVENUE',
  'cross_street_2': 'GRAHAM AVENUE',
  'intersection_street_1': 'MANHATTAN AVENUE',
  'intersection_street_2': 'GRAHAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAYARD STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3027190027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999139',
  'y_coordinate_state_plane': '201604',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.720020603223674',
  'longitude': '-73.94628740249115',
  'location': {'latitude': '40.720020603223674',
   'longitude': '-73.94628740249115',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977376',
  'created_date': '2024-11-04T23:44:50.000',
  'closed_date': '2024-11-05T01:00:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '300 SCHERMERHORN STREET',
  'street_name': 'SCHERMERHORN STREET',
  'cross_street_1': 'BOND STREET',
  'cross_street_2': 'NEVINS STREET',
  'intersection_street_1': 'BOND STREET',
  'intersection_street_2': 'NEVINS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHERMERHORN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:00:40.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001720024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989106',
  'y_coordinate_state_plane': '189782',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.687583189195095',
  'longitude': '-73.98249033007562',
  'location': {'latitude': '40.687583189195095',
   'longitude': '-73.98249033007562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980241',
  'created_date': '2024-11-04T23:44:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '41 WEST  115 STREET',
  'street_name': 'WEST  115 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'LENOX AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'LENOX AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  115 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:21:25.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1015997502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998467',
  'y_coordinate_state_plane': '230992',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80068421188083',
  'longitude': '-73.94864951675567',
  'location': {'latitude': '40.80068421188083',
   'longitude': '-73.94864951675567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977240',
  'created_date': '2024-11-04T23:44:38.000',
  'closed_date': '2024-11-05T01:27:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '405 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': '1 AVENUE',
  'cross_street_2': 'AVENUE A',
  'intersection_street_1': '1 AVENUE',
  'intersection_street_2': 'AVENUE A',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
  'resolution_action_updated_date': '2024-11-05T01:27:36.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004417502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989053',
  'y_coordinate_state_plane': '205416',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73049484276088',
  'longitude': '-73.98267028398077',
  'location': {'latitude': '40.73049484276088',
   'longitude': '-73.98267028398077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986625',
  'created_date': '2024-11-04T23:44:38.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '405 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': '1 AVENUE',
  'cross_street_2': 'AVENUE A',
  'intersection_street_1': '1 AVENUE',
  'intersection_street_2': 'AVENUE A',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   13 STREET',
  'status': 'In Progress',
  'community_board': '03 MANHATTAN',
  'bbl': '1004417502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989053',
  'y_coordinate_state_plane': '205416',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73049484276088',
  'longitude': '-73.98267028398077',
  'location': {'latitude': '40.73049484276088',
   'longitude': '-73.98267028398077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976765',
  'created_date': '2024-11-04T23:44:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '65 WEST  115 STREET',
  'street_name': 'WEST  115 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'LENOX AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'LENOX AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  115 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:21:49.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1015997502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998297',
  'y_coordinate_state_plane': '231088',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800947977482146',
  'longitude': '-73.94926333998961',
  'location': {'latitude': '40.800947977482146',
   'longitude': '-73.94926333998961',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983592',
  'created_date': '2024-11-04T23:44:25.000',
  'closed_date': '2024-11-05T00:35:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '836 QUINCY STREET',
  'street_name': 'QUINCY STREET',
  'cross_street_1': 'PATCHEN AVENUE',
  'cross_street_2': 'RALPH AVENUE',
  'intersection_street_1': 'PATCHEN AVENUE',
  'intersection_street_2': 'RALPH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'QUINCY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T00:35:24.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016330020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004736',
  'y_coordinate_state_plane': '190586',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.689767607585836',
  'longitude': '-73.92612955322139',
  'location': {'latitude': '40.689767607585836',
   'longitude': '-73.92612955322139',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986207',
  'created_date': '2024-11-04T23:44:10.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'MOLD',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11220',
  'incident_address': '347 51 STREET',
  'street_name': '51 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3007900055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980326',
  'y_coordinate_state_plane': '174819',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6465135474544',
  'longitude': '-74.01414037319466',
  'location': {'latitude': '40.6465135474544',
   'longitude': '-74.01414037319466',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986370',
  'created_date': '2024-11-04T23:44:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '2148 EAST   34 STREET',
  'street_name': 'EAST   34 STREET',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3085330066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003719',
  'y_coordinate_state_plane': '160129',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60617206564247',
  'longitude': '-73.92988465785037',
  'location': {'latitude': '40.60617206564247',
   'longitude': '-73.92988465785037',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981935',
  'created_date': '2024-11-04T23:44:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Drag Racing',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10026',
  'incident_address': '127 WEST  115 STREET',
  'street_name': 'WEST  115 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ST NICHOLAS AVENUE',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  115 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:36:27.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018250017',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997808',
  'y_coordinate_state_plane': '231363',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80170354097497',
  'longitude': '-73.95102901389379',
  'location': {'latitude': '40.80170354097497',
   'longitude': '-73.95102901389379',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975647',
  'created_date': '2024-11-04T23:43:51.000',
  'closed_date': '2024-11-05T00:23:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1730 ANDREWS AVENUE SOUTH',
  'street_name': 'ANDREWS AVENUE SOUTH',
  'cross_street_1': 'WEST  176 STREET',
  'cross_street_2': 'WEST TREMONT AVENUE',
  'intersection_street_1': 'WEST  176 STREET',
  'intersection_street_2': 'WEST TREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANDREWS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:23:58.000',
  'community_board': '05 BRONX',
  'bbl': '2028780178',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007075',
  'y_coordinate_state_plane': '249031',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85017807004264',
  'longitude': '-73.91749686918405',
  'location': {'latitude': '40.85017807004264',
   'longitude': '-73.91749686918405',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982270',
  'created_date': '2024-11-04T23:43:37.000',
  'closed_date': '2024-11-04T23:54:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '116 CLERMONT AVENUE',
  'street_name': 'CLERMONT AVENUE',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLERMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:54:44.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020450011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992264',
  'y_coordinate_state_plane': '192232',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.69430557804001',
  'longitude': '-73.97110036151714',
  'location': {'latitude': '40.69430557804001',
   'longitude': '-73.97110036151714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985497',
  'created_date': '2024-11-04T23:42:51.000',
  'closed_date': '2024-11-05T00:09:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11001',
  'incident_address': '254-12 84 ROAD',
  'street_name': '84 ROAD',
  'cross_street_1': 'LITTLE NECK PARKWAY',
  'cross_street_2': '256 STREET',
  'intersection_street_1': 'LITTLE NECK PARKWAY',
  'intersection_street_2': '256 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLORAL PARK',
  'landmark': '84 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:09:26.000',
  'community_board': '13 QUEENS',
  'bbl': '4087830010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1063853',
  'y_coordinate_state_plane': '207400',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73558351480602',
  'longitude': '-73.71276177393412',
  'location': {'latitude': '40.73558351480602',
   'longitude': '-73.71276177393412',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977111',
  'created_date': '2024-11-04T23:42:34.000',
  'closed_date': '2024-11-05T01:16:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '1743 CROPSEY AVENUE',
  'street_name': 'CROPSEY AVENUE',
  'cross_street_1': 'BAY   16 STREET',
  'cross_street_2': 'BAY   17 STREET',
  'intersection_street_1': 'BAY   16 STREET',
  'intersection_street_2': 'BAY   17 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CROPSEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:16:38.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064340005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981864',
  'y_coordinate_state_plane': '159056',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.603247965054294',
  'longitude': '-74.00859252461775',
  'location': {'latitude': '40.603247965054294',
   'longitude': '-74.00859252461775',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983538',
  'created_date': '2024-11-04T23:42:08.000',
  'closed_date': '2024-11-05T01:43:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11436',
  'incident_address': '147-02 120 AVENUE',
  'street_name': '120 AVENUE',
  'cross_street_1': '147 STREET',
  'cross_street_2': 'SUTPHIN BOULEVARD',
  'intersection_street_1': '147 STREET',
  'intersection_street_2': 'SUTPHIN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '120 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:43:39.000',
  'community_board': '12 QUEENS',
  'bbl': '4120450186',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041899',
  'y_coordinate_state_plane': '186145',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67741406742275',
  'longitude': '-73.79216186498235',
  'location': {'latitude': '40.67741406742275',
   'longitude': '-73.79216186498235',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987194',
  'created_date': '2024-11-04T23:41:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CABINET',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11223',
  'incident_address': '1628 OCEAN PARKWAY',
  'street_name': 'OCEAN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3066370019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993247',
  'y_coordinate_state_plane': '161116',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60889799802224',
  'longitude': '-73.96759702920683',
  'location': {'latitude': '40.60889799802224',
   'longitude': '-73.96759702920683',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978902',
  'created_date': '2024-11-04T23:41:07.000',
  'closed_date': '2024-11-05T01:11:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '211 MCGUINNESS BOULEVARD',
  'street_name': 'MCGUINNESS BOULEVARD',
  'cross_street_1': 'CALYER STREET',
  'cross_street_2': 'GREENPOINT AVENUE',
  'intersection_street_1': 'CALYER STREET',
  'intersection_street_2': 'GREENPOINT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MCGUINNESS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:11:29.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3025767501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997839',
  'y_coordinate_state_plane': '205066',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72952504407939',
  'longitude': '-73.9509702072562',
  'location': {'latitude': '40.72952504407939',
   'longitude': '-73.9509702072562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986896',
  'created_date': '2024-11-04T23:41:03.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': 'Other (Explain Below)',
  'incident_zip': '10075',
  'incident_address': '167 EAST   77 STREET',
  'street_name': 'EAST   77 STREET',
  'cross_street_1': 'LEXINGTON AVENUE',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'LEXINGTON AVENUE',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   77 STREET',
  'status': 'In Progress',
  'community_board': '08 MANHATTAN',
  'bbl': '1014120028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '995593',
  'y_coordinate_state_plane': '221017',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77330966490587',
  'longitude': '-73.95904698004797',
  'location': {'latitude': '40.77330966490587',
   'longitude': '-73.95904698004797',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978478',
  'created_date': '2024-11-04T23:40:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10463',
  'incident_address': '49 WEST  225 STREET',
  'street_name': 'WEST  225 STREET',
  'cross_street_1': 'EXTERIOR STREET',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'EXTERIOR STREET',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  225 STREET',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '1022150116',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009652',
  'y_coordinate_state_plane': '257603',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87369857353044',
  'longitude': '-73.90814957564673',
  'location': {'latitude': '40.87369857353044',
   'longitude': '-73.90814957564673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976864',
  'created_date': '2024-11-04T23:39:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10454',
  'incident_address': '5 LINCOLN AVENUE',
  'street_name': 'LINCOLN AVENUE',
  'cross_street_1': 'AMTRAK-CONNECTING RAIL LINE',
  'cross_street_2': 'EAST  132 STREET',
  'intersection_street_1': 'AMTRAK-CONNECTING RAIL LINE',
  'intersection_street_2': 'EAST  132 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LINCOLN AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2023160001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003593',
  'y_coordinate_state_plane': '233229',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80681442589323',
  'longitude': '-73.93012844292622',
  'location': {'latitude': '40.80681442589323',
   'longitude': '-73.93012844292622',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982157',
  'created_date': '2024-11-04T23:39:48.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Plate Condition - Noisy',
  'location_type': 'Street',
  'incident_zip': '11236',
  'incident_address': 'AVENUE K',
  'street_name': 'AVENUE K',
  'cross_street_1': 'AVENUE K',
  'cross_street_2': 'ROCKAWAY PARKWAY',
  'intersection_street_1': 'AVENUE K',
  'intersection_street_2': 'ROCKAWAY PARKWAY',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1012832',
  'y_coordinate_state_plane': '172599',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.640374876825994',
  'longitude': '-73.89701247273263',
  'location': {'latitude': '40.640374876825994',
   'longitude': '-73.89701247273263',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986829',
  'created_date': '2024-11-04T23:39:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10472',
  'incident_address': '1032 ELDER AVENUE',
  'street_name': 'ELDER AVENUE',
  'cross_street_1': 'BRUCKNER BOULEVARD',
  'cross_street_2': 'WATSON AVENUE',
  'intersection_street_1': 'BRUCKNER BOULEVARD',
  'intersection_street_2': 'WATSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ELDER AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037140018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017946',
  'y_coordinate_state_plane': '239749',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82466690122761',
  'longitude': '-73.87824928121606',
  'location': {'latitude': '40.82466690122761',
   'longitude': '-73.87824928121606',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980852',
  'created_date': '2024-11-04T23:39:14.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10459',
  'incident_address': '951 HOE AVENUE',
  'street_name': 'HOE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '02 BRONX',
  'bbl': '2027427501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014601',
  'y_coordinate_state_plane': '238805',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82208801817637',
  'longitude': '-73.89033972476959',
  'location': {'latitude': '40.82208801817637',
   'longitude': '-73.89033972476959',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975939',
  'created_date': '2024-11-04T23:39:06.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Indoor Air Quality',
  'descriptor': 'Sewage Odor',
  'location_type': '3+ Family Apt. Building',
  'incident_zip': '10037',
  'incident_address': '63 WEST  137 STREET',
  'street_name': 'WEST  137 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'LENOX AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'LENOX AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  137 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1017350008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001260',
  'y_coordinate_state_plane': '236151',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81483930177756',
  'longitude': '-73.93854839117563',
  'location': {'latitude': '40.81483930177756',
   'longitude': '-73.93854839117563',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976764',
  'created_date': '2024-11-04T23:38:56.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '10456',
  'incident_address': '1345 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'cross_street_1': 'EAST  169 STREET',
  'cross_street_2': 'EAST  170 STREET',
  'intersection_street_1': 'EAST  169 STREET',
  'intersection_street_2': 'EAST  170 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBSTER AVENUE',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2028870165',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009694',
  'y_coordinate_state_plane': '243541',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83510247480038',
  'longitude': '-73.90805108142605',
  'location': {'latitude': '40.83510247480038',
   'longitude': '-73.90805108142605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981085',
  'created_date': '2024-11-04T23:38:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11223',
  'incident_address': '1628 OCEAN PARKWAY',
  'street_name': 'OCEAN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3066370019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993247',
  'y_coordinate_state_plane': '161116',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60889799802224',
  'longitude': '-73.96759702920683',
  'location': {'latitude': '40.60889799802224',
   'longitude': '-73.96759702920683',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976033',
  'created_date': '2024-11-04T23:38:07.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10468',
  'incident_address': '2525 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2031900050',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012276',
  'y_coordinate_state_plane': '254082',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86402656719336',
  'longitude': '-73.89867625757466',
  'location': {'latitude': '40.86402656719336',
   'longitude': '-73.89867625757466',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976367',
  'created_date': '2024-11-04T23:38:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '1851 EAST   34 STREET',
  'street_name': 'EAST   34 STREET',
  'cross_street_1': 'AVENUE R',
  'cross_street_2': 'FILLMORE AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3084780022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002177',
  'y_coordinate_state_plane': '161953',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611181824014835',
  'longitude': '-73.93543314777408',
  'location': {'latitude': '40.611181824014835',
   'longitude': '-73.93543314777408',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62974789',
  'created_date': '2024-11-04T23:38:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11214',
  'incident_address': '68 BAY   32 STREET',
  'street_name': 'BAY   32 STREET',
  'cross_street_1': '86 ST',
  'cross_street_2': 'BENSON AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '11 BROOKLYN',
  'bbl': '3063820069',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986025',
  'y_coordinate_state_plane': '157810',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59982809149284',
  'longitude': '-73.99360815172024',
  'location': {'latitude': '40.59982809149284',
   'longitude': '-73.99360815172024',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987157',
  'created_date': '2024-11-04T23:37:06.000',
  'closed_date': '2024-11-05T00:43:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10029',
  'incident_address': '1695 MADISON AVENUE',
  'street_name': 'MADISON AVENUE',
  'cross_street_1': 'EAST  112 STREET',
  'cross_street_2': 'EAST  115 STREET',
  'intersection_street_1': 'EAST  112 STREET',
  'intersection_street_2': 'EAST  115 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MADISON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:43:27.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016200023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999020',
  'y_coordinate_state_plane': '229830',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79749393222475',
  'longitude': '-73.94665468854132',
  'location': {'latitude': '40.79749393222475',
   'longitude': '-73.94665468854132',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977425',
  'created_date': '2024-11-04T23:37:04.000',
  'closed_date': '2024-11-05T00:41:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11219',
  'incident_address': '926 47 STREET',
  'street_name': '47 STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': '10 AVENUE',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': '10 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '47 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:41:37.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056250011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984520',
  'y_coordinate_state_plane': '172815',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64101386389138',
  'longitude': '-73.9990271187378',
  'location': {'latitude': '40.64101386389138',
   'longitude': '-73.9990271187378',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987522',
  'created_date': '2024-11-04T23:36:06.000',
  'closed_date': '2024-11-05T01:24:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '641 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': 'AVENUE B',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'AVENUE B',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:24:50.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003960010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990530',
  'y_coordinate_state_plane': '204601',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72825694166462',
  'longitude': '-73.97734187751063',
  'location': {'latitude': '40.72825694166462',
   'longitude': '-73.97734187751063',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986523',
  'created_date': '2024-11-04T23:36:03.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Broken Glass',
  'location_type': 'Sidewalk',
  'incident_zip': '11211',
  'incident_address': '487 KEAP STREET',
  'street_name': 'KEAP STREET',
  'cross_street_1': 'AINSLIE STREET',
  'cross_street_2': 'UNION AVENUE',
  'intersection_street_1': 'AINSLIE STREET',
  'intersection_street_2': 'UNION AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KEAP STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3023710034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997593',
  'y_coordinate_state_plane': '199190',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71339721966222',
  'longitude': '-73.9518694362982',
  'location': {'latitude': '40.71339721966222',
   'longitude': '-73.9518694362982',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983826',
  'created_date': '2024-11-04T23:35:34.000',
  'closed_date': '2024-11-04T23:54:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '116 CLERMONT AVENUE',
  'street_name': 'CLERMONT AVENUE',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLERMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:54:39.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020450011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992264',
  'y_coordinate_state_plane': '192232',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.69430557804001',
  'longitude': '-73.97110036151714',
  'location': {'latitude': '40.69430557804001',
   'longitude': '-73.97110036151714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979336',
  'created_date': '2024-11-04T23:35:08.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '212 WEST  133 STREET',
  'street_name': 'WEST  133 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019380046',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999381',
  'y_coordinate_state_plane': '235950',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81429103122533',
  'longitude': '-73.94533705954535',
  'location': {'latitude': '40.81429103122533',
   'longitude': '-73.94533705954535',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978008',
  'created_date': '2024-11-04T23:35:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11203',
  'incident_address': '275 EAST   38 STREET',
  'street_name': 'EAST   38 STREET',
  'cross_street_1': 'CHURCH AVE',
  'cross_street_2': 'SNYDER AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '17 BROOKLYN',
  'bbl': '3048920054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000404',
  'y_coordinate_state_plane': '176204',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.650301208310744',
  'longitude': '-73.9417847675016',
  'location': {'latitude': '40.650301208310744',
   'longitude': '-73.9417847675016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976077',
  'created_date': '2024-11-04T23:34:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10452',
  'incident_address': '1060 NELSON AVENUE',
  'street_name': 'NELSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025130001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004269',
  'y_coordinate_state_plane': '243258',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8343396852955',
  'longitude': '-73.92765665114582',
  'location': {'latitude': '40.8343396852955',
   'longitude': '-73.92765665114582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982423',
  'created_date': '2024-11-04T23:34:50.000',
  'closed_date': '2024-11-05T00:05:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10027',
  'incident_address': '410 WEST  128 STREET',
  'street_name': 'WEST  128 STREET',
  'cross_street_1': 'ST NICHOLAS TERRACE',
  'cross_street_2': 'CONVENT AVENUE',
  'intersection_street_1': 'ST NICHOLAS TERRACE',
  'intersection_street_2': 'CONVENT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T00:05:34.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019540055',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997490',
  'y_coordinate_state_plane': '235514',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81309736956231',
  'longitude': '-73.95216943096172',
  'location': {'latitude': '40.81309736956231',
   'longitude': '-73.95216943096172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977563',
  'created_date': '2024-11-04T23:34:37.000',
  'closed_date': '2024-11-05T00:38:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '8101 18 AVENUE',
  'street_name': '18 AVENUE',
  'cross_street_1': '81 STREET',
  'cross_street_2': '82 STREET',
  'intersection_street_1': '81 STREET',
  'intersection_street_2': '82 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '18 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:38:38.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062960001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984380',
  'y_coordinate_state_plane': '161465',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60986049789185',
  'longitude': '-73.99953179428257',
  'location': {'latitude': '40.60986049789185',
   'longitude': '-73.99953179428257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984151',
  'created_date': '2024-11-04T23:34:10.000',
  'closed_date': '2024-11-05T00:25:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '470 DEAN STREET',
  'street_name': 'DEAN STREET',
  'cross_street_1': 'FLATBUSH AVENUE',
  'cross_street_2': '6 AVENUE',
  'intersection_street_1': 'FLATBUSH AVENUE',
  'intersection_street_2': '6 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:25:34.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3011357501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991175',
  'y_coordinate_state_plane': '187625',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68166134001972',
  'longitude': '-73.9750321875096',
  'location': {'latitude': '40.68166134001972',
   'longitude': '-73.9750321875096',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985110',
  'created_date': '2024-11-04T23:34:10.000',
  'closed_date': '2024-11-05T00:35:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11364',
  'incident_address': '219-09 75 AVENUE',
  'street_name': '75 AVENUE',
  'cross_street_1': '74 AVENUE',
  'cross_street_2': '220 STREET',
  'intersection_street_1': '74 AVENUE',
  'intersection_street_2': '220 STREET',
  'address_type': 'ADDRESS',
  'city': 'OAKLAND GARDENS',
  'landmark': '75 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:36:03.000',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052273',
  'y_coordinate_state_plane': '208624',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73903972096065',
  'longitude': '-73.75453425194786',
  'location': {'latitude': '40.73903972096065',
   'longitude': '-73.75453425194786',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982305',
  'created_date': '2024-11-04T23:33:49.000',
  'closed_date': '2024-11-05T00:08:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '11205',
  'incident_address': '390 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'TAAFFE PLACE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'TAAFFE PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PARK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:08:14.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018960030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995036',
  'y_coordinate_state_plane': '192944',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Taaffe Playground',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69625690836763',
  'longitude': '-73.96110299121726',
  'location': {'latitude': '40.69625690836763',
   'longitude': '-73.96110299121726',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987177',
  'created_date': '2024-11-04T23:33:49.000',
  'closed_date': '2024-11-05T00:12:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': 'FORT GREEN PLACE',
  'street_name': 'FORT GREEN PLACE',
  'cross_street_1': 'DEKALB AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'DEKALB AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:12:23.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other'},
 {'unique_key': '62976956',
  'created_date': '2024-11-04T23:33:48.000',
  'closed_date': '2024-11-05T00:50:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '87-27 81 AVENUE',
  'street_name': '81 AVENUE',
  'cross_street_1': 'MYRTLE AVENUE',
  'cross_street_2': '88 STREET',
  'intersection_street_1': 'MYRTLE AVENUE',
  'intersection_street_2': '88 STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '81 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:50:58.000',
  'community_board': '05 QUEENS',
  'bbl': '4038480056',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022840',
  'y_coordinate_state_plane': '195628',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7035462873545',
  'longitude': '-73.86081955482852',
  'location': {'latitude': '40.7035462873545',
   'longitude': '-73.86081955482852',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978783',
  'created_date': '2024-11-04T23:33:46.000',
  'closed_date': '2024-11-05T00:25:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '2396 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:25:59.000',
  'community_board': '05 BRONX',
  'bbl': '2031730005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011782',
  'y_coordinate_state_plane': '252825',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86057803832132',
  'longitude': '-73.90046740161462',
  'location': {'latitude': '40.86057803832132',
   'longitude': '-73.90046740161462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984161',
  'created_date': '2024-11-04T23:33:39.000',
  'closed_date': '2024-11-05T00:21:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '1453 GREENE AVENUE',
  'street_name': 'GREENE AVENUE',
  'cross_street_1': 'WYCKOFF AVENUE',
  'cross_street_2': 'ST NICHOLAS AVENUE',
  'intersection_street_1': 'WYCKOFF AVENUE',
  'intersection_street_2': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GREENE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:21:52.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032910001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007739',
  'y_coordinate_state_plane': '195180',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.702369604146455',
  'longitude': '-73.91528502443099',
  'location': {'latitude': '40.702369604146455',
   'longitude': '-73.91528502443099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985520',
  'created_date': '2024-11-04T23:33:12.000',
  'closed_date': '2024-11-05T00:26:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': '60 GLENMORE AVENUE',
  'street_name': 'GLENMORE AVENUE',
  'cross_street_1': 'ROCKAWAY AVENUE',
  'cross_street_2': 'WATKINS STREET',
  'intersection_street_1': 'ROCKAWAY AVENUE',
  'intersection_street_2': 'WATKINS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLENMORE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and a report was prepared.',
  'resolution_action_updated_date': '2024-11-05T00:26:44.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3034890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009564',
  'y_coordinate_state_plane': '183859',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.671291037528064',
  'longitude': '-73.90874555388581',
  'location': {'latitude': '40.671291037528064',
   'longitude': '-73.90874555388581',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983911',
  'created_date': '2024-11-04T23:32:42.000',
  'closed_date': '2024-11-05T00:48:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11224',
  'incident_address': '2945 WEST   23 STREET',
  'street_name': 'WEST   23 STREET',
  'cross_street_1': 'MERMAID AVENUE',
  'cross_street_2': 'SURF AVENUE',
  'intersection_street_1': 'MERMAID AVENUE',
  'intersection_street_2': 'SURF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   23 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:48:48.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070570012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987060',
  'y_coordinate_state_plane': '148802',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.575102659589476',
  'longitude': '-73.98988481977605',
  'location': {'latitude': '40.575102659589476',
   'longitude': '-73.98988481977605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985510',
  'created_date': '2024-11-04T23:32:28.000',
  'closed_date': '2024-11-05T00:56:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1270 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'cross_street_1': 'EAST  168 STREET',
  'cross_street_2': 'EAST  169 STREET',
  'intersection_street_1': 'EAST  168 STREET',
  'intersection_street_2': 'EAST  169 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBSTER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:56:48.000',
  'community_board': '03 BRONX',
  'bbl': '2023950001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009466',
  'y_coordinate_state_plane': '242988',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.833585304104176',
  'longitude': '-73.90887710062619',
  'location': {'latitude': '40.833585304104176',
   'longitude': '-73.90887710062619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985794',
  'created_date': '2024-11-04T23:32:22.000',
  'closed_date': '2024-11-05T00:11:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10013',
  'incident_address': '81 WHITE STREET',
  'street_name': 'WHITE STREET',
  'cross_street_1': 'CORTLANDT ALLEY',
  'cross_street_2': 'LAFAYETTE STREET',
  'intersection_street_1': 'CORTLANDT ALLEY',
  'intersection_street_2': 'LAFAYETTE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WHITE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:11:42.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1001727502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983657',
  'y_coordinate_state_plane': '200705',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71756557376817',
  'longitude': '-74.00213918967617',
  'location': {'latitude': '40.71756557376817',
   'longitude': '-74.00213918967617',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987661',
  'created_date': '2024-11-04T23:32:11.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10469',
  'incident_address': '1040B EAST  217 STREET',
  'street_name': 'EAST  217 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2046990051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024543',
  'y_coordinate_state_plane': '259628',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8792011486289',
  'longitude': '-73.85429350155603',
  'location': {'latitude': '40.8792011486289',
   'longitude': '-73.85429350155603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984195',
  'created_date': '2024-11-04T23:32:08.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11415',
  'incident_address': '119-21 METROPOLITAN AVENUE',
  'street_name': 'METROPOLITAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'KEW GARDENS',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '09 QUEENS',
  'bbl': '4092300074',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030987',
  'y_coordinate_state_plane': '196557',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70605688891972',
  'longitude': '-73.8314298333822',
  'location': {'latitude': '40.70605688891972',
   'longitude': '-73.8314298333822',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985663',
  'created_date': '2024-11-04T23:32:04.000',
  'closed_date': '2024-11-04T23:42:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11235',
  'incident_address': '11 BRIGHTON   10 PATH',
  'street_name': 'BRIGHTON   10 PATH',
  'cross_street_1': 'CONEY ISLAND AVENUE',
  'cross_street_2': 'BRIGHTON   10 STREET',
  'intersection_street_1': 'CONEY ISLAND AVENUE',
  'intersection_street_2': 'BRIGHTON   10 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON   10 PATH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:42:08.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3087020034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995514',
  'y_coordinate_state_plane': '151025',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.581197645878525',
  'longitude': '-73.9594491844381',
  'location': {'latitude': '40.581197645878525',
   'longitude': '-73.9594491844381',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976466',
  'created_date': '2024-11-04T23:32:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11419',
  'incident_address': '107-21 110 STREET',
  'street_name': '110 STREET',
  'cross_street_1': '107 AVE',
  'cross_street_2': '109 AVE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '10 QUEENS',
  'bbl': '4095480071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1031163',
  'y_coordinate_state_plane': '187729',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68182518706343',
  'longitude': '-73.83085652313605',
  'location': {'latitude': '40.68182518706343',
   'longitude': '-73.83085652313605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976616',
  'created_date': '2024-11-04T23:32:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10006',
  'incident_address': '77 GREENWICH STREET',
  'street_name': 'GREENWICH STREET',
  'cross_street_1': 'EDGAR ST',
  'cross_street_2': 'RECTOR ST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 MANHATTAN',
  'bbl': '1000197501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980430',
  'y_coordinate_state_plane': '197041',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7075079616488',
  'longitude': '-74.01377819840958',
  'location': {'latitude': '40.7075079616488',
   'longitude': '-74.01377819840958',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979617',
  'created_date': '2024-11-04T23:32:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11213',
  'incident_address': '1162 STERLING PLACE',
  'street_name': 'STERLING PLACE',
  'cross_street_1': 'HAMPTON PL',
  'cross_street_2': 'VIRGINIA PL',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '08 BROOKLYN',
  'bbl': '3012510123',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000802',
  'y_coordinate_state_plane': '184102',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67197873577798',
  'longitude': '-73.94033108122846',
  'location': {'latitude': '40.67197873577798',
   'longitude': '-73.94033108122846',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976130',
  'created_date': '2024-11-04T23:31:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10025',
  'incident_address': '123 WEST  104 STREET',
  'street_name': 'WEST  104 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018597501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993930',
  'y_coordinate_state_plane': '230172',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79843967099146',
  'longitude': '-73.96503791922969',
  'location': {'latitude': '40.79843967099146',
   'longitude': '-73.96503791922969',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986773',
  'created_date': '2024-11-04T23:31:54.000',
  'closed_date': '2024-11-05T00:35:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11364',
  'incident_address': '74-52 220 STREET',
  'street_name': '220 STREET',
  'cross_street_1': '74 AVENUE',
  'cross_street_2': '75 AVENUE',
  'intersection_street_1': '74 AVENUE',
  'intersection_street_2': '75 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OAKLAND GARDENS',
  'landmark': '220 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:35:44.000',
  'community_board': '11 QUEENS',
  'bbl': '4077550003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052541',
  'y_coordinate_state_plane': '209006',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74008614663351',
  'longitude': '-73.75356328227542',
  'location': {'latitude': '40.74008614663351',
   'longitude': '-73.75356328227542',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980292',
  'created_date': '2024-11-04T23:31:28.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Smoking',
  'descriptor': 'Smoking Violation',
  'location_type': 'Residential Building',
  'incident_zip': '11226',
  'incident_address': '2110 NEWKIRK AVENUE',
  'street_name': 'NEWKIRK AVENUE',
  'cross_street_1': 'EAST   21 STREET',
  'cross_street_2': 'EAST   22 STREET',
  'intersection_street_1': 'EAST   21 STREET',
  'intersection_street_2': 'EAST   22 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEWKIRK AVENUE',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3052210043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996043',
  'y_coordinate_state_plane': '171835',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63831612684608',
  'longitude': '-73.95750842466687',
  'location': {'latitude': '40.63831612684608',
   'longitude': '-73.95750842466687',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986791',
  'created_date': '2024-11-04T23:30:49.000',
  'closed_date': '2024-11-05T00:36:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11361',
  'incident_address': '204-16 43 AVENUE',
  'street_name': '43 AVENUE',
  'cross_street_1': '204 STREET',
  'cross_street_2': '205 STREET',
  'intersection_street_1': '204 STREET',
  'intersection_street_2': '205 STREET',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': '43 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T00:36:33.000',
  'community_board': '11 QUEENS',
  'bbl': '4062680001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045353',
  'y_coordinate_state_plane': '215849',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.758920979795676',
  'longitude': '-73.7794397978571',
  'location': {'latitude': '40.758920979795676',
   'longitude': '-73.7794397978571',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985040',
  'created_date': '2024-11-04T23:30:17.000',
  'closed_date': '2024-11-05T01:16:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '2927 WALLACE AVENUE',
  'street_name': 'WALLACE AVENUE',
  'cross_street_1': 'ARNOW AVENUE',
  'cross_street_2': 'WILLIAMSBRIDGE ROAD',
  'intersection_street_1': 'ARNOW AVENUE',
  'intersection_street_2': 'WILLIAMSBRIDGE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALLACE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:16:59.000',
  'community_board': '11 BRONX',
  'bbl': '2045480046',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021762',
  'y_coordinate_state_plane': '255770',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.868624396098014',
  'longitude': '-73.8643716656124',
  'location': {'latitude': '40.868624396098014',
   'longitude': '-73.8643716656124',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975744',
  'created_date': '2024-11-04T23:30:00.000',
  'closed_date': '2024-11-05T01:29:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '3144 PERRY AVENUE',
  'street_name': 'PERRY AVENUE',
  'cross_street_1': 'EAST  204 STREET',
  'cross_street_2': 'EAST  205 STREET',
  'intersection_street_1': 'EAST  204 STREET',
  'intersection_street_2': 'EAST  205 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PERRY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:29:13.000',
  'community_board': '07 BRONX',
  'bbl': '2033450016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017968',
  'y_coordinate_state_plane': '257561',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87355544590229',
  'longitude': '-73.87808021516851',
  'location': {'latitude': '40.87355544590229',
   'longitude': '-73.87808021516851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978009',
  'created_date': '2024-11-04T23:29:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11694',
  'incident_address': '180 BEACH  115 STREET',
  'street_name': 'BEACH  115 STREET',
  'cross_street_1': 'OCEAN PROM',
  'cross_street_2': 'ROCKAWAY BEACH BLVD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '14 QUEENS',
  'bbl': '4161870073',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029824',
  'y_coordinate_state_plane': '150457',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.57952860988142',
  'longitude': '-73.83593592858699',
  'location': {'latitude': '40.57952860988142',
   'longitude': '-73.83593592858699',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983831',
  'created_date': '2024-11-04T23:28:24.000',
  'closed_date': '2024-11-05T00:21:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10466',
  'incident_address': '737 EAST  229 STREET',
  'street_name': 'EAST  229 STREET',
  'cross_street_1': 'WHITE PLAINS ROAD',
  'cross_street_2': 'BARNES AVENUE',
  'intersection_street_1': 'WHITE PLAINS ROAD',
  'intersection_street_2': 'BARNES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  229 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:21:12.000',
  'community_board': '12 BRONX',
  'bbl': '2048430023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023585',
  'y_coordinate_state_plane': '263657',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.890263799812644',
  'longitude': '-73.8577341277919',
  'location': {'latitude': '40.890263799812644',
   'longitude': '-73.8577341277919',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979096',
  'created_date': '2024-11-04T23:27:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11416',
  'incident_address': '86-03 102 ROAD',
  'street_name': '102 ROAD',
  'cross_street_1': '86 STREET',
  'cross_street_2': '88 STREET',
  'intersection_street_1': '86 STREET',
  'intersection_street_2': '88 STREET',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '102 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:17:00.000',
  'community_board': '09 QUEENS',
  'bbl': '4090880038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025088',
  'y_coordinate_state_plane': '187360',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.680842479808604',
  'longitude': '-73.85276195342445',
  'location': {'latitude': '40.680842479808604',
   'longitude': '-73.85276195342445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975414',
  'created_date': '2024-11-04T23:27:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10465',
  'incident_address': '2730 HARDING AVENUE',
  'street_name': 'HARDING AVENUE',
  'cross_street_1': 'BALCOM AVENUE',
  'cross_street_2': 'HUNTINGTON AVENUE',
  'intersection_street_1': 'BALCOM AVENUE',
  'intersection_street_2': 'HUNTINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HARDING AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055950081',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033663',
  'y_coordinate_state_plane': '236197',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81484374107632',
  'longitude': '-73.82148674884853',
  'location': {'latitude': '40.81484374107632',
   'longitude': '-73.82148674884853',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986579',
  'created_date': '2024-11-04T23:27:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '2441 BARKER AVENUE',
  'street_name': 'BARKER AVENUE',
  'cross_street_1': 'WARING AVENUE',
  'cross_street_2': 'MACE AVENUE',
  'intersection_street_1': 'WARING AVENUE',
  'intersection_street_2': 'MACE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BARKER AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2044240039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020369',
  'y_coordinate_state_plane': '253425',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.862193899421314',
  'longitude': '-73.86942082565814',
  'location': {'latitude': '40.862193899421314',
   'longitude': '-73.86942082565814',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976714',
  'created_date': '2024-11-04T23:26:59.000',
  'agency': 'DCWP',
  'agency_name': 'Department of Consumer and Worker Protection',
  'complaint_type': 'Consumer Complaint',
  'descriptor': 'E-Cigarette Sales',
  'location_type': 'Business',
  'incident_zip': '11230',
  'incident_address': '1501 AVENUE J',
  'street_name': 'AVENUE J',
  'cross_street_1': 'EAST   15 STREET',
  'cross_street_2': 'BRIGHTON LINE',
  'intersection_street_1': 'EAST   15 STREET',
  'intersection_street_2': 'BRIGHTON LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE J',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3067080055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994990',
  'y_coordinate_state_plane': '167054',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62519463413557',
  'longitude': '-73.96131011642011',
  'location': {'latitude': '40.62519463413557',
   'longitude': '-73.96131011642011',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981359',
  'created_date': '2024-11-04T23:26:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10006',
  'incident_address': '88 GREENWICH STREET',
  'street_name': 'GREENWICH STREET',
  'cross_street_1': 'EDGAR ST',
  'cross_street_2': 'RECTOR ST',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 MANHATTAN',
  'bbl': '1000187501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980450',
  'y_coordinate_state_plane': '197122',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70773029611131',
  'longitude': '-74.01370610695912',
  'location': {'latitude': '40.70773029611131',
   'longitude': '-74.01370610695912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975649',
  'created_date': '2024-11-04T23:25:58.000',
  'closed_date': '2024-11-05T00:51:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10031',
  'incident_address': '620 WEST  141 STREET',
  'street_name': 'WEST  141 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  141 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:51:37.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020880043',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997264',
  'y_coordinate_state_plane': '239545',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82416166479311',
  'longitude': '-73.95297805704422',
  'location': {'latitude': '40.82416166479311',
   'longitude': '-73.95297805704422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983313',
  'created_date': '2024-11-04T23:25:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10016',
  'incident_address': '228 EAST   28 STREET',
  'street_name': 'EAST   28 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   28 STREET',
  'status': 'In Progress',
  'community_board': '06 MANHATTAN',
  'bbl': '1009080017',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989852',
  'y_coordinate_state_plane': '209429',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74150906673551',
  'longitude': '-73.97978406864988',
  'location': {'latitude': '40.74150906673551',
   'longitude': '-73.97978406864988',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977533',
  'created_date': '2024-11-04T23:25:39.000',
  'closed_date': '2024-11-04T23:51:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10301',
  'incident_address': '353 VICTORY BOULEVARD',
  'street_name': 'VICTORY BOULEVARD',
  'cross_street_1': 'CEBRA AVENUE',
  'cross_street_2': 'AUSTIN PLACE',
  'intersection_street_1': 'CEBRA AVENUE',
  'intersection_street_2': 'AUSTIN PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VICTORY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:51:07.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001150069',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960343',
  'y_coordinate_state_plane': '170088',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.633496572873746',
  'longitude': '-74.08613354119923',
  'location': {'latitude': '40.633496572873746',
   'longitude': '-74.08613354119923',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980033',
  'created_date': '2024-11-04T23:25:10.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-11-05T00:39:30.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980355',
  'y_coordinate_state_plane': '174292',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'R',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.64506705900503',
  'longitude': '-74.01403556564269',
  'location': {'latitude': '40.64506705900503',
   'longitude': '-74.01403556564269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980783',
  'created_date': '2024-11-04T23:24:39.000',
  'closed_date': '2024-11-05T00:37:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11213',
  'incident_address': '1317 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:37:13.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013840072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002900',
  'y_coordinate_state_plane': '183325',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66984187412208',
  'longitude': '-73.93277007577379',
  'location': {'latitude': '40.66984187412208',
   'longitude': '-73.93277007577379',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980645',
  'created_date': '2024-11-04T23:24:36.000',
  'closed_date': '2024-11-04T23:41:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11235',
  'incident_address': '11 BRIGHTON   10 PATH',
  'street_name': 'BRIGHTON   10 PATH',
  'cross_street_1': 'CONEY ISLAND AVENUE',
  'cross_street_2': 'BRIGHTON   10 STREET',
  'intersection_street_1': 'CONEY ISLAND AVENUE',
  'intersection_street_2': 'BRIGHTON   10 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON   10 PATH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:41:55.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3087020034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995514',
  'y_coordinate_state_plane': '151025',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.581197645878525',
  'longitude': '-73.9594491844381',
  'location': {'latitude': '40.581197645878525',
   'longitude': '-73.9594491844381',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981817',
  'created_date': '2024-11-04T23:23:49.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Sidewalk Violation',
  'location_type': 'Sidewalk',
  'incident_zip': '11368',
  'incident_address': '35-01 97 STREET',
  'street_name': '97 STREET',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '37 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '37 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '97 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017380001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020080',
  'y_coordinate_state_plane': '213832',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75352337459118',
  'longitude': '-73.87067695166684',
  'location': {'latitude': '40.75352337459118',
   'longitude': '-73.87067695166684',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978453',
  'created_date': '2024-11-04T23:23:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '87-45 52 AVENUE',
  'street_name': '52 AVENUE',
  'cross_street_1': 'JUSTICE AVENUE',
  'cross_street_2': '90 STREET',
  'intersection_street_1': 'JUSTICE AVENUE',
  'intersection_street_2': '90 STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '52 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4018370073',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018773',
  'y_coordinate_state_plane': '208302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73835012610293',
  'longitude': '-73.8754227528914',
  'location': {'latitude': '40.73835012610293',
   'longitude': '-73.8754227528914',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985809',
  'created_date': '2024-11-04T23:23:31.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11204',
  'incident_address': '7424 21 AVENUE',
  'street_name': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062180041',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987263',
  'y_coordinate_state_plane': '161489',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60992586166817',
  'longitude': '-73.98914842145048',
  'location': {'latitude': '40.60992586166817',
   'longitude': '-73.98914842145048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985525',
  'created_date': '2024-11-04T23:23:09.000',
  'closed_date': '2024-11-04T23:55:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10012',
  'incident_address': '555 LA GUARDIA PLACE',
  'street_name': 'LA GUARDIA PLACE',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'WEST    3 STREET',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'WEST    3 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LA GUARDIA PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:55:49.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005330010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984766',
  'y_coordinate_state_plane': '204871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72900024000052',
  'longitude': '-73.99813826090998',
  'location': {'latitude': '40.72900024000052',
   'longitude': '-73.99813826090998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985527',
  'created_date': '2024-11-04T23:23:01.000',
  'closed_date': '2024-11-04T23:45:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '819 40 STREET',
  'street_name': '40 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '40 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-04T23:46:02.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009160065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985010',
  'y_coordinate_state_plane': '174760',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64635244190503',
  'longitude': '-73.9972613002971',
  'location': {'latitude': '40.64635244190503',
   'longitude': '-73.9972613002971',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986211',
  'created_date': '2024-11-04T23:23:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Private Carting Noise (NQ1)',
  'incident_zip': '11229',
  'incident_address': '2073 EAST   18 STREET',
  'street_name': 'EAST   18 STREET',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '15 BROOKLYN',
  'bbl': '3073230051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997112',
  'y_coordinate_state_plane': '157842',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59990676945452',
  'longitude': '-73.95368335030534',
  'location': {'latitude': '40.59990676945452',
   'longitude': '-73.95368335030534',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982278',
  'created_date': '2024-11-04T23:23:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11215',
  'incident_address': '44 PROSPECT PARK SOUTH WEST',
  'street_name': 'PROSPECT PARK SOUTH WEST',
  'cross_street_1': '10 AVE',
  'cross_street_2': '11 AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '07 BROOKLYN',
  'bbl': '3011070011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990647',
  'y_coordinate_state_plane': '179579',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65957726802305',
  'longitude': '-73.97694350605784',
  'location': {'latitude': '40.65957726802305',
   'longitude': '-73.97694350605784',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978546',
  'created_date': '2024-11-04T23:22:55.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Garbage or Litter',
  'location_type': 'Park',
  'incident_zip': '10463',
  'incident_address': '751 WEST  232 STREET',
  'street_name': 'WEST  232 STREET',
  'cross_street_1': 'INDEPENDENCE AVENUE',
  'cross_street_2': 'PALISADE AVENUE',
  'intersection_street_1': 'INDEPENDENCE AVENUE',
  'intersection_street_2': 'PALISADE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  232 STREET',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2059150090',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006816',
  'y_coordinate_state_plane': '261892',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.885478248520414',
  'longitude': '-73.91838973869731',
  'location': {'latitude': '40.885478248520414',
   'longitude': '-73.91838973869731',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987175',
  'created_date': '2024-11-04T23:22:51.000',
  'closed_date': '2024-11-04T23:45:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '4006 13 AVENUE',
  'street_name': '13 AVENUE',
  'cross_street_1': '40 STREET',
  'cross_street_2': '41 STREET',
  'intersection_street_1': '40 STREET',
  'intersection_street_2': '41 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '13 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:45:38.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055890040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987859',
  'y_coordinate_state_plane': '172433',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63996462455074',
  'longitude': '-73.98699602489307',
  'location': {'latitude': '40.63996462455074',
   'longitude': '-73.98699602489307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984796',
  'created_date': '2024-11-04T23:22:49.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Subway',
  'address_type': 'ADDRESS',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-11-05T00:40:53.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980355',
  'y_coordinate_state_plane': '174292',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'R',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.64506705900503',
  'longitude': '-74.01403556564269',
  'location': {'latitude': '40.64506705900503',
   'longitude': '-74.01403556564269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975672',
  'created_date': '2024-11-04T23:22:33.000',
  'closed_date': '2024-11-05T00:47:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10024',
  'incident_address': '71 WEST   85 STREET',
  'street_name': 'WEST   85 STREET',
  'cross_street_1': 'CENTRAL PARK ENTRANCE W   85 ST',
  'cross_street_2': 'COLUMBUS AVENUE',
  'intersection_street_1': 'CENTRAL PARK ENTRANCE W   85 ST',
  'intersection_street_2': 'COLUMBUS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   85 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:47:50.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011990006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '992094',
  'y_coordinate_state_plane': '225419',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78539578849537',
  'longitude': '-73.97167470737914',
  'location': {'latitude': '40.78539578849537',
   'longitude': '-73.97167470737914',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987127',
  'created_date': '2024-11-04T23:21:51.000',
  'closed_date': '2024-11-04T23:59:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11223',
  'incident_address': '112 AVENUE U',
  'street_name': 'AVENUE U',
  'cross_street_1': 'WEST    9 STREET',
  'cross_street_2': 'WEST    8 STREET',
  'intersection_street_1': 'WEST    9 STREET',
  'intersection_street_2': 'WEST    8 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE U',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:59:11.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071180002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989761',
  'y_coordinate_state_plane': '156491',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.5962061674191',
  'longitude': '-73.980155737799',
  'location': {'latitude': '40.5962061674191',
   'longitude': '-73.980155737799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983234',
  'created_date': '2024-11-04T23:21:47.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Overgrown Tree/Branches',
  'descriptor': 'Clear Street Light',
  'location_type': 'Street',
  'incident_zip': '11379',
  'incident_address': '61-14 80 STREET',
  'street_name': '80 STREET',
  'cross_street_1': 'ELIOT AVENUE',
  'cross_street_2': '62 AVENUE',
  'intersection_street_1': 'ELIOT AVENUE',
  'intersection_street_2': '62 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '80 STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4029370012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017836',
  'y_coordinate_state_plane': '203265',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72452841713182',
  'longitude': '-73.8788290827854',
  'location': {'latitude': '40.72452841713182',
   'longitude': '-73.8788290827854',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979021',
  'created_date': '2024-11-04T23:21:40.000',
  'closed_date': '2024-11-05T00:19:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Trespassing',
  'location_type': 'Residential Building/House',
  'incident_zip': '11237',
  'incident_address': '254 STOCKHOLM STREET',
  'street_name': 'STOCKHOLM STREET',
  'cross_street_1': 'KNICKERBOCKER AVENUE',
  'cross_street_2': 'IRVING AVENUE',
  'intersection_street_1': 'KNICKERBOCKER AVENUE',
  'intersection_street_2': 'IRVING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STOCKHOLM STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:19:37.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032580027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006226',
  'y_coordinate_state_plane': '194885',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.701563785455434',
  'longitude': '-73.92074274069165',
  'location': {'latitude': '40.701563785455434',
   'longitude': '-73.92074274069165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984968',
  'created_date': '2024-11-04T23:21:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '67 AVENUE',
  'street_name': '67 AVENUE',
  'cross_street_1': '67 AVENUE',
  'cross_street_2': '173 STREET',
  'intersection_street_1': '67 AVENUE',
  'intersection_street_2': '173 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040608',
  'y_coordinate_state_plane': '206984',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73462036544268',
  'longitude': '-73.79664179136267',
  'location': {'latitude': '40.73462036544268',
   'longitude': '-73.79664179136267',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976927',
  'created_date': '2024-11-04T23:21:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': 'AVENUE B',
  'street_name': 'AVENUE B',
  'cross_street_1': 'AVENUE B',
  'cross_street_2': 'EAST    3 STREET',
  'intersection_street_1': 'AVENUE B',
  'intersection_street_2': 'EAST    3 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:04:21.000',
  'community_board': '03 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988972',
  'y_coordinate_state_plane': '202566',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.722672330009374',
  'longitude': '-73.98296454007392',
  'location': {'latitude': '40.722672330009374',
   'longitude': '-73.98296454007392',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980217',
  'created_date': '2024-11-04T23:20:59.000',
  'agency': 'EDC',
  'agency_name': 'Economic Development Corporation',
  'complaint_type': 'Noise - Helicopter',
  'descriptor': 'Other',
  'location_type': 'Above Address',
  'incident_zip': '10471',
  'incident_address': '5700 ARLINGTON AVENUE',
  'street_name': 'ARLINGTON AVENUE',
  'cross_street_1': 'WEST  259 STREET',
  'cross_street_2': 'INDEPENDENCE AVENUE',
  'intersection_street_1': 'WEST  259 STREET',
  'intersection_street_2': 'INDEPENDENCE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARLINGTON AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2059530038',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010005',
  'y_coordinate_state_plane': '269611',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90665570023825',
  'longitude': '-73.90682699003065',
  'location': {'latitude': '40.90665570023825',
   'longitude': '-73.90682699003065',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977512',
  'created_date': '2024-11-04T23:20:46.000',
  'closed_date': '2024-11-05T00:30:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10457',
  'incident_address': '1551 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'MOUNT EDEN PARKWAY',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'MOUNT EDEN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SHERIDAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:30:35.000',
  'community_board': '04 BRONX',
  'bbl': '2028210061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008853',
  'y_coordinate_state_plane': '246060',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84201877747143',
  'longitude': '-73.91108102453146',
  'location': {'latitude': '40.84201877747143',
   'longitude': '-73.91108102453146',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985327',
  'created_date': '2024-11-04T23:20:32.000',
  'closed_date': '2024-11-05T01:11:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2735 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': 'SHORE PARKWAY',
  'cross_street_2': 'NASSAU COURT',
  'intersection_street_1': 'SHORE PARKWAY',
  'intersection_street_2': 'NASSAU COURT',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:11:05.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3087667501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996585',
  'y_coordinate_state_plane': '152262',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58459153978958',
  'longitude': '-73.9555912879191',
  'location': {'latitude': '40.58459153978958',
   'longitude': '-73.9555912879191',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980743',
  'created_date': '2024-11-04T23:20:26.000',
  'closed_date': '2024-11-05T01:19:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '334 NEW LOTS AVENUE',
  'street_name': 'NEW LOTS AVENUE',
  'cross_street_1': 'GEORGIA AVENUE',
  'cross_street_2': 'SHEFFIELD AVENUE',
  'intersection_street_1': 'GEORGIA AVENUE',
  'intersection_street_2': 'SHEFFIELD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW LOTS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:19:29.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042970004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013547',
  'y_coordinate_state_plane': '180205',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6612493421326',
  'longitude': '-73.89440312793796',
  'location': {'latitude': '40.6612493421326',
   'longitude': '-73.89440312793796',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977559',
  'created_date': '2024-11-04T23:20:05.000',
  'closed_date': '2024-11-05T00:56:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10451',
  'incident_address': '2635 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'EAST  141 STREET',
  'cross_street_2': 'EAST  142 STREET',
  'intersection_street_1': 'EAST  141 STREET',
  'intersection_street_2': 'EAST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:57:03.000',
  'community_board': '01 BRONX',
  'bbl': '2023250001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005271',
  'y_coordinate_state_plane': '235381',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81271723380244',
  'longitude': '-73.92406036820799',
  'location': {'latitude': '40.81271723380244',
   'longitude': '-73.92406036820799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987608',
  'created_date': '2024-11-04T23:20:03.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10009',
  'incident_address': '129 AVENUE C',
  'street_name': 'AVENUE C',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003910037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990260',
  'y_coordinate_state_plane': '203357',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72484265202279',
  'longitude': '-73.97831714340931',
  'location': {'latitude': '40.72484265202279',
   'longitude': '-73.97831714340931',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977271',
  'created_date': '2024-11-04T23:20:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water Conservation',
  'descriptor': 'Illegal Use Of Hose - Other (CCO)',
  'incident_zip': '11218',
  'incident_address': '4006 13 AVENUE',
  'street_name': '13 AVENUE',
  'cross_street_1': '40 ST',
  'cross_street_2': '41 ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '12 BROOKLYN',
  'bbl': '3055890040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987859',
  'y_coordinate_state_plane': '172433',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63996462455074',
  'longitude': '-73.98699602489307',
  'location': {'latitude': '40.63996462455074',
   'longitude': '-73.98699602489307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978327',
  'created_date': '2024-11-04T23:20:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '10463',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'WEST 231 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BRONX',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '08 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010580',
  'y_coordinate_state_plane': '259508',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87892448779634',
  'longitude': '-73.90478656028658',
  'location': {'latitude': '40.87892448779634',
   'longitude': '-73.90478656028658',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981835',
  'created_date': '2024-11-04T23:19:35.000',
  'closed_date': '2024-11-04T23:24:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Panhandling',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:24:47.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998196',
  'y_coordinate_state_plane': '231506',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '3',
  'bridge_highway_segment': 'Mezzanine',
  'latitude': '40.80209543286648',
  'longitude': '-73.94962727577145',
  'location': {'latitude': '40.80209543286648',
   'longitude': '-73.94962727577145',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984894',
  'created_date': '2024-11-04T23:19:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10314',
  'incident_address': '15 DONGAN AVENUE',
  'street_name': 'DONGAN AVENUE',
  'cross_street_1': 'HODGES PLACE',
  'cross_street_2': 'BEECHWOOD PLACE',
  'intersection_street_1': 'HODGES PLACE',
  'intersection_street_2': 'BEECHWOOD PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'DONGAN AVENUE',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5003470124',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '950979',
  'y_coordinate_state_plane': '163316',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.614878645994885',
  'longitude': '-74.11983729480279',
  'location': {'latitude': '40.614878645994885',
   'longitude': '-74.11983729480279',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983291',
  'created_date': '2024-11-04T23:19:24.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Food Spoiled',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '11236',
  'incident_address': '1349 ROCKAWAY PARKWAY',
  'street_name': 'ROCKAWAY PARKWAY',
  'cross_street_1': 'ROCKAWAY AVENUE',
  'cross_street_2': 'FARRAGUT ROAD',
  'intersection_street_1': 'ROCKAWAY AVENUE',
  'intersection_street_2': 'FARRAGUT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ROCKAWAY PARKWAY',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3081470003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010827',
  'y_coordinate_state_plane': '174958',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64685606368313',
  'longitude': '-73.90422765013706',
  'location': {'latitude': '40.64685606368313',
   'longitude': '-73.90422765013706',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978837',
  'created_date': '2024-11-04T23:19:13.000',
  'closed_date': '2024-11-05T00:02:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '60-21 PALMETTO STREET',
  'street_name': 'PALMETTO STREET',
  'cross_street_1': '60 PLACE',
  'cross_street_2': 'FRESH POND ROAD',
  'intersection_street_1': '60 PLACE',
  'intersection_street_2': 'FRESH POND ROAD',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'PALMETTO STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:02:23.000',
  'community_board': '05 QUEENS',
  'bbl': '4035270119',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011930',
  'y_coordinate_state_plane': '197196',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70789092853252',
  'longitude': '-73.90016156962209',
  'location': {'latitude': '40.70789092853252',
   'longitude': '-73.90016156962209',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983231',
  'created_date': '2024-11-04T23:19:09.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'New Tree Request',
  'descriptor': 'For One Address',
  'location_type': 'Street',
  'incident_zip': '11204',
  'incident_address': '6501 20 AVENUE',
  'street_name': '20 AVENUE',
  'cross_street_1': '65 STREET',
  'cross_street_2': '66 STREET',
  'intersection_street_1': '65 STREET',
  'intersection_street_2': '66 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '20 AVENUE',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3055560010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988152',
  'y_coordinate_state_plane': '163857',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.616425186330275',
  'longitude': '-73.98594524317996',
  'location': {'latitude': '40.616425186330275',
   'longitude': '-73.98594524317996',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981628',
  'created_date': '2024-11-04T23:18:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': 'WEST   53 STREET',
  'street_name': 'WEST   53 STREET',
  'cross_street_1': '7 AVENUE',
  'cross_street_2': 'WEST   53 STREET',
  'intersection_street_1': '7 AVENUE',
  'intersection_street_2': 'WEST   53 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989266',
  'y_coordinate_state_plane': '217247',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.76296784838588',
  'longitude': '-73.98189293433464',
  'location': {'latitude': '40.76296784838588',
   'longitude': '-73.98189293433464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982438',
  'created_date': '2024-11-04T23:18:41.000',
  'closed_date': '2024-11-05T01:04:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '4 AVENUE',
  'street_name': '4 AVENUE',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': 'PACIFIC STREET',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': 'PACIFIC STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:04:15.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990141',
  'y_coordinate_state_plane': '188391',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68376458408098',
  'longitude': '-73.97875956361523',
  'location': {'latitude': '40.68376458408098',
   'longitude': '-73.97875956361523',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982500',
  'created_date': '2024-11-04T23:18:40.000',
  'closed_date': '2024-11-05T00:55:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10040',
  'incident_address': '570 WEST  190 STREET',
  'street_name': 'WEST  190 STREET',
  'cross_street_1': 'AUDUBON AVENUE',
  'cross_street_2': 'ST NICHOLAS AVENUE',
  'intersection_street_1': 'AUDUBON AVENUE',
  'intersection_street_2': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  190 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:55:38.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021580067',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003895',
  'y_coordinate_state_plane': '250647',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85462115652687',
  'longitude': '-73.9289865404921',
  'location': {'latitude': '40.85462115652687',
   'longitude': '-73.9289865404921',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978472',
  'created_date': '2024-11-04T23:18:19.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'New Tree Request',
  'descriptor': 'For One Address',
  'location_type': 'Street',
  'incident_zip': '11218',
  'incident_address': '759 CONEY ISLAND AVENUE',
  'street_name': 'CONEY ISLAND AVENUE',
  'cross_street_1': 'CORTELYOU ROAD',
  'cross_street_2': 'DORCHESTER ROAD',
  'intersection_street_1': 'CORTELYOU ROAD',
  'intersection_street_2': 'DORCHESTER ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CONEY ISLAND AVENUE',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3051530065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992966',
  'y_coordinate_state_plane': '171943',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.638616126127566',
  'longitude': '-73.96859507936553',
  'location': {'latitude': '40.638616126127566',
   'longitude': '-73.96859507936553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985678',
  'created_date': '2024-11-04T23:18:08.000',
  'closed_date': '2024-11-04T23:56:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11217',
  'incident_address': '205 BUTLER STREET',
  'street_name': 'BUTLER STREET',
  'cross_street_1': 'BOND STREET',
  'cross_street_2': 'NEVINS STREET',
  'intersection_street_1': 'BOND STREET',
  'intersection_street_2': 'NEVINS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BUTLER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-04T23:56:56.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004050062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987745',
  'y_coordinate_state_plane': '187866',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6823248490645',
  'longitude': '-73.98739879104413',
  'location': {'latitude': '40.6823248490645',
   'longitude': '-73.98739879104413',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977511',
  'created_date': '2024-11-04T23:17:18.000',
  'closed_date': '2024-11-04T23:41:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11235',
  'incident_address': '11 BRIGHTON   10 PATH',
  'street_name': 'BRIGHTON   10 PATH',
  'cross_street_1': 'CONEY ISLAND AVENUE',
  'cross_street_2': 'BRIGHTON   10 STREET',
  'intersection_street_1': 'CONEY ISLAND AVENUE',
  'intersection_street_2': 'BRIGHTON   10 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON   10 PATH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:41:43.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3087020034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995514',
  'y_coordinate_state_plane': '151025',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.581197645878525',
  'longitude': '-73.9594491844381',
  'location': {'latitude': '40.581197645878525',
   'longitude': '-73.9594491844381',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979341',
  'created_date': '2024-11-04T23:17:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'APPLIANCE',
  'descriptor': 'ELECTRIC/GAS RANGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10463',
  'incident_address': '699 WEST  239 STREET',
  'street_name': 'WEST  239 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2059200687',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007762',
  'y_coordinate_state_plane': '263509',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88991393322937',
  'longitude': '-73.91496284129799',
  'location': {'latitude': '40.88991393322937',
   'longitude': '-73.91496284129799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977833',
  'created_date': '2024-11-04T23:17:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'SEWAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10463',
  'incident_address': '699 WEST  239 STREET',
  'street_name': 'WEST  239 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '08 BRONX',
  'bbl': '2059200687',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007762',
  'y_coordinate_state_plane': '263509',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88991393322937',
  'longitude': '-73.91496284129799',
  'location': {'latitude': '40.88991393322937',
   'longitude': '-73.91496284129799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975981',
  'created_date': '2024-11-04T23:16:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '510 WEST  152 STREET',
  'street_name': 'WEST  152 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020830040',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999485',
  'y_coordinate_state_plane': '241629',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82987809790381',
  'longitude': '-73.94494845083858',
  'location': {'latitude': '40.82987809790381',
   'longitude': '-73.94494845083858',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980855',
  'created_date': '2024-11-04T23:16:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'FLOORING/STAIRS',
  'descriptor': 'FLOOR',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10031',
  'incident_address': '510 WEST  152 STREET',
  'street_name': 'WEST  152 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020830040',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999485',
  'y_coordinate_state_plane': '241629',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82987809790381',
  'longitude': '-73.94494845083858',
  'location': {'latitude': '40.82987809790381',
   'longitude': '-73.94494845083858',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985761',
  'created_date': '2024-11-04T23:16:53.000',
  'closed_date': '2024-11-05T00:10:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '10006',
  'incident_address': '73 GREENWICH STREET',
  'street_name': 'GREENWICH STREET',
  'cross_street_1': 'EDGAR STREET',
  'cross_street_2': 'RECTOR STREET',
  'intersection_street_1': 'EDGAR STREET',
  'intersection_street_2': 'RECTOR STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'GREENWICH STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:10:09.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000197501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980417',
  'y_coordinate_state_plane': '197001',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70739816548096',
  'longitude': '-74.01382506479554',
  'location': {'latitude': '40.70739816548096',
   'longitude': '-74.01382506479554',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977098',
  'created_date': '2024-11-04T23:16:42.000',
  'closed_date': '2024-11-04T23:58:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11694',
  'incident_address': '151 BEACH  147 STREET',
  'street_name': 'BEACH  147 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-04T23:58:07.000',
  'community_board': '14 QUEENS',
  'bbl': '4163210029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022671',
  'y_coordinate_state_plane': '146497',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.56869308604413',
  'longitude': '-73.86170882217257',
  'location': {'latitude': '40.56869308604413',
   'longitude': '-73.86170882217257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978287',
  'created_date': '2024-11-04T23:16:34.000',
  'closed_date': '2024-11-05T00:52:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11222',
  'incident_address': '45 ECKFORD STREET',
  'street_name': 'ECKFORD STREET',
  'cross_street_1': 'ENGERT AVENUE',
  'cross_street_2': 'DRIGGS AVENUE',
  'intersection_street_1': 'ENGERT AVENUE',
  'intersection_street_2': 'DRIGGS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ECKFORD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T00:52:25.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026980037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998666',
  'y_coordinate_state_plane': '202168',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72156943035321',
  'longitude': '-73.9479925584271',
  'location': {'latitude': '40.72156943035321',
   'longitude': '-73.9479925584271',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984919',
  'created_date': '2024-11-04T23:16:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '125 LENOX ROAD',
  'street_name': 'LENOX ROAD',
  'cross_street_1': 'BEDFORD AVENUE',
  'cross_street_2': 'ROGERS AVENUE',
  'intersection_street_1': 'BEDFORD AVENUE',
  'intersection_street_2': 'ROGERS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LENOX ROAD',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3050650100',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996710',
  'y_coordinate_state_plane': '177494',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.653847944816754',
  'longitude': '-73.9550946924735',
  'location': {'latitude': '40.653847944816754',
   'longitude': '-73.9550946924735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984922',
  'created_date': '2024-11-04T23:16:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10026',
  'incident_address': '122 WEST  115 STREET',
  'street_name': 'WEST  115 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ST NICHOLAS AVENUE',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  115 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:36:12.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018240016',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997823',
  'y_coordinate_state_plane': '231347',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80165960233324',
  'longitude': '-73.95097486681306',
  'location': {'latitude': '40.80165960233324',
   'longitude': '-73.95097486681306',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975436',
  'created_date': '2024-11-04T23:16:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11213',
  'incident_address': '1622 PRESIDENT STREET',
  'street_name': 'PRESIDENT STREET',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PRESIDENT STREET',
  'status': 'In Progress',
  'community_board': '09 BROOKLYN',
  'bbl': '3014080007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002659',
  'y_coordinate_state_plane': '182339',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.667136029173385',
  'longitude': '-73.9336415300303',
  'location': {'latitude': '40.667136029173385',
   'longitude': '-73.9336415300303',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982234',
  'created_date': '2024-11-04T23:16:14.000',
  'closed_date': '2024-11-04T23:17:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11220',
  'incident_address': '553 58 STREET',
  'street_name': '58 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': '6 AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': '6 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '58 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:18:02.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008480054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980413',
  'y_coordinate_state_plane': '172423',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.639937080853905',
  'longitude': '-74.01382550066872',
  'location': {'latitude': '40.639937080853905',
   'longitude': '-74.01382550066872',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977449',
  'created_date': '2024-11-04T23:15:44.000',
  'closed_date': '2024-11-05T00:36:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '1320 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:36:57.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013900020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002913',
  'y_coordinate_state_plane': '183318',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66982263329656',
  'longitude': '-73.93272323249056',
  'location': {'latitude': '40.66982263329656',
   'longitude': '-73.93272323249056',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987456',
  'created_date': '2024-11-04T23:15:35.000',
  'closed_date': '2024-11-05T00:03:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10002',
  'incident_address': '102 NORFOLK STREET',
  'street_name': 'NORFOLK STREET',
  'cross_street_1': 'DELANCEY STREET',
  'cross_street_2': 'RIVINGTON STREET',
  'intersection_street_1': 'DELANCEY STREET',
  'intersection_street_2': 'RIVINGTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NORFOLK STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:03:09.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003530049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987815',
  'y_coordinate_state_plane': '201150',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71878629344949',
  'longitude': '-73.9871393745335',
  'location': {'latitude': '40.71878629344949',
   'longitude': '-73.9871393745335',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975388',
  'created_date': '2024-11-04T23:15:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11210',
  'incident_address': '1134 EAST   42 STREET',
  'street_name': 'EAST   42 STREET',
  'cross_street_1': 'AVENUE J',
  'cross_street_2': 'AVENUE K',
  'intersection_street_1': 'AVENUE J',
  'intersection_street_2': 'AVENUE K',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   42 STREET',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3077890043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002154',
  'y_coordinate_state_plane': '167758',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62711538414618',
  'longitude': '-73.93550059114865',
  'location': {'latitude': '40.62711538414618',
   'longitude': '-73.93550059114865',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976863',
  'created_date': '2024-11-04T23:15:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10009',
  'incident_address': '242 EAST    3 STREET',
  'street_name': 'EAST    3 STREET',
  'cross_street_1': 'AVENUE B',
  'cross_street_2': 'AVENUE C',
  'intersection_street_1': 'AVENUE B',
  'intersection_street_2': 'AVENUE C',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:05:21.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003850026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989263',
  'y_coordinate_state_plane': '202401',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72221928479547',
  'longitude': '-73.98191482843089',
  'location': {'latitude': '40.72221928479547',
   'longitude': '-73.98191482843089',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980693',
  'created_date': '2024-11-04T23:14:58.000',
  'closed_date': '2024-11-04T23:21:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11432',
  'incident_address': '88-56 162 STREET',
  'street_name': '162 STREET',
  'cross_street_1': 'HILLSIDE AVENUE',
  'cross_street_2': '89 AVENUE',
  'intersection_street_1': 'HILLSIDE AVENUE',
  'intersection_street_2': '89 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '162 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:21:07.000',
  'community_board': '12 QUEENS',
  'bbl': '4097670059',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039800',
  'y_coordinate_state_plane': '197092',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70747439502879',
  'longitude': '-73.79963895275714',
  'location': {'latitude': '40.70747439502879',
   'longitude': '-73.79963895275714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978602',
  'created_date': '2024-11-04T23:14:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': '162-16 65 AVENUE',
  'street_name': '65 AVENUE',
  'cross_street_1': '162 STREET',
  'cross_street_2': '163 STREET',
  'intersection_street_1': '162 STREET',
  'intersection_street_2': '163 STREET',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '65 AVENUE',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4067600055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037889',
  'y_coordinate_state_plane': '207783',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73683032538521',
  'longitude': '-73.80644643496392',
  'location': {'latitude': '40.73683032538521',
   'longitude': '-73.80644643496392',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984057',
  'created_date': '2024-11-04T23:14:39.000',
  'closed_date': '2024-11-05T00:36:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '1317 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:36:38.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013840072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002900',
  'y_coordinate_state_plane': '183325',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66984187412208',
  'longitude': '-73.93277007577379',
  'location': {'latitude': '40.66984187412208',
   'longitude': '-73.93277007577379',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976920',
  'created_date': '2024-11-04T23:14:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '248 EAST    3 STREET',
  'street_name': 'EAST    3 STREET',
  'cross_street_1': 'AVENUE B',
  'cross_street_2': 'AVENUE C',
  'intersection_street_1': 'AVENUE B',
  'intersection_street_2': 'AVENUE C',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:04:55.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003850029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989300',
  'y_coordinate_state_plane': '202380',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722161623827766',
  'longitude': '-73.98178136097832',
  'location': {'latitude': '40.722161623827766',
   'longitude': '-73.98178136097832',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978476',
  'created_date': '2024-11-04T23:14:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10009',
  'incident_address': '196 EAST    3 STREET',
  'street_name': 'EAST    3 STREET',
  'cross_street_1': 'AVENUE A',
  'cross_street_2': 'AVENUE B',
  'intersection_street_1': 'AVENUE A',
  'intersection_street_2': 'AVENUE B',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:05:45.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003980028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988823',
  'y_coordinate_state_plane': '202645',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722889244174056',
  'longitude': '-73.9835020305443',
  'location': {'latitude': '40.722889244174056',
   'longitude': '-73.9835020305443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978964',
  'created_date': '2024-11-04T23:14:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '104-13 113 STREET',
  'street_name': '113 STREET',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': '107 AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': '107 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '113 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:17:45.000',
  'community_board': '10 QUEENS',
  'bbl': '4095360085',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1031603',
  'y_coordinate_state_plane': '188897',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.685028731818775',
  'longitude': '-73.82926191161361',
  'location': {'latitude': '40.685028731818775',
   'longitude': '-73.82926191161361',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982603',
  'created_date': '2024-11-04T23:14:14.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11218',
  'incident_address': '400 ARGYLE ROAD',
  'street_name': 'ARGYLE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051550017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993675',
  'y_coordinate_state_plane': '172326',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63966665310314',
  'longitude': '-73.96603992221972',
  'location': {'latitude': '40.63966665310314',
   'longitude': '-73.96603992221972',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987744',
  'created_date': '2024-11-04T23:14:14.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11218',
  'incident_address': '400 ARGYLE ROAD',
  'street_name': 'ARGYLE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051550017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993675',
  'y_coordinate_state_plane': '172326',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63966665310314',
  'longitude': '-73.96603992221972',
  'location': {'latitude': '40.63966665310314',
   'longitude': '-73.96603992221972',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975826',
  'created_date': '2024-11-04T23:14:13.000',
  'closed_date': '2024-11-05T00:14:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2735 EAST   13 STREET',
  'street_name': 'EAST   13 STREET',
  'cross_street_1': 'SHORE PARKWAY',
  'cross_street_2': 'NASSAU COURT',
  'intersection_street_1': 'SHORE PARKWAY',
  'intersection_street_2': 'NASSAU COURT',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:14:43.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3087667501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996585',
  'y_coordinate_state_plane': '152262',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Van',
  'latitude': '40.58459153978958',
  'longitude': '-73.9555912879191',
  'location': {'latitude': '40.58459153978958',
   'longitude': '-73.9555912879191',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982276',
  'created_date': '2024-11-04T23:14:13.000',
  'closed_date': '2024-11-05T00:01:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10023',
  'incident_address': '244 WEST   64 STREET',
  'street_name': 'WEST   64 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'WEST END AVENUE',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'WEST END AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   64 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:01:27.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011540206',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987802',
  'y_coordinate_state_plane': '221374',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7742961004418',
  'longitude': '-73.98717559050876',
  'location': {'latitude': '40.7742961004418',
   'longitude': '-73.98717559050876',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976218',
  'created_date': '2024-11-04T23:14:12.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10030',
  'incident_address': '139 WEST  139 STREET',
  'street_name': 'WEST  139 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020080006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000551',
  'y_coordinate_state_plane': '237139',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81755242102956',
  'longitude': '-73.94110737756029',
  'location': {'latitude': '40.81755242102956',
   'longitude': '-73.94110737756029',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978266',
  'created_date': '2024-11-04T23:14:10.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Posting',
  'descriptor': 'Flyer or Handbill',
  'location_type': 'Sidewalk',
  'incident_zip': '11201',
  'incident_address': 'COLUMBIA HEIGHTS',
  'street_name': 'COLUMBIA HEIGHTS',
  'cross_street_1': 'COLUMBIA HEIGHTS',
  'cross_street_2': 'VINE STREET',
  'intersection_street_1': 'COLUMBIA HEIGHTS',
  'intersection_street_2': 'VINE STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985746',
  'y_coordinate_state_plane': '195008',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70192855324011',
  'longitude': '-73.99460459170994',
  'location': {'latitude': '40.70192855324011',
   'longitude': '-73.99460459170994',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986177',
  'created_date': '2024-11-04T23:14:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '11201',
  'incident_address': '210 JORALEMON STREET',
  'street_name': 'JORALEMON STREET',
  'cross_street_1': 'COURT ST',
  'cross_street_2': 'ADAMS ST',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '02 BROOKLYN',
  'bbl': '3002667501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986887',
  'y_coordinate_state_plane': '191558',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69245883961735',
  'longitude': '-73.9904908616587',
  'location': {'latitude': '40.69245883961735',
   'longitude': '-73.9904908616587',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981034',
  'created_date': '2024-11-04T23:13:52.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11206',
  'incident_address': '63 CENTRAL AVENUE',
  'street_name': 'CENTRAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031570101',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003453',
  'y_coordinate_state_plane': '194774',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70126556864167',
  'longitude': '-73.93074398010619',
  'location': {'latitude': '40.70126556864167',
   'longitude': '-73.93074398010619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983920',
  'created_date': '2024-11-04T23:12:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '276 BAY   41 STREET',
  'street_name': 'BAY   41 STREET',
  'cross_street_1': 'HARWAY AVENUE',
  'cross_street_2': 'CROPSEY AVENUE',
  'intersection_street_1': 'HARWAY AVENUE',
  'intersection_street_2': 'CROPSEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   41 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3069080028',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986611',
  'y_coordinate_state_plane': '154782',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.591516704845375',
  'longitude': '-73.99149899972913',
  'location': {'latitude': '40.591516704845375',
   'longitude': '-73.99149899972913',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985630',
  'created_date': '2024-11-04T23:12:49.000',
  'closed_date': '2024-11-04T23:51:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10301',
  'incident_address': '353 VICTORY BOULEVARD',
  'street_name': 'VICTORY BOULEVARD',
  'cross_street_1': 'CEBRA AVENUE',
  'cross_street_2': 'AUSTIN PLACE',
  'intersection_street_1': 'CEBRA AVENUE',
  'intersection_street_2': 'AUSTIN PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VICTORY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:51:41.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001150069',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960343',
  'y_coordinate_state_plane': '170088',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.633496572873746',
  'longitude': '-74.08613354119923',
  'location': {'latitude': '40.633496572873746',
   'longitude': '-74.08613354119923',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983998',
  'created_date': '2024-11-04T23:12:48.000',
  'closed_date': '2024-11-05T01:01:30.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Commercial Disposal Complaint',
  'descriptor': 'Waste Disposal',
  'location_type': 'Food Establishment or Vendor',
  'incident_zip': '11201',
  'incident_address': '17 CADMAN PLAZA WEST',
  'street_name': 'CADMAN PLAZA WEST',
  'cross_street_1': 'ELIZABETH PLACE',
  'cross_street_2': 'FRONT STREET',
  'intersection_street_1': 'ELIZABETH PLACE',
  'intersection_street_2': 'FRONT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CADMAN PLAZA WEST',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2024-11-05T01:01:33.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3000350006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986004',
  'y_coordinate_state_plane': '195255',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.702606462945305',
  'longitude': '-73.99367403584442',
  'location': {'latitude': '40.702606462945305',
   'longitude': '-73.99367403584442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982131',
  'created_date': '2024-11-04T23:12:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2788 CLAFLIN AVENUE',
  'street_name': 'CLAFLIN AVENUE',
  'cross_street_1': 'WEST  195 STREET',
  'cross_street_2': 'WEST  197 STREET',
  'intersection_street_1': 'WEST  195 STREET',
  'intersection_street_2': 'WEST  197 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CLAFLIN AVENUE',
  'status': 'In Progress',
  'community_board': '08 BRONX',
  'bbl': '2032490079',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011827',
  'y_coordinate_state_plane': '256718',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87126299409531',
  'longitude': '-73.90028869941187',
  'location': {'latitude': '40.87126299409531',
   'longitude': '-73.90028869941187',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979067',
  'created_date': '2024-11-04T23:11:59.000',
  'closed_date': '2024-11-05T01:12:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Animal-Abuse',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11378',
  'incident_address': '60-14 54 STREET',
  'street_name': '54 STREET',
  'cross_street_1': 'FLUSHING AVENUE',
  'cross_street_2': 'NURGE AVENUE',
  'intersection_street_1': 'FLUSHING AVENUE',
  'intersection_street_2': 'NURGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '54 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:12:24.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008359',
  'y_coordinate_state_plane': '199640',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71460957496989',
  'longitude': '-73.91303297618632',
  'location': {'latitude': '40.71460957496989',
   'longitude': '-73.91303297618632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977146',
  'created_date': '2024-11-04T23:11:24.000',
  'closed_date': '2024-11-05T01:01:25.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11231',
  'incident_address': '66 SEABRING STREET',
  'street_name': 'SEABRING STREET',
  'cross_street_1': 'RICHARDS STREET',
  'cross_street_2': 'VAN BRUNT STREET',
  'intersection_street_1': 'RICHARDS STREET',
  'intersection_street_2': 'VAN BRUNT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SEABRING STREET',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2024-11-05T01:01:28.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3005080040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982199',
  'y_coordinate_state_plane': '187471',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68124111626388',
  'longitude': '-74.00739475236007',
  'location': {'latitude': '40.68124111626388',
   'longitude': '-74.00739475236007',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982356',
  'created_date': '2024-11-04T23:11:15.000',
  'closed_date': '2024-11-05T00:22:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11225',
  'incident_address': '1207 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'HAWTHORNE STREET',
  'cross_street_2': 'WINTHROP STREET',
  'intersection_street_1': 'HAWTHORNE STREET',
  'intersection_street_2': 'WINTHROP STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:22:19.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3048190010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998038',
  'y_coordinate_state_plane': '178908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65772709647846',
  'longitude': '-73.95030574722443',
  'location': {'latitude': '40.65772709647846',
   'longitude': '-73.95030574722443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983974',
  'created_date': '2024-11-04T23:11:02.000',
  'closed_date': '2024-11-05T01:02:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11206',
  'incident_address': '276 MESEROLE STREET',
  'street_name': 'MESEROLE STREET',
  'cross_street_1': 'BUSHWICK PLACE',
  'cross_street_2': 'WATERBURY STREET',
  'intersection_street_1': 'BUSHWICK PLACE',
  'intersection_street_2': 'WATERBURY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MESEROLE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T01:02:47.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030560090',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001568',
  'y_coordinate_state_plane': '197450',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.708614446581244',
  'longitude': '-73.93753538742445',
  'location': {'latitude': '40.708614446581244',
   'longitude': '-73.93753538742445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986219',
  'created_date': '2024-11-04T23:11:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10455',
  'incident_address': '448 EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022910027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007222',
  'y_coordinate_state_plane': '235865',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814040820457485',
  'longitude': '-73.91701061043655',
  'location': {'latitude': '40.814040820457485',
   'longitude': '-73.91701061043655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976280',
  'created_date': '2024-11-04T23:11:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10455',
  'incident_address': '448 EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022910027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007222',
  'y_coordinate_state_plane': '235865',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814040820457485',
  'longitude': '-73.91701061043655',
  'location': {'latitude': '40.814040820457485',
   'longitude': '-73.91701061043655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982585',
  'created_date': '2024-11-04T23:11:01.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '632 EAST  186 STREET',
  'street_name': 'EAST  186 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '06 BRONX',
  'bbl': '2030740010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015524',
  'y_coordinate_state_plane': '250481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85413200235494',
  'longitude': '-73.88695042134171',
  'location': {'latitude': '40.85413200235494',
   'longitude': '-73.88695042134171',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977229',
  'created_date': '2024-11-04T23:11:00.000',
  'closed_date': '2024-11-04T23:58:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11356',
  'incident_address': '12-48 118 STREET',
  'street_name': '118 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': '14 AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': '14 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '118 STREET',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2024-11-04T23:58:49.000',
  'community_board': '07 QUEENS',
  'bbl': '4040380053',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1025898',
  'y_coordinate_state_plane': '225973',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.786821718571936',
  'longitude': '-73.84960254827949',
  'location': {'latitude': '40.786821718571936',
   'longitude': '-73.84960254827949',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978250',
  'created_date': '2024-11-04T23:11:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Hydrant Running (WC3)',
  'incident_zip': '11354',
  'intersection_street_1': '147 STREET',
  'intersection_street_2': 'ROOSEVELT AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'status': 'Open',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034505',
  'y_coordinate_state_plane': '217152',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76256568790094',
  'longitude': '-73.81858737349006',
  'location': {'latitude': '40.76256568790094',
   'longitude': '-73.81858737349006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980569',
  'created_date': '2024-11-04T23:10:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11421',
  'incident_address': '91-17 96 STREET',
  'street_name': '96 STREET',
  'cross_street_1': '91 AVENUE',
  'cross_street_2': '91 ROAD',
  'intersection_street_1': '91 AVENUE',
  'intersection_street_2': '91 ROAD',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '96 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:04:20.000',
  'community_board': '09 QUEENS',
  'bbl': '4089930081',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026470',
  'y_coordinate_state_plane': '190718',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69005292430679',
  'longitude': '-73.84775823445553',
  'location': {'latitude': '40.69005292430679',
   'longitude': '-73.84775823445553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985793',
  'created_date': '2024-11-04T23:10:52.000',
  'closed_date': '2024-11-05T00:21:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11225',
  'incident_address': '1207 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'HAWTHORNE STREET',
  'cross_street_2': 'WINTHROP STREET',
  'intersection_street_1': 'HAWTHORNE STREET',
  'intersection_street_2': 'WINTHROP STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:21:54.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3048190010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998038',
  'y_coordinate_state_plane': '178908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65772709647846',
  'longitude': '-73.95030574722443',
  'location': {'latitude': '40.65772709647846',
   'longitude': '-73.95030574722443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987066',
  'created_date': '2024-11-04T23:10:20.000',
  'closed_date': '2024-11-05T00:39:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '1523 EAST   19 STREET',
  'street_name': 'EAST   19 STREET',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   19 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-11-05T00:39:33.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067660096',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996702',
  'y_coordinate_state_plane': '162517',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6127392730027',
  'longitude': '-73.95515115949567',
  'location': {'latitude': '40.6127392730027',
   'longitude': '-73.95515115949567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986677',
  'created_date': '2024-11-04T23:10:12.000',
  'closed_date': '2024-11-05T01:01:24.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11201',
  'incident_address': '7 EVERIT STREET',
  'street_name': 'EVERIT STREET',
  'cross_street_1': 'OLD FULTON STREET',
  'cross_street_2': 'COLUMBIA HEIGHTS',
  'intersection_street_1': 'OLD FULTON STREET',
  'intersection_street_2': 'COLUMBIA HEIGHTS',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EVERIT STREET',
  'status': 'Closed',
  'resolution_description': 'N/A',
  'resolution_action_updated_date': '2024-11-05T01:01:28.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3002010004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985826',
  'y_coordinate_state_plane': '195229',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70253513253691',
  'longitude': '-73.99431601548454',
  'location': {'latitude': '40.70253513253691',
   'longitude': '-73.99431601548454',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985528',
  'created_date': '2024-11-04T23:10:12.000',
  'closed_date': '2024-11-05T00:36:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '1309 LINCOLN PLACE',
  'street_name': 'LINCOLN PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LINCOLN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:36:15.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013840076',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002848',
  'y_coordinate_state_plane': '183329',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6698529626149',
  'longitude': '-73.93295751539176',
  'location': {'latitude': '40.6698529626149',
   'longitude': '-73.93295751539176',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980497',
  'created_date': '2024-11-04T23:09:35.000',
  'closed_date': '2024-11-05T00:25:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Vehicle',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10027',
  'incident_address': '200 WEST  131 STREET',
  'street_name': 'WEST  131 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  131 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:25:24.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019330050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999270',
  'y_coordinate_state_plane': '235411',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'SUV',
  'latitude': '40.81281181632886',
  'longitude': '-73.94573926927536',
  'location': {'latitude': '40.81281181632886',
   'longitude': '-73.94573926927536',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985368',
  'created_date': '2024-11-04T23:09:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': '3495 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'EAST  167 STREET',
  'cross_street_2': 'EAST  168 STREET',
  'intersection_street_1': 'EAST  167 STREET',
  'intersection_street_2': 'EAST  168 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': '3 AVENUE',
  'status': 'In Progress',
  'community_board': '03 BRONX',
  'bbl': '2023720030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010221',
  'y_coordinate_state_plane': '241828',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83039925139879',
  'longitude': '-73.90615325491672',
  'location': {'latitude': '40.83039925139879',
   'longitude': '-73.90615325491672',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984856',
  'created_date': '2024-11-04T23:08:58.000',
  'agency': 'DCWP',
  'agency_name': 'Department of Consumer and Worker Protection',
  'complaint_type': 'Consumer Complaint',
  'descriptor': 'Street Fair Vendor',
  'location_type': 'Business',
  'incident_zip': '11201',
  'incident_address': '30 WASHINGTON STREET',
  'street_name': 'WASHINGTON STREET',
  'cross_street_1': 'PLYMOUTH STREET',
  'cross_street_2': 'WATER STREET',
  'intersection_street_1': 'PLYMOUTH STREET',
  'intersection_street_2': 'WATER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WASHINGTON STREET',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3000270040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987142',
  'y_coordinate_state_plane': '195592',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70353115007899',
  'longitude': '-73.9895695882966',
  'location': {'latitude': '40.70353115007899',
   'longitude': '-73.9895695882966',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983625',
  'created_date': '2024-11-04T23:08:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '176 AVENUE O',
  'street_name': 'AVENUE O',
  'cross_street_1': 'WEST    5 STREET',
  'cross_street_2': 'WEST    4 STREET',
  'intersection_street_1': 'WEST    5 STREET',
  'intersection_street_2': 'WEST    4 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE O',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3066020010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990247',
  'y_coordinate_state_plane': '161815',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61081914758751',
  'longitude': '-73.97840099971748',
  'location': {'latitude': '40.61081914758751',
   'longitude': '-73.97840099971748',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975802',
  'created_date': '2024-11-04T23:08:18.000',
  'closed_date': '2024-11-05T00:18:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1815 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EASTBURN AVENUE',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'EASTBURN AVENUE',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:18:17.000',
  'community_board': '05 BRONX',
  'bbl': '2028260072',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009655',
  'y_coordinate_state_plane': '247989',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.84731104281934',
  'longitude': '-73.908175168756',
  'location': {'latitude': '40.84731104281934',
   'longitude': '-73.908175168756',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976368',
  'created_date': '2024-11-04T23:08:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11230',
  'incident_address': '1128 EAST   15 STREET',
  'street_name': 'EAST   15 STREET',
  'cross_street_1': 'AVENUE K',
  'cross_street_2': 'AVENUE L',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '14 BROOKLYN',
  'bbl': '3067250018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995135',
  'y_coordinate_state_plane': '165873',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.621952859544905',
  'longitude': '-73.96078967141483',
  'location': {'latitude': '40.621952859544905',
   'longitude': '-73.96078967141483',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981202',
  'created_date': '2024-11-04T23:08:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11238',
  'incident_address': '64A CLIFTON PLACE',
  'street_name': 'CLIFTON PLACE',
  'cross_street_1': 'GRAND AVE',
  'cross_street_2': 'CLASSON AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '02 BROOKLYN',
  'bbl': '3019520009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994817',
  'y_coordinate_state_plane': '189901',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68790484102851',
  'longitude': '-73.96189753310983',
  'location': {'latitude': '40.68790484102851',
   'longitude': '-73.96189753310983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976619',
  'created_date': '2024-11-04T23:08:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Sewer Odor (SA2)',
  'incident_zip': '10037',
  'incident_address': '42 WEST  138 STREET',
  'street_name': 'WEST  138 STREET',
  'cross_street_1': '5 AVE',
  'cross_street_2': 'LENOX AVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'community_board': '10 MANHATTAN',
  'bbl': '1017350056',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001439',
  'y_coordinate_state_plane': '236344',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81536868618106',
  'longitude': '-73.93790122820515',
  'location': {'latitude': '40.81536868618106',
   'longitude': '-73.93790122820515',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975825',
  'created_date': '2024-11-04T23:07:58.000',
  'closed_date': '2024-11-05T00:58:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11217',
  'incident_address': '105 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS PLACE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T00:59:05.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3003890003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989171',
  'y_coordinate_state_plane': '188113',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.683002129894106',
  'longitude': '-73.98225717330803',
  'location': {'latitude': '40.683002129894106',
   'longitude': '-73.98225717330803',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977886',
  'created_date': '2024-11-04T23:07:57.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'GARBAGE/RECYCLING STORAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11223',
  'incident_address': '1601 WEST    2 STREET',
  'street_name': 'WEST    2 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066300001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990956',
  'y_coordinate_state_plane': '160851',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.608172657306866',
  'longitude': '-73.97584839845902',
  'location': {'latitude': '40.608172657306866',
   'longitude': '-73.97584839845902',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978818',
  'created_date': '2024-11-04T23:07:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '276 WAVERLY AVENUE',
  'street_name': 'WAVERLY AVENUE',
  'cross_street_1': 'WILLOUGHBY AVENUE',
  'cross_street_2': 'DEKALB AVENUE',
  'intersection_street_1': 'WILLOUGHBY AVENUE',
  'intersection_street_2': 'DEKALB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WAVERLY AVENUE',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3019160068',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993350',
  'y_coordinate_state_plane': '190617',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.689871726224915',
  'longitude': '-73.96718627104289',
  'location': {'latitude': '40.689871726224915',
   'longitude': '-73.96718627104289',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981638',
  'created_date': '2024-11-04T23:07:22.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11235',
  'incident_address': '1524 AVENUE Y',
  'street_name': 'AVENUE Y',
  'cross_street_1': 'BRIGHTON LINE',
  'cross_street_2': 'EAST   16 STREET',
  'intersection_street_1': 'BRIGHTON LINE',
  'intersection_street_2': 'EAST   16 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE Y',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3074360007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996990',
  'y_coordinate_state_plane': '154285',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59014369803721',
  'longitude': '-73.95412938523673',
  'location': {'latitude': '40.59014369803721',
   'longitude': '-73.95412938523673',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982235',
  'created_date': '2024-11-04T23:07:07.000',
  'closed_date': '2024-11-05T00:17:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '27 SICKLES STREET',
  'street_name': 'SICKLES STREET',
  'cross_street_1': 'NAGLE AVENUE',
  'cross_street_2': 'SHERMAN AVENUE',
  'intersection_street_1': 'NAGLE AVENUE',
  'intersection_street_2': 'SHERMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SICKLES STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:17:12.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021740145',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004247',
  'y_coordinate_state_plane': '253063',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86125155997211',
  'longitude': '-73.92770691106014',
  'location': {'latitude': '40.86125155997211',
   'longitude': '-73.92770691106014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976907',
  'created_date': '2024-11-04T23:07:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11213',
  'incident_address': '333 KINGSTON AVENUE',
  'street_name': 'KINGSTON AVENUE',
  'cross_street_1': 'UNION STREET',
  'cross_street_2': 'PRESIDENT STREET',
  'intersection_street_1': 'UNION STREET',
  'intersection_street_2': 'PRESIDENT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGSTON AVENUE',
  'status': 'In Progress',
  'community_board': '09 BROOKLYN',
  'bbl': '3012790003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000246',
  'y_coordinate_state_plane': '182564',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.667758292420125',
  'longitude': '-73.94233907526275',
  'location': {'latitude': '40.667758292420125',
   'longitude': '-73.94233907526275',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983647',
  'created_date': '2024-11-04T23:06:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10301',
  'incident_address': '205 VAN DUZER STREET',
  'street_name': 'VAN DUZER STREET',
  'cross_street_1': 'GRANT STREET',
  'cross_street_2': 'CLINTON STREET',
  'intersection_street_1': 'GRANT STREET',
  'intersection_street_2': 'CLINTON STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VAN DUZER STREET',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005050041',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '962952',
  'y_coordinate_state_plane': '169923',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63305034030224',
  'longitude': '-74.07673316740069',
  'location': {'latitude': '40.63305034030224',
   'longitude': '-74.07673316740069',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980224',
  'created_date': '2024-11-04T23:06:20.000',
  'closed_date': '2024-11-05T01:20:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1318 57 STREET',
  'street_name': '57 STREET',
  'cross_street_1': '13 AVENUE',
  'cross_street_2': 'NEW UTRECHT AVENUE',
  'intersection_street_1': '13 AVENUE',
  'intersection_street_2': 'NEW UTRECHT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '57 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:21:03.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056980014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985260',
  'y_coordinate_state_plane': '168906',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63028443703276',
  'longitude': '-73.99636128851357',
  'location': {'latitude': '40.63028443703276',
   'longitude': '-73.99636128851357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977109',
  'created_date': '2024-11-04T23:06:19.000',
  'closed_date': '2024-11-04T23:39:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11223',
  'incident_address': '2411 EAST    3 STREET',
  'street_name': 'EAST    3 STREET',
  'cross_street_1': 'AVENUE W',
  'cross_street_2': 'AVENUE X',
  'intersection_street_1': 'AVENUE W',
  'intersection_street_2': 'AVENUE X',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST    3 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:39:58.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071790042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993268',
  'y_coordinate_state_plane': '154723',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.5913504885388',
  'longitude': '-73.96752993169969',
  'location': {'latitude': '40.5913504885388',
   'longitude': '-73.96752993169969',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975396',
  'created_date': '2024-11-04T23:06:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1618 WEST   10 STREET',
  'street_name': 'WEST   10 STREET',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'KINGS HIGHWAY',
  'intersection_street_1': 'AVENUE P',
  'intersection_street_2': 'KINGS HIGHWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   10 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:33:57.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066210013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988867',
  'y_coordinate_state_plane': '160445',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.607059605097376',
  'longitude': '-73.98337219139579',
  'location': {'latitude': '40.607059605097376',
   'longitude': '-73.98337219139579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62980677',
  'created_date': '2024-11-04T23:05:24.000',
  'closed_date': '2024-11-05T00:21:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10466',
  'incident_address': '829 EAST  230 STREET',
  'street_name': 'EAST  230 STREET',
  'cross_street_1': 'BARNES AVENUE',
  'cross_street_2': 'BRONXWOOD AVENUE',
  'intersection_street_1': 'BARNES AVENUE',
  'intersection_street_2': 'BRONXWOOD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  230 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-05T00:21:27.000',
  'community_board': '12 BRONX',
  'bbl': '2048550033',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024444',
  'y_coordinate_state_plane': '263602',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.890108971484516',
  'longitude': '-73.85462765323058',
  'location': {'latitude': '40.890108971484516',
   'longitude': '-73.85462765323058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977471',
  'created_date': '2024-11-04T23:05:19.000',
  'closed_date': '2024-11-05T01:19:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11420',
  'incident_address': '125-17 ROCKAWAY BOULEVARD',
  'street_name': 'ROCKAWAY BOULEVARD',
  'cross_street_1': '125 STREET',
  'cross_street_2': '126 STREET',
  'intersection_street_1': '125 STREET',
  'intersection_street_2': '126 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'ROCKAWAY BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T01:19:59.000',
  'community_board': '10 QUEENS',
  'bbl': '4116820032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036286',
  'y_coordinate_state_plane': '185382',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67535458391636',
  'longitude': '-73.8124038692512',
  'location': {'latitude': '40.67535458391636',
   'longitude': '-73.8124038692512',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983402',
  'created_date': '2024-11-04T23:05:19.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Sign',
  'location_type': 'Sidewalk',
  'incident_zip': '11201',
  'incident_address': '360 FURMAN STREET',
  'street_name': 'FURMAN STREET',
  'cross_street_1': 'JORALEMON STREET',
  'cross_street_2': 'ATLANTIC AVENUE',
  'intersection_street_1': 'JORALEMON STREET',
  'intersection_street_2': 'ATLANTIC AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FURMAN STREET',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3002457501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984392',
  'y_coordinate_state_plane': '191900',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.693397942265975',
  'longitude': '-73.99948793452384',
  'location': {'latitude': '40.693397942265975',
   'longitude': '-73.99948793452384',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983542',
  'created_date': '2024-11-04T23:05:18.000',
  'closed_date': '2024-11-05T01:42:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11378',
  'incident_address': '73-41 52 AVENUE',
  'street_name': '52 AVENUE',
  'cross_street_1': '73 STREET',
  'cross_street_2': '74 STREET',
  'intersection_street_1': '73 STREET',
  'intersection_street_2': '74 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '52 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:42:34.000',
  'community_board': '05 QUEENS',
  'bbl': '4024850045',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014874',
  'y_coordinate_state_plane': '206648',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.733824668331096',
  'longitude': '-73.88949992064211',
  'location': {'latitude': '40.733824668331096',
   'longitude': '-73.88949992064211',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976900',
  'created_date': '2024-11-04T23:05:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '48-46 64 STREET',
  'street_name': '64 STREET',
  'cross_street_1': '48 AVENUE',
  'cross_street_2': '50 AVENUE',
  'intersection_street_1': '48 AVENUE',
  'intersection_street_2': '50 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '64 STREET',
  'status': 'In Progress',
  'community_board': '02 QUEENS',
  'bbl': '4023370001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011456',
  'y_coordinate_state_plane': '208016',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73759066238476',
  'longitude': '-73.90182749122849',
  'location': {'latitude': '40.73759066238476',
   'longitude': '-73.90182749122849',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979771',
  'created_date': '2024-11-04T23:05:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '10301',
  'incident_address': '78 RENWICK AVENUE',
  'street_name': 'RENWICK AVENUE',
  'cross_street_1': 'NORTHERN BLVD',
  'cross_street_2': 'CATTARAUGUS ST',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5006750008',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '954687',
  'y_coordinate_state_plane': '162483',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61260538231356',
  'longitude': '-74.1064779859576',
  'location': {'latitude': '40.61260538231356',
   'longitude': '-74.1064779859576',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62974782',
  'created_date': '2024-11-04T23:05:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '10302',
  'incident_address': '569 COLLEGE AVENUE',
  'street_name': 'COLLEGE AVENUE',
  'cross_street_1': 'MARIANNE ST',
  'cross_street_2': 'CRYSTAL AVE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5003940083',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '945296',
  'y_coordinate_state_plane': '165921',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.622005658473796',
  'longitude': '-74.14032163069994',
  'location': {'latitude': '40.622005658473796',
   'longitude': '-74.14032163069994',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979506',
  'created_date': '2024-11-04T23:04:55.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10033',
  'incident_address': '825 WEST  180 STREET',
  'street_name': 'WEST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021770126',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000888',
  'y_coordinate_state_plane': '249047',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85023581156525',
  'longitude': '-73.93986032039368',
  'location': {'latitude': '40.85023581156525',
   'longitude': '-73.93986032039368',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62985947',
  'created_date': '2024-11-04T23:04:55.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11217',
  'incident_address': '404 STATE STREET',
  'street_name': 'STATE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001780016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988764',
  'y_coordinate_state_plane': '189676',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68729242453742',
  'longitude': '-73.98372357798311',
  'location': {'latitude': '40.68729242453742',
   'longitude': '-73.98372357798311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984363',
  'created_date': '2024-11-04T23:04:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1310 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028300005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007957',
  'y_coordinate_state_plane': '244042',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.836482407851925',
  'longitude': '-73.91432643558511',
  'location': {'latitude': '40.836482407851925',
   'longitude': '-73.91432643558511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977804',
  'created_date': '2024-11-04T23:04:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1310 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028300005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007957',
  'y_coordinate_state_plane': '244042',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.836482407851925',
  'longitude': '-73.91432643558511',
  'location': {'latitude': '40.836482407851925',
   'longitude': '-73.91432643558511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986255',
  'created_date': '2024-11-04T23:04:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'WATER LEAK',
  'descriptor': 'HEAVY FLOW',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10456',
  'incident_address': '1310 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2028300005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007957',
  'y_coordinate_state_plane': '244042',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.836482407851925',
  'longitude': '-73.91432643558511',
  'location': {'latitude': '40.836482407851925',
   'longitude': '-73.91432643558511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987713',
  'created_date': '2024-11-04T23:04:49.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'PESTS',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10455',
  'incident_address': '448 EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022910027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007222',
  'y_coordinate_state_plane': '235865',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814040820457485',
  'longitude': '-73.91701061043655',
  'location': {'latitude': '40.814040820457485',
   'longitude': '-73.91701061043655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975942',
  'created_date': '2024-11-04T23:04:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'DOOR/WINDOW',
  'descriptor': 'WINDOW FRAME',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10040',
  'incident_address': '609 WEST  191 STREET',
  'street_name': 'WEST  191 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021690042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003775',
  'y_coordinate_state_plane': '251030',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85567264311442',
  'longitude': '-73.92941920512644',
  'location': {'latitude': '40.85567264311442',
   'longitude': '-73.92941920512644',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982039',
  'created_date': '2024-11-04T23:04:17.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Outdoor Dining',
  'descriptor': 'Site Setup Condition',
  'location_type': 'Sidewalk',
  'incident_zip': '10003',
  'incident_address': '41 EAST   20 STREET',
  'street_name': 'EAST   20 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'PARK AVENUE SOUTH',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'PARK AVENUE SOUTH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   20 STREET',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1008490029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987285',
  'y_coordinate_state_plane': '208471',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.738880848311716',
  'longitude': '-73.98904803087335',
  'location': {'latitude': '40.738880848311716',
   'longitude': '-73.98904803087335',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983928',
  'created_date': '2024-11-04T23:04:02.000',
  'closed_date': '2024-11-04T23:30:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11229',
  'incident_address': '1840 EAST   14 STREET',
  'street_name': 'EAST   14 STREET',
  'cross_street_1': 'AVENUE R',
  'cross_street_2': 'AVENUE S',
  'intersection_street_1': 'AVENUE R',
  'intersection_street_2': 'AVENUE S',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   14 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:30:20.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3068197503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995781',
  'y_coordinate_state_plane': '159589',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60470376057462',
  'longitude': '-73.95847335901696',
  'location': {'latitude': '40.60470376057462',
   'longitude': '-73.95847335901696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987189',
  'created_date': '2024-11-04T23:04:00.000',
  'closed_date': '2024-11-04T23:52:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '504 WEST  169 STREET',
  'street_name': 'WEST  169 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'AUDUBON AVENUE',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'AUDUBON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  169 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-04T23:52:44.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021250041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001736',
  'y_coordinate_state_plane': '245542',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84061397982949',
  'longitude': '-73.93680428240462',
  'location': {'latitude': '40.84061397982949',
   'longitude': '-73.93680428240462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982065',
  'created_date': '2024-11-04T23:04:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11234',
  'intersection_street_1': 'GLENWOOD ROAD',
  'intersection_street_2': 'SCHENECTADY AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003255',
  'y_coordinate_state_plane': '170634',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.635007100231654',
  'longitude': '-73.93152612595941',
  'location': {'latitude': '40.635007100231654',
   'longitude': '-73.93152612595941',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983679',
  'created_date': '2024-11-04T23:04:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11218',
  'intersection_street_1': 'CATON AVENUE',
  'intersection_street_2': 'CONEY ISLAND AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992187',
  'y_coordinate_state_plane': '175455',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64825654253355',
  'longitude': '-73.9713977891148',
  'location': {'latitude': '40.64825654253355',
   'longitude': '-73.9713977891148',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982093',
  'created_date': '2024-11-04T23:03:57.000',
  'closed_date': '2024-11-05T00:59:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '110 CADMAN PLAZA EAST',
  'street_name': 'CADMAN PLAZA EAST',
  'cross_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
  'cross_street_2': 'RED CROSS PLACE',
  'intersection_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
  'intersection_street_2': 'RED CROSS PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CADMAN PLAZA EAST',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:59:39.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987087',
  'y_coordinate_state_plane': '194404',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.700270386304894',
  'longitude': '-73.98976845412388',
  'location': {'latitude': '40.700270386304894',
   'longitude': '-73.98976845412388',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983820',
  'created_date': '2024-11-04T23:03:51.000',
  'closed_date': '2024-11-05T00:19:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11415',
  'incident_address': '80-15 GRENFELL STREET',
  'street_name': 'GRENFELL STREET',
  'cross_street_1': 'UNION TURNPIKE',
  'cross_street_2': '80 ROAD',
  'intersection_street_1': 'UNION TURNPIKE',
  'intersection_street_2': '80 ROAD',
  'address_type': 'ADDRESS',
  'city': 'KEW GARDENS',
  'landmark': 'GRENFELL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:19:33.000',
  'community_board': '09 QUEENS',
  'bbl': '4033350008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030112',
  'y_coordinate_state_plane': '198659',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.711830949212164',
  'longitude': '-73.83457144232327',
  'location': {'latitude': '40.711830949212164',
   'longitude': '-73.83457144232327',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975852',
  'created_date': '2024-11-04T23:03:17.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Other',
  'incident_zip': '10010',
  'incident_address': '211 EAST 21 STREET',
  'street_name': 'EAST 21 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   21 STREET',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-11-05T00:24:36.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009020011',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988802',
  'y_coordinate_state_plane': '207910',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73734039161004',
  'longitude': '-73.98357423030009',
  'location': {'latitude': '40.73734039161004',
   'longitude': '-73.98357423030009',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987018',
  'created_date': '2024-11-04T23:03:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '86-44 57 ROAD',
  'street_name': '57 ROAD',
  'cross_street_1': 'VAN HORN STREET',
  'cross_street_2': 'SEABURY STREET',
  'intersection_street_1': 'VAN HORN STREET',
  'intersection_street_2': 'SEABURY STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '57 ROAD',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4028710023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018854',
  'y_coordinate_state_plane': '206114',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.732344295300834',
  'longitude': '-73.87514171636687',
  'location': {'latitude': '40.732344295300834',
   'longitude': '-73.87514171636687',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977412',
  'created_date': '2024-11-04T23:03:05.000',
  'closed_date': '2024-11-04T23:09:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11229',
  'incident_address': '3342 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'AVENUE T',
  'cross_street_2': 'AVENUE U',
  'intersection_street_1': 'AVENUE T',
  'intersection_street_2': 'AVENUE U',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:09:10.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073340005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000283',
  'y_coordinate_state_plane': '158732',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.602344468950996',
  'longitude': '-73.94226232493995',
  'location': {'latitude': '40.602344468950996',
   'longitude': '-73.94226232493995',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978831',
  'created_date': '2024-11-04T23:02:56.000',
  'closed_date': '2024-11-05T00:49:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Overnight Commercial Storage',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '114 CADMAN PLAZA EAST',
  'street_name': 'CADMAN PLAZA EAST',
  'cross_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
  'cross_street_2': 'RED CROSS PLACE',
  'intersection_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
  'intersection_street_2': 'RED CROSS PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CADMAN PLAZA EAST',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-05T00:49:10.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987086',
  'y_coordinate_state_plane': '194382',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.700210001768475',
  'longitude': '-73.98977206985455',
  'location': {'latitude': '40.700210001768475',
   'longitude': '-73.98977206985455',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983626',
  'created_date': '2024-11-04T23:02:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11204',
  'incident_address': '1559 WEST SIXTH STREET',
  'street_name': 'WEST SIXTH STREET',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    6 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:39:51.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066017501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989832',
  'y_coordinate_state_plane': '161222',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60919175555542',
  'longitude': '-73.97989616802053',
  'location': {'latitude': '40.60919175555542',
   'longitude': '-73.97989616802053',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976467',
  'created_date': '2024-11-04T23:02:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '10303',
  'incident_address': '210 SIMONSON AVENUE',
  'street_name': 'SIMONSON AVENUE',
  'cross_street_1': 'WALKER ST',
  'cross_street_2': 'DIXON AVE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5011940075',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941979',
  'y_coordinate_state_plane': '169342',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63138036518959',
  'longitude': '-74.15229165992736',
  'location': {'latitude': '40.63138036518959',
   'longitude': '-74.15229165992736',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981419',
  'created_date': '2024-11-04T23:02:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11358',
  'incident_address': '43-72 168 STREET',
  'street_name': '168 STREET',
  'cross_street_1': '43 AVE',
  'cross_street_2': '45 AVE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '07 QUEENS',
  'bbl': '4054250076',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040023',
  'y_coordinate_state_plane': '215445',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.757847334848066',
  'longitude': '-73.79868249175837',
  'location': {'latitude': '40.757847334848066',
   'longitude': '-73.79868249175837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986445',
  'created_date': '2024-11-04T23:02:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Sewer',
  'descriptor': 'Catch Basin Sunken/Damaged/Raised (SC1)',
  'incident_zip': '11218',
  'intersection_street_1': 'CHURCH AVENUE',
  'intersection_street_2': 'CONEY ISLAND AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '12 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992342',
  'y_coordinate_state_plane': '174771',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64637897029965',
  'longitude': '-73.97084004314074',
  'location': {'latitude': '40.64637897029965',
   'longitude': '-73.97084004314074',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984244',
  'created_date': '2024-11-04T23:01:54.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'APARTMENT ONLY',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10469',
  'incident_address': '1040B EAST  217 STREET',
  'street_name': 'EAST  217 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '12 BRONX',
  'bbl': '2046990051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024543',
  'y_coordinate_state_plane': '259628',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8792011486289',
  'longitude': '-73.85429350155603',
  'location': {'latitude': '40.8792011486289',
   'longitude': '-73.85429350155603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62978657',
  'created_date': '2024-11-04T23:01:54.000',
  'closed_date': '2024-11-05T00:30:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Overnight Commercial Storage',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '103 WASHINGTON STREET',
  'street_name': 'WASHINGTON STREET',
  'cross_street_1': 'BROOKLYN QUEENS EP EB ET   28 B',
  'cross_street_2': 'PROSPECT STREET',
  'intersection_street_1': 'BROOKLYN QUEENS EP EB ET   28 B',
  'intersection_street_2': 'PROSPECT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WASHINGTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T00:30:24.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987107',
  'y_coordinate_state_plane': '194711',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70111302305257',
  'longitude': '-73.98969619455666',
  'location': {'latitude': '40.70111302305257',
   'longitude': '-73.98969619455666',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987465',
  'created_date': '2024-11-04T23:01:48.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10469',
  'incident_address': '2556 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '11 BRONX',
  'bbl': '2044470024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023070',
  'y_coordinate_state_plane': '254059',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86392257138302',
  'longitude': '-73.85965238222855',
  'location': {'latitude': '40.86392257138302',
   'longitude': '-73.85965238222855',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981118',
  'created_date': '2024-11-04T23:01:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10458',
  'incident_address': '632 EAST  186 STREET',
  'street_name': 'EAST  186 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD has already attempted to notify the property owner that the condition exists; the tenant should provide access for the owner to make the repair.  HPD may attempt to contact the tenant by phone to verify the correction of the condition or an HPD Inspector may attempt to conduct an inspection.',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '06 BRONX',
  'bbl': '2030740010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015524',
  'y_coordinate_state_plane': '250481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85413200235494',
  'longitude': '-73.88695042134171',
  'location': {'latitude': '40.85413200235494',
   'longitude': '-73.88695042134171',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975608',
  'created_date': '2024-11-04T23:01:37.000',
  'closed_date': '2024-11-05T00:23:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11230',
  'incident_address': '1438 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  'cross_street_1': 'AVENUE I',
  'cross_street_2': 'AVENUE J',
  'intersection_street_1': 'AVENUE I',
  'intersection_street_2': 'AVENUE J',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'OCEAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:23:37.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067120076',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996282',
  'y_coordinate_state_plane': '167730',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.627048451469705',
  'longitude': '-73.9566545983824',
  'location': {'latitude': '40.627048451469705',
   'longitude': '-73.9566545983824',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979148',
  'created_date': '2024-11-04T23:01:19.000',
  'closed_date': '2024-11-04T23:41:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10012',
  'incident_address': '555 LA GUARDIA PLACE',
  'street_name': 'LA GUARDIA PLACE',
  'cross_street_1': 'BLEECKER STREET',
  'cross_street_2': 'WEST    3 STREET',
  'intersection_street_1': 'BLEECKER STREET',
  'intersection_street_2': 'WEST    3 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LA GUARDIA PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-04T23:41:50.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005330010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984766',
  'y_coordinate_state_plane': '204871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72900024000052',
  'longitude': '-73.99813826090998',
  'location': {'latitude': '40.72900024000052',
   'longitude': '-73.99813826090998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975634',
  'created_date': '2024-11-04T23:01:09.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'For Hire Vehicle Complaint',
  'descriptor': 'Driver Complaint - Non Passenger',
  'location_type': 'Street',
  'incident_zip': '11218',
  'incident_address': '125 ARGYLE ROAD',
  'street_name': 'ARGYLE ROAD',
  'cross_street_1': 'ALBEMARLE ROAD',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'ALBEMARLE ROAD',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ARGYLE ROAD',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3051170001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993341',
  'y_coordinate_state_plane': '174654',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'taxi_pick_up_location': '125 ARGYLE ROAD, BROOKLYN, NY, 11218',
  'latitude': '40.64605686145409',
  'longitude': '-73.96724025094883',
  'location': {'latitude': '40.64605686145409',
   'longitude': '-73.96724025094883',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983968',
  'created_date': '2024-11-04T23:01:02.000',
  'closed_date': '2024-11-04T23:08:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10023',
  'incident_address': '100 FREEDOM PLACE SOUTH',
  'street_name': 'FREEDOM PLACE SOUTH',
  'cross_street_1': 'WEST   59 STREET',
  'cross_street_2': 'WEST   60 STREET',
  'intersection_street_1': 'WEST   59 STREET',
  'intersection_street_2': 'WEST   60 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FREEDOM PLACE SOUTH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:08:11.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011717511',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986699',
  'y_coordinate_state_plane': '220750',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77258375820873',
  'longitude': '-73.99115817251746',
  'location': {'latitude': '40.77258375820873',
   'longitude': '-73.99115817251746',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987271',
  'created_date': '2024-11-04T23:00:58.000',
  'closed_date': '2024-11-04T23:22:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1315 FINDLAY AVENUE',
  'street_name': 'FINDLAY AVENUE',
  'cross_street_1': 'EAST  169 STREET',
  'cross_street_2': 'BEND',
  'intersection_street_1': 'EAST  169 STREET',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FINDLAY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:22:17.000',
  'community_board': '04 BRONX',
  'bbl': '2027830070',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008939',
  'y_coordinate_state_plane': '243670',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.835458685273935',
  'longitude': '-73.91077900563212',
  'location': {'latitude': '40.835458685273935',
   'longitude': '-73.91077900563212',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976908',
  'created_date': '2024-11-04T23:00:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10458',
  'incident_address': '2476 ARTHUR AVENUE',
  'street_name': 'ARTHUR AVENUE',
  'cross_street_1': 'EAST  188 STREET',
  'cross_street_2': 'EAST  189 STREET',
  'intersection_street_1': 'EAST  188 STREET',
  'intersection_street_2': 'EAST  189 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARTHUR AVENUE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2030770043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015750',
  'y_coordinate_state_plane': '251609',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.857227219488365',
  'longitude': '-73.88612817457927',
  'location': {'latitude': '40.857227219488365',
   'longitude': '-73.88612817457927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984829',
  'created_date': '2024-11-04T23:00:53.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11219',
  'incident_address': '14 AVENUE',
  'street_name': '14 AVENUE',
  'cross_street_1': '14 AVENUE',
  'cross_street_2': '50 STREET',
  'intersection_street_1': '14 AVENUE',
  'intersection_street_2': '50 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986888',
  'y_coordinate_state_plane': '169945',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.633135936981645',
  'longitude': '-73.99049571181587',
  'location': {'latitude': '40.633135936981645',
   'longitude': '-73.99049571181587',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62976886',
  'created_date': '2024-11-04T23:00:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '125 ARGYLE ROAD',
  'street_name': 'ARGYLE ROAD',
  'cross_street_1': 'ALBEMARLE ROAD',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'ALBEMARLE ROAD',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ARGYLE ROAD',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3051170001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993341',
  'y_coordinate_state_plane': '174654',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64605686145409',
  'longitude': '-73.96724025094883',
  'location': {'latitude': '40.64605686145409',
   'longitude': '-73.96724025094883',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983965',
  'created_date': '2024-11-04T23:00:28.000',
  'closed_date': '2024-11-04T23:12:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '402 EAST  118 STREET',
  'street_name': 'EAST  118 STREET',
  'cross_street_1': '1 AVENUE',
  'cross_street_2': 'PLEASANT AVENUE',
  'intersection_street_1': '1 AVENUE',
  'intersection_street_2': 'PLEASANT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  118 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:12:11.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017110044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002499',
  'y_coordinate_state_plane': '229705',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79714434131313',
  'longitude': '-73.93408980987411',
  'location': {'latitude': '40.79714434131313',
   'longitude': '-73.93408980987411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981856',
  'created_date': '2024-11-04T23:00:28.000',
  'closed_date': '2024-11-05T01:01:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Overnight Commercial Storage',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': 'WASHINGTON STREET',
  'street_name': 'WASHINGTON STREET',
  'cross_street_1': 'WASHINGTON STREET',
  'cross_street_2': 'YORK STREET',
  'intersection_street_1': 'WASHINGTON STREET',
  'intersection_street_2': 'YORK STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T01:02:03.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987112',
  'y_coordinate_state_plane': '194899',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.701629037412125',
  'longitude': '-73.98967808210146',
  'location': {'latitude': '40.701629037412125',
   'longitude': '-73.98967808210146',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983941',
  'created_date': '2024-11-04T22:59:55.000',
  'closed_date': '2024-11-05T00:22:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11225',
  'incident_address': '1207 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'HAWTHORNE STREET',
  'cross_street_2': 'WINTHROP STREET',
  'intersection_street_1': 'HAWTHORNE STREET',
  'intersection_street_2': 'WINTHROP STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:22:44.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3048190010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998038',
  'y_coordinate_state_plane': '178908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65772709647846',
  'longitude': '-73.95030574722443',
  'location': {'latitude': '40.65772709647846',
   'longitude': '-73.95030574722443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977011',
  'created_date': '2024-11-04T22:59:55.000',
  'closed_date': '2024-11-05T01:23:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '111 BAY   23 STREET',
  'street_name': 'BAY   23 STREET',
  'cross_street_1': 'BENSON AVENUE',
  'cross_street_2': 'BATH AVENUE',
  'intersection_street_1': 'BENSON AVENUE',
  'intersection_street_2': 'BATH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   23 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-11-05T01:23:43.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064080019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983878',
  'y_coordinate_state_plane': '158889',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60278989742503',
  'longitude': '-74.00133964678237',
  'location': {'latitude': '40.60278989742503',
   'longitude': '-74.00133964678237',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62979010',
  'created_date': '2024-11-04T22:59:39.000',
  'closed_date': '2024-11-05T00:35:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '69-09 37 ROAD',
  'street_name': '37 ROAD',
  'cross_street_1': '69 STREET',
  'cross_street_2': 'BROOKLYN QUEENS EXPRESSWAY SR',
  'intersection_street_1': '69 STREET',
  'intersection_street_2': 'BROOKLYN QUEENS EXPRESSWAY SR',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '37 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:35:58.000',
  'community_board': '02 QUEENS',
  'bbl': '4012820093',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012950',
  'y_coordinate_state_plane': '211678',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74763721002014',
  'longitude': '-73.89642079071659',
  'location': {'latitude': '40.74763721002014',
   'longitude': '-73.89642079071659',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987161',
  'created_date': '2024-11-04T22:59:13.000',
  'closed_date': '2024-11-04T23:08:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10023',
  'incident_address': '100 FREEDOM PLACE SOUTH',
  'street_name': 'FREEDOM PLACE SOUTH',
  'cross_street_1': 'WEST   59 STREET',
  'cross_street_2': 'WEST   60 STREET',
  'intersection_street_1': 'WEST   59 STREET',
  'intersection_street_2': 'WEST   60 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FREEDOM PLACE SOUTH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:08:38.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011717511',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986699',
  'y_coordinate_state_plane': '220750',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77258375820873',
  'longitude': '-73.99115817251746',
  'location': {'latitude': '40.77258375820873',
   'longitude': '-73.99115817251746',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987074',
  'created_date': '2024-11-04T22:59:03.000',
  'closed_date': '2024-11-05T00:29:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Overnight Commercial Storage',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '109 WASHINGTON STREET',
  'street_name': 'WASHINGTON STREET',
  'cross_street_1': 'BROOKLYN QUEENS EP EB ET   28 B',
  'cross_street_2': 'PROSPECT STREET',
  'intersection_street_1': 'BROOKLYN QUEENS EP EB ET   28 B',
  'intersection_street_2': 'PROSPECT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WASHINGTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-05T00:29:48.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987105',
  'y_coordinate_state_plane': '194661',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70097578540098',
  'longitude': '-73.98970342877732',
  'location': {'latitude': '40.70097578540098',
   'longitude': '-73.98970342877732',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986834',
  'created_date': '2024-11-04T22:59:02.000',
  'closed_date': '2024-11-05T01:29:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11214',
  'incident_address': '221 BAY   37 STREET',
  'street_name': 'BAY   37 STREET',
  'cross_street_1': 'BATH AVENUE',
  'cross_street_2': 'HARWAY AVENUE',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'HARWAY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   37 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-11-05T01:29:35.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3068920020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986143',
  'y_coordinate_state_plane': '155846',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59443728353848',
  'longitude': '-73.99318377917993',
  'location': {'latitude': '40.59443728353848',
   'longitude': '-73.99318377917993',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982838',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11249',
  'incident_address': '121 NORTH    5 STREET',
  'street_name': 'NORTH    5 STREET',
  'cross_street_1': 'BERRY ST',
  'cross_street_2': 'BEDFORD AVE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 BROOKLYN',
  'bbl': '3023350037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995449',
  'y_coordinate_state_plane': '200562',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71716600477315',
  'longitude': '-73.9596009402878',
  'location': {'latitude': '40.71716600477315',
   'longitude': '-73.9596009402878',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984386',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11416',
  'incident_address': '80-17 95 AVENUE',
  'street_name': '95 AVENUE',
  'cross_street_1': '80 ST',
  'cross_street_2': '81 ST',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '09 QUEENS',
  'bbl': '4090060019',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023090',
  'y_coordinate_state_plane': '188347',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68356055916171',
  'longitude': '-73.85995987634773',
  'location': {'latitude': '40.68356055916171',
   'longitude': '-73.85995987634773',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62974790',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '10301',
  'incident_address': '12 RENWICK AVENUE',
  'street_name': 'RENWICK AVENUE',
  'cross_street_1': 'VICTORY BLVD',
  'cross_street_2': 'NORTHERN BLVD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5006740012',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '954354',
  'y_coordinate_state_plane': '163138',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61440210352792',
  'longitude': '-74.10768026131974',
  'location': {'latitude': '40.61440210352792',
   'longitude': '-74.10768026131974',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981420',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11366',
  'incident_address': '75-24 188 STREET',
  'street_name': '188 STREET',
  'cross_street_1': '75 AVE',
  'cross_street_2': 'UNION TPKE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '08 QUEENS',
  'bbl': '4072040013',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044714',
  'y_coordinate_state_plane': '205533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.730610622740514',
  'longitude': '-73.78183909091625',
  'location': {'latitude': '40.730610622740514',
   'longitude': '-73.78183909091625',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984387',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '1964 EAST   35 STREET',
  'street_name': 'EAST   35 STREET',
  'cross_street_1': 'FILLMORE AVE',
  'cross_street_2': 'AVENUE S',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3085010077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002907',
  'y_coordinate_state_plane': '161488',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.609903987977056',
  'longitude': '-73.93280522602078',
  'location': {'latitude': '40.609903987977056',
   'longitude': '-73.93280522602078',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984598',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11421',
  'incident_address': '88-30 75 STREET',
  'street_name': '75 STREET',
  'cross_street_1': '88 RD',
  'cross_street_2': '90 AVE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '09 QUEENS',
  'bbl': '4088950025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021456',
  'y_coordinate_state_plane': '190135',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68847522345276',
  'longitude': '-73.86584148582635',
  'location': {'latitude': '40.68847522345276',
   'longitude': '-73.86584148582635',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984669',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Noise',
  'descriptor': 'Noise: Construction Before/After Hours (NM1)',
  'incident_zip': '10022',
  'incident_address': 'EAST   59 STREET',
  'street_name': 'EAST   59 STREET',
  'cross_street_1': 'MADISON AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'MANHATTAN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '08 MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '62984420',
  'created_date': '2024-11-04T22:59:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Lead',
  'descriptor': 'Lead Kit Request (Residential) (L10)',
  'incident_zip': '11234',
  'incident_address': '1710 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'AVENUE N',
  'cross_street_2': 'AVENUE O',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'bbl': '3078960065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005123',
  'y_coordinate_state_plane': '164352',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61776013100863',
  'longitude': '-73.9248152637444',
  'location': {'latitude': '40.61776013100863',
   'longitude': '-73.9248152637444',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986532',
  'created_date': '2024-11-04T22:58:59.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11211',
  'incident_address': '471 KEAP STREET',
  'street_name': 'KEAP STREET',
  'cross_street_1': 'AINSLIE STREET',
  'cross_street_2': 'UNION AVENUE',
  'intersection_street_1': 'AINSLIE STREET',
  'intersection_street_2': 'UNION AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KEAP STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3023710040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997533',
  'y_coordinate_state_plane': '199072',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71307342812607',
  'longitude': '-73.95208609969956',
  'location': {'latitude': '40.71307342812607',
   'longitude': '-73.95208609969956',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62977749',
  'created_date': '2024-11-04T22:58:40.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'HEAT/HOT WATER',
  'descriptor': 'ENTIRE BUILDING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10467',
  'incident_address': '3450 GATES PLACE',
  'street_name': 'GATES PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'This complaint is a duplicate of a building-wide condition already reported by another tenant.  The original complaint is still open, and HPD may only need to confirm that the condition exists by inspecting one apartment.  If we cannot contact the tenant from the original complaint or get access to that apartment, HPD may attempt to contact the person who filed this complaint to verify the correction of the condition or may conduct an inspection of your unit. You can check HPDONLINE to see if a',
  'resolution_action_updated_date': '2024-11-04T00:00:00.000',
  'community_board': '07 BRONX',
  'bbl': '2033240055',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016490',
  'y_coordinate_state_plane': '261029',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88307954572433',
  'longitude': '-73.88340776877787',
  'location': {'latitude': '40.88307954572433',
   'longitude': '-73.88340776877787',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975461',
  'created_date': '2024-11-04T22:58:40.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Sidewalk Violation',
  'location_type': 'Sidewalk',
  'incident_zip': '11433',
  'incident_address': '173-24 103 ROAD',
  'street_name': '103 ROAD',
  'cross_street_1': '173 STREET',
  'cross_street_2': '177 STREET',
  'intersection_street_1': '173 STREET',
  'intersection_street_2': '177 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '103 ROAD',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4102330189',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044125',
  'y_coordinate_state_plane': '195859',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70406190118926',
  'longitude': '-73.78405030979889',
  'location': {'latitude': '40.70406190118926',
   'longitude': '-73.78405030979889',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62982227',
  'created_date': '2024-11-04T22:58:32.000',
  'closed_date': '2024-11-04T23:25:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11206',
  'incident_address': '131 MOORE STREET',
  'street_name': 'MOORE STREET',
  'cross_street_1': 'HUMBOLDT STREET',
  'cross_street_2': 'BUSHWICK AVENUE',
  'intersection_street_1': 'HUMBOLDT STREET',
  'intersection_street_2': 'BUSHWICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MOORE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:25:43.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030980001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000760',
  'y_coordinate_state_plane': '195750',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70394989326451',
  'longitude': '-73.94045394475171',
  'location': {'latitude': '40.70394989326451',
   'longitude': '-73.94045394475171',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981691',
  'created_date': '2024-11-04T22:58:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11372',
  'incident_address': '92-13 ROOSEVELT AVENUE',
  'street_name': 'ROOSEVELT AVENUE',
  'cross_street_1': '92 STREET',
  'cross_street_2': 'ASKE STREET',
  'intersection_street_1': '92 STREET',
  'intersection_street_2': 'ASKE STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'ROOSEVELT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-11-05T02:07:51.000',
  'community_board': '03 QUEENS',
  'bbl': '4014800039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019121',
  'y_coordinate_state_plane': '212064',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74867450049622',
  'longitude': '-73.87414748266958',
  'location': {'latitude': '40.74867450049622',
   'longitude': '-73.87414748266958',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62987140',
  'created_date': '2024-11-04T22:57:53.000',
  'closed_date': '2024-11-04T23:42:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10452',
  'incident_address': '1403 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EAST  170 STREET',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'EAST  170 STREET',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
  'resolution_action_updated_date': '2024-11-04T23:42:05.000',
  'community_board': '04 BRONX',
  'bbl': '2028330030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008147',
  'y_coordinate_state_plane': '244946',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83896311232895',
  'longitude': '-73.91363658344284',
  'location': {'latitude': '40.83896311232895',
   'longitude': '-73.91363658344284',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984063',
  'created_date': '2024-11-04T22:57:52.000',
  'closed_date': '2024-11-04T23:11:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10024',
  'incident_address': '211 CENTRAL PARK WEST',
  'street_name': 'CENTRAL PARK WEST',
  'cross_street_1': 'WEST   81 STREET',
  'cross_street_2': 'WEST   82 STREET',
  'intersection_street_1': 'WEST   81 STREET',
  'intersection_street_2': 'WEST   82 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CENTRAL PARK WEST',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:11:20.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011950029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '992118',
  'y_coordinate_state_plane': '224264',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78222559968899',
  'longitude': '-73.97158939424614',
  'location': {'latitude': '40.78222559968899',
   'longitude': '-73.97158939424614',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62981573',
  'created_date': '2024-11-04T22:57:45.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11211',
  'incident_address': '487 KEAP STREET',
  'street_name': 'KEAP STREET',
  'cross_street_1': 'AINSLIE STREET',
  'cross_street_2': 'UNION AVENUE',
  'intersection_street_1': 'AINSLIE STREET',
  'intersection_street_2': 'UNION AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KEAP STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3023710034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997593',
  'y_coordinate_state_plane': '199190',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71339721966222',
  'longitude': '-73.9518694362982',
  'location': {'latitude': '40.71339721966222',
   'longitude': '-73.9518694362982',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62975762',
  'created_date': '2024-11-04T22:57:12.000',
  'closed_date': '2024-11-04T23:13:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '333 GEORGIA AVENUE',
  'street_name': 'GEORGIA AVENUE',
  'cross_street_1': 'SUTTER AVENUE',
  'cross_street_2': 'BLAKE AVENUE',
  'intersection_street_1': 'SUTTER AVENUE',
  'intersection_street_2': 'BLAKE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GEORGIA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T23:13:31.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3037700001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1012838',
  'y_coordinate_state_plane': '182860',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66853904068325',
  'longitude': '-73.89694735727659',
  'location': {'latitude': '40.66853904068325',
   'longitude': '-73.89694735727659',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62986592',
  'created_date': '2024-11-04T22:57:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10454',
  'incident_address': '223 CYPRESS AVENUE',
  'street_name': 'CYPRESS AVENUE',
  'cross_street_1': 'EAST  137 STREET',
  'cross_street_2': 'EAST  138 STREET',
  'intersection_street_1': 'EAST  137 STREET',
  'intersection_street_2': 'EAST  138 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CYPRESS AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2025500044',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007819',
  'y_coordinate_state_plane': '232596',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.805066753469085',
  'longitude': '-73.91486534797623',
  'location': {'latitude': '40.805066753469085',
   'longitude': '-73.91486534797623',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983969',
  'created_date': '2024-11-04T22:57:07.000',
  'closed_date': '2024-11-04T23:08:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10023',
  'incident_address': '100 FREEDOM PLACE SOUTH',
  'street_name': 'FREEDOM PLACE SOUTH',
  'cross_street_1': 'WEST   59 STREET',
  'cross_street_2': 'WEST   60 STREET',
  'intersection_street_1': 'WEST   59 STREET',
  'intersection_street_2': 'WEST   60 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FREEDOM PLACE SOUTH',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-11-04T23:08:08.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011717511',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986699',
  'y_coordinate_state_plane': '220750',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77258375820873',
  'longitude': '-73.99115817251746',
  'location': {'latitude': '40.77258375820873',
   'longitude': '-73.99115817251746',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62984052',
  'created_date': '2024-11-04T22:57:07.000',
  'closed_date': '2024-11-04T22:58:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10030',
  'incident_address': '2400 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST  140 STREET',
  'cross_street_2': 'WEST  141 STREET',
  'intersection_street_1': 'WEST  140 STREET',
  'intersection_street_2': 'WEST  141 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-11-04T22:58:52.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020260029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000482',
  'y_coordinate_state_plane': '237497',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81853515725049',
  'longitude': '-73.94135579635707',
  'location': {'latitude': '40.81853515725049',
   'longitude': '-73.94135579635707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '62983904',
  'created_date': '2024-11-04T22:57:05.000',
  'closed_date': '2024-11-05T00:27:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Parking Permit Improper