Class 5: APIs#

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 NaN 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 NaN 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]
... ... ... ... ... ... ... ...
260 NaN Ashmore and Cartier Islands (Australia) 5.0 (1.9) 5.0 (1.9) 0 0.0 [q]
261 NaN Coral Sea Islands (Australia) 3.0 (1.2) 3.0 (1.2) 0 0.0 [da]
262 NaN Spratly Islands (disputed) 2.0 (0.77) 2.0 (0.77) 0 0.0 [50]
263 194 Monaco 2.0 (0.77) 2.0 (0.77) 0 0.0 [db]
264 195 Vatican City 0.49 (0.19) 0.49 (0.19) 0 0.0 [dc]

265 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

params = {
    "api_key": "DEMO_KEY",
    "q": "Jimmy McMillan",
    "sort": "-first_file_date",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=params)
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#

Let’s do this together.

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#

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

pd.DataFrame(data["results"])
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, 3, 18, 21, 43, 56, 338988)
start = now - timedelta(weeks=1)
start
datetime.datetime(2024, 3, 11, 21, 43, 56, 338988)
start.isoformat()
'2024-03-11T21:43:56.338988'

Using the Socrata query language (SoQL):

data_id = "erm2-nwe9"
params = {
    "$where": f"created_date between '{start.isoformat()}' and '{now.isoformat()}'",
}

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

data
[{'unique_key': '60603651',
  'created_date': '2024-03-17T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11421',
  'incident_address': '76-49 85 DRIVE',
  'street_name': '85 DRIVE',
  'cross_street_1': '76 STREET',
  'cross_street_2': '79 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'facility_type': 'DSNY Garage',
  'status': 'Open',
  'resolution_description': 'If the abandoned vehicle meets the criteria to be classified as a derelict (i.e. junk) the Department of Sanitation (DSNY) will investigate and tag the vehicle within three business days.',
  'resolution_action_updated_date': '2024-03-17T12:00:00.000',
  'community_board': '09 QUEENS',
  'bbl': '4088450037',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021619',
  'y_coordinate_state_plane': '192131',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69395308996411',
  'longitude': '-73.86524266441143',
  'location': {'latitude': '40.69395308996411',
   'longitude': '-73.86524266441143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605465',
  'created_date': '2024-03-17T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'intersection_street_1': '62 AVENUE',
  'intersection_street_2': '62 AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'Open',
  'resolution_description': 'If the abandoned vehicle meets the criteria to be classified as a derelict (i.e. junk) the Department of Sanitation (DSNY) will investigate and tag the vehicle within three business days.',
  'resolution_action_updated_date': '2024-03-17T12:00:00.000',
  'community_board': '06 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '60605461',
  'created_date': '2024-03-17T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11421',
  'incident_address': '76-50 85 DRIVE',
  'street_name': '85 DRIVE',
  'cross_street_1': '76 STREET',
  'cross_street_2': '79 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'facility_type': 'DSNY Garage',
  'status': 'Open',
  'resolution_description': 'If the abandoned vehicle meets the criteria to be classified as a derelict (i.e. junk) the Department of Sanitation (DSNY) will investigate and tag the vehicle within three business days.',
  'resolution_action_updated_date': '2024-03-17T12:00:00.000',
  'community_board': '09 QUEENS',
  'bbl': '4088440023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021630',
  'y_coordinate_state_plane': '192127',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69394206444923',
  'longitude': '-73.86520301928098',
  'location': {'latitude': '40.69394206444923',
   'longitude': '-73.86520301928098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602644',
  'created_date': '2024-03-17T01:51:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11222',
  'incident_address': '579 MEEKER AVENUE',
  'street_name': 'MEEKER AVENUE',
  'cross_street_1': 'NORTH HENRY STREET',
  'cross_street_2': 'MONITOR STREET',
  'intersection_street_1': 'NORTH HENRY STREET',
  'intersection_street_2': 'MONITOR STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MEEKER AVENUE',
  'status': 'Unspecified',
  'community_board': '01 BROOKLYN',
  'bbl': '3027290014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000198',
  'y_coordinate_state_plane': '202093',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72136094431283',
  'longitude': '-73.94246586469946',
  'location': {'latitude': '40.72136094431283',
   'longitude': '-73.94246586469946',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600772',
  'created_date': '2024-03-17T01:51: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': '11372',
  'incident_address': '82-20 37 AVENUE',
  'street_name': '37 AVENUE',
  'cross_street_1': '82 STREET',
  'cross_street_2': '83 STREET',
  'intersection_street_1': '82 STREET',
  'intersection_street_2': '83 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '37 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:05:57.000',
  'community_board': '03 QUEENS',
  'bbl': '4014700006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016381',
  'y_coordinate_state_plane': '212458',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.749766310744555',
  'longitude': '-73.88403449001711',
  'location': {'latitude': '40.749766310744555',
   'longitude': '-73.88403449001711',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603600',
  'created_date': '2024-03-17T01:51: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': '11216',
  'incident_address': '1390 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:14:42.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997214',
  'y_coordinate_state_plane': '185463',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.675720355642106',
  'longitude': '-73.95326297498595',
  'location': {'latitude': '40.675720355642106',
   'longitude': '-73.95326297498595',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604459',
  'created_date': '2024-03-17T01:51:03.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': '2381 BELMONT AVENUE',
  'street_name': 'BELMONT 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': 'BELMONT AVENUE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2030740030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015622',
  'y_coordinate_state_plane': '250583',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8544116140524',
  'longitude': '-73.88659569298686',
  'location': {'latitude': '40.8544116140524',
   'longitude': '-73.88659569298686',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604458',
  'created_date': '2024-03-17T01:50:36.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': '10304',
  'incident_address': '308 FRONT STREET',
  'street_name': 'FRONT STREET',
  'cross_street_1': 'WAVE STREET',
  'cross_street_2': 'NAVY PIER COURT',
  'intersection_street_1': 'WAVE STREET',
  'intersection_street_2': 'NAVY PIER COURT',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'FRONT STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:05:02.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5004890025',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '963544',
  'y_coordinate_state_plane': '168573',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62934628066453',
  'longitude': '-74.07459614853029',
  'location': {'latitude': '40.62934628066453',
   'longitude': '-74.07459614853029',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598835',
  'created_date': '2024-03-17T01:50:34.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': '10307',
  'incident_address': '34 BRIGHTON STREET',
  'street_name': 'BRIGHTON STREET',
  'cross_street_1': 'SUMMIT STREET',
  'cross_street_2': 'PITTSVILLE AVENUE',
  'intersection_street_1': 'SUMMIT STREET',
  'intersection_street_2': 'PITTSVILLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BRIGHTON STREET',
  'status': 'In Progress',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5079000030',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '916205',
  'y_coordinate_state_plane': '124725',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.50875541161273',
  'longitude': '-74.24469940311994',
  'location': {'latitude': '40.50875541161273',
   'longitude': '-74.24469940311994',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600732',
  'created_date': '2024-03-17T01:50:29.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': '11211',
  'incident_address': '559 LORIMER STREET',
  'street_name': 'LORIMER STREET',
  'cross_street_1': 'DEVOE STREET',
  'cross_street_2': 'METROPOLITAN AVENUE',
  'intersection_street_1': 'DEVOE STREET',
  'intersection_street_2': 'METROPOLITAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LORIMER STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:13:21.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027610035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998301',
  'y_coordinate_state_plane': '199289',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71366785492864',
  'longitude': '-73.94931534885751',
  'location': {'latitude': '40.71366785492864',
   'longitude': '-73.94931534885751',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605434',
  'created_date': '2024-03-17T01:50:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10011',
  'incident_address': '131 WEST   14 STREET',
  'street_name': 'WEST   14 STREET',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   14 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:14:56.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007900018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984840',
  'y_coordinate_state_plane': '208078',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.7378026617673',
  'longitude': '-73.99787098609319',
  'location': {'latitude': '40.7378026617673',
   'longitude': '-73.99787098609319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598789',
  'created_date': '2024-03-17T01:49:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10303',
  'incident_address': '81 BIRCH ROAD',
  'street_name': 'BIRCH ROAD',
  'cross_street_1': 'ROSECLIFF ROAD',
  'cross_street_2': 'YALE STREET',
  'intersection_street_1': 'ROSECLIFF ROAD',
  'intersection_street_2': 'YALE STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BIRCH ROAD',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5016730001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '938507',
  'y_coordinate_state_plane': '166762',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62428157204519',
  'longitude': '-74.16478287895573',
  'location': {'latitude': '40.62428157204519',
   'longitude': '-74.16478287895573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601677',
  'created_date': '2024-03-17T01:49:14.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': '11222',
  'incident_address': '97 ECKFORD STREET',
  'street_name': 'ECKFORD STREET',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ECKFORD STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:07:51.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026810029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998543',
  'y_coordinate_state_plane': '202736',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72312865235421',
  'longitude': '-73.94843508927524',
  'location': {'latitude': '40.72312865235421',
   'longitude': '-73.94843508927524',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598799',
  'created_date': '2024-03-17T01:49:13.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': '210 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'cross_street_1': 'WEST  204 STREET',
  'cross_street_2': 'WEST  207 STREET',
  'intersection_street_1': 'WEST  204 STREET',
  'intersection_street_2': 'WEST  207 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SHERMAN AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1022260029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006135',
  'y_coordinate_state_plane': '254606',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.86548214822022',
  'longitude': '-73.92087638455081',
  'location': {'latitude': '40.86548214822022',
   'longitude': '-73.92087638455081',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603614',
  'created_date': '2024-03-17T01:49: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': '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',
  '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': '60600710',
  'created_date': '2024-03-17T01:49:01.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-61 STEINWAY STREET',
  'street_name': 'STEINWAY 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': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4007970008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010532',
  'y_coordinate_state_plane': '221141',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77361821888064',
  'longitude': '-73.90511042680728',
  'location': {'latitude': '40.77361821888064',
   'longitude': '-73.90511042680728',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605335',
  'created_date': '2024-03-17T01:48:48.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Indoor Air Quality',
  'descriptor': 'Other (Explain Below)',
  'location_type': 'Other (Explain Below)',
  'incident_zip': '11233',
  'incident_address': '331 SARATOGA AVENUE',
  'street_name': 'SARATOGA AVENUE',
  'cross_street_1': 'DEAN STREET',
  'cross_street_2': 'BERGEN STREET',
  'intersection_street_1': 'DEAN STREET',
  'intersection_street_2': 'BERGEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SARATOGA AVENUE',
  'status': 'In Progress',
  'community_board': '16 BROOKLYN',
  'bbl': '3014470001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007368',
  'y_coordinate_state_plane': '185024',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67449470643373',
  'longitude': '-73.91665791423216',
  'location': {'latitude': '40.67449470643373',
   'longitude': '-73.91665791423216',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599808',
  'created_date': '2024-03-17T01:48:42.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': '607 WEST  191 STREET',
  'street_name': 'WEST  191 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'WADSWORTH AVENUE',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'WADSWORTH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  191 STREET',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021690039',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003780',
  'y_coordinate_state_plane': '251027',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85566439795385',
  'longitude': '-73.9294011394072',
  'location': {'latitude': '40.85566439795385',
   'longitude': '-73.9294011394072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603577',
  'created_date': '2024-03-17T01:48:17.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': '11249',
  'incident_address': '240 KENT AVENUE',
  'street_name': 'KENT AVENUE',
  'cross_street_1': 'NORTH    1 STREET',
  'cross_street_2': 'GRAND STREET',
  'intersection_street_1': 'NORTH    1 STREET',
  'intersection_street_2': 'GRAND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KENT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:09:38.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023770012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993808',
  'y_coordinate_state_plane': '200422',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.716783663452475',
  'longitude': '-73.96552085061542',
  'location': {'latitude': '40.716783663452475',
   'longitude': '-73.96552085061542',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605419',
  'created_date': '2024-03-17T01:48:13.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': '10469',
  'incident_address': '3326 CORSA AVENUE',
  'street_name': 'CORSA AVENUE',
  'cross_street_1': 'GIVAN AVENUE',
  'cross_street_2': 'BOSTON ROAD',
  'intersection_street_1': 'GIVAN AVENUE',
  'intersection_street_2': 'BOSTON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CORSA AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2047430046',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026712',
  'y_coordinate_state_plane': '258174',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875200205342594',
  'longitude': '-73.84645925192156',
  'location': {'latitude': '40.875200205342594',
   'longitude': '-73.84645925192156',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599562',
  'created_date': '2024-03-17T01:47:54.000',
  'closed_date': '2024-03-17T01:50:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2427 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBSTER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:50:06.000',
  'community_board': '05 BRONX',
  'bbl': '2030250013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013718',
  'y_coordinate_state_plane': '252440',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85951507984732',
  'longitude': '-73.89347015025339',
  'location': {'latitude': '40.85951507984732',
   'longitude': '-73.89347015025339',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605428',
  'created_date': '2024-03-17T01:47:47.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': '11385',
  'incident_address': '63-12 FOREST AVENUE',
  'street_name': 'FOREST 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': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:36.000',
  'community_board': '05 QUEENS',
  'bbl': '4033720046',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010601',
  'y_coordinate_state_plane': '198117',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7104229115694',
  'longitude': '-73.90495150439172',
  'location': {'latitude': '40.7104229115694',
   'longitude': '-73.90495150439172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599568',
  'created_date': '2024-03-17T01:47:29.000',
  'closed_date': '2024-03-17T01:51:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '2381 VALENTINE AVENUE',
  'street_name': 'VALENTINE AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST  187 STREET',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST  187 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VALENTINE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:51:15.000',
  'community_board': '05 BRONX',
  'bbl': '2031520032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012684',
  'y_coordinate_state_plane': '252305',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Other',
  'latitude': '40.85914793650589',
  'longitude': '-73.89720873576061',
  'location': {'latitude': '40.85914793650589',
   'longitude': '-73.89720873576061',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599772',
  'created_date': '2024-03-17T01:46:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11377',
  'incident_address': '53-21 ROOSEVELT AVENUE',
  'street_name': 'ROOSEVELT AVENUE',
  'cross_street_1': '53 STREET',
  'cross_street_2': '54 STREET',
  'intersection_street_1': '53 STREET',
  'intersection_street_2': '54 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': 'ROOSEVELT AVENUE',
  'status': 'In Progress',
  'community_board': '02 QUEENS',
  'bbl': '4013160068',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008848',
  'y_coordinate_state_plane': '210553',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74456173048242',
  'longitude': '-73.91122914225349',
  'location': {'latitude': '40.74456173048242',
   'longitude': '-73.91122914225349',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604496',
  'created_date': '2024-03-17T01:46:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11102',
  'incident_address': '30-45 32 STREET',
  'street_name': '32 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '32 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006160019',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005984',
  'y_coordinate_state_plane': '218117',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76533048118921',
  'longitude': '-73.92154047539974',
  'location': {'latitude': '40.76533048118921',
   'longitude': '-73.92154047539974',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599812',
  'created_date': '2024-03-17T01:46:28.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': '830 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',
  'resolution_action_updated_date': '2024-03-17T02:13:32.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053930040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993045',
  'y_coordinate_state_plane': '171556',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6375538157166',
  'longitude': '-73.96831093620285',
  'location': {'latitude': '40.6375538157166',
   'longitude': '-73.96831093620285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600737',
  'created_date': '2024-03-17T01: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': '11102',
  'incident_address': '27-35 21 STREET',
  'street_name': '21 STREET',
  'cross_street_1': '27 ROAD',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': '27 ROAD',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '21 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4005430002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004605',
  'y_coordinate_state_plane': '220362',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77149570357546',
  'longitude': '-73.92651185025316',
  'location': {'latitude': '40.77149570357546',
   'longitude': '-73.92651185025316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605398',
  'created_date': '2024-03-17T01:46:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '11361',
  'incident_address': '42-41 201 STREET',
  'street_name': '201 STREET',
  'cross_street_1': '42 AVENUE',
  'cross_street_2': '43 AVENUE',
  'intersection_street_1': '42 AVENUE',
  'intersection_street_2': '43 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': '201 STREET',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'bbl': '4062590016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044404',
  'y_coordinate_state_plane': '215875',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75899885049136',
  'longitude': '-73.78286510517329',
  'location': {'latitude': '40.75899885049136',
   'longitude': '-73.78286510517329',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602637',
  'created_date': '2024-03-17T01:45:43.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': '11411',
  'incident_address': '223-18 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': '223 STREET',
  'cross_street_2': '224 STREET',
  'intersection_street_1': '223 STREET',
  'intersection_street_2': '224 STREET',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': 'LINDEN BOULEVARD',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4127400063',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1057103',
  'y_coordinate_state_plane': '192314',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.694234413921',
  'longitude': '-73.73728147824473',
  'location': {'latitude': '40.694234413921',
   'longitude': '-73.73728147824473',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599807',
  'created_date': '2024-03-17T01:45:37.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': '2427 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBSTER AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2030250013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013718',
  'y_coordinate_state_plane': '252440',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85951507984732',
  'longitude': '-73.89347015025339',
  'location': {'latitude': '40.85951507984732',
   'longitude': '-73.89347015025339',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601688',
  'created_date': '2024-03-17T01:45: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': '10461',
  'incident_address': '1315 COMMERCE AVENUE',
  'street_name': 'COMMERCE AVENUE',
  'cross_street_1': 'WATERBURY AVENUE',
  'cross_street_2': 'HALSEY STREET',
  'intersection_street_1': 'WATERBURY AVENUE',
  'intersection_street_2': 'HALSEY STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COMMERCE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2038520164',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028492',
  'y_coordinate_state_plane': '243858',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.835898382519844',
  'longitude': '-73.84011734660629',
  'location': {'latitude': '40.835898382519844',
   'longitude': '-73.84011734660629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598812',
  'created_date': '2024-03-17T01:44:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10029',
  'incident_address': '2226A 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST  114 STREET',
  'cross_street_2': 'EAST  115 STREET',
  'intersection_street_1': 'EAST  114 STREET',
  'intersection_street_2': 'EAST  115 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:11.000',
  'community_board': '11 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001896',
  'y_coordinate_state_plane': '228852',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.794804313097934',
  'longitude': '-73.93626991472516',
  'location': {'latitude': '40.794804313097934',
   'longitude': '-73.93626991472516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604501',
  'created_date': '2024-03-17T01: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': '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',
  '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': '60600731',
  'created_date': '2024-03-17T01:44:32.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': '11206',
  'incident_address': '167 GRAHAM AVENUE',
  'street_name': 'GRAHAM AVENUE',
  'cross_street_1': 'MONTROSE AVENUE',
  'cross_street_2': 'MESEROLE STREET',
  'intersection_street_1': 'MONTROSE AVENUE',
  'intersection_street_2': 'MESEROLE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAHAM AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:53.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030520022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999978',
  'y_coordinate_state_plane': '197117',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70770340973375',
  'longitude': '-73.94327116381723',
  'location': {'latitude': '40.70770340973375',
   'longitude': '-73.94327116381723',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599796',
  'created_date': '2024-03-17T01:44: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': '10468',
  'incident_address': '2471 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'WEST FORDHAM ROAD',
  'cross_street_2': 'WEST  188 STREET',
  'intersection_street_1': 'WEST FORDHAM ROAD',
  'intersection_street_2': 'WEST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND AVENUE',
  'status': 'In Progress',
  'community_board': '07 BRONX',
  'bbl': '2032130033',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011143',
  'y_coordinate_state_plane': '253882',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.863481152365964',
  'longitude': '-73.9027732459544',
  'location': {'latitude': '40.863481152365964',
   'longitude': '-73.9027732459544',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602658',
  'created_date': '2024-03-17T01:44: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': '11237',
  'incident_address': '296 HARMAN STREET',
  'street_name': 'HARMAN 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': 'HARMAN STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3032890012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006768',
  'y_coordinate_state_plane': '194307',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69997594873224',
  'longitude': '-73.9187899312707',
  'location': {'latitude': '40.69997594873224',
   'longitude': '-73.9187899312707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601815',
  'created_date': '2024-03-17T01:44:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Vendor Enforcement',
  'descriptor': 'Food Vendor',
  'location_type': 'Street',
  'incident_zip': '11103',
  'incident_address': '24-42 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': 'ASTORIA BOULEVARD SOUTH',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': 'ASTORIA BOULEVARD SOUTH',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006540060',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008834',
  'y_coordinate_state_plane': '219274',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76849867888951',
  'longitude': '-73.91124777844922',
  'location': {'latitude': '40.76849867888951',
   'longitude': '-73.91124777844922',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598791',
  'created_date': '2024-03-17T01:43:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11366',
  'incident_address': '76-01 160 STREET',
  'street_name': '160 STREET',
  'cross_street_1': '76 AVENUE',
  'cross_street_2': '76 ROAD',
  'intersection_street_1': '76 AVENUE',
  'intersection_street_2': '76 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': '160 STREET',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4068360040',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037355',
  'y_coordinate_state_plane': '203564',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72525345424455',
  'longitude': '-73.80840663834252',
  'location': {'latitude': '40.72525345424455',
   'longitude': '-73.80840663834252',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600758',
  'created_date': '2024-03-17T01:43: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': '10467',
  'incident_address': '831 ARNOW AVENUE',
  'street_name': 'ARNOW AVENUE',
  'cross_street_1': 'MATTHEWS AVENUE',
  'cross_street_2': 'WILLIAMSBRIDGE ROAD',
  'intersection_street_1': 'MATTHEWS AVENUE',
  'intersection_street_2': 'WILLIAMSBRIDGE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARNOW AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2045510001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022390',
  'y_coordinate_state_plane': '255473',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86780653148136',
  'longitude': '-73.86210276386369',
  'location': {'latitude': '40.86780653148136',
   'longitude': '-73.86210276386369',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600382',
  'created_date': '2024-03-17T01:42:43.000',
  'closed_date': '2024-03-17T01:49: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': '10032',
  'incident_address': '76 ST NICHOLAS PLACE',
  'street_name': 'ST NICHOLAS PLACE',
  'cross_street_1': 'WEST  153 STREET',
  'cross_street_2': 'EDGECOMBE AVENUE',
  'intersection_street_1': 'WEST  153 STREET',
  'intersection_street_2': 'EDGECOMBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ST NICHOLAS PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:49:29.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020540079',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000634',
  'y_coordinate_state_plane': '241478',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.829461589531974',
  'longitude': '-73.94079691863257',
  'location': {'latitude': '40.829461589531974',
   'longitude': '-73.94079691863257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603597',
  'created_date': '2024-03-17T01:42: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': '10002',
  'incident_address': '55 JACKSON STREET',
  'street_name': 'JACKSON STREET',
  'cross_street_1': 'CORLEARS HOOK PARK PATH',
  'cross_street_2': 'CORLEARS HOOK PARK PATH',
  'intersection_street_1': 'CORLEARS HOOK PARK PATH',
  'intersection_street_2': 'CORLEARS HOOK PARK PATH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'JACKSON STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:20:18.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002600075',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989605',
  'y_coordinate_state_plane': '198650',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.711923489150784',
  'longitude': '-73.98068399466133',
  'location': {'latitude': '40.711923489150784',
   'longitude': '-73.98068399466133',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602614',
  'created_date': '2024-03-17T01:41:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  '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',
  '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': '60599841',
  'created_date': '2024-03-17T01:41:24.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Plate Condition - Noisy',
  'location_type': 'Street',
  'incident_zip': '11206',
  'incident_address': 'LEE AVENUE',
  'street_name': 'LEE AVENUE',
  'cross_street_1': 'LEE AVENUE',
  'cross_street_2': 'MIDDLETON STREET',
  'intersection_street_1': 'LEE AVENUE',
  'intersection_street_2': 'MIDDLETON STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996877',
  'y_coordinate_state_plane': '194606',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70081627494719',
  'longitude': '-73.954460770821',
  'location': {'latitude': '40.70081627494719',
   'longitude': '-73.954460770821',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603542',
  'created_date': '2024-03-17T01:41:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '1379 70 STREET',
  'street_name': '70 STREET',
  'cross_street_1': '13 AVENUE',
  'cross_street_2': '14 AVENUE',
  'intersection_street_1': '13 AVENUE',
  'intersection_street_2': '14 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '70 STREET',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3061567501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983441',
  'y_coordinate_state_plane': '165964',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62220928540348',
  'longitude': '-74.00291421925941',
  'location': {'latitude': '40.62220928540348',
   'longitude': '-74.00291421925941',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604444',
  'created_date': '2024-03-17T01:40:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '23-63 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '23 ROAD',
  'cross_street_2': 'ASTORIA BOULEVARD NORTH',
  'intersection_street_1': '23 ROAD',
  'intersection_street_2': 'ASTORIA BOULEVARD NORTH',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4007930029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009193',
  'y_coordinate_state_plane': '219696',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76965595292058',
  'longitude': '-73.90995016506974',
  'location': {'latitude': '40.76965595292058',
   'longitude': '-73.90995016506974',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599758',
  'created_date': '2024-03-17T01:40:39.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': '10023',
  'incident_address': '101 WEST END AVENUE',
  'street_name': 'WEST END AVENUE',
  'cross_street_1': 'WEST END AVENUE',
  'cross_street_2': 'FREEDOM PLACE SOUTH',
  'intersection_street_1': 'WEST END AVENUE',
  'intersection_street_2': 'FREEDOM PLACE SOUTH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST END AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:18:39.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011710062',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987398',
  'y_coordinate_state_plane': '221654',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77506478010212',
  'longitude': '-73.98863409148143',
  'location': {'latitude': '40.77506478010212',
   'longitude': '-73.98863409148143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601617',
  'created_date': '2024-03-17T01:40:35.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': '11432',
  'incident_address': '167-20 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': '167 STREET',
  'cross_street_2': '168 STREET',
  'intersection_street_1': '167 STREET',
  'intersection_street_2': '168 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4098180077',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040986',
  'y_coordinate_state_plane': '197950',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70982187017539',
  'longitude': '-73.7953540029101',
  'location': {'latitude': '40.70982187017539',
   'longitude': '-73.7953540029101',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605417',
  'created_date': '2024-03-17T01:40: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': '10023',
  'incident_address': '145 WEST   71 STREET',
  'street_name': 'WEST   71 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   71 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:16:06.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1011430015',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989547',
  'y_coordinate_state_plane': '222511',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77741599314146',
  'longitude': '-73.98087441438393',
  'location': {'latitude': '40.77741599314146',
   'longitude': '-73.98087441438393',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601654',
  'created_date': '2024-03-17T01:39:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10468',
  'incident_address': '80 WEST KINGSBRIDGE ROAD',
  'street_name': 'WEST KINGSBRIDGE ROAD',
  'cross_street_1': 'AQUEDUCT AVENUE WEST',
  'cross_street_2': 'UNIVERSITY AVENUE',
  'intersection_street_1': 'AQUEDUCT AVENUE WEST',
  'intersection_street_2': 'UNIVERSITY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST KINGSBRIDGE ROAD',
  'status': 'In Progress',
  'community_board': '07 BRONX',
  'bbl': '2032150026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011786',
  'y_coordinate_state_plane': '255574',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86812319354234',
  'longitude': '-73.90044164590107',
  'location': {'latitude': '40.86812319354234',
   'longitude': '-73.90044164590107',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600764',
  'created_date': '2024-03-17T01:39: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': '10014',
  'incident_address': '58 PERRY STREET',
  'street_name': 'PERRY STREET',
  'cross_street_1': 'WEST    4 STREET',
  'cross_street_2': 'BLEECKER STREET',
  'intersection_street_1': 'WEST    4 STREET',
  'intersection_street_2': 'BLEECKER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PERRY STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:14:21.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006210058',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983247',
  'y_coordinate_state_plane': '207235',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73548879791035',
  'longitude': '-74.00361919795739',
  'location': {'latitude': '40.73548879791035',
   'longitude': '-74.00361919795739',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604037',
  'created_date': '2024-03-17T01:38:19.000',
  'closed_date': '2024-03-17T01:50:45.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': '10021',
  'incident_address': '1450 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   75 STREET',
  'cross_street_2': 'EAST   76 STREET',
  'intersection_street_1': 'EAST   75 STREET',
  'intersection_street_2': 'EAST   76 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:50:49.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1014500051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996263',
  'y_coordinate_state_plane': '220235',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.771162394352885',
  'longitude': '-73.95662939538269',
  'location': {'latitude': '40.771162394352885',
   'longitude': '-73.95662939538269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599786',
  'created_date': '2024-03-17T01:38: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': '10455',
  'incident_address': '720 WESTCHESTER AVENUE',
  'street_name': 'WESTCHESTER AVENUE',
  'cross_street_1': 'FOREST AVENUE',
  'cross_street_2': 'EAST  156 STREET',
  'intersection_street_1': 'FOREST AVENUE',
  'intersection_street_2': 'EAST  156 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WESTCHESTER AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:16.000',
  'community_board': '01 BRONX',
  'bbl': '2026540002',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010098',
  'y_coordinate_state_plane': '237014',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.817186555273494',
  'longitude': '-73.90661626221494',
  'location': {'latitude': '40.817186555273494',
   'longitude': '-73.90661626221494',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600755',
  'created_date': '2024-03-17T01:37: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': '10034',
  'incident_address': '1795 RIVERSIDE DRIVE',
  'street_name': 'RIVERSIDE DRIVE',
  'cross_street_1': 'HENSHAW STREET',
  'cross_street_2': 'PAYSON AVENUE',
  'intersection_street_1': 'HENSHAW STREET',
  'intersection_street_2': 'PAYSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'RIVERSIDE DRIVE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1022460125',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003504',
  'y_coordinate_state_plane': '254931',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.866380304945174',
  'longitude': '-73.93038763440725',
  'location': {'latitude': '40.866380304945174',
   'longitude': '-73.93038763440725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602638',
  'created_date': '2024-03-17T01:37:55.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': '11249',
  'incident_address': '45 SOUTH    3 STREET',
  'street_name': 'SOUTH    3 STREET',
  'cross_street_1': 'KENT AVENUE',
  'cross_street_2': 'WYTHE AVENUE',
  'intersection_street_1': 'KENT AVENUE',
  'intersection_street_2': 'WYTHE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:51.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024157503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993676',
  'y_coordinate_state_plane': '199272',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71362733030471',
  'longitude': '-73.96599863237199',
  'location': {'latitude': '40.71362733030471',
   'longitude': '-73.96599863237199',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602640',
  'created_date': '2024-03-17T01:37:08.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': '11373',
  'incident_address': '40-08 74 STREET',
  'street_name': '74 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': '41 AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': '41 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '74 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:55:36.000',
  'community_board': '04 QUEENS',
  'bbl': '4013050133',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014361',
  'y_coordinate_state_plane': '211182',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74627112362122',
  'longitude': '-73.89133067280933',
  'location': {'latitude': '40.74627112362122',
   'longitude': '-73.89133067280933',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604492',
  'created_date': '2024-03-17T01:37: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': '11420',
  'incident_address': '115-51 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:10.000',
  'community_board': '10 QUEENS',
  'bbl': '4116660041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035194',
  'y_coordinate_state_plane': '185790',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67648080105422',
  'longitude': '-73.8163375668986',
  'location': {'latitude': '40.67648080105422',
   'longitude': '-73.8163375668986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603601',
  'created_date': '2024-03-17T01:36: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': '11201',
  'incident_address': '198 SMITH STREET',
  'street_name': 'SMITH STREET',
  'cross_street_1': 'WARREN STREET',
  'cross_street_2': 'BALTIC STREET',
  'intersection_street_1': 'WARREN STREET',
  'intersection_street_2': 'BALTIC STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SMITH STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:13:02.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3003960047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986560',
  'y_coordinate_state_plane': '188827',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68496296349374',
  'longitude': '-73.9916709744675',
  'location': {'latitude': '40.68496296349374',
   'longitude': '-73.9916709744675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602605',
  'created_date': '2024-03-17T01:36:56.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': '2502 WEST STREET',
  'street_name': 'WEST STREET',
  'cross_street_1': 'AVENUE Y',
  'cross_street_2': 'AVENUE Z',
  'intersection_street_1': 'AVENUE Y',
  'intersection_street_2': 'AVENUE Z',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:57:20.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3072150010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992646',
  'y_coordinate_state_plane': '153531',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.588079298034046',
  'longitude': '-73.96977097598179',
  'location': {'latitude': '40.588079298034046',
   'longitude': '-73.96977097598179',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598844',
  'created_date': '2024-03-17T01:36:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '41 AVENUE',
  'street_name': '41 AVENUE',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': 'WARREN STREET',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': 'WARREN STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:41.000',
  'community_board': '04 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020453',
  'y_coordinate_state_plane': '211571',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74731598804077',
  'longitude': '-73.86934283799745',
  'location': {'latitude': '40.74731598804077',
   'longitude': '-73.86934283799745',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603578',
  'created_date': '2024-03-17T01:36:25.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': '11249',
  'incident_address': '90 SOUTH    4 STREET',
  'street_name': 'SOUTH    4 STREET',
  'cross_street_1': 'BERRY STREET',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'BERRY STREET',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    4 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:31.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024430009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994164',
  'y_coordinate_state_plane': '198814',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.712369696188524',
  'longitude': '-73.9642389985739',
  'location': {'latitude': '40.712369696188524',
   'longitude': '-73.9642389985739',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598832',
  'created_date': '2024-03-17T01:36: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': '11228',
  'incident_address': '1278 85 STREET',
  'street_name': '85 STREET',
  'cross_street_1': '12 AVENUE',
  'cross_street_2': '13 AVENUE',
  'intersection_street_1': '12 AVENUE',
  'intersection_street_2': '13 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '85 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:55:21.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3063380039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980380',
  'y_coordinate_state_plane': '163357',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.615052803861744',
  'longitude': '-74.01393920826389',
  'location': {'latitude': '40.615052803861744',
   'longitude': '-74.01393920826389',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604963',
  'created_date': '2024-03-17T01:36:05.000',
  'closed_date': '2024-03-17T01:36:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '157 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:36:52.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984258',
  'y_coordinate_state_plane': '180006',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66075159971911',
  'longitude': '-73.9999711653593',
  'location': {'latitude': '40.66075159971911',
   'longitude': '-73.9999711653593',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599797',
  'created_date': '2024-03-17T01:35: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': '11219',
  'incident_address': '1332 62 STREET',
  'street_name': '62 STREET',
  'cross_street_1': '13 AVENUE',
  'cross_street_2': '14 AVENUE',
  'intersection_street_1': '13 AVENUE',
  'intersection_street_2': '14 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '62 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:07:47.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984554',
  'y_coordinate_state_plane': '167780',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.627193856636666',
  'longitude': '-73.99890483458591',
  'location': {'latitude': '40.627193856636666',
   'longitude': '-73.99890483458591',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602738',
  'created_date': '2024-03-17T01:35:12.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-03-17T02:10:18.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982315',
  'y_coordinate_state_plane': '199144',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': 'R',
  'bridge_highway_direction': 'R W platform',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.71328081043847',
  'longitude': '-74.00697987510476',
  'location': {'latitude': '40.71328081043847',
   'longitude': '-74.00697987510476',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604503',
  'created_date': '2024-03-17T01:35:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10039',
  'incident_address': '224 WEST  149 STREET',
  'street_name': 'WEST  149 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  149 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1020340048',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001354',
  'y_coordinate_state_plane': '239703',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82458835688143',
  'longitude': '-73.93819974660731',
  'location': {'latitude': '40.82458835688143',
   'longitude': '-73.93819974660731',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601695',
  'created_date': '2024-03-17T01:35: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': '10458',
  'incident_address': '2381 VALENTINE AVENUE',
  'street_name': 'VALENTINE AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST  187 STREET',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST  187 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VALENTINE AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2031520032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012684',
  'y_coordinate_state_plane': '252305',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Other',
  'latitude': '40.85914793650589',
  'longitude': '-73.89720873576061',
  'location': {'latitude': '40.85914793650589',
   'longitude': '-73.89720873576061',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605054',
  'created_date': '2024-03-17T01:34:48.000',
  'closed_date': '2024-03-17T01:41:39.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': '10034',
  'incident_address': '1795 RIVERSIDE DRIVE',
  'street_name': 'RIVERSIDE DRIVE',
  'cross_street_1': 'HENSHAW STREET',
  'cross_street_2': 'PAYSON AVENUE',
  'intersection_street_1': 'HENSHAW STREET',
  'intersection_street_2': 'PAYSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'RIVERSIDE DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:41:45.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022460125',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003504',
  'y_coordinate_state_plane': '254931',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.866380304945174',
  'longitude': '-73.93038763440725',
  'location': {'latitude': '40.866380304945174',
   'longitude': '-73.93038763440725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602902',
  'created_date': '2024-03-17T01:34:46.000',
  'closed_date': '2024-03-17T01:47:02.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': '27-25 MCINTOSH STREET',
  'street_name': 'MCINTOSH STREET',
  'cross_street_1': '27 AVENUE',
  'cross_street_2': '29 AVENUE',
  'intersection_street_1': '27 AVENUE',
  'intersection_street_2': '29 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': 'MCINTOSH STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:47:05.000',
  'community_board': '03 QUEENS',
  'bbl': '4016600065',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020746',
  'y_coordinate_state_plane': '217288',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.763006476662646',
  'longitude': '-73.86825436678316',
  'location': {'latitude': '40.763006476662646',
   'longitude': '-73.86825436678316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599360',
  'created_date': '2024-03-17T01:34:36.000',
  'closed_date': '2024-03-17T01:37:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10032',
  'incident_address': '155 AUDOBON AVENUE',
  'street_name': 'AUDOBON AVENUE',
  'cross_street_1': 'WEST  172 STREET',
  'cross_street_2': 'WEST  173 STREET',
  'intersection_street_1': 'WEST  172 STREET',
  'intersection_street_2': 'WEST  173 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AUDUBON 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-03-17T01:37:10.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021290037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001881',
  'y_coordinate_state_plane': '246530',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84332546223854',
  'longitude': '-73.93627764419634',
  'location': {'latitude': '40.84332546223854',
   'longitude': '-73.93627764419634',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605432',
  'created_date': '2024-03-17T01:34:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10465',
  'incident_address': '2965 MONSIGNOR HALPIN PLACE',
  'street_name': 'MONSIGNOR HALPIN PLACE',
  'cross_street_1': 'HOLLYWOOD AVENUE',
  'cross_street_2': 'THROGS NECK BOULEVARD',
  'intersection_street_1': 'HOLLYWOOD AVENUE',
  'intersection_street_2': 'THROGS NECK BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MONSIGNOR HALPIN PLACE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2054520047',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1035980',
  'y_coordinate_state_plane': '236496',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81565114673541',
  'longitude': '-73.81311389452391',
  'location': {'latitude': '40.81565114673541',
   'longitude': '-73.81311389452391',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603546',
  'created_date': '2024-03-17T01:34:11.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': '2444 EAST   23 STREET',
  'street_name': 'EAST   23 STREET',
  'cross_street_1': 'AVENUE X',
  'cross_street_2': 'AVENUE Y',
  'intersection_street_1': 'AVENUE X',
  'intersection_street_2': 'AVENUE Y',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   23 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3074220323',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998945',
  'y_coordinate_state_plane': '154994',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59208673512246',
  'longitude': '-73.94708882983214',
  'location': {'latitude': '40.59208673512246',
   'longitude': '-73.94708882983214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605430',
  'created_date': '2024-03-17T01:33:56.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': '10456',
  'incident_address': '1225 SHERMAN AVENUE',
  'street_name': 'SHERMAN 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': 'SHERMAN AVENUE',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2024530022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007662',
  'y_coordinate_state_plane': '243375',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83465247349924',
  'longitude': '-73.91539484905138',
  'location': {'latitude': '40.83465247349924',
   'longitude': '-73.91539484905138',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599810',
  'created_date': '2024-03-17T01:33:43.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': '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': 'In Progress',
  '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',
  'latitude': '40.85017807004264',
  'longitude': '-73.91749686918405',
  'location': {'latitude': '40.85017807004264',
   'longitude': '-73.91749686918405',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604483',
  'created_date': '2024-03-17T01:33: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': '10469',
  'incident_address': '3326 CORSA AVENUE',
  'street_name': 'CORSA AVENUE',
  'cross_street_1': 'GIVAN AVENUE',
  'cross_street_2': 'BOSTON ROAD',
  'intersection_street_1': 'GIVAN AVENUE',
  'intersection_street_2': 'BOSTON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CORSA AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2047430046',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026712',
  'y_coordinate_state_plane': '258174',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875200205342594',
  'longitude': '-73.84645925192156',
  'location': {'latitude': '40.875200205342594',
   'longitude': '-73.84645925192156',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602402',
  'created_date': '2024-03-17T01:33:28.000',
  'closed_date': '2024-03-17T01:47: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': '11373',
  'incident_address': '41 AVENUE',
  'street_name': '41 AVENUE',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': 'WARREN STREET',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': 'WARREN STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:47:16.000',
  'community_board': '04 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020453',
  'y_coordinate_state_plane': '211571',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.74731598804077',
  'longitude': '-73.86934283799745',
  'location': {'latitude': '40.74731598804077',
   'longitude': '-73.86934283799745',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598750',
  'created_date': '2024-03-17T01:33:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '126 LINDEN STREET',
  'street_name': 'LINDEN 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': 'LINDEN STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3033320025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006652',
  'y_coordinate_state_plane': '191975',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69357544815912',
  'longitude': '-73.91921603547296',
  'location': {'latitude': '40.69357544815912',
   'longitude': '-73.91921603547296',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600768',
  'created_date': '2024-03-17T01:33: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': '11385',
  'incident_address': '63-14 FOREST AVENUE',
  'street_name': 'FOREST 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': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:57:16.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010605',
  'y_coordinate_state_plane': '198104',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71038721776248',
  'longitude': '-73.90493712722406',
  'location': {'latitude': '40.71038721776248',
   'longitude': '-73.90493712722406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602667',
  'created_date': '2024-03-17T01:32: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': '11211',
  'incident_address': 'HOOPER STREET',
  'street_name': 'HOOPER STREET',
  'cross_street_1': 'HOOPER STREET',
  'cross_street_2': 'SOUTH SECOND STREET',
  'intersection_street_1': 'HOOPER STREET',
  'intersection_street_2': 'SOUTH SECOND STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:13.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997458',
  'y_coordinate_state_plane': '197849',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70971669665864',
  'longitude': '-73.95235903589781',
  'location': {'latitude': '40.70971669665864',
   'longitude': '-73.95235903589781',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598577',
  'created_date': '2024-03-17T01:32:36.000',
  'closed_date': '2024-03-17T01:39:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10025',
  'incident_address': '161 WEST  106 STREET',
  'street_name': 'WEST  106 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DUKE ELLINGTON BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:39:18.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018610001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993923',
  'y_coordinate_state_plane': '230804',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800174346139464',
  'longitude': '-73.96506229130087',
  'location': {'latitude': '40.800174346139464',
   'longitude': '-73.96506229130087',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599277',
  'created_date': '2024-03-17T01:32:22.000',
  'closed_date': '2024-03-17T01:34:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10002',
  'incident_address': '14 ORCHARD STREET',
  'street_name': 'ORCHARD STREET',
  'cross_street_1': 'CANAL STREET',
  'cross_street_2': 'HESTER STREET',
  'intersection_street_1': 'CANAL STREET',
  'intersection_street_2': 'HESTER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ORCHARD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:34:32.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002987501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986547',
  'y_coordinate_state_plane': '199851',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.715221270038704',
  'longitude': '-73.99171408791376',
  'location': {'latitude': '40.715221270038704',
   'longitude': '-73.99171408791376',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599788',
  'created_date': '2024-03-17T01:32: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': '11358',
  'incident_address': '43-59 169 STREET',
  'street_name': '169 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': '45 AVENUE',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': '45 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '169 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4054270010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040289',
  'y_coordinate_state_plane': '215426',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75779350290689',
  'longitude': '-73.79772250332996',
  'location': {'latitude': '40.75779350290689',
   'longitude': '-73.79772250332996',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600835',
  'created_date': '2024-03-17T01:32:17.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Chronic',
  'location_type': 'Street/Sidewalk',
  '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': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2024-03-17T01:41:40.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1001710031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983605',
  'y_coordinate_state_plane': '200302',
  'open_data_channel_type': 'MOBILE',
  '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': '60598833',
  'created_date': '2024-03-17T01:32:11.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': '765 EAST  163 STREET',
  'street_name': 'EAST  163 STREET',
  'cross_street_1': 'TRINITY AVENUE',
  'cross_street_2': 'TINTON AVENUE',
  'intersection_street_1': 'TRINITY AVENUE',
  'intersection_street_2': 'TINTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  163 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:58.000',
  'community_board': '03 BRONX',
  'bbl': '2026390001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010892',
  'y_coordinate_state_plane': '239085',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82286850398297',
  'longitude': '-73.90373947664109',
  'location': {'latitude': '40.82286850398297',
   'longitude': '-73.90373947664109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602642',
  'created_date': '2024-03-17T01:32: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': '10465',
  'incident_address': '2918 BRUCKNER BOULEVARD',
  'street_name': 'BRUCKNER BOULEVARD',
  'cross_street_1': 'EAST TREMONT AVENUE',
  'cross_street_2': 'EDISON AVENUE',
  'intersection_street_1': 'EAST TREMONT AVENUE',
  'intersection_street_2': 'EDISON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRUCKNER BOULEVARD',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2054190122',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031969',
  'y_coordinate_state_plane': '242900',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83325085108711',
  'longitude': '-73.82755893872277',
  'location': {'latitude': '40.83325085108711',
   'longitude': '-73.82755893872277',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604489',
  'created_date': '2024-03-17T01:31:50.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': '11212',
  'incident_address': '60 EAST   93 STREET',
  'street_name': 'EAST   93 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'RUTLAND ROAD',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'RUTLAND ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   93 STREET',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3045950215',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004501',
  'y_coordinate_state_plane': '180649',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.662493333971206',
  'longitude': '-73.9270067970956',
  'location': {'latitude': '40.662493333971206',
   'longitude': '-73.9270067970956',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602654',
  'created_date': '2024-03-17T01:31:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10473',
  'incident_address': '329 THIERIOT AVENUE',
  'street_name': 'THIERIOT AVENUE',
  'cross_street_1': "O'BRIEN AVENUE",
  'cross_street_2': 'PATTERSON AVENUE',
  'intersection_street_1': "O'BRIEN AVENUE",
  'intersection_street_2': 'PATTERSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'THIERIOT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:16:49.000',
  'community_board': '09 BRONX',
  'bbl': '2034700051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023069',
  'y_coordinate_state_plane': '235036',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.811710028528545',
  'longitude': '-73.85976609844637',
  'location': {'latitude': '40.811710028528545',
   'longitude': '-73.85976609844637',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602379',
  'created_date': '2024-03-17T01:31:16.000',
  'closed_date': '2024-03-17T01:45:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10460',
  'incident_address': '1705 HOE AVENUE',
  'street_name': 'HOE AVENUE',
  'cross_street_1': 'EAST  173 STREET',
  'cross_street_2': 'EAST  174 STREET',
  'intersection_street_1': 'EAST  173 STREET',
  'intersection_street_2': 'EAST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HOE 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-03-17T01:45:54.000',
  'community_board': '03 BRONX',
  'bbl': '2029830030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015446',
  'y_coordinate_state_plane': '244002',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83634934042209',
  'longitude': '-73.88726251817741',
  'location': {'latitude': '40.83634934042209',
   'longitude': '-73.88726251817741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605427',
  'created_date': '2024-03-17T01:31:12.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': '11369',
  'incident_address': '32-37 100 STREET',
  'street_name': '100 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': '100 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:30.000',
  'community_board': '03 QUEENS',
  'bbl': '4016950053',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020644',
  'y_coordinate_state_plane': '215539',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75820634623359',
  'longitude': '-73.86863204092458',
  'location': {'latitude': '40.75820634623359',
   'longitude': '-73.86863204092458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604388',
  'created_date': '2024-03-17T01:30:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '9422 RIDGE BOULEVARD',
  'street_name': 'RIDGE BOULEVARD',
  'cross_street_1': '94 STREET',
  'cross_street_2': '95 STREET',
  'intersection_street_1': '94 STREET',
  'intersection_street_2': '95 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGE BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:53:40.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3061120001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '974177',
  'y_coordinate_state_plane': '164461',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.618078174249284',
  'longitude': '-74.03628320727398',
  'location': {'latitude': '40.618078174249284',
   'longitude': '-74.03628320727398',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602668',
  'created_date': '2024-03-17T01:30: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': '10461',
  'incident_address': '1506 OVERING STREET',
  'street_name': 'OVERING STREET',
  'cross_street_1': 'FRISBY AVENUE',
  'cross_street_2': 'GLEBE AVENUE',
  'intersection_street_1': 'FRISBY AVENUE',
  'intersection_street_2': 'GLEBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'OVERING STREET',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2039870058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026954',
  'y_coordinate_state_plane': '245669',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84087661482481',
  'longitude': '-73.84566386020006',
  'location': {'latitude': '40.84087661482481',
   'longitude': '-73.84566386020006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601676',
  'created_date': '2024-03-17T01:30: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': '10463',
  'incident_address': '91 VAN CORTLANDT AVENUE WEST',
  'street_name': 'VAN CORTLANDT AVENUE WEST',
  'cross_street_1': 'SEDGWICK AVENUE',
  'cross_street_2': 'ORLOFF AVENUE',
  'intersection_street_1': 'SEDGWICK AVENUE',
  'intersection_street_2': 'ORLOFF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VAN CORTLANDT AVENUE WEST',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:20.000',
  'community_board': '08 BRONX',
  'bbl': '2032520268',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013833',
  'y_coordinate_state_plane': '261150',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.883420959249186',
  'longitude': '-73.89301595756649',
  'location': {'latitude': '40.883420959249186',
   'longitude': '-73.89301595756649',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600724',
  'created_date': '2024-03-17T01:30:30.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': '10040',
  'incident_address': '142 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'ARDEN STREET',
  'cross_street_2': 'THAYER STREET',
  'intersection_street_1': 'ARDEN STREET',
  'intersection_street_2': 'THAYER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021740073',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004746',
  'y_coordinate_state_plane': '253038',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.861181798105385',
  'longitude': '-73.92590300519447',
  'location': {'latitude': '40.861181798105385',
   'longitude': '-73.92590300519447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598751',
  'created_date': '2024-03-17T01:30:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11434',
  'incident_address': '170-34 130 AVENUE',
  'street_name': '130 AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'BEND',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '130 AVENUE',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4124950002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1047739',
  'y_coordinate_state_plane': '185953',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.676847113784596',
  'longitude': '-73.77110919855772',
  'location': {'latitude': '40.676847113784596',
   'longitude': '-73.77110919855772',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604481',
  'created_date': '2024-03-17T01:30:18.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': '11373',
  'incident_address': '87-19 JUSTICE AVENUE',
  'street_name': 'JUSTICE AVENUE',
  'cross_street_1': '52 AVENUE',
  'cross_street_2': '53 AVENUE',
  'intersection_street_1': '52 AVENUE',
  'intersection_street_2': '53 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'JUSTICE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:57:45.000',
  'community_board': '04 QUEENS',
  'bbl': '4018380079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018614',
  'y_coordinate_state_plane': '207946',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737373614451336',
  'longitude': '-73.87599832675195',
  'location': {'latitude': '40.737373614451336',
   'longitude': '-73.87599832675195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600363',
  'created_date': '2024-03-17T01:29:53.000',
  'closed_date': '2024-03-17T01:37:01.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': '11211',
  'incident_address': '390 SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'HOOPER STREET',
  'cross_street_2': 'HEWES STREET',
  'intersection_street_1': 'HOOPER STREET',
  'intersection_street_2': 'HEWES STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 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-03-17T01:37:05.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024250014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997600',
  'y_coordinate_state_plane': '197776',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70951611588307',
  'longitude': '-73.95184698988226',
  'location': {'latitude': '40.70951611588307',
   'longitude': '-73.95184698988226',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604437',
  'created_date': '2024-03-17T01:29:53.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': '23-44 35 STREET',
  'street_name': '35 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '24 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '24 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '35 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4008340150',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008533',
  'y_coordinate_state_plane': '220573',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7720649256762',
  'longitude': '-73.91232974295978',
  'location': {'latitude': '40.7720649256762',
   'longitude': '-73.91232974295978',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601678',
  'created_date': '2024-03-17T01:29: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': '11222',
  'incident_address': '97 ECKFORD STREET',
  'street_name': 'ECKFORD STREET',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ECKFORD STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:11.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026810029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998543',
  'y_coordinate_state_plane': '202736',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72312865235421',
  'longitude': '-73.94843508927524',
  'location': {'latitude': '40.72312865235421',
   'longitude': '-73.94843508927524',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599811',
  'created_date': '2024-03-17T01:29:26.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': '57 LENOX AVENUE',
  'street_name': 'LENOX AVENUE',
  'cross_street_1': 'WEST  112 STREET',
  'cross_street_2': 'WEST  113 STREET',
  'intersection_street_1': 'WEST  112 STREET',
  'intersection_street_2': 'WEST  113 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LENOX AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997774',
  'y_coordinate_state_plane': '230751',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80002382068097',
  'longitude': '-73.95115305324492',
  'location': {'latitude': '40.80002382068097',
   'longitude': '-73.95115305324492',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603610',
  'created_date': '2024-03-17T01:29:20.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': '10314',
  'incident_address': '303 TRAVIS AVENUE',
  'street_name': 'TRAVIS AVENUE',
  'cross_street_1': 'EVANS STREET',
  'cross_street_2': 'KELLY BOULEVARD',
  'intersection_street_1': 'EVANS STREET',
  'intersection_street_2': 'KELLY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'TRAVIS AVENUE',
  'status': 'In Progress',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023730216',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941854',
  'y_coordinate_state_plane': '153397',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.58761408251403',
  'longitude': '-74.15264190060606',
  'location': {'latitude': '40.58761408251403',
   'longitude': '-74.15264190060606',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602671',
  'created_date': '2024-03-17T01:28:44.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': '11356',
  'incident_address': '123-12 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': '123 STREET',
  'cross_street_2': '124 STREET',
  'intersection_street_1': '123 STREET',
  'intersection_street_2': '124 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '6 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4039470045',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027359',
  'y_coordinate_state_plane': '227720',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.79160975139556',
  'longitude': '-73.84431544707047',
  'location': {'latitude': '40.79160975139556',
   'longitude': '-73.84431544707047',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598174',
  'created_date': '2024-03-17T01:28:41.000',
  'closed_date': '2024-03-17T01:34:49.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': '10031',
  'incident_address': 'WEST  144 STREET',
  'street_name': 'WEST  144 STREET',
  'cross_street_1': 'AMSTERDAM AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'AMSTERDAM AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:34:52.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other'},
 {'unique_key': '60604504',
  'created_date': '2024-03-17T01:28:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': 'EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'EAST   17 STREET',
  'cross_street_2': 'FOSTER AVENUE',
  'intersection_street_1': 'EAST   17 STREET',
  'intersection_street_2': 'FOSTER AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994989',
  'y_coordinate_state_plane': '170593',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.634908442380414',
  'longitude': '-73.96130808759666',
  'location': {'latitude': '40.634908442380414',
   'longitude': '-73.96130808759666',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599079',
  'created_date': '2024-03-17T01:28:20.000',
  'closed_date': '2024-03-17T01:36:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '470 63 STREET',
  'street_name': '63 STREET',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': '5 AVENUE',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': '5 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '63 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-03-17T01:36:18.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3058090033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '979059',
  'y_coordinate_state_plane': '171802',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63823187858141',
  'longitude': '-74.01870376342747',
  'location': {'latitude': '40.63823187858141',
   'longitude': '-74.01870376342747',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605395',
  'created_date': '2024-03-17T01:27:59.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': '11379',
  'incident_address': '74-17 METROPOLITAN AVENUE',
  'street_name': 'METROPOLITAN AVENUE',
  'cross_street_1': '75 STREET',
  'cross_street_2': '78 STREET',
  'intersection_street_1': '75 STREET',
  'intersection_street_2': '78 STREET',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': 'METROPOLITAN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:57:45.000',
  'community_board': '05 QUEENS',
  'bbl': '4030650022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018247',
  'y_coordinate_state_plane': '199041',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.712932994008206',
  'longitude': '-73.87736762121531',
  'location': {'latitude': '40.712932994008206',
   'longitude': '-73.87736762121531',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602672',
  'created_date': '2024-03-17T01:27: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': '10456',
  'incident_address': '1104 GRANT AVENUE',
  'street_name': 'GRANT AVENUE',
  'cross_street_1': 'EAST  166 STREET',
  'cross_street_2': 'MCCLELLAN STREET',
  'intersection_street_1': 'EAST  166 STREET',
  'intersection_street_2': 'MCCLELLAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRANT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:16:51.000',
  'community_board': '04 BRONX',
  'bbl': '2024490003',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007402',
  'y_coordinate_state_plane': '242135',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831249717419475',
  'longitude': '-73.91633870358324',
  'location': {'latitude': '40.831249717419475',
   'longitude': '-73.91633870358324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601655',
  'created_date': '2024-03-17T01:27: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': '10461',
  'incident_address': '3363 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'BAISLEY AVENUE',
  'cross_street_2': 'HASKIN STREET',
  'intersection_street_1': 'BAISLEY AVENUE',
  'intersection_street_2': 'HASKIN STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2053110002',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031498',
  'y_coordinate_state_plane': '243335',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83444733074226',
  'longitude': '-73.82925791234483',
  'location': {'latitude': '40.83444733074226',
   'longitude': '-73.82925791234483',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600760',
  'created_date': '2024-03-17T01:26:54.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': '11221',
  'incident_address': '490 KOSCIUSKO STREET',
  'street_name': 'KOSCIUSKO STREET',
  'cross_street_1': 'LEWIS AVENUE',
  'cross_street_2': 'STUYVESANT AVENUE',
  'intersection_street_1': 'LEWIS AVENUE',
  'intersection_street_2': 'STUYVESANT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KOSCIUSZKO STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:05.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016060035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002350',
  'y_coordinate_state_plane': '191590',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.692528556459216',
  'longitude': '-73.93473052729148',
  'location': {'latitude': '40.692528556459216',
   'longitude': '-73.93473052729148',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598828',
  'created_date': '2024-03-17T01:26:41.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': '2926 WEST   25 STREET',
  'street_name': 'WEST   25 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   25 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:02:11.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070530014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986455',
  'y_coordinate_state_plane': '148782',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.575047934626944',
  'longitude': '-73.99206264978619',
  'location': {'latitude': '40.575047934626944',
   'longitude': '-73.99206264978619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603490',
  'created_date': '2024-03-17T01:26:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1505 44 STREET',
  'street_name': '44 STREET',
  'cross_street_1': '15 AVENUE',
  'cross_street_2': '16 AVENUE',
  'intersection_street_1': '15 AVENUE',
  'intersection_street_2': '16 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '44 STREET',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'bbl': '3054300001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988580',
  'y_coordinate_state_plane': '170601',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63493585222258',
  'longitude': '-73.98439928811271',
  'location': {'latitude': '40.63493585222258',
   'longitude': '-73.98439928811271',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604477',
  'created_date': '2024-03-17T01:26:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '11357',
  'incident_address': 'FRANCIS LEWIS PARK',
  'street_name': 'FRANCIS LEWIS PARK',
  'cross_street_1': 'DEAD END',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'UNRECOGNIZED',
  'city': 'WHITESTONE',
  'landmark': 'FRANCIS LEWIS PARK',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:33.000',
  'community_board': '07 QUEENS',
  'bbl': '4044480110',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032646',
  'y_coordinate_state_plane': '229535',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Francis Lewis Park',
  'park_borough': 'QUEENS',
  'latitude': '40.796564053276995',
  'longitude': '-73.82520885681878',
  'location': {'latitude': '40.796564053276995',
   'longitude': '-73.82520885681878',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603615',
  'created_date': '2024-03-17T01:26: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': '11212',
  'incident_address': '530 HERZL STREET',
  'street_name': 'HERZL STREET',
  'cross_street_1': 'LOTT AVENUE',
  'cross_street_2': 'HEGEMAN AVENUE',
  'intersection_street_1': 'LOTT AVENUE',
  'intersection_street_2': 'HEGEMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HERZL STREET',
  'status': 'In Progress',
  'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
  'resolution_action_updated_date': '2024-03-17T02:20:06.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3036200038',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008590',
  'y_coordinate_state_plane': '178514',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65662293540622',
  'longitude': '-73.91227602044573',
  'location': {'latitude': '40.65662293540622',
   'longitude': '-73.91227602044573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598788',
  'created_date': '2024-03-17T01:25: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': '68-07 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': '68 AVENUE',
  'cross_street_2': '68 ROAD',
  'intersection_street_1': '68 AVENUE',
  'intersection_street_2': '68 ROAD',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4035040007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011590',
  'y_coordinate_state_plane': '195564',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70341253309268',
  'longitude': '-73.90139453384607',
  'location': {'latitude': '40.70341253309268',
   'longitude': '-73.90139453384607',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603143',
  'created_date': '2024-03-17T01:25:01.000',
  'closed_date': '2024-03-17T01:47:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11222',
  'incident_address': '100 SUTTON STREET',
  'street_name': 'SUTTON STREET',
  'cross_street_1': 'NASSAU AVENUE',
  'cross_street_2': 'NORMAN AVENUE',
  'intersection_street_1': 'NASSAU AVENUE',
  'intersection_street_2': 'NORMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SUTTON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:47:50.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026590044',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000655',
  'y_coordinate_state_plane': '203968',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72650652808464',
  'longitude': '-73.94081261780082',
  'location': {'latitude': '40.72650652808464',
   'longitude': '-73.94081261780082',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604494',
  'created_date': '2024-03-17T01:24: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': '10472',
  'incident_address': '1118 BOYNTON AVENUE',
  'street_name': 'BOYNTON AVENUE',
  'cross_street_1': 'WATSON AVENUE',
  'cross_street_2': 'WESTCHESTER AVENUE',
  'intersection_street_1': 'WATSON AVENUE',
  'intersection_street_2': 'WESTCHESTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BOYNTON AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037410012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018081',
  'y_coordinate_state_plane': '240472',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82665081256112',
  'longitude': '-73.87775785298022',
  'location': {'latitude': '40.82665081256112',
   'longitude': '-73.87775785298022',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601697',
  'created_date': '2024-03-17T01:24:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '615 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'NEWKIRK AVENUE',
  'cross_street_2': 'FOSTER AVENUE',
  'intersection_street_1': 'NEWKIRK AVENUE',
  'intersection_street_2': 'FOSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   17 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:05.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052170043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994957',
  'y_coordinate_state_plane': '170839',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.635583698749585',
  'longitude': '-73.96142299115428',
  'location': {'latitude': '40.635583698749585',
   'longitude': '-73.96142299115428',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601262',
  'created_date': '2024-03-17T01:23:58.000',
  'closed_date': '2024-03-17T01:48: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': '10452',
  'incident_address': '16 ELLIOT PLACE',
  'street_name': 'ELLIOT PLACE',
  'cross_street_1': 'JEROME AVENUE',
  'cross_street_2': 'WALTON AVENUE',
  'intersection_street_1': 'JEROME AVENUE',
  'intersection_street_2': 'WALTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ELLIOT PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:48:44.000',
  'community_board': '04 BRONX',
  'bbl': '2028410010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007037',
  'y_coordinate_state_plane': '245107',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83940794427555',
  'longitude': '-73.917647558148',
  'location': {'latitude': '40.83940794427555',
   'longitude': '-73.917647558148',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599745',
  'created_date': '2024-03-17T01:23:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10473',
  'incident_address': '1950 LAFAYETTE AVENUE',
  'street_name': 'LAFAYETTE AVENUE',
  'cross_street_1': 'WHITE PLAINS ROAD',
  'cross_street_2': 'STICKBALL BOULEVARD',
  'intersection_street_1': 'WHITE PLAINS ROAD',
  'intersection_street_2': 'STICKBALL BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LAFAYETTE AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2036060001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023730',
  'y_coordinate_state_plane': '238832',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.822126040600146',
  'longitude': '-73.85735590516272',
  'location': {'latitude': '40.822126040600146',
   'longitude': '-73.85735590516272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600512',
  'created_date': '2024-03-17T01:23:43.000',
  'closed_date': '2024-03-17T01:48: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': '10474',
  'incident_address': '550 FOOD CENTER DRIVE',
  'street_name': 'FOOD CENTER DRIVE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'FARRAGUT STREET',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'FARRAGUT STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FOOD CENTER DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:48:36.000',
  'community_board': '02 BRONX',
  'bbl': '2027810520',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019850',
  'y_coordinate_state_plane': '232754',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.80546013486542',
  'longitude': '-73.87140684222109',
  'location': {'latitude': '40.80546013486542',
   'longitude': '-73.87140684222109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601195',
  'created_date': '2024-03-17T01:23:23.000',
  'closed_date': '2024-03-17T01:39:28.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': '10036',
  'incident_address': '667 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': 'WEST   46 STREET',
  'cross_street_2': 'WEST   47 STREET',
  'intersection_street_1': 'WEST   46 STREET',
  'intersection_street_2': 'WEST   47 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '10 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-03-17T01:39:34.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010750036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986118',
  'y_coordinate_state_plane': '217148',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76269734446964',
  'longitude': '-73.99325680600393',
  'location': {'latitude': '40.76269734446964',
   'longitude': '-73.99325680600393',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601628',
  'created_date': '2024-03-17T01:23:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '633 74 STREET',
  'street_name': '74 STREET',
  'cross_street_1': 'STEWART AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'STEWART AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '74 STREET',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3059210072',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978980',
  'y_coordinate_state_plane': '168175',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62827648618837',
  'longitude': '-74.01898557697571',
  'location': {'latitude': '40.62827648618837',
   'longitude': '-74.01898557697571',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604434',
  'created_date': '2024-03-17T01:23:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': '459 EAST   95 STREET',
  'street_name': 'EAST   95 STREET',
  'cross_street_1': 'WILLMOHR STREET',
  'cross_street_2': 'CHURCH AVENUE',
  'intersection_street_1': 'WILLMOHR STREET',
  'intersection_street_2': 'CHURCH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   95 STREET',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3046920074',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007168',
  'y_coordinate_state_plane': '178324',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65610522181397',
  'longitude': '-73.91740170405582',
  'location': {'latitude': '40.65610522181397',
   'longitude': '-73.91740170405582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599800',
  'created_date': '2024-03-17T01:23: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': '193 QUENTIN ROAD',
  'street_name': 'QUENTIN ROAD',
  'cross_street_1': 'WEST    6 STREET',
  'cross_street_2': 'WEST    5 STREET',
  'intersection_street_1': 'WEST    6 STREET',
  'intersection_street_2': 'WEST    5 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'QUENTIN ROAD',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3066260043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990045',
  'y_coordinate_state_plane': '160047',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60596648441589',
  'longitude': '-73.97913004689299',
  'location': {'latitude': '40.60596648441589',
   'longitude': '-73.97913004689299',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604457',
  'created_date': '2024-03-17T01:23: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': '11105',
  'incident_address': '20-30 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '20 ROAD',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '20 ROAD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4008090045',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011258',
  'y_coordinate_state_plane': '221933',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.775789861408725',
  'longitude': '-73.90248606662297',
  'location': {'latitude': '40.775789861408725',
   'longitude': '-73.90248606662297',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601567',
  'created_date': '2024-03-17T01:23:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10470',
  'incident_address': '4219 ONEIDA AVENUE',
  'street_name': 'ONEIDA AVENUE',
  'cross_street_1': 'EAST  233 STREET',
  'cross_street_2': 'EAST  235 STREET',
  'intersection_street_1': 'EAST  233 STREET',
  'intersection_street_2': 'EAST  235 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ONEIDA AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2033650049',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019500',
  'y_coordinate_state_plane': '265965',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8966157843628',
  'longitude': '-73.87249648410412',
  'location': {'latitude': '40.8966157843628',
   'longitude': '-73.87249648410412',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601421',
  'created_date': '2024-03-17T01:22:55.000',
  'closed_date': '2024-03-17T01:29: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': '10002',
  'incident_address': '157 LUDLOW STREET',
  'street_name': 'LUDLOW STREET',
  'cross_street_1': 'RIVINGTON STREET',
  'cross_street_2': 'STANTON STREET',
  'intersection_street_1': 'RIVINGTON STREET',
  'intersection_street_2': 'STANTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LUDLOW STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:29:38.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004117502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987604',
  'y_coordinate_state_plane': '201957',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72100139658003',
  'longitude': '-73.9879001482633',
  'location': {'latitude': '40.72100139658003',
   'longitude': '-73.9879001482633',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605046',
  'created_date': '2024-03-17T01:22:24.000',
  'closed_date': '2024-03-17T01:32:13.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': '11216',
  'incident_address': '302 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  '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': 'LEXINGTON 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-03-17T01:32:17.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018030123',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998198',
  'y_coordinate_state_plane': '189868',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687809581263075',
  'longitude': '-73.94970640092893',
  'location': {'latitude': '40.687809581263075',
   'longitude': '-73.94970640092893',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600723',
  'created_date': '2024-03-17T01:22:23.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': '10040',
  'incident_address': '141 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'ARDEN STREET',
  'cross_street_2': 'THAYER STREET',
  'intersection_street_1': 'ARDEN STREET',
  'intersection_street_2': 'THAYER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021730025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004643',
  'y_coordinate_state_plane': '252983',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.86103107825989',
  'longitude': '-73.92627553723854',
  'location': {'latitude': '40.86103107825989',
   'longitude': '-73.92627553723854',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604435',
  'created_date': '2024-03-17T01:22:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10473',
  'incident_address': '1965 LAFAYETTE AVENUE',
  'street_name': 'LAFAYETTE AVENUE',
  'cross_street_1': 'STICKBALL BOULEVARD',
  'cross_street_2': 'PUGSLEY AVENUE',
  'intersection_street_1': 'STICKBALL BOULEVARD',
  'intersection_street_2': 'PUGSLEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LAFAYETTE AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2036720001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024052',
  'y_coordinate_state_plane': '238896',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82230025720139',
  'longitude': '-73.85619211834099',
  'location': {'latitude': '40.82230025720139',
   'longitude': '-73.85619211834099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600334',
  'created_date': '2024-03-17T01:21:50.000',
  'closed_date': '2024-03-17T01:32: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': '162 TROY AVENUE',
  'street_name': 'TROY AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'PROSPECT PLACE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'PROSPECT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'TROY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and a report was prepared.',
  'resolution_action_updated_date': '2024-03-17T01:32:33.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013520080',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001939',
  'y_coordinate_state_plane': '184830',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.673974733014674',
  'longitude': '-73.93623035863034',
  'location': {'latitude': '40.673974733014674',
   'longitude': '-73.93623035863034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598831',
  'created_date': '2024-03-17T01:21:28.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': '279 WEST  117 STREET',
  'street_name': 'WEST  117 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  117 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1019230001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996928',
  'y_coordinate_state_plane': '232500',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80482559994171',
  'longitude': '-73.95420539322119',
  'location': {'latitude': '40.80482559994171',
   'longitude': '-73.95420539322119',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599803',
  'created_date': '2024-03-17T01:21: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': '11104',
  'incident_address': '43-05 44 STREET',
  'street_name': '44 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '44 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:52:39.000',
  'community_board': '02 QUEENS',
  'bbl': '4001610020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006348',
  'y_coordinate_state_plane': '210649',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74483182678611',
  'longitude': '-73.92025098371724',
  'location': {'latitude': '40.74483182678611',
   'longitude': '-73.92025098371724',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601693',
  'created_date': '2024-03-17T01:21: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': '10026',
  'incident_address': '104 WEST  113 STREET',
  'street_name': 'WEST  113 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  113 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997662',
  'y_coordinate_state_plane': '230842',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800273761500215',
  'longitude': '-73.95155740097667',
  'location': {'latitude': '40.800273761500215',
   'longitude': '-73.95155740097667',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601240',
  'created_date': '2024-03-17T01:21:02.000',
  'closed_date': '2024-03-17T01:29:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10002',
  'incident_address': '152 LUDLOW STREET',
  'street_name': 'LUDLOW STREET',
  'cross_street_1': 'RIVINGTON STREET',
  'cross_street_2': 'STANTON STREET',
  'intersection_street_1': 'RIVINGTON STREET',
  'intersection_street_2': 'STANTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LUDLOW STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:29:18.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004110058',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987586',
  'y_coordinate_state_plane': '201893',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72082573882578',
  'longitude': '-73.9879651165761',
  'location': {'latitude': '40.72082573882578',
   'longitude': '-73.9879651165761',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600770',
  'created_date': '2024-03-17T01:20:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:28.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605131',
  'created_date': '2024-03-17T01:20:10.000',
  'closed_date': '2024-03-17T01:20:56.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:21:00.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604198',
  'created_date': '2024-03-17T01:20:03.000',
  'closed_date': '2024-03-17T01:21: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:21:15.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599805',
  'created_date': '2024-03-17T01:19: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': '11104',
  'incident_address': '43-33 46 STREET',
  'street_name': '46 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '46 STREET',
  'status': 'In Progress',
  'community_board': '02 QUEENS',
  'bbl': '4001410015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006845',
  'y_coordinate_state_plane': '210458',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74430632391316',
  'longitude': '-73.91845801334341',
  'location': {'latitude': '40.74430632391316',
   'longitude': '-73.91845801334341',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598542',
  'created_date': '2024-03-17T01:19:55.000',
  'closed_date': '2024-03-17T01:21: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:21:56.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603498',
  'created_date': '2024-03-17T01:19:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11434',
  'incident_address': '172-10 133 AVENUE',
  'street_name': '133 AVENUE',
  'cross_street_2': 'BEND',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '133 AVENUE',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4124950002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1048317',
  'y_coordinate_state_plane': '185437',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67542665074635',
  'longitude': '-73.76903030526488',
  'location': {'latitude': '40.67542665074635',
   'longitude': '-73.76903030526488',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602382',
  'created_date': '2024-03-17T01:19:51.000',
  'closed_date': '2024-03-17T01:28:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10002',
  'incident_address': '159 LUDLOW STREET',
  'street_name': 'LUDLOW STREET',
  'cross_street_1': 'RIVINGTON STREET',
  'cross_street_2': 'STANTON STREET',
  'intersection_street_1': 'RIVINGTON STREET',
  'intersection_street_2': 'STANTON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LUDLOW STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:29:00.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004110019',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987613',
  'y_coordinate_state_plane': '201980',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72106452261362',
  'longitude': '-73.98786766847537',
  'location': {'latitude': '40.72106452261362',
   'longitude': '-73.98786766847537',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602346',
  'created_date': '2024-03-17T01:19:45.000',
  'closed_date': '2024-03-17T01:28: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:43.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599501',
  'created_date': '2024-03-17T01:19:35.000',
  'closed_date': '2024-03-17T01:28: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:11.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602377',
  'created_date': '2024-03-17T01:19:34.000',
  'closed_date': '2024-03-17T01:22: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': '11237',
  'incident_address': '44 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'MELROSE STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'MELROSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:22:41.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031570031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003829',
  'y_coordinate_state_plane': '195325',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70277711007218',
  'longitude': '-73.92938632693719',
  'location': {'latitude': '40.70277711007218',
   'longitude': '-73.92938632693719',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601670',
  'created_date': '2024-03-17T01:19: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': '11102',
  'incident_address': '18-14 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '18 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '18 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:14:31.000',
  'community_board': '01 QUEENS',
  'bbl': '4005390127',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004418',
  'y_coordinate_state_plane': '220637',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77225093512045',
  'longitude': '-73.92718615529014',
  'location': {'latitude': '40.77225093512045',
   'longitude': '-73.92718615529014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600735',
  'created_date': '2024-03-17T01:19: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': '11221',
  'incident_address': '885 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  'cross_street_1': 'PATCHEN AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'PATCHEN AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEXINGTON AVENUE',
  'status': 'In Progress',
  'community_board': '03 BROOKLYN',
  'bbl': '3016230056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004883',
  'y_coordinate_state_plane': '190890',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690601675812196',
  'longitude': '-73.9255985552626',
  'location': {'latitude': '40.690601675812196',
   'longitude': '-73.9255985552626',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602120',
  'created_date': '2024-03-17T01:18:56.000',
  'closed_date': '2024-03-17T01:35:58.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': '11212',
  'incident_address': '801 SARATOGA AVENUE',
  'street_name': 'SARATOGA AVENUE',
  'cross_street_1': 'LIVONIA AVENUE',
  'cross_street_2': 'RIVERDALE AVENUE',
  'intersection_street_1': 'LIVONIA AVENUE',
  'intersection_street_2': 'RIVERDALE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SARATOGA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:36:02.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035830023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007746',
  'y_coordinate_state_plane': '180099',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66097568960051',
  'longitude': '-73.91531236258604',
  'location': {'latitude': '40.66097568960051',
   'longitude': '-73.91531236258604',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603622',
  'created_date': '2024-03-17T01:18:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10016',
  'incident_address': 'EAST   35 STREET',
  'street_name': 'EAST   35 STREET',
  'cross_street_1': 'EAST   35 STREET',
  'cross_street_2': 'LEXINGTON AVENUE',
  'intersection_street_1': 'EAST   35 STREET',
  'intersection_street_2': 'LEXINGTON AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:52:49.000',
  'community_board': '06 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990003',
  'y_coordinate_state_plane': '211454',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.747067088217776',
  'longitude': '-73.97923742305866',
  'location': {'latitude': '40.747067088217776',
   'longitude': '-73.97923742305866',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598548',
  'created_date': '2024-03-17T01:18:26.000',
  'closed_date': '2024-03-17T01:42:00.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': '11211',
  'incident_address': 'SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'SOUTH    2 STREET',
  'cross_street_2': 'UNION AVENUE',
  'intersection_street_1': 'SOUTH    2 STREET',
  'intersection_street_2': 'UNION AVENUE',
  '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-03-17T01:42:03.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997882',
  'y_coordinate_state_plane': '197640',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70914239819131',
  'longitude': '-73.95083010073871',
  'location': {'latitude': '40.70914239819131',
   'longitude': '-73.95083010073871',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601696',
  'created_date': '2024-03-17T01:18:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11375',
  'incident_address': '108-49 UNION TURNPIKE',
  'street_name': 'UNION TURNPIKE',
  'cross_street_1': '74 AVENUE',
  'cross_street_2': '75 ROAD',
  'intersection_street_1': '74 AVENUE',
  'intersection_street_2': '75 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'UNION TURNPIKE',
  'status': 'In Progress',
  'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
  'resolution_action_updated_date': '2024-03-17T02:01:22.000',
  'community_board': '06 QUEENS',
  'bbl': '4039060035',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027294',
  'y_coordinate_state_plane': '197482',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.70861452699336',
  'longitude': '-73.84474373676021',
  'location': {'latitude': '40.70861452699336',
   'longitude': '-73.84474373676021',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602673',
  'created_date': '2024-03-17T01:18: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': '11212',
  'incident_address': '694 ROCKAWAY AVENUE',
  'street_name': 'ROCKAWAY AVENUE',
  'cross_street_1': 'DUMONT AVENUE',
  'cross_street_2': 'LIVONIA AVENUE',
  'intersection_street_1': 'DUMONT AVENUE',
  'intersection_street_2': 'LIVONIA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ROCKAWAY AVENUE',
  'status': 'In Progress',
  'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
  'resolution_action_updated_date': '2024-03-17T01:55:00.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035750055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009494',
  'y_coordinate_state_plane': '180793',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66287575423881',
  'longitude': '-73.90900937750794',
  'location': {'latitude': '40.66287575423881',
   'longitude': '-73.90900937750794',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603272',
  'created_date': '2024-03-17T01:18:06.000',
  'closed_date': '2024-03-17T01:34: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': '10006',
  'incident_address': '75 WEST STREET',
  'street_name': 'WEST STREET',
  'cross_street_1': 'RECTOR PL-RECTOR ST PED OVERPASS',
  'cross_street_2': 'CARLISLE STREET',
  'intersection_street_1': 'RECTOR PL-RECTOR ST PED OVERPASS',
  'intersection_street_2': 'CARLISLE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST 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-03-17T01:34:33.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000550014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '980074',
  'y_coordinate_state_plane': '197661',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70920955404862',
  'longitude': '-74.01506262444325',
  'location': {'latitude': '40.70920955404862',
   'longitude': '-74.01506262444325',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599794',
  'created_date': '2024-03-17T01:17: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': '11414',
  'incident_address': '99 STREET',
  'street_name': '99 STREET',
  'cross_street_1': '99 STREET',
  'cross_street_2': '159 AVENUE',
  'intersection_street_1': '99 STREET',
  'intersection_street_2': '159 AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030228',
  'y_coordinate_state_plane': '179767',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.65997622410134',
  'longitude': '-73.83428193862922',
  'location': {'latitude': '40.65997622410134',
   'longitude': '-73.83428193862922',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602661',
  'created_date': '2024-03-17T01:17: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': '10012',
  'incident_address': '131 MERCER STREET',
  'street_name': 'MERCER STREET',
  'cross_street_1': 'SPRING STREET',
  'cross_street_2': 'PRINCE STREET',
  'intersection_street_1': 'SPRING STREET',
  'intersection_street_2': 'PRINCE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MERCER STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:01:21.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004997501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984555',
  'y_coordinate_state_plane': '203150',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.724276523595364',
  'longitude': '-73.99889963144531',
  'location': {'latitude': '40.724276523595364',
   'longitude': '-73.99889963144531',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600730',
  'created_date': '2024-03-17T01:17:37.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': '11103',
  'incident_address': '28-28 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': '30 AVENUE',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': '30 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006620031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008093',
  'y_coordinate_state_plane': '218078',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76521799994562',
  'longitude': '-73.91392714932479',
  'location': {'latitude': '40.76521799994562',
   'longitude': '-73.91392714932479',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602663',
  'created_date': '2024-03-17T01:16: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': '180 DAVIS AVENUE',
  'street_name': 'DAVIS AVENUE',
  'cross_street_1': 'SCHURZ AVENUE',
  'cross_street_2': 'HARDING AVENUE',
  'intersection_street_1': 'SCHURZ AVENUE',
  'intersection_street_2': 'HARDING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'DAVIS AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2056067501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032878',
  'y_coordinate_state_plane': '235621',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81326714107099',
  'longitude': '-73.82432686647437',
  'location': {'latitude': '40.81326714107099',
   'longitude': '-73.82432686647437',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600295',
  'created_date': '2024-03-17T01:16:44.000',
  'closed_date': '2024-03-17T01:45:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11225',
  'incident_address': '510 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'EMPIRE BOULEVARD',
  'cross_street_2': 'LEFFERTS AVENUE',
  'intersection_street_1': 'EMPIRE BOULEVARD',
  'intersection_street_2': 'LEFFERTS AVENUE',
  '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-03-17T01:45:40.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050240053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994920',
  'y_coordinate_state_plane': '180403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66183484805751',
  'longitude': '-73.96154117220703',
  'location': {'latitude': '40.66183484805751',
   'longitude': '-73.96154117220703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601686',
  'created_date': '2024-03-17T01:16:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11214',
  'incident_address': '18 BAY   34 STREET',
  'street_name': 'BAY   34 STREET',
  'cross_street_1': '86 STREET',
  'cross_street_2': 'BENSON AVENUE',
  'intersection_street_1': '86 STREET',
  'intersection_street_2': 'BENSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   34 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3068610050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986645',
  'y_coordinate_state_plane': '157746',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.599652278593936',
  'longitude': '-73.9913755288273',
  'location': {'latitude': '40.599652278593936',
   'longitude': '-73.9913755288273',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605572',
  'created_date': '2024-03-17T01:16:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '20-48 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '20 ROAD',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '20 ROAD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4008097501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011157',
  'y_coordinate_state_plane': '221824',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.775490993250855',
  'longitude': '-73.90285116908085',
  'location': {'latitude': '40.775490993250855',
   'longitude': '-73.90285116908085',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601001',
  'created_date': '2024-03-17T01:16:08.000',
  'closed_date': '2024-03-17T01:35:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '707 60 STREET',
  'street_name': '60 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': '60 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-03-17T01:35:40.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008660001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981106',
  'y_coordinate_state_plane': '171198',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.636574990546',
  'longitude': '-74.01132790827695',
  'location': {'latitude': '40.636574990546',
   'longitude': '-74.01132790827695',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603623',
  'created_date': '2024-03-17T01:15:43.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': '33 WEST BURNSIDE AVENUE',
  'street_name': 'WEST BURNSIDE AVENUE',
  'cross_street_1': 'DAVIDSON AVENUE',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'DAVIDSON AVENUE',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST BURNSIDE AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2031930001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009449',
  'y_coordinate_state_plane': '250364',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85383030123549',
  'longitude': '-73.90891081622735',
  'location': {'latitude': '40.85383030123549',
   'longitude': '-73.90891081622735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599175',
  'created_date': '2024-03-17T01:15:32.000',
  'closed_date': '2024-03-17T01:51:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11368',
  'incident_address': '37-18 98 STREET',
  'street_name': '98 STREET',
  'cross_street_1': '37 AVENUE',
  'cross_street_2': '38 AVENUE',
  'intersection_street_1': '37 AVENUE',
  'intersection_street_2': '38 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '98 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-03-17T01:51:04.000',
  'community_board': '03 QUEENS',
  'bbl': '4017600012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020606',
  'y_coordinate_state_plane': '213099',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75150933044093',
  'longitude': '-73.86878239892613',
  'location': {'latitude': '40.75150933044093',
   'longitude': '-73.86878239892613',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605573',
  'created_date': '2024-03-17T01:15:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '3277 DECATUR AVENUE',
  'street_name': 'DECATUR AVENUE',
  'cross_street_1': 'EAST  207 STREET',
  'cross_street_2': 'EAST  209 STREET',
  'intersection_street_1': 'EAST  207 STREET',
  'intersection_street_2': 'EAST  209 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'DECATUR AVENUE',
  'status': 'In Progress',
  'community_board': '07 BRONX',
  'bbl': '2033510046',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019062',
  'y_coordinate_state_plane': '258378',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87579361001514',
  'longitude': '-73.87412021742101',
  'location': {'latitude': '40.87579361001514',
   'longitude': '-73.87412021742101',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598543',
  'created_date': '2024-03-17T01:14:47.000',
  'closed_date': '2024-03-17T01:20:42.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:20:50.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598544',
  'created_date': '2024-03-17T01:14:42.000',
  'closed_date': '2024-03-17T01:18: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:18:30.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604379',
  'created_date': '2024-03-17T01:14:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2705 KINGS HIGHWAY',
  'street_name': 'KINGS HIGHWAY',
  'cross_street_1': 'AVENUE O',
  'cross_street_2': 'EAST   28 STREET',
  'intersection_street_1': 'AVENUE O',
  'intersection_street_2': 'EAST   28 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGS HIGHWAY',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3076810010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998886',
  'y_coordinate_state_plane': '163098',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.614330659487685',
  'longitude': '-73.94728370631006',
  'location': {'latitude': '40.614330659487685',
   'longitude': '-73.94728370631006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602347',
  'created_date': '2024-03-17T01:14:35.000',
  'closed_date': '2024-03-17T01:16: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:16:55.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604200',
  'created_date': '2024-03-17T01:14:31.000',
  'closed_date': '2024-03-17T01:16:37.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:16:41.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603624',
  'created_date': '2024-03-17T01:14:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10033',
  'incident_address': '541 WEST  180 STREET',
  'street_name': 'WEST  180 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  180 STREET',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021530080',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002747',
  'y_coordinate_state_plane': '248297',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.84817358504047',
  'longitude': '-73.93314285449081',
  'location': {'latitude': '40.84817358504047',
   'longitude': '-73.93314285449081',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601265',
  'created_date': '2024-03-17T01:14:25.000',
  'closed_date': '2024-03-17T01:25:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11101',
  'incident_address': '41-14 10 STREET',
  'street_name': '10 STREET',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': '41 ROAD',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': '41 ROAD',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '10 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-03-17T01:26:02.000',
  'community_board': '01 QUEENS',
  'bbl': '4004650100',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '999256',
  'y_coordinate_state_plane': '214522',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75547711024346',
  'longitude': '-73.94583650569939',
  'location': {'latitude': '40.75547711024346',
   'longitude': '-73.94583650569939',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602352',
  'created_date': '2024-03-17T01:14:06.000',
  'closed_date': '2024-03-17T01:35: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': '11216',
  'incident_address': '284 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  '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': 'LEXINGTON 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-03-17T01:35:51.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018030114',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998006',
  'y_coordinate_state_plane': '189839',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687730283419306',
  'longitude': '-73.9503987722234',
  'location': {'latitude': '40.687730283419306',
   'longitude': '-73.9503987722234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598830',
  'created_date': '2024-03-17T01:14: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': '10009',
  'incident_address': '186 EAST    7 STREET',
  'street_name': 'EAST    7 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    7 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:53:20.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003890011',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989548',
  'y_coordinate_state_plane': '203388',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.724928194581096',
  'longitude': '-73.98088586998158',
  'location': {'latitude': '40.724928194581096',
   'longitude': '-73.98088586998158',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605378',
  'created_date': '2024-03-17T01:13:54.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': '2069 85 STREET',
  'street_name': '85 STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '85 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3063340045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985298',
  'y_coordinate_state_plane': '159465',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60437084599537',
  'longitude': '-73.99622585195348',
  'location': {'latitude': '40.60437084599537',
   'longitude': '-73.99622585195348',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601388',
  'created_date': '2024-03-17T01:13:52.000',
  'closed_date': '2024-03-17T01:18:54.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': '10032',
  'incident_address': '3885 BROADWAY',
  'street_name': 'BROADWAY',
  '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': 'NEW YORK',
  'landmark': 'BROADWAY',
  '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-03-17T01:18:59.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021370080',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000177',
  'y_coordinate_state_plane': '244372',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83740562002554',
  'longitude': '-73.94244140227107',
  'location': {'latitude': '40.83740562002554',
   'longitude': '-73.94244140227107',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600358',
  'created_date': '2024-03-17T01:13:45.000',
  'closed_date': '2024-03-17T01:44: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': '11225',
  'incident_address': '293 HAWTHORNE STREET',
  'street_name': 'HAWTHORNE STREET',
  'cross_street_1': 'ROGERS AVENUE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'ROGERS AVENUE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HAWTHORNE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:44:26.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050440053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997860',
  'y_coordinate_state_plane': '178937',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65780697047831',
  'longitude': '-73.95094723026227',
  'location': {'latitude': '40.65780697047831',
   'longitude': '-73.95094723026227',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600642',
  'created_date': '2024-03-17T01:13:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '2958 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'AVENUE P',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3076900001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999765',
  'y_coordinate_state_plane': '162364',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.61231448575199',
  'longitude': '-73.94411939050246',
  'location': {'latitude': '40.61231448575199',
   'longitude': '-73.94411939050246',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598843',
  'created_date': '2024-03-17T01:13:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '121 EAST    3 STREET',
  'street_name': 'EAST    3 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    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:54:16.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004310014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988025',
  'y_coordinate_state_plane': '203092',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72411652743454',
  'longitude': '-73.98638071692471',
  'location': {'latitude': '40.72411652743454',
   'longitude': '-73.98638071692471',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602665',
  'created_date': '2024-03-17T01:13: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': '10039',
  'incident_address': '246 BRADHURST AVENUE',
  'street_name': 'BRADHURST AVENUE',
  'cross_street_1': 'WEST  154 STREET',
  'cross_street_2': 'WEST  155 STREET',
  'intersection_street_1': 'WEST  154 STREET',
  'intersection_street_2': 'WEST  155 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BRADHURST AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1020470023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001182',
  'y_coordinate_state_plane': '241417',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82929312847456',
  'longitude': '-73.93881689203339',
  'location': {'latitude': '40.82929312847456',
   'longitude': '-73.93881689203339',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601656',
  'created_date': '2024-03-17T01:12:57.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': '11355',
  'incident_address': '41-02 COLLEGE POINT BOULEVARD',
  'street_name': 'COLLEGE POINT BOULEVARD',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': '41 ROAD',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': '41 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'COLLEGE POINT BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4050630007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030341',
  'y_coordinate_state_plane': '214810',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75616019807647',
  'longitude': '-73.83363477553662',
  'location': {'latitude': '40.75616019807647',
   'longitude': '-73.83363477553662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599411',
  'created_date': '2024-03-17T01:12:35.000',
  'closed_date': '2024-03-17T01: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': '10312',
  'incident_address': '116 CORTELYOU AVENUE',
  'street_name': 'CORTELYOU AVENUE',
  'cross_street_1': 'BARLOW AVENUE',
  'cross_street_2': 'LEVERETT AVENUE',
  'intersection_street_1': 'BARLOW AVENUE',
  'intersection_street_2': 'LEVERETT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CORTELYOU AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:42:06.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5054910100',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '938626',
  'y_coordinate_state_plane': '142182',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.55681512715431',
  'longitude': '-74.16418823228445',
  'location': {'latitude': '40.55681512715431',
   'longitude': '-74.16418823228445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603152',
  'created_date': '2024-03-17T01:12:17.000',
  'closed_date': '2024-03-17T01:51:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11221',
  'incident_address': '372 KOSCIUSZKO STREET',
  'street_name': 'KOSCIUSZKO STREET',
  'cross_street_1': 'MARCUS GARVEY BOULEVARD',
  'cross_street_2': 'LEWIS AVENUE',
  'intersection_street_1': 'MARCUS GARVEY BOULEVARD',
  'intersection_street_2': 'LEWIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KOSCIUSZKO 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-03-17T01:51:26.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016050001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001122',
  'y_coordinate_state_plane': '191403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69201771102667',
  'longitude': '-73.93915922138217',
  'location': {'latitude': '40.69201771102667',
   'longitude': '-73.93915922138217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599804',
  'created_date': '2024-03-17T01:12:13.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': '180 DAVIS AVENUE',
  'street_name': 'DAVIS AVENUE',
  'cross_street_1': 'SCHURZ AVENUE',
  'cross_street_2': 'HARDING AVENUE',
  'intersection_street_1': 'SCHURZ AVENUE',
  'intersection_street_2': 'HARDING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'DAVIS AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2056067501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032878',
  'y_coordinate_state_plane': '235621',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81326714107099',
  'longitude': '-73.82432686647437',
  'location': {'latitude': '40.81326714107099',
   'longitude': '-73.82432686647437',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598523',
  'created_date': '2024-03-17T01:12:04.000',
  'closed_date': '2024-03-17T01:44:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10473',
  'incident_address': '535 HAVEMEYER AVENUE',
  'street_name': 'HAVEMEYER AVENUE',
  'cross_street_1': 'LACOMBE AVENUE',
  'cross_street_2': 'RANDALL AVENUE',
  'intersection_street_1': 'LACOMBE AVENUE',
  'intersection_street_2': 'RANDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HAVEMEYER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:44:44.000',
  'community_board': '09 BRONX',
  'bbl': '2035370001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027243',
  'y_coordinate_state_plane': '237367',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81808863502929',
  'longitude': '-73.84467259346006',
  'location': {'latitude': '40.81808863502929',
   'longitude': '-73.84467259346006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605311',
  'created_date': '2024-03-17T01:11:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11355',
  'incident_address': '41-51 150 STREET',
  'street_name': '150 STREET',
  'cross_street_1': 'BARCLAY AVENUE',
  'cross_street_2': 'SANFORD AVENUE',
  'intersection_street_1': 'BARCLAY AVENUE',
  'intersection_street_2': 'SANFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '150 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4050590010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035943',
  'y_coordinate_state_plane': '216767',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.761500673291984',
  'longitude': '-73.81339939623913',
  'location': {'latitude': '40.761500673291984',
   'longitude': '-73.81339939623913',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598545',
  'created_date': '2024-03-17T01:11:44.000',
  'closed_date': '2024-03-17T01:16:24.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:16:30.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601075',
  'created_date': '2024-03-17T01:11:43.000',
  'closed_date': '2024-03-17T01:38:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:38:49.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603300',
  'created_date': '2024-03-17T01:11:37.000',
  'closed_date': '2024-03-17T01: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:16:14.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604201',
  'created_date': '2024-03-17T01:11:34.000',
  'closed_date': '2024-03-17T01:15: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:15:54.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604485',
  'created_date': '2024-03-17T01:11:34.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': '11377',
  'incident_address': '51-65 72 STREET',
  'street_name': '72 STREET',
  'cross_street_1': 'CALAMUS AVENUE',
  'cross_street_2': '52 AVENUE',
  'intersection_street_1': 'CALAMUS AVENUE',
  'intersection_street_2': '52 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '72 STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4024830135',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014163',
  'y_coordinate_state_plane': '206682',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73392042307287',
  'longitude': '-73.89206525654504',
  'location': {'latitude': '40.73392042307287',
   'longitude': '-73.89206525654504',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599473',
  'created_date': '2024-03-17T01:11:30.000',
  'closed_date': '2024-03-17T01:44: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': '11225',
  'incident_address': '15 CROWN STREET',
  'street_name': 'CROWN STREET',
  'cross_street_1': 'WASHINGTON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'WASHINGTON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CROWN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:44:58.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3011890068',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994988',
  'y_coordinate_state_plane': '182496',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66757958613864',
  'longitude': '-73.96129274028637',
  'location': {'latitude': '40.66757958613864',
   'longitude': '-73.96129274028637',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604921',
  'created_date': '2024-03-17T01:11:04.000',
  'closed_date': '2024-03-17T01:26:08.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': '11206',
  'incident_address': '135 GRAHAM AVENUE',
  'street_name': 'GRAHAM AVENUE',
  'cross_street_1': 'BOERUM STREET',
  'cross_street_2': 'JOHNSON AVENUE',
  'intersection_street_1': 'BOERUM STREET',
  'intersection_street_2': 'JOHNSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAHAM AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:26:11.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030700020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000035',
  'y_coordinate_state_plane': '196652',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70642699332401',
  'longitude': '-73.94306666242296',
  'location': {'latitude': '40.70642699332401',
   'longitude': '-73.94306666242296',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602553',
  'created_date': '2024-03-17T01:11:03.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': '1080 WYCKOFF AVENUE',
  'street_name': 'WYCKOFF AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'ELDERT STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'ELDERT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WYCKOFF AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:06:13.000',
  'community_board': '04 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010765',
  'y_coordinate_state_plane': '192775',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69575989450476',
  'longitude': '-73.90438098734924',
  'location': {'latitude': '40.69575989450476',
   'longitude': '-73.90438098734924',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599414',
  'created_date': '2024-03-17T01:11:01.000',
  'closed_date': '2024-03-17T01:46:48.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': '11369',
  'incident_address': '32-37 100 STREET',
  'street_name': '100 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': '100 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:46:51.000',
  'community_board': '03 QUEENS',
  'bbl': '4016950053',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020644',
  'y_coordinate_state_plane': '215539',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75820634623359',
  'longitude': '-73.86863204092458',
  'location': {'latitude': '40.75820634623359',
   'longitude': '-73.86863204092458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603109',
  'created_date': '2024-03-17T01:11:01.000',
  'closed_date': '2024-03-17T01:28:29.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': '14 ORCHARD STREET',
  'street_name': 'ORCHARD STREET',
  'cross_street_1': 'CANAL STREET',
  'cross_street_2': 'HESTER STREET',
  'intersection_street_1': 'CANAL STREET',
  'intersection_street_2': 'HESTER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ORCHARD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:33.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002987501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986547',
  'y_coordinate_state_plane': '199851',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.715221270038704',
  'longitude': '-73.99171408791376',
  'location': {'latitude': '40.715221270038704',
   'longitude': '-73.99171408791376',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602656',
  'created_date': '2024-03-17T01:10: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': '104B EDGEWATER PARK',
  'street_name': 'EDGEWATER PARK',
  'cross_street_1': 'EDGE STREET',
  'cross_street_2': 'MAIN STREET',
  'intersection_street_1': 'EDGE STREET',
  'intersection_street_2': 'MAIN STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EDGEWATER PARK',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055160101',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1037149',
  'y_coordinate_state_plane': '239530',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.823971679042494',
  'longitude': '-73.80886671946612',
  'location': {'latitude': '40.823971679042494',
   'longitude': '-73.80886671946612',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604482',
  'created_date': '2024-03-17T01:10: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': '11419',
  'incident_address': '103 AVENUE',
  'street_name': '103 AVENUE',
  'cross_street_1': '103 AVENUE',
  'cross_street_2': 'LEFFERTS BOULEVARD',
  'intersection_street_1': '103 AVENUE',
  'intersection_street_2': 'LEFFERTS BOULEVARD',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:58.000',
  'community_board': '09 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032780',
  'y_coordinate_state_plane': '189964',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68795102155062',
  'longitude': '-73.8250103936431',
  'location': {'latitude': '40.68795102155062',
   'longitude': '-73.8250103936431',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603304',
  'created_date': '2024-03-17T01:10:33.000',
  'closed_date': '2024-03-17T01:48:03.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': '11222',
  'incident_address': 'SUTTON STREET',
  'street_name': 'SUTTON STREET',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:48:06.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '60604389',
  'created_date': '2024-03-17T01:10:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11434',
  'incident_address': '119-64 MERRILL STREET',
  'street_name': 'MERRILL STREET',
  'cross_street_1': 'VICTORIA DRIVE',
  'cross_street_2': 'AMELIA ROAD',
  'intersection_street_1': 'VICTORIA DRIVE',
  'intersection_street_2': 'AMELIA ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'MERRILL STREET',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4123760025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1047462',
  'y_coordinate_state_plane': '188624',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68418036006194',
  'longitude': '-73.77208278085143',
  'location': {'latitude': '40.68418036006194',
   'longitude': '-73.77208278085143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601675',
  'created_date': '2024-03-17T01:10: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': '11207',
  'incident_address': '546 GLENMORE AVENUE',
  'street_name': 'GLENMORE AVENUE',
  'cross_street_1': 'VAN SICLEN AVENUE',
  'cross_street_2': 'HENDRIX STREET',
  'intersection_street_1': 'VAN SICLEN AVENUE',
  'intersection_street_2': 'HENDRIX STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLENMORE AVENUE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039940014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014710',
  'y_coordinate_state_plane': '184867',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67404155926975',
  'longitude': '-73.8901901995835',
  'location': {'latitude': '40.67404155926975',
   'longitude': '-73.8901901995835',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598585',
  'created_date': '2024-03-17T01:10:15.000',
  'closed_date': '2024-03-17T01:28:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '415 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:40.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011480050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995117',
  'y_coordinate_state_plane': '185904',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.676933623642995',
  'longitude': '-73.96082223978587',
  'location': {'latitude': '40.676933623642995',
   'longitude': '-73.96082223978587',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605136',
  'created_date': '2024-03-17T01:10:05.000',
  'closed_date': '2024-03-17T01:29: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': '10011',
  'incident_address': '21 WEST   12 STREET',
  'street_name': 'WEST   12 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   12 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-03-17T01:29:43.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005760053',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985518',
  'y_coordinate_state_plane': '207071',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.735038624332766',
  'longitude': '-73.9954246141514',
  'location': {'latitude': '40.735038624332766',
   'longitude': '-73.9954246141514',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599073',
  'created_date': '2024-03-17T01:10:02.000',
  'closed_date': '2024-03-17T01:12:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '2539 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'WEST  190 STREET',
  'cross_street_2': 'WEST  192 STREET',
  'intersection_street_1': 'WEST  190 STREET',
  'intersection_street_2': 'WEST  192 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:12:29.000',
  'community_board': '07 BRONX',
  'bbl': '2032140143',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011539',
  'y_coordinate_state_plane': '254569',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86536554285058',
  'longitude': '-73.90133878369453',
  'location': {'latitude': '40.86536554285058',
   'longitude': '-73.90133878369453',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599302',
  'created_date': '2024-03-17T01:10:02.000',
  'closed_date': '2024-03-17T01:36:34.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': '11211',
  'incident_address': '559 LORIMER STREET',
  'street_name': 'LORIMER STREET',
  'cross_street_1': 'DEVOE STREET',
  'cross_street_2': 'METROPOLITAN AVENUE',
  'intersection_street_1': 'DEVOE STREET',
  'intersection_street_2': 'METROPOLITAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LORIMER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:36:38.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027610035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998301',
  'y_coordinate_state_plane': '199289',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71366785492864',
  'longitude': '-73.94931534885751',
  'location': {'latitude': '40.71366785492864',
   'longitude': '-73.94931534885751',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604507',
  'created_date': '2024-03-17T01:10:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  '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',
  'resolution_action_updated_date': '2024-03-17T01:59:10.000',
  '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',
  'vehicle_type': 'Car',
  'latitude': '40.90665570023825',
  'longitude': '-73.90682699003065',
  'location': {'latitude': '40.90665570023825',
   'longitude': '-73.90682699003065',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602276',
  'created_date': '2024-03-17T01:09:49.000',
  'closed_date': '2024-03-17T01:12: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': '10033',
  'incident_address': '709 WEST  176 STREET',
  'street_name': 'WEST  176 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  176 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-03-17T01:12:26.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021420202',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001251',
  'y_coordinate_state_plane': '247861',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84697990099863',
  'longitude': '-73.93855122902285',
  'location': {'latitude': '40.84697990099863',
   'longitude': '-73.93855122902285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600141',
  'created_date': '2024-03-17T01:09:43.000',
  'closed_date': '2024-03-17T01:36:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:36:17.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604603',
  'created_date': '2024-03-17T01:09:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Paper License Plates',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '2572 FISH AVENUE',
  'street_name': 'FISH AVENUE',
  'cross_street_1': 'MACE AVENUE',
  'cross_street_2': 'ALLERTON AVENUE',
  'intersection_street_1': 'MACE AVENUE',
  'intersection_street_2': 'ALLERTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FISH AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2044740039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026514',
  'y_coordinate_state_plane': '254261',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.864461182476745',
  'longitude': '-73.8471998910465',
  'location': {'latitude': '40.864461182476745',
   'longitude': '-73.8471998910465',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602679',
  'created_date': '2024-03-17T01:09:40.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': '11360',
  'incident_address': '13-09 BELL BOULEVARD',
  'street_name': 'BELL BOULEVARD',
  'cross_street_1': 'CROSS ISLAND PARKWAY',
  'cross_street_2': '14 AVENUE',
  'intersection_street_1': 'CROSS ISLAND PARKWAY',
  'intersection_street_2': '14 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': 'BELL BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:01:46.000',
  'community_board': '07 QUEENS',
  'bbl': '4059380096',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044626',
  'y_coordinate_state_plane': '226646',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78856081928555',
  'longitude': '-73.78196699361003',
  'location': {'latitude': '40.78856081928555',
   'longitude': '-73.78196699361003',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603302',
  'created_date': '2024-03-17T01:09:30.000',
  'closed_date': '2024-03-17T01:11:22.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:11:26.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604488',
  'created_date': '2024-03-17T01:09: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': '11354',
  'incident_address': '33-35 153 STREET',
  'street_name': '153 STREET',
  'cross_street_1': '33 ROAD',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': '33 ROAD',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '153 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4052380026',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036446',
  'y_coordinate_state_plane': '218998',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.767621222918365',
  'longitude': '-73.81156635607293',
  'location': {'latitude': '40.767621222918365',
   'longitude': '-73.81156635607293',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598546',
  'created_date': '2024-03-17T01:09:23.000',
  'closed_date': '2024-03-17T01:15: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:15:29.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603301',
  'created_date': '2024-03-17T01:09:19.000',
  'closed_date': '2024-03-17T01:15:36.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:15:39.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599257',
  'created_date': '2024-03-17T01:09:02.000',
  'closed_date': '2024-03-17T01:35:50.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': '11225',
  'incident_address': '2111 BEEKMAN PLACE',
  'street_name': 'BEEKMAN PLACE',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'FLATBUSH AVENUE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'FLATBUSH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEEKMAN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:35:52.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050260075',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994992',
  'y_coordinate_state_plane': '179735',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66000124850346',
  'longitude': '-73.96128272045006',
  'location': {'latitude': '40.66000124850346',
   'longitude': '-73.96128272045006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602122',
  'created_date': '2024-03-17T01:08:58.000',
  'closed_date': '2024-03-17T01:14:04.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': '168 DELANCEY STREET',
  'street_name': 'DELANCEY STREET',
  'cross_street_1': 'CLINTON STREET',
  'cross_street_2': 'ATTORNEY STREET',
  'intersection_street_1': 'CLINTON STREET',
  'intersection_street_2': 'ATTORNEY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DELANCEY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:14:10.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003480075',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988250',
  'y_coordinate_state_plane': '200743',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71766899024975',
  'longitude': '-73.9855703675894',
  'location': {'latitude': '40.71766899024975',
   'longitude': '-73.9855703675894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602660',
  'created_date': '2024-03-17T01:08: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': '11434',
  'incident_address': '145-03 167 STREET',
  'street_name': '167 STREET',
  'cross_street_1': '145 AVENUE',
  'cross_street_2': '145 ROAD',
  'intersection_street_1': '145 AVENUE',
  'intersection_street_2': '145 ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '167 STREET',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4132850059',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1046712',
  'y_coordinate_state_plane': '181159',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.663696005227095',
  'longitude': '-73.77485614854842',
  'location': {'latitude': '40.663696005227095',
   'longitude': '-73.77485614854842',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601679',
  'created_date': '2024-03-17T01:08:44.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': '11416',
  'incident_address': '101-50 107 STREET',
  'street_name': '107 STREET',
  'cross_street_1': '101 AVENUE',
  'cross_street_2': '103 AVENUE',
  'intersection_street_1': '101 AVENUE',
  'intersection_street_2': '103 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '107 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:09:41.000',
  'community_board': '09 QUEENS',
  'bbl': '4094240029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029875',
  'y_coordinate_state_plane': '189187',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68583379006909',
  'longitude': '-73.83549048681546',
  'location': {'latitude': '40.68583379006909',
   'longitude': '-73.83549048681546',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605379',
  'created_date': '2024-03-17T01:07:58.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': '601 PELHAM PARKWAY NORTH',
  'street_name': 'PELHAM PARKWAY NORTH',
  'cross_street_1': 'BRONX PARK EAST',
  'cross_street_2': 'BARKER AVENUE',
  'intersection_street_1': 'BRONX PARK EAST',
  'intersection_street_2': 'BARKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PELHAM PARKWAY NORTH',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043370001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020030',
  'y_coordinate_state_plane': '251665',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85736461420961',
  'longitude': '-73.87065578846372',
  'location': {'latitude': '40.85736461420961',
   'longitude': '-73.87065578846372',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605374',
  'created_date': '2024-03-17T01:07:57.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': '1735 PARKVIEW AVENUE',
  'street_name': 'PARKVIEW AVENUE',
  'cross_street_1': 'ROBERTS AVENUE',
  'cross_street_2': 'BUHRE AVENUE',
  'intersection_street_1': 'ROBERTS AVENUE',
  'intersection_street_2': 'BUHRE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARKVIEW AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2041770016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031787',
  'y_coordinate_state_plane': '248002',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.847255309595425',
  'longitude': '-73.82818046269905',
  'location': {'latitude': '40.847255309595425',
   'longitude': '-73.82818046269905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603618',
  'created_date': '2024-03-17T01:07:57.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': '55 LENOX AVENUE',
  'street_name': 'LENOX AVENUE',
  'cross_street_1': 'WEST  112 STREET',
  'cross_street_2': 'WEST  113 STREET',
  'intersection_street_1': 'WEST  112 STREET',
  'intersection_street_2': 'WEST  113 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LENOX AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997754',
  'y_coordinate_state_plane': '230712',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79991680693445',
  'longitude': '-73.9512253690882',
  'location': {'latitude': '40.79991680693445',
   'longitude': '-73.9512253690882',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600439',
  'created_date': '2024-03-17T01:07:51.000',
  'closed_date': '2024-03-17T01:35:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11213',
  'incident_address': '1431 PARK PLACE',
  'street_name': 'PARK PLACE',
  'cross_street_1': 'UTICA AVENUE',
  'cross_street_2': 'ROCHESTER AVENUE',
  'intersection_street_1': 'UTICA AVENUE',
  'intersection_street_2': 'ROCHESTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PARK 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-03-17T01:35:12.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013670079',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003697',
  'y_coordinate_state_plane': '184230',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.672324180930175',
  'longitude': '-73.92989442317557',
  'location': {'latitude': '40.672324180930175',
   'longitude': '-73.92989442317557',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605094',
  'created_date': '2024-03-17T01:07:48.000',
  'closed_date': '2024-03-17T01:16: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': '11420',
  'incident_address': '115-51 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:16:41.000',
  'community_board': '10 QUEENS',
  'bbl': '4116660041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035194',
  'y_coordinate_state_plane': '185790',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67648080105422',
  'longitude': '-73.8163375668986',
  'location': {'latitude': '40.67648080105422',
   'longitude': '-73.8163375668986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602678',
  'created_date': '2024-03-17T01:07: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': '10040',
  'incident_address': '565 WEST  192 STREET',
  'street_name': 'WEST  192 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  192 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:04:41.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021610100',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004122',
  'y_coordinate_state_plane': '251134',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.855957317740184',
  'longitude': '-73.92816452934942',
  'location': {'latitude': '40.855957317740184',
   'longitude': '-73.92816452934942',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605425',
  'created_date': '2024-03-17T01:07: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': '10473',
  'incident_address': '2010 BRUCKNER BOULEVARD',
  'street_name': 'BRUCKNER BOULEVARD',
  'cross_street_1': 'PUGSLEY AVENUE',
  'cross_street_2': 'OLMSTEAD AVENUE',
  'intersection_street_1': 'PUGSLEY AVENUE',
  'intersection_street_2': 'OLMSTEAD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRUCKNER BOULEVARD',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2036820001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024246',
  'y_coordinate_state_plane': '240289',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82612276531203',
  'longitude': '-73.8554828783128',
  'location': {'latitude': '40.82612276531203',
   'longitude': '-73.8554828783128',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598784',
  'created_date': '2024-03-17T01:07:17.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': '2476 WEST    3 STREET',
  'street_name': 'WEST    3 STREET',
  'cross_street_1': 'BOUCK COURT',
  'cross_street_2': 'AVENUE Y',
  'intersection_street_1': 'BOUCK COURT',
  'intersection_street_2': 'AVENUE Y',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    3 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3071920040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991837',
  'y_coordinate_state_plane': '153681',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58849174745597',
  'longitude': '-73.97268353729201',
  'location': {'latitude': '40.58849174745597',
   'longitude': '-73.97268353729201',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601669',
  'created_date': '2024-03-17T01:07:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11355',
  'incident_address': '142-41 FRANKLIN AVENUE',
  'street_name': 'FRANKLIN AVENUE',
  'cross_street_1': 'UNION STREET',
  'cross_street_2': 'BOWNE STREET',
  'intersection_street_1': 'UNION STREET',
  'intersection_street_2': 'BOWNE STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'FRANKLIN AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4051810048',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033312',
  'y_coordinate_state_plane': '215000',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.756665712105',
  'longitude': '-73.82290960839394',
  'location': {'latitude': '40.756665712105',
   'longitude': '-73.82290960839394',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602641',
  'created_date': '2024-03-17T01:06:34.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': '11206',
  'incident_address': '251 BUSHWICK AVENUE',
  'street_name': 'BUSHWICK AVENUE',
  'cross_street_1': 'MONTROSE AVENUE',
  'cross_street_2': 'JOHNSON AVENUE',
  'intersection_street_1': 'MONTROSE AVENUE',
  'intersection_street_2': 'JOHNSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BUSHWICK AVENUE',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3030640001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000947',
  'y_coordinate_state_plane': '196992',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.707358538866366',
  'longitude': '-73.93977641875944',
  'location': {'latitude': '40.707358538866366',
   'longitude': '-73.93977641875944',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605033',
  'created_date': '2024-03-17T01:06:30.000',
  'closed_date': '2024-03-17T01:13: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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:13:41.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600481',
  'created_date': '2024-03-17T01:06:29.000',
  'closed_date': '2024-03-17T01:12: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': '11238',
  'incident_address': "392 ST MARK'S AVENUE",
  'street_name': "ST MARK'S AVENUE",
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS 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-03-17T01:13:04.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994843',
  'y_coordinate_state_plane': '185973',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6771233451657',
  'longitude': '-73.96180995731324',
  'location': {'latitude': '40.6771233451657',
   'longitude': '-73.96180995731324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605319',
  'created_date': '2024-03-17T01:06:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11219',
  'incident_address': '1162 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': 'FORT HAMILTON PARKWAY',
  'cross_street_2': '12 AVENUE',
  'intersection_street_1': 'FORT HAMILTON PARKWAY',
  'intersection_street_2': '12 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '42 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:04:57.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055970032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986684',
  'y_coordinate_state_plane': '172759',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.640859825564426',
  'longitude': '-73.99122967581611',
  'location': {'latitude': '40.640859825564426',
   'longitude': '-73.99122967581611',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598547',
  'created_date': '2024-03-17T01:06:19.000',
  'closed_date': '2024-03-17T01:11: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:11:14.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600460',
  'created_date': '2024-03-17T01:06:13.000',
  'closed_date': '2024-03-17T01:09:06.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:09:10.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599799',
  'created_date': '2024-03-17T01:05: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': '210 BRUCKNER BOULEVARD',
  'street_name': 'BRUCKNER BOULEVARD',
  'cross_street_1': 'BRUCKNER EP EB EN MJR DEEGAN EP',
  'cross_street_2': 'EAST  137 STREET',
  'intersection_street_1': 'BRUCKNER EP EB EN MJR DEEGAN EP',
  'intersection_street_2': 'EAST  137 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRUCKNER BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:18:31.000',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008222',
  'y_coordinate_state_plane': '232196',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80396777979866',
  'longitude': '-73.91341108259626',
  'location': {'latitude': '40.80396777979866',
   'longitude': '-73.91341108259626',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604047',
  'created_date': '2024-03-17T01:05:42.000',
  'closed_date': '2024-03-17T01:51:27.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': '10003',
  'incident_address': '232 EAST    9 STREET',
  'street_name': 'EAST    9 STREET',
  'cross_street_1': 'STUYVESANT STREET',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': 'STUYVESANT STREET',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    9 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:51:30.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004640025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987510',
  'y_coordinate_state_plane': '205091',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72960350054764',
  'longitude': '-73.9882377434201',
  'location': {'latitude': '40.72960350054764',
   'longitude': '-73.9882377434201',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601637',
  'created_date': '2024-03-17T01:05:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '78 STREET',
  'street_name': '78 STREET',
  'cross_street_1': '78 STREET',
  'cross_street_2': 'ASTORIA BOULEVARD NORTH',
  'intersection_street_1': '78 STREET',
  'intersection_street_2': 'ASTORIA BOULEVARD NORTH',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014398',
  'y_coordinate_state_plane': '218591',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76660679840425',
  'longitude': '-73.8911639196689',
  'location': {'latitude': '40.76660679840425',
   'longitude': '-73.8911639196689',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601641',
  'created_date': '2024-03-17T01:05:29.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': '10459',
  'incident_address': '823 UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'cross_street_1': 'EAST  158 STREET',
  'cross_street_2': 'EAST  160 STREET',
  'intersection_street_1': 'EAST  158 STREET',
  'intersection_street_2': 'EAST  160 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNION AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2026660126',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011067',
  'y_coordinate_state_plane': '237956',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81976919029145',
  'longitude': '-73.90311169446362',
  'location': {'latitude': '40.81976919029145',
   'longitude': '-73.90311169446362',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604493',
  'created_date': '2024-03-17T01:05:20.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': '11104',
  'incident_address': '43-05 44 STREET',
  'street_name': '44 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '44 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:52:55.000',
  'community_board': '02 QUEENS',
  'bbl': '4001610020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006348',
  'y_coordinate_state_plane': '210649',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74483182678611',
  'longitude': '-73.92025098371724',
  'location': {'latitude': '40.74483182678611',
   'longitude': '-73.92025098371724',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598360',
  'created_date': '2024-03-17T01:05:12.000',
  'closed_date': '2024-03-17T01:36: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': '11211',
  'incident_address': '559 LORIMER STREET',
  'street_name': 'LORIMER STREET',
  'cross_street_1': 'DEVOE STREET',
  'cross_street_2': 'METROPOLITAN AVENUE',
  'intersection_street_1': 'DEVOE STREET',
  'intersection_street_2': 'METROPOLITAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LORIMER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:36:09.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027610035',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998301',
  'y_coordinate_state_plane': '199289',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71366785492864',
  'longitude': '-73.94931534885751',
  'location': {'latitude': '40.71366785492864',
   'longitude': '-73.94931534885751',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599437',
  'created_date': '2024-03-17T01:04:52.000',
  'closed_date': '2024-03-17T01:05: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': '11373',
  'incident_address': '87-19 JUSTICE AVENUE',
  'street_name': 'JUSTICE AVENUE',
  'cross_street_1': '52 AVENUE',
  'cross_street_2': '53 AVENUE',
  'intersection_street_1': '52 AVENUE',
  'intersection_street_2': '53 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'JUSTICE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:06:04.000',
  'community_board': '04 QUEENS',
  'bbl': '4018380079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018614',
  'y_coordinate_state_plane': '207946',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737373614451336',
  'longitude': '-73.87599832675195',
  'location': {'latitude': '40.737373614451336',
   'longitude': '-73.87599832675195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604108',
  'created_date': '2024-03-17T01:04:48.000',
  'closed_date': '2024-03-17T01:12:18.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': '11238',
  'incident_address': '388 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS 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-03-17T01:12:21.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994813',
  'y_coordinate_state_plane': '185981',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67714533920554',
  'longitude': '-73.96191810121151',
  'location': {'latitude': '40.67714533920554',
   'longitude': '-73.96191810121151',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605435',
  'created_date': '2024-03-17T01:04:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '323 SHEPHERD AVENUE',
  'street_name': 'SHEPHERD AVENUE',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'LIBERTY AVENUE',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'LIBERTY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHEPHERD AVENUE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039730107',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1017110',
  'y_coordinate_state_plane': '185981',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.677090652264766',
  'longitude': '-73.88153266021956',
  'location': {'latitude': '40.677090652264766',
   'longitude': '-73.88153266021956',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600440',
  'created_date': '2024-03-17T01:04:42.000',
  'closed_date': '2024-03-17T01:11:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11233',
  'incident_address': '405 BAINBRIDGE STREET',
  'street_name': 'BAINBRIDGE STREET',
  'cross_street_1': 'RALPH AVENUE',
  'cross_street_2': 'HOWARD AVENUE',
  'intersection_street_1': 'RALPH AVENUE',
  'intersection_street_2': 'HOWARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAINBRIDGE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:11:39.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3015040051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006242',
  'y_coordinate_state_plane': '187816',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68216098051231',
  'longitude': '-73.92070811351712',
  'location': {'latitude': '40.68216098051231',
   'longitude': '-73.92070811351712',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605127',
  'created_date': '2024-03-17T01:04:32.000',
  'closed_date': '2024-03-17T01:32: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': '10463',
  'incident_address': '251 WEST  231 STREET',
  'street_name': 'WEST  231 STREET',
  'cross_street_1': 'KINGSBRIDGE AVENUE',
  'cross_street_2': 'CORLEAR AVENUE',
  'intersection_street_1': 'KINGSBRIDGE AVENUE',
  'intersection_street_2': 'CORLEAR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  231 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:32:37.000',
  'community_board': '08 BRONX',
  'bbl': '2057080104',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010043',
  'y_coordinate_state_plane': '259864',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.879903182494935',
  'longitude': '-73.90672706487744',
  'location': {'latitude': '40.879903182494935',
   'longitude': '-73.90672706487744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599809',
  'created_date': '2024-03-17T01:04: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': '11357',
  'incident_address': '163-04 16 AVENUE',
  'street_name': '16 AVENUE',
  'cross_street_1': '163 STREET',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '163 STREET',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '16 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:02:37.000',
  'community_board': '07 QUEENS',
  'bbl': '4047660010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039783',
  'y_coordinate_state_plane': '225126',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78442059558467',
  'longitude': '-73.79946879360061',
  'location': {'latitude': '40.78442059558467',
   'longitude': '-73.79946879360061',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601684',
  'created_date': '2024-03-17T01:04:29.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': '35-14 103 STREET',
  'street_name': '103 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': '103 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017430011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021642',
  'y_coordinate_state_plane': '214189',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.754496780329355',
  'longitude': '-73.86503716877752',
  'location': {'latitude': '40.754496780329355',
   'longitude': '-73.86503716877752',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602190',
  'created_date': '2024-03-17T01:04:29.000',
  'closed_date': '2024-03-17T01:33:14.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': '639 JEFFERSON PLACE',
  'street_name': 'JEFFERSON PLACE',
  'cross_street_1': 'FRANKLIN AVENUE',
  'cross_street_2': 'CLINTON AVENUE',
  'intersection_street_1': 'FRANKLIN AVENUE',
  'intersection_street_2': 'CLINTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JEFFERSON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:33:17.000',
  'community_board': '03 BRONX',
  'bbl': '2029350027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011986',
  'y_coordinate_state_plane': '242902',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8333417044513',
  'longitude': '-73.89977095577845',
  'location': {'latitude': '40.8333417044513',
   'longitude': '-73.89977095577845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603153',
  'created_date': '2024-03-17T01:04:05.000',
  'closed_date': '2024-03-17T01:36:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11212',
  'incident_address': '375 REMSEN AVENUE',
  'street_name': 'REMSEN AVENUE',
  'cross_street_1': 'EAST   57 STREET',
  'cross_street_2': 'LENOX ROAD',
  'intersection_street_1': 'EAST   57 STREET',
  'intersection_street_2': 'LENOX ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'REMSEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:36:07.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3046450050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005367',
  'y_coordinate_state_plane': '178405',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6563320270823',
  'longitude': '-73.92389239434421',
  'location': {'latitude': '40.6563320270823',
   'longitude': '-73.92389239434421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598527',
  'created_date': '2024-03-17T01:03:50.000',
  'closed_date': '2024-03-17T01:28: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': '11368',
  'incident_address': '126-05 36 AVENUE',
  'street_name': '36 AVENUE',
  'cross_street_1': 'SEAVER WAY',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'SEAVER WAY',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '36 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:33.000',
  'community_board': '07 QUEENS',
  'bbl': '4018230060',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027391',
  'y_coordinate_state_plane': '215680',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75856300798321',
  'longitude': '-73.84427717949445',
  'location': {'latitude': '40.75856300798321',
   'longitude': '-73.84427717949445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598506',
  'created_date': '2024-03-17T01:03:42.000',
  'closed_date': '2024-03-17T01:17: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': '11206',
  'incident_address': '210 VARET STREET',
  'street_name': 'VARET STREET',
  'cross_street_1': 'BUSHWICK AVENUE',
  'cross_street_2': 'WHITE STREET',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'WHITE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VARET 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-03-17T01:17:44.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3031170029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002118',
  'y_coordinate_state_plane': '195688',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70377707990566',
  'longitude': '-73.93555625856598',
  'location': {'latitude': '40.70377707990566',
   'longitude': '-73.93555625856598',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598845',
  'created_date': '2024-03-17T01:03:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11249',
  'incident_address': '200 KENT AVENUE',
  'street_name': 'KENT AVENUE',
  'cross_street_1': 'NORTH    3 STREET',
  'cross_street_2': 'METROPOLITAN AVENUE',
  'intersection_street_1': 'NORTH    3 STREET',
  'intersection_street_2': 'METROPOLITAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KENT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:48.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023560001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994165',
  'y_coordinate_state_plane': '200863',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'SUV',
  'latitude': '40.71799370965328',
  'longitude': '-73.96423237356964',
  'location': {'latitude': '40.71799370965328',
   'longitude': '-73.96423237356964',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604490',
  'created_date': '2024-03-17T01:03: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': '10030',
  'incident_address': '173 WEST  133 STREET',
  'street_name': 'WEST  133 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  133 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1019180001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999740',
  'y_coordinate_state_plane': '235758',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81376342276675',
  'longitude': '-73.94404056323444',
  'location': {'latitude': '40.81376342276675',
   'longitude': '-73.94404056323444',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602381',
  'created_date': '2024-03-17T01:03:08.000',
  'closed_date': '2024-03-17T01:42: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': '10009',
  'incident_address': '141 EAST    3 STREET',
  'street_name': 'EAST    3 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    3 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:42:53.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004310031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988241',
  'y_coordinate_state_plane': '202974',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72379255122182',
  'longitude': '-73.98560151137893',
  'location': {'latitude': '40.72379255122182',
   'longitude': '-73.98560151137893',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600736',
  'created_date': '2024-03-17T01:03:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11103',
  'incident_address': '28-23 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': '30 AVENUE',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': '30 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006630011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008100',
  'y_coordinate_state_plane': '218078',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76521798106401',
  'longitude': '-73.91390187945242',
  'location': {'latitude': '40.76521798106401',
   'longitude': '-73.91390187945242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600767',
  'created_date': '2024-03-17T01:02:54.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': '11436',
  'incident_address': '114-30 149 STREET',
  'street_name': '149 STREET',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': '115 AVENUE',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': '115 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '149 STREET',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4119790020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041304',
  'y_coordinate_state_plane': '189077',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6854655737228',
  'longitude': '-73.79428214691656',
  'location': {'latitude': '40.6854655737228',
   'longitude': '-73.79428214691656',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603265',
  'created_date': '2024-03-17T01:02:53.000',
  'closed_date': '2024-03-17T01:11: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': '11238',
  'incident_address': '392 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS 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-03-17T01:12:01.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994843',
  'y_coordinate_state_plane': '185973',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6771233451657',
  'longitude': '-73.96180995731324',
  'location': {'latitude': '40.6771233451657',
   'longitude': '-73.96180995731324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602307',
  'created_date': '2024-03-17T01:02:48.000',
  'closed_date': '2024-03-17T01:18:35.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': '10012',
  'incident_address': '95 MAC DOUGAL STREET',
  'street_name': 'MAC DOUGAL 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 with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-03-17T01:18:40.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005420053',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983971',
  'y_coordinate_state_plane': '205016',
  'open_data_channel_type': 'ONLINE',
  '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': '60599487',
  'created_date': '2024-03-17T01:02:39.000',
  'closed_date': '2024-03-17T01:08: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:08:55.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604043',
  'created_date': '2024-03-17T01:02:33.000',
  'closed_date': '2024-03-17T01:20: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': '10025',
  'incident_address': '929 COLUMBUS AVENUE',
  'street_name': 'COLUMBUS AVENUE',
  'cross_street_1': 'WEST  105 STREET',
  'cross_street_2': 'WEST  106 STREET',
  'intersection_street_1': 'WEST  105 STREET',
  'intersection_street_2': 'WEST  106 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'COLUMBUS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:20:22.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018410064',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994471',
  'y_coordinate_state_plane': '230348',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79892213377373',
  'longitude': '-73.96308367576603',
  'location': {'latitude': '40.79892213377373',
   'longitude': '-73.96308367576603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600649',
  'created_date': '2024-03-17T01:02:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '105-14 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '31 AVENUE',
  'cross_street_2': '106 STREET',
  'intersection_street_1': '31 AVENUE',
  'intersection_street_2': '106 STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:05:27.000',
  'community_board': '03 QUEENS',
  'bbl': '4016920003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021927',
  'y_coordinate_state_plane': '216586',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76107471535037',
  'longitude': '-73.8639950574792',
  'location': {'latitude': '40.76107471535037',
   'longitude': '-73.8639950574792',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599795',
  'created_date': '2024-03-17T01:02:28.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': '1404 JESUP AVENUE',
  'street_name': 'JESUP AVENUE',
  'cross_street_1': 'EDWARD L GRANT HIGHWAY',
  'cross_street_2': 'JESUP PLACE',
  'intersection_street_1': 'EDWARD L GRANT HIGHWAY',
  'intersection_street_2': 'JESUP PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JESUP AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:55:06.000',
  'community_board': '04 BRONX',
  'bbl': '2028720058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006173',
  'y_coordinate_state_plane': '245756',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84119144667855',
  'longitude': '-73.92076793939202',
  'location': {'latitude': '40.84119144667855',
   'longitude': '-73.92076793939202',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602595',
  'created_date': '2024-03-17T01:02:21.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Taxi Complaint',
  'descriptor': 'Driver Complaint - Passenger',
  'location_type': 'Street',
  'incident_zip': '11430',
  'incident_address': 'JFK',
  'street_name': 'JFK',
  'cross_street_1': 'BEND',
  'cross_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'address_type': 'UNRECOGNIZED',
  'city': 'JAMAICA',
  'landmark': 'JOHN F KENNEDY AIRPORT',
  'status': 'In Progress',
  'community_board': '83 QUEENS',
  'bbl': '4142600001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043001',
  'y_coordinate_state_plane': '175548',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'taxi_pick_up_location': 'JOHN F KENNEDY AIRPORT, QUEENS (JAMAICA) ,NY, 11430',
  'latitude': '40.64832048620134',
  'longitude': '-73.78828125130184',
  'location': {'latitude': '40.64832048620134',
   'longitude': '-73.78828125130184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598376',
  'created_date': '2024-03-17T01:02:20.000',
  'closed_date': '2024-03-17T01:08:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11221',
  'incident_address': '372 KOSCIUSZKO STREET',
  'street_name': 'KOSCIUSZKO STREET',
  'cross_street_1': 'MARCUS GARVEY BOULEVARD',
  'cross_street_2': 'LEWIS AVENUE',
  'intersection_street_1': 'MARCUS GARVEY BOULEVARD',
  'intersection_street_2': 'LEWIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KOSCIUSZKO STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:08:59.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016050001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001122',
  'y_coordinate_state_plane': '191403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69201771102667',
  'longitude': '-73.93915922138217',
  'location': {'latitude': '40.69201771102667',
   'longitude': '-73.93915922138217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602666',
  'created_date': '2024-03-17T01:02: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': '10027',
  'incident_address': '2259 ADAM CLAYTON POWELL JR BOULEVARD',
  'street_name': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_1': 'WEST  132 STREET',
  'cross_street_2': 'WEST  133 STREET',
  'intersection_street_1': 'WEST  132 STREET',
  'intersection_street_2': 'WEST  133 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1019170061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999555',
  'y_coordinate_state_plane': '235812',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81391196010455',
  'longitude': '-73.94470877405912',
  'location': {'latitude': '40.81391196010455',
   'longitude': '-73.94470877405912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600498',
  'created_date': '2024-03-17T01:02:01.000',
  'closed_date': '2024-03-17T01:17:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '634 BAY STREET',
  'street_name': 'BAY STREET',
  'cross_street_1': 'CANAL STREET',
  'cross_street_2': 'THOMPSON STREET',
  'intersection_street_1': 'CANAL STREET',
  'intersection_street_2': 'THOMPSON STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BAY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:17:06.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005240024',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '963277',
  'y_coordinate_state_plane': '167535',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.626496562064425',
  'longitude': '-74.07555482600705',
  'location': {'latitude': '40.626496562064425',
   'longitude': '-74.07555482600705',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605423',
  'created_date': '2024-03-17T01:01:53.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': '4215 PARK AVENUE',
  'street_name': 'PARK AVENUE',
  'cross_street_1': 'EAST TREMONT AVENUE',
  'cross_street_2': 'EAST  178 STREET',
  'intersection_street_1': 'EAST TREMONT AVENUE',
  'intersection_street_2': 'EAST  178 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARK AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:01:47.000',
  'community_board': '06 BRONX',
  'bbl': '2030277501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012131',
  'y_coordinate_state_plane': '248193',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.847863491304004',
  'longitude': '-73.89922497624548',
  'location': {'latitude': '40.847863491304004',
   'longitude': '-73.89922497624548',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603204',
  'created_date': '2024-03-17T01:01:44.000',
  'closed_date': '2024-03-17T01:39: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': '184 EAST    7 STREET',
  'street_name': 'EAST    7 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    7 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:39:14.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003890009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989528',
  'y_coordinate_state_plane': '203398',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72495565410909',
  'longitude': '-73.98095801815782',
  'location': {'latitude': '40.72495565410909',
   'longitude': '-73.98095801815782',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602159',
  'created_date': '2024-03-17T01:01:43.000',
  'closed_date': '2024-03-17T01:11:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11231',
  'incident_address': '358 COLUMBIA STREET',
  'street_name': 'COLUMBIA STREET',
  'cross_street_1': 'COLES STREET',
  'cross_street_2': 'LUQUER STREET',
  'intersection_street_1': 'COLES STREET',
  'intersection_street_2': 'LUQUER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'COLUMBIA STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:11:35.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3005120034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982786',
  'y_coordinate_state_plane': '186898',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679668477856836',
  'longitude': '-74.00527823605682',
  'location': {'latitude': '40.679668477856836',
   'longitude': '-74.00527823605682',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603603',
  'created_date': '2024-03-17T01:01:39.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': '11385',
  'incident_address': '63-14 FOREST AVENUE',
  'street_name': 'FOREST 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': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:53:05.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010605',
  'y_coordinate_state_plane': '198104',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71038721776248',
  'longitude': '-73.90493712722406',
  'location': {'latitude': '40.71038721776248',
   'longitude': '-73.90493712722406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602306',
  'created_date': '2024-03-17T01:01:32.000',
  'closed_date': '2024-03-17T01:22:01.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': '11358',
  'incident_address': '47-24 197 STREET',
  'street_name': '197 STREET',
  'cross_street_1': '47 AVENUE',
  'cross_street_2': '48 AVENUE',
  'intersection_street_1': '47 AVENUE',
  'intersection_street_2': '48 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '197 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-03-17T01:22:05.000',
  'community_board': '11 QUEENS',
  'bbl': '4056160045',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044354',
  'y_coordinate_state_plane': '213426',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.752277329552385',
  'longitude': '-73.78306747903588',
  'location': {'latitude': '40.752277329552385',
   'longitude': '-73.78306747903588',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598566',
  'created_date': '2024-03-17T01:01:16.000',
  'closed_date': '2024-03-17T01:10: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': '10468',
  'incident_address': '2543 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'WEST  190 STREET',
  'cross_street_2': 'WEST  192 STREET',
  'intersection_street_1': 'WEST  190 STREET',
  'intersection_street_2': 'WEST  192 STREET',
  '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-03-17T01:10:40.000',
  'community_board': '07 BRONX',
  'bbl': '2032140139',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011551',
  'y_coordinate_state_plane': '254590',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86542314433969',
  'longitude': '-73.90129531313143',
  'location': {'latitude': '40.86542314433969',
   'longitude': '-73.90129531313143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604497',
  'created_date': '2024-03-17T01:01: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': '11207',
  'incident_address': '274 HENDRIX STREET',
  'street_name': 'HENDRIX STREET',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'LIBERTY AVENUE',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'LIBERTY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HENDRIX STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039620030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014731',
  'y_coordinate_state_plane': '185409',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67552915383659',
  'longitude': '-73.89011204247791',
  'location': {'latitude': '40.67552915383659',
   'longitude': '-73.89011204247791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605084',
  'created_date': '2024-03-17T01:00:32.000',
  'closed_date': '2024-03-17T01:22:47.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': '11358',
  'incident_address': '47-28 196 STREET',
  'street_name': '196 STREET',
  'cross_street_1': '47 AVENUE',
  'cross_street_2': '48 AVENUE',
  'intersection_street_1': '47 AVENUE',
  'intersection_street_2': '48 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '196 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-03-17T01:22:54.000',
  'community_board': '11 QUEENS',
  'bbl': '4056140054',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043853',
  'y_coordinate_state_plane': '213286',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75189645740321',
  'longitude': '-73.78487696490446',
  'location': {'latitude': '40.75189645740321',
   'longitude': '-73.78487696490446',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600191',
  'created_date': '2024-03-17T01:00:30.000',
  'closed_date': '2024-03-17T01:22:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '122-16 109 AVENUE',
  'street_name': '109 AVENUE',
  'cross_street_1': '122 STREET',
  'cross_street_2': '123 STREET',
  'intersection_street_1': '122 STREET',
  'intersection_street_2': '123 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '109 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:22:26.000',
  'community_board': '10 QUEENS',
  'bbl': '4116030010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034365',
  'y_coordinate_state_plane': '188185',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68305925105281',
  'longitude': '-73.81930844425524',
  'location': {'latitude': '40.68305925105281',
   'longitude': '-73.81930844425524',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598498',
  'created_date': '2024-03-17T01:00:30.000',
  'closed_date': '2024-03-17T01:12: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': '11238',
  'incident_address': '392 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS 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-03-17T01:12:46.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994843',
  'y_coordinate_state_plane': '185973',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6771233451657',
  'longitude': '-73.96180995731324',
  'location': {'latitude': '40.6771233451657',
   'longitude': '-73.96180995731324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600650',
  'created_date': '2024-03-17T01:00:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '20-52 45 STREET',
  'street_name': '45 STREET',
  'cross_street_1': '20 ROAD',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 ROAD',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '45 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4007860052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011885',
  'y_coordinate_state_plane': '221013',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.773262766285505',
  'longitude': '-73.90022603254609',
  'location': {'latitude': '40.773262766285505',
   'longitude': '-73.90022603254609',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601256',
  'created_date': '2024-03-17T01:00:19.000',
  'closed_date': '2024-03-17T01:31:03.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': '1746 PRESIDENT STREET',
  'street_name': 'PRESIDENT STREET',
  'cross_street_1': 'UTICA AVENUE',
  'cross_street_2': 'ROCHESTER AVENUE',
  'intersection_street_1': 'UTICA AVENUE',
  'intersection_street_2': 'ROCHESTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PRESIDENT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:31:06.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3014090037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003896',
  'y_coordinate_state_plane': '182252',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.666894575124154',
  'longitude': '-73.92918280193905',
  'location': {'latitude': '40.666894575124154',
   'longitude': '-73.92918280193905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598836',
  'created_date': '2024-03-17T01:00:16.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': '10473',
  'incident_address': '430 TURNEUR AVENUE',
  'street_name': 'TURNEUR AVENUE',
  'cross_street_1': 'NORTON AVENUE',
  'cross_street_2': 'LACOMBE AVENUE',
  'intersection_street_1': 'NORTON AVENUE',
  'intersection_street_2': 'LACOMBE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TURNEUR AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2035120016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026831',
  'y_coordinate_state_plane': '236506',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81572743078563',
  'longitude': '-73.8461665487653',
  'location': {'latitude': '40.81572743078563',
   'longitude': '-73.8461665487653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602348',
  'created_date': '2024-03-17T01:00:11.000',
  'closed_date': '2024-03-17T01:10: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': '10031',
  'incident_address': '3505 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  143 STREET',
  'cross_street_2': 'WEST  144 STREET',
  'intersection_street_1': 'WEST  143 STREET',
  'intersection_street_2': 'WEST  144 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:10:16.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020900029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997744',
  'y_coordinate_state_plane': '239982',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.825360385205165',
  'longitude': '-73.95124285145732',
  'location': {'latitude': '40.825360385205165',
   'longitude': '-73.95124285145732',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598578',
  'created_date': '2024-03-17T01:00:09.000',
  'closed_date': '2024-03-17T01:40:39.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': '284 SOUTH SECOND STREET',
  'street_name': 'SOUTH SECOND STREET',
  'cross_street_1': 'HAVEMEYER STREET',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'HAVEMEYER STREET',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 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-03-17T01:40:43.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996284',
  'y_coordinate_state_plane': '198407',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.711249948629785',
  'longitude': '-73.95659262986807',
  'location': {'latitude': '40.711249948629785',
   'longitude': '-73.95659262986807',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604803',
  'created_date': '2024-03-17T01:00:06.000',
  'closed_date': '2024-03-17T01:20:58.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': '10036',
  'incident_address': '300 WEST   44 STREET',
  'street_name': 'WEST   44 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': 'NEW YORK',
  'landmark': 'WEST   44 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:21:01.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010340037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987221',
  'y_coordinate_state_plane': '215694',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75870618571434',
  'longitude': '-73.98927578749486',
  'location': {'latitude': '40.75870618571434',
   'longitude': '-73.98927578749486',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600432',
  'created_date': '2024-03-17T01:00:04.000',
  'closed_date': '2024-03-17T01:34:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10002',
  'incident_address': '172 ELDRIDGE STREET',
  'street_name': 'ELDRIDGE 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': 'ELDRIDGE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:34:05.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150010',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986772',
  'y_coordinate_state_plane': '201669',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72021118233836',
  'longitude': '-73.99090176976081',
  'location': {'latitude': '40.72021118233836',
   'longitude': '-73.99090176976081',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602333',
  'created_date': '2024-03-17T00:59:57.000',
  'closed_date': '2024-03-17T01:05: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:05:14.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598434',
  'created_date': '2024-03-17T00:59:50.000',
  'closed_date': '2024-03-17T01:31:15.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': '1214 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-03-17T01:31:17.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050470042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998037',
  'y_coordinate_state_plane': '178856',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6575843694729',
  'longitude': '-73.95030945770479',
  'location': {'latitude': '40.6575843694729',
   'longitude': '-73.95030945770479',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605424',
  'created_date': '2024-03-17T00:59:42.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': '10453',
  'incident_address': '1822 ANDREWS AVENUE SOUTH',
  'street_name': 'ANDREWS AVENUE SOUTH',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'WEST BURNSIDE AVENUE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'WEST BURNSIDE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANDREWS AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2028790004',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007705',
  'y_coordinate_state_plane': '249725',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85208124235707',
  'longitude': '-73.91521724780894',
  'location': {'latitude': '40.85208124235707',
   'longitude': '-73.91521724780894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603235',
  'created_date': '2024-03-17T00:59:40.000',
  'closed_date': '2024-03-17T01:43:34.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': '11237',
  'incident_address': '317 KNICKERBOCKER AVENUE',
  'street_name': 'KNICKERBOCKER AVENUE',
  'cross_street_1': 'HART STREET',
  'cross_street_2': 'DEKALB AVENUE',
  'intersection_street_1': 'HART STREET',
  'intersection_street_2': 'DEKALB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KNICKERBOCKER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:43:38.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032360007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005623',
  'y_coordinate_state_plane': '194831',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70141704512948',
  'longitude': '-73.92291765279987',
  'location': {'latitude': '40.70141704512948',
   'longitude': '-73.92291765279987',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603149',
  'created_date': '2024-03-17T00:58:51.000',
  'closed_date': '2024-03-17T01:34:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:34:52.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602156',
  'created_date': '2024-03-17T00:58:50.000',
  'closed_date': '2024-03-17T01:38:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11223',
  'incident_address': '183 AVENUE U',
  'street_name': 'AVENUE U',
  'cross_street_1': 'WEST    6 STREET',
  'cross_street_2': 'WEST    5 STREET',
  'intersection_street_1': 'WEST    6 STREET',
  'intersection_street_2': 'WEST    5 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-03-17T01:38:21.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3071000049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990556',
  'y_coordinate_state_plane': '156613',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59654050281439',
  'longitude': '-73.97729295148766',
  'location': {'latitude': '40.59654050281439',
   'longitude': '-73.97729295148766',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603579',
  'created_date': '2024-03-17T00:58:43.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': '11354',
  'incident_address': '137-72 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': 'LEAVITT STREET',
  'cross_street_2': 'UNION STREET',
  'intersection_street_1': 'LEAVITT STREET',
  'intersection_street_2': 'UNION STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:06:58.000',
  'community_board': '07 QUEENS',
  'bbl': '4049770050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1031725',
  'y_coordinate_state_plane': '217601',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7638134402157',
  'longitude': '-73.82861953775803',
  'location': {'latitude': '40.7638134402157',
   'longitude': '-73.82861953775803',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599388',
  'created_date': '2024-03-17T00:58:42.000',
  'closed_date': '2024-03-17T01:33:46.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': '170 ELDRIDGE STREET',
  'street_name': 'ELDRIDGE 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': 'ELDRIDGE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:33:50.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986765',
  'y_coordinate_state_plane': '201651',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72016177866853',
  'longitude': '-73.99092702930629',
  'location': {'latitude': '40.72016177866853',
   'longitude': '-73.99092702930629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603562',
  'created_date': '2024-03-17T00:58:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11412',
  'incident_address': '119 AVENUE',
  'street_name': '119 AVENUE',
  'cross_street_1': '119 AVENUE',
  'cross_street_2': '191 STREET',
  'intersection_street_1': '119 AVENUE',
  'intersection_street_2': '191 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051091',
  'y_coordinate_state_plane': '190479',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68924523025941',
  'longitude': '-73.75897971806971',
  'location': {'latitude': '40.68924523025941',
   'longitude': '-73.75897971806971',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598474',
  'created_date': '2024-03-17T00:58:17.000',
  'closed_date': '2024-03-17T01:17: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': '11206',
  'incident_address': '210 VARET STREET',
  'street_name': 'VARET STREET',
  'cross_street_1': 'BUSHWICK AVENUE',
  'cross_street_2': 'WHITE STREET',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'WHITE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VARET 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-03-17T01:18:01.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3031170029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002118',
  'y_coordinate_state_plane': '195688',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70377707990566',
  'longitude': '-73.93555625856598',
  'location': {'latitude': '40.70377707990566',
   'longitude': '-73.93555625856598',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603479',
  'created_date': '2024-03-17T00:58:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '1624 EAST   10 STREET',
  'street_name': 'EAST   10 STREET',
  'cross_street_1': 'AVENUE P',
  'cross_street_2': 'QUENTIN ROAD',
  'intersection_street_1': 'AVENUE P',
  'intersection_street_2': 'QUENTIN ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   10 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3066410015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994452',
  'y_coordinate_state_plane': '161231',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.609212344012825',
  'longitude': '-73.96325701158713',
  'location': {'latitude': '40.609212344012825',
   'longitude': '-73.96325701158713',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602160',
  'created_date': '2024-03-17T00:57:56.000',
  'closed_date': '2024-03-17T01:41:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10003',
  'incident_address': '45 EAST    1 STREET',
  'street_name': 'EAST    1 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    1 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:41:53.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004427501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987034',
  'y_coordinate_state_plane': '203012',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72389731421935',
  'longitude': '-73.98995603727332',
  'location': {'latitude': '40.72389731421935',
   'longitude': '-73.98995603727332',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603608',
  'created_date': '2024-03-17T00:57:53.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': '488 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'cross_street_1': 'WEST   83 STREET',
  'cross_street_2': 'WEST   84 STREET',
  'intersection_street_1': 'WEST   83 STREET',
  'intersection_street_2': 'WEST   84 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AMSTERDAM AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:06:43.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012310033',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990836',
  'y_coordinate_state_plane': '225659',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78605555139345',
  'longitude': '-73.97621720744435',
  'location': {'latitude': '40.78605555139345',
   'longitude': '-73.97621720744435',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601682',
  'created_date': '2024-03-17T00:57:39.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': '11102',
  'incident_address': '28-07 8 STREET',
  'street_name': '8 STREET',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': 'ASTORIA BOULEVARD',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': 'ASTORIA BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '8 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4005090032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1002965',
  'y_coordinate_state_plane': '220949',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77311048892236',
  'longitude': '-73.93243114483374',
  'location': {'latitude': '40.77311048892236',
   'longitude': '-73.93243114483374',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601978',
  'created_date': '2024-03-17T00:57:37.000',
  'closed_date': '2024-03-17T01:33: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': '10002',
  'incident_address': '160 ELDRIDGE STREET',
  'street_name': 'ELDRIDGE 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': 'ELDRIDGE 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-03-17T01:33:32.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986731',
  'y_coordinate_state_plane': '201564',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71992299422833',
  'longitude': '-73.99104971783647',
  'location': {'latitude': '40.71992299422833',
   'longitude': '-73.99104971783647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601367',
  'created_date': '2024-03-17T00:57:34.000',
  'closed_date': '2024-03-17T01:13: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': '11232',
  'incident_address': '831 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 to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:13:50.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009160060',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985062',
  'y_coordinate_state_plane': '174719',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.646239901144526',
  'longitude': '-73.99707392051599',
  'location': {'latitude': '40.646239901144526',
   'longitude': '-73.99707392051599',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604148',
  'created_date': '2024-03-17T00:57:31.000',
  'closed_date': '2024-03-17T01:10:14.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': '10467',
  'incident_address': '3273 PARKSIDE PLACE',
  'street_name': 'PARKSIDE PLACE',
  'cross_street_1': 'EAST  207 STREET',
  'cross_street_2': 'EAST  209 STREET',
  'intersection_street_1': 'EAST  207 STREET',
  'intersection_street_2': 'EAST  209 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PARKSIDE PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:21.000',
  'community_board': '07 BRONX',
  'bbl': '2033550043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019271',
  'y_coordinate_state_plane': '258250',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875441463041874',
  'longitude': '-73.87336514604198',
  'location': {'latitude': '40.875441463041874',
   'longitude': '-73.87336514604198',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604249',
  'created_date': '2024-03-17T00:57:27.000',
  'closed_date': '2024-03-17T01:10: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': '11201',
  'incident_address': '8 REMSEN STREET',
  'street_name': 'REMSEN STREET',
  'cross_street_1': 'BROOKLYN HEIGHTS PROMENADE',
  'cross_street_2': 'MONTAGUE TERRACE',
  'intersection_street_1': 'BROOKLYN HEIGHTS PROMENADE',
  'intersection_street_2': 'MONTAGUE TERRACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'REMSEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:21.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3002510006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984795',
  'y_coordinate_state_plane': '192512',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.695077724850115',
  'longitude': '-73.99803462876274',
  'location': {'latitude': '40.695077724850115',
   'longitude': '-73.99803462876274',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604054',
  'created_date': '2024-03-17T00:57:16.000',
  'closed_date': '2024-03-17T00:59:19.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': '11375',
  'incident_address': '72-07 AUSTIN STREET',
  'street_name': 'AUSTIN STREET',
  'cross_street_1': '72 AVENUE',
  'cross_street_2': '72 ROAD',
  'intersection_street_1': '72 AVENUE',
  'intersection_street_2': '72 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'AUSTIN 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-03-17T00:59:23.000',
  'community_board': '06 QUEENS',
  'bbl': '4032580028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027957',
  'y_coordinate_state_plane': '201350',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.719227996478985',
  'longitude': '-73.84232724151137',
  'location': {'latitude': '40.719227996478985',
   'longitude': '-73.84232724151137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604451',
  'created_date': '2024-03-17T00:57: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': '10455',
  'incident_address': '541 UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'cross_street_1': 'EAST  147 STREET',
  'cross_street_2': 'EAST  149 STREET',
  'intersection_street_1': 'EAST  147 STREET',
  'intersection_street_2': 'EAST  149 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNION AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2025820042',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010420',
  'y_coordinate_state_plane': '235260',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81237137041546',
  'longitude': '-73.90545977958996',
  'location': {'latitude': '40.81237137041546',
   'longitude': '-73.90545977958996',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598530',
  'created_date': '2024-03-17T00:57:13.000',
  'closed_date': '2024-03-17T01:02: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:02:39.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604190',
  'created_date': '2024-03-17T00:57:12.000',
  'closed_date': '2024-03-17T01:32:36.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': '125 ALLEN STREET',
  'street_name': 'ALLEN 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': '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-03-17T01:32:40.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150033',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987011',
  'y_coordinate_state_plane': '201544',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71986801608933',
  'longitude': '-73.99003961762237',
  'location': {'latitude': '40.71986801608933',
   'longitude': '-73.99003961762237',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602767',
  'created_date': '2024-03-17T00:56:59.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Missed Collection',
  'descriptor': 'Trash',
  'location_type': 'Street',
  'incident_zip': '11229',
  'incident_address': '2002 EAST   28 STREET',
  'street_name': 'EAST   28 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   28 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3073320007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999747',
  'y_coordinate_state_plane': '158664',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60215877631381',
  'longitude': '-73.9441927114322',
  'location': {'latitude': '40.60215877631381',
   'longitude': '-73.9441927114322',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598518',
  'created_date': '2024-03-17T00:56:44.000',
  'closed_date': '2024-03-17T01:41:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11237',
  'incident_address': '207 HIMROD STREET',
  'street_name': 'HIMROD STREET',
  'cross_street_1': 'MYRTLE AVENUE',
  'cross_street_2': 'KNICKERBOCKER AVENUE',
  'intersection_street_1': 'MYRTLE AVENUE',
  'intersection_street_2': 'KNICKERBOCKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HIMROD 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-03-17T01:41:50.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032680054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006214',
  'y_coordinate_state_plane': '194009',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69915940103971',
  'longitude': '-73.92078887598137',
  'location': {'latitude': '40.69915940103971',
   'longitude': '-73.92078887598137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603607',
  'created_date': '2024-03-17T00:56:28.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': '11434',
  'incident_address': '153-70 SOUTH CONDUIT AVENUE',
  'street_name': 'SOUTH CONDUIT AVENUE',
  'cross_street_1': '153 LANE',
  'cross_street_2': '153 COURT',
  'intersection_street_1': '153 LANE',
  'intersection_street_2': '153 COURT',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'SOUTH CONDUIT AVENUE',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4150010105',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043989',
  'y_coordinate_state_plane': '182141',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66641016033941',
  'longitude': '-73.78466244166636',
  'location': {'latitude': '40.66641016033941',
   'longitude': '-73.78466244166636',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601177',
  'created_date': '2024-03-17T00:56:20.000',
  'closed_date': '2024-03-17T01:16:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10304',
  'incident_address': '308 FRONT STREET',
  'street_name': 'FRONT STREET',
  'cross_street_1': 'WAVE STREET',
  'cross_street_2': 'NAVY PIER COURT',
  'intersection_street_1': 'WAVE STREET',
  'intersection_street_2': 'NAVY PIER COURT',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  '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-03-17T01:16:26.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5004890025',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '963544',
  'y_coordinate_state_plane': '168573',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62934628066453',
  'longitude': '-74.07459614853029',
  'location': {'latitude': '40.62934628066453',
   'longitude': '-74.07459614853029',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600408',
  'created_date': '2024-03-17T00:56:15.000',
  'closed_date': '2024-03-17T01:37:29.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': '2275 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  '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': 'OCEAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:37:33.000',
  'community_board': '15 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997403',
  'y_coordinate_state_plane': '160024',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60589548763551',
  'longitude': '-73.95263119722419',
  'location': {'latitude': '40.60589548763551',
   'longitude': '-73.95263119722419',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598803',
  'created_date': '2024-03-17T00:56:01.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': '10001',
  'incident_address': 'WEST   27 STREET',
  'street_name': 'WEST   27 STREET',
  'cross_street_1': '11 AVENUE',
  'cross_street_2': 'WEST   27 STREET',
  'intersection_street_1': '11 AVENUE',
  'intersection_street_2': 'WEST   27 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:09:48.000',
  'community_board': '04 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982816',
  'y_coordinate_state_plane': '213034',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75140554510984',
  'longitude': '-74.00517564298937',
  'location': {'latitude': '40.75140554510984',
   'longitude': '-74.00517564298937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601238',
  'created_date': '2024-03-17T00:55:58.000',
  'closed_date': '2024-03-17T01:36:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10003',
  'incident_address': '78 EAST    4 STREET',
  'street_name': 'EAST    4 STREET',
  'cross_street_1': 'BOWERY',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': 'BOWERY',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    4 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:36:37.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004590029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987021',
  'y_coordinate_state_plane': '203932',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72642249491312',
  'longitude': '-73.9900025591503',
  'location': {'latitude': '40.72642249491312',
   'longitude': '-73.9900025591503',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600359',
  'created_date': '2024-03-17T00:55:23.000',
  'closed_date': '2024-03-17T01:09: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': '11358',
  'incident_address': '194-01 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '194 STREET',
  'cross_street_2': '195 STREET',
  'intersection_street_1': '194 STREET',
  'intersection_street_2': '195 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'NORTHERN 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-03-17T01:09:59.000',
  'community_board': '11 QUEENS',
  'bbl': '4053700001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043129',
  'y_coordinate_state_plane': '215477',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75791502816457',
  'longitude': '-73.78747087643431',
  'location': {'latitude': '40.75791502816457',
   'longitude': '-73.78747087643431',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600270',
  'created_date': '2024-03-17T00:55:20.000',
  'closed_date': '2024-03-17T01:32:28.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': '11373',
  'incident_address': '40-08 74 STREET',
  'street_name': '74 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': '41 AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': '41 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '74 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:32:32.000',
  'community_board': '04 QUEENS',
  'bbl': '4013050133',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014361',
  'y_coordinate_state_plane': '211182',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74627112362122',
  'longitude': '-73.89133067280933',
  'location': {'latitude': '40.74627112362122',
   'longitude': '-73.89133067280933',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601362',
  'created_date': '2024-03-17T00:54:56.000',
  'closed_date': '2024-03-17T01:04: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': '10128',
  'incident_address': 'EAST   89 STREET',
  'street_name': 'EAST   89 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': '1 AVENUE',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': '1 AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:30.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '60600409',
  'created_date': '2024-03-17T00:54:35.000',
  'closed_date': '2024-03-17T01:21: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': '10451',
  'incident_address': '346 EAST  156 STREET',
  'street_name': 'EAST  156 STREET',
  'cross_street_1': 'MORRIS AVENUE',
  'cross_street_2': 'COURTLANDT AVENUE',
  'intersection_street_1': 'MORRIS AVENUE',
  'intersection_street_2': 'COURTLANDT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  156 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:21:42.000',
  'community_board': '01 BRONX',
  'bbl': '2024130001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006966',
  'y_coordinate_state_plane': '238547',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82140281581534',
  'longitude': '-73.91792636564979',
  'location': {'latitude': '40.82140281581534',
   'longitude': '-73.91792636564979',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599455',
  'created_date': '2024-03-17T00:54:32.000',
  'closed_date': '2024-03-17T01:04: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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:40.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605122',
  'created_date': '2024-03-17T00:54:31.000',
  'closed_date': '2024-03-17T01:02:15.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:02:18.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603580',
  'created_date': '2024-03-17T00:54: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': '11102',
  'incident_address': '18-14 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '18 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '18 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:12:28.000',
  'community_board': '01 QUEENS',
  'bbl': '4005390127',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004418',
  'y_coordinate_state_plane': '220637',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77225093512045',
  'longitude': '-73.92718615529014',
  'location': {'latitude': '40.77225093512045',
   'longitude': '-73.92718615529014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602639',
  'created_date': '2024-03-17T00:54:09.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': '11416',
  'incident_address': '106-05 101 AVENUE',
  'street_name': '101 AVENUE',
  'cross_street_1': '106 STREET',
  'cross_street_2': '107 STREET',
  'intersection_street_1': '106 STREET',
  'intersection_street_2': '107 STREET',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '101 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:02:31.000',
  'community_board': '09 QUEENS',
  'bbl': '4094080034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029494',
  'y_coordinate_state_plane': '189565',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.686873267483726',
  'longitude': '-73.83686171242668',
  'location': {'latitude': '40.686873267483726',
   'longitude': '-73.83686171242668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600122',
  'created_date': '2024-03-17T00:53:51.000',
  'closed_date': '2024-03-17T01:41:06.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': '10001',
  'incident_address': '554 WEST   28 STREET',
  'street_name': 'WEST   28 STREET',
  'cross_street_1': 'HIGH LINE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': 'HIGH LINE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   28 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:41:09.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1006990063',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983255',
  'y_coordinate_state_plane': '213082',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.751537353266606',
  'longitude': '-74.00359119592913',
  'location': {'latitude': '40.751537353266606',
   'longitude': '-74.00359119592913',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602240',
  'created_date': '2024-03-17T00:53:43.000',
  'closed_date': '2024-03-17T01:23: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': '11206',
  'incident_address': '28 FAYETTE STREET',
  'street_name': 'FAYETTE STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'BEAVER STREET',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'BEAVER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FAYETTE 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-03-17T01:23:41.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031327503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000970',
  'y_coordinate_state_plane': '194534',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.700611864867305',
  'longitude': '-73.93969956417916',
  'location': {'latitude': '40.700611864867305',
   'longitude': '-73.93969956417916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604502',
  'created_date': '2024-03-17T00:53:38.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': '11357',
  'incident_address': '154 STREET',
  'street_name': '154 STREET',
  'cross_street_1': '154 STREET',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '154 STREET',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:09:33.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037103',
  'y_coordinate_state_plane': '222824',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77811866377487',
  'longitude': '-73.8091644260998',
  'location': {'latitude': '40.77811866377487',
   'longitude': '-73.8091644260998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602659',
  'created_date': '2024-03-17T00:53: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': '11357',
  'incident_address': '149-25 23 AVENUE',
  'street_name': '23 AVENUE',
  'cross_street_1': '149 STREET',
  'cross_street_2': '150 STREET',
  'intersection_street_1': '149 STREET',
  'intersection_street_2': '150 STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '23 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4046730020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035063',
  'y_coordinate_state_plane': '222798',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77805926367901',
  'longitude': '-73.81653039967799',
  'location': {'latitude': '40.77805926367901',
   'longitude': '-73.81653039967799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605156',
  'created_date': '2024-03-17T00:53:15.000',
  'closed_date': '2024-03-17T01:06:24.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': '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': '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-03-17T01:06:30.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '60598476',
  'created_date': '2024-03-17T00:53:15.000',
  'closed_date': '2024-03-17T00:57:47.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': '10031',
  'incident_address': '526 WEST  147 STREET',
  'street_name': 'WEST  147 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': 'WEST  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:57:50.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998756',
  'y_coordinate_state_plane': '240547',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.826909545027505',
  'longitude': '-73.947585025272',
  'location': {'latitude': '40.826909545027505',
   'longitude': '-73.947585025272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604478',
  'created_date': '2024-03-17T00:53: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': '11214',
  'incident_address': '34 BAY   26 STREET',
  'street_name': 'BAY   26 STREET',
  'cross_street_1': '86 STREET',
  'cross_street_2': 'BENSON AVENUE',
  'intersection_street_1': '86 STREET',
  'intersection_street_2': 'BENSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   26 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984929',
  'y_coordinate_state_plane': '158971',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60301495254104',
  'longitude': '-73.99755477625945',
  'location': {'latitude': '40.60301495254104',
   'longitude': '-73.99755477625945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600480',
  'created_date': '2024-03-17T00:53:04.000',
  'closed_date': '2024-03-17T01:04:20.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': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:24.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598362',
  'created_date': '2024-03-17T00:52:42.000',
  'closed_date': '2024-03-17T00:59:38.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': '11375',
  'incident_address': '72-07 AUSTIN STREET',
  'street_name': 'AUSTIN STREET',
  'cross_street_1': '72 AVENUE',
  'cross_street_2': '72 ROAD',
  'intersection_street_1': '72 AVENUE',
  'intersection_street_2': '72 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'AUSTIN 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-03-17T00:59:40.000',
  'community_board': '06 QUEENS',
  'bbl': '4032580028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027957',
  'y_coordinate_state_plane': '201350',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.719227996478985',
  'longitude': '-73.84232724151137',
  'location': {'latitude': '40.719227996478985',
   'longitude': '-73.84232724151137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599789',
  'created_date': '2024-03-17T00:52: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': '10026',
  'incident_address': '104 WEST  113 STREET',
  'street_name': 'WEST  113 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  113 STREET',
  'status': 'In Progress',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997662',
  'y_coordinate_state_plane': '230842',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800273761500215',
  'longitude': '-73.95155740097667',
  'location': {'latitude': '40.800273761500215',
   'longitude': '-73.95155740097667',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602334',
  'created_date': '2024-03-17T00:52:26.000',
  'closed_date': '2024-03-17T01:02:00.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:02:04.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603135',
  'created_date': '2024-03-17T00:52:16.000',
  'closed_date': '2024-03-17T01:11:31.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': '10453',
  'incident_address': '55 EAST  183 STREET',
  'street_name': 'EAST  183 STREET',
  '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  183 STREET',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2024-03-17T01:11:39.000',
  'community_board': '05 BRONX',
  'bbl': '2031830001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011229',
  'y_coordinate_state_plane': '251992',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85829341229024',
  'longitude': '-73.90246993659139',
  'location': {'latitude': '40.85829341229024',
   'longitude': '-73.90246993659139',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598839',
  'created_date': '2024-03-17T00:52: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': '11357',
  'incident_address': '19-10 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': '19 AVENUE',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '19 AVENUE',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:10:23.000',
  'community_board': '07 QUEENS',
  'bbl': '4041570002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033606',
  'y_coordinate_state_plane': '224373',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78239046883315',
  'longitude': '-73.82177957899671',
  'location': {'latitude': '40.78239046883315',
   'longitude': '-73.82177957899671',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599815',
  'created_date': '2024-03-17T00:52:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '152-04 12 AVENUE',
  'street_name': '12 AVENUE',
  'cross_street_1': '152 STREET',
  'cross_street_2': '154 STREET',
  'intersection_street_1': '152 STREET',
  'intersection_street_2': '154 STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '12 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:00:26.000',
  'community_board': '07 QUEENS',
  'bbl': '4045370028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036934',
  'y_coordinate_state_plane': '227771',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.79169783689753',
  'longitude': '-73.80973583312274',
  'location': {'latitude': '40.79169783689753',
   'longitude': '-73.80973583312274',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603346',
  'created_date': '2024-03-17T00:51:50.000',
  'closed_date': '2024-03-17T01:25:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '145-52 THIRD AVENUE',
  'street_name': 'THIRD 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': '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-03-17T01:25:31.000',
  'community_board': '07 QUEENS',
  'bbl': '4044510021',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032745',
  'y_coordinate_state_plane': '229257',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.795800477491376',
  'longitude': '-73.82485330842937',
  'location': {'latitude': '40.795800477491376',
   'longitude': '-73.82485330842937',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603564',
  'created_date': '2024-03-17T00:51:48.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': '10040',
  'incident_address': '141 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'ARDEN STREET',
  'cross_street_2': 'THAYER STREET',
  'intersection_street_1': 'ARDEN STREET',
  'intersection_street_2': 'THAYER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1021730025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004643',
  'y_coordinate_state_plane': '252983',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.86103107825989',
  'longitude': '-73.92627553723854',
  'location': {'latitude': '40.86103107825989',
   'longitude': '-73.92627553723854',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603576',
  'created_date': '2024-03-17T00:51:40.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': '11357',
  'incident_address': '19-11 FRANCIS LEWIS BOULEVARD',
  'street_name': 'FRANCIS LEWIS BOULEVARD',
  'cross_street_1': '160 STREET',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '160 STREET',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'FRANCIS LEWIS BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4047580145',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038825',
  'y_coordinate_state_plane': '223813',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78082273598516',
  'longitude': '-73.80293881254866',
  'location': {'latitude': '40.78082273598516',
   'longitude': '-73.80293881254866',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601208',
  'created_date': '2024-03-17T00:51:36.000',
  'closed_date': '2024-03-17T01:27: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': '10018',
  'incident_address': '485 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST   36 STREET',
  'cross_street_2': 'WEST   37 STREET',
  'intersection_street_1': 'WEST   36 STREET',
  'intersection_street_2': 'WEST   37 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-03-17T01:27:20.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008127501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987147',
  'y_coordinate_state_plane': '213420',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75246465912612',
  'longitude': '-73.98954387994742',
  'location': {'latitude': '40.75246465912612',
   'longitude': '-73.98954387994742',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599359',
  'created_date': '2024-03-17T00:51:10.000',
  'closed_date': '2024-03-17T01:23:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11692',
  'incident_address': '57-07 SHORE FRONT PARKWAY',
  'street_name': 'SHORE FRONT PARKWAY',
  'cross_street_1': 'BEACH   56 PLACE',
  'cross_street_2': 'BEACH   59 STREET',
  'intersection_street_1': 'BEACH   56 PLACE',
  'intersection_street_2': 'BEACH   59 STREET',
  'address_type': 'ADDRESS',
  'city': 'ARVERNE',
  'landmark': 'SHORE FRONT PARKWAY',
  '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-03-17T01:23:26.000',
  'community_board': '14 QUEENS',
  'bbl': '4159260001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043485',
  'y_coordinate_state_plane': '155055',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59206841333335',
  'longitude': '-73.78671689614707',
  'location': {'latitude': '40.59206841333335',
   'longitude': '-73.78671689614707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602608',
  'created_date': '2024-03-17T00: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': '11103',
  'incident_address': '25-12 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': '25 AVENUE',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': '25 AVENUE',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '41 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006840049',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008846',
  'y_coordinate_state_plane': '218802',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76720312865189',
  'longitude': '-73.911206183808',
  'location': {'latitude': '40.76720312865189',
   'longitude': '-73.911206183808',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605034',
  'created_date': '2024-03-17T00:50:48.000',
  'closed_date': '2024-03-17T01:05:02.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': '10128',
  'incident_address': '1705 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST   88 STREET',
  'cross_street_2': 'EAST   89 STREET',
  'intersection_street_1': 'EAST   88 STREET',
  'intersection_street_2': 'EAST   89 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:05:05.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015510026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998571',
  'y_coordinate_state_plane': '222865',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77837761538778',
  'longitude': '-73.94829120619998',
  'location': {'latitude': '40.77837761538778',
   'longitude': '-73.94829120619998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598790',
  'created_date': '2024-03-17T00:50:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1860 CORNELIA STREET',
  'street_name': 'CORNELIA STREET',
  'cross_street_1': 'ONDERDONK AVENUE',
  'cross_street_2': 'WOODWARD AVENUE',
  'intersection_street_1': 'ONDERDONK AVENUE',
  'intersection_street_2': 'WOODWARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'CORNELIA STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4034730006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011013',
  'y_coordinate_state_plane': '195146',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70226698582573',
  'longitude': '-73.90347722310065',
  'location': {'latitude': '40.70226698582573',
   'longitude': '-73.90347722310065',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598520',
  'created_date': '2024-03-17T00:50:44.000',
  'closed_date': '2024-03-17T01:04:14.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': '630 BANNER AVENUE',
  'street_name': 'BANNER AVENUE',
  'cross_street_1': 'BRIGHTON    7 STREET',
  'cross_street_2': 'BRIGHTON    8 STREET',
  'intersection_street_1': 'BRIGHTON    7 STREET',
  'intersection_street_2': 'BRIGHTON    8 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BANNER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:19.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3072630094',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994788',
  'y_coordinate_state_plane': '151751',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.583191264717314',
  'longitude': '-73.96206167892376',
  'location': {'latitude': '40.583191264717314',
   'longitude': '-73.96206167892376',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603592',
  'created_date': '2024-03-17T00:50: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': '11357',
  'incident_address': '15-11 144 STREET',
  'street_name': '144 STREET',
  'cross_street_1': '15 ROAD',
  'cross_street_2': '20 AVENUE',
  'intersection_street_1': '15 ROAD',
  'intersection_street_2': '20 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '144 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:18:48.000',
  'community_board': '07 QUEENS',
  'bbl': '4041570058',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033292',
  'y_coordinate_state_plane': '225301',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78493932461835',
  'longitude': '-73.82290662935198',
  'location': {'latitude': '40.78493932461835',
   'longitude': '-73.82290662935198',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599532',
  'created_date': '2024-03-17T00:50:37.000',
  'closed_date': '2024-03-17T01:00: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': '11375',
  'incident_address': '72-07 AUSTIN STREET',
  'street_name': 'AUSTIN STREET',
  'cross_street_1': '72 AVENUE',
  'cross_street_2': '72 ROAD',
  'intersection_street_1': '72 AVENUE',
  'intersection_street_2': '72 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'AUSTIN 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-03-17T01:00:23.000',
  'community_board': '06 QUEENS',
  'bbl': '4032580028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027957',
  'y_coordinate_state_plane': '201350',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.719227996478985',
  'longitude': '-73.84232724151137',
  'location': {'latitude': '40.719227996478985',
   'longitude': '-73.84232724151137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599355',
  'created_date': '2024-03-17T00:50:35.000',
  'closed_date': '2024-03-17T01:03: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': '11235',
  'incident_address': '40 BRIGHTON    1 ROAD',
  'street_name': 'BRIGHTON    1 ROAD',
  'cross_street_1': 'BRIGHTON BEACH AVENUE',
  'cross_street_2': 'BRIGHTWATER COURT',
  'intersection_street_1': 'BRIGHTON BEACH AVENUE',
  'intersection_street_2': 'BRIGHTWATER COURT',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON    1 ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:03:59.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3086800001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993539',
  'y_coordinate_state_plane': '149054',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57578992912733',
  'longitude': '-73.96656196513152',
  'location': {'latitude': '40.57578992912733',
   'longitude': '-73.96656196513152',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605123',
  'created_date': '2024-03-17T00:50:24.000',
  'closed_date': '2024-03-17T00:56: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:56:19.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601657',
  'created_date': '2024-03-17T00:50: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': '10452',
  'incident_address': '1439 EDWARD L GRANT HIGHWAY',
  'street_name': 'EDWARD L GRANT HIGHWAY',
  'cross_street_1': 'PLIMPTON AVENUE',
  'cross_street_2': 'UNIVERSITY AVENUE',
  'intersection_street_1': 'PLIMPTON AVENUE',
  'intersection_street_2': 'UNIVERSITY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EDWARD L GRANT HIGHWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:54:40.000',
  'community_board': '04 BRONX',
  'bbl': '2025220098',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005568',
  'y_coordinate_state_plane': '246467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84314441444425',
  'longitude': '-73.92295221262032',
  'location': {'latitude': '40.84314441444425',
   'longitude': '-73.92295221262032',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602892',
  'created_date': '2024-03-17T00:49:57.000',
  'closed_date': '2024-03-17T01:08:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '141 PARK HILL AVENUE',
  'street_name': 'PARK HILL AVENUE',
  'cross_street_1': 'OSGOOD AVENUE',
  'cross_street_2': 'SOBEL COURT',
  'intersection_street_1': 'OSGOOD AVENUE',
  'intersection_street_2': 'SOBEL COURT',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'PARK HILL 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-03-17T01:08:04.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028710001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '961733',
  'y_coordinate_state_plane': '163907',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61653467325435',
  'longitude': '-74.08110495188474',
  'location': {'latitude': '40.61653467325435',
   'longitude': '-74.08110495188474',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598499',
  'created_date': '2024-03-17T00:49:25.000',
  'closed_date': '2024-03-17T01:04: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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:09.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604226',
  'created_date': '2024-03-17T00:49:23.000',
  'closed_date': '2024-03-17T01:31:06.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': '45 AVENUE A',
  'street_name': 'AVENUE A',
  'cross_street_1': 'EAST    3 STREET',
  'cross_street_2': 'EAST    4 STREET',
  'intersection_street_1': 'EAST    3 STREET',
  'intersection_street_2': 'EAST    4 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE A',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:31:08.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004310031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988357',
  'y_coordinate_state_plane': '202979',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72380622191508',
  'longitude': '-73.98518301054553',
  'location': {'latitude': '40.72380622191508',
   'longitude': '-73.98518301054553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600752',
  'created_date': '2024-03-17T00:48: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': '10454',
  'incident_address': '340 BEEKMAN AVENUE',
  'street_name': 'BEEKMAN AVENUE',
  'cross_street_1': 'OAK TERRACE',
  'cross_street_2': 'BEECH TERRACE',
  'intersection_street_1': 'OAK TERRACE',
  'intersection_street_2': 'BEECH TERRACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BEEKMAN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:03.000',
  'community_board': '01 BRONX',
  'bbl': '2025540010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008107',
  'y_coordinate_state_plane': '233961',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80881252683152',
  'longitude': '-73.9138202000098',
  'location': {'latitude': '40.80881252683152',
   'longitude': '-73.9138202000098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602262',
  'created_date': '2024-03-17T00:48:31.000',
  'closed_date': '2024-03-17T00:56:05.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': '11221',
  'incident_address': '150 MALCOM X BOULEVARD',
  'street_name': 'MALCOM X BOULEVARD',
  'cross_street_1': 'GATES AVENUE',
  'cross_street_2': 'MONROE STREET',
  'intersection_street_1': 'GATES AVENUE',
  'intersection_street_2': 'MONROE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MALCOLM X 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-03-17T00:56:09.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016360024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003623',
  'y_coordinate_state_plane': '190063',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.688334599490894',
  'longitude': '-73.93014442097454',
  'location': {'latitude': '40.688334599490894',
   'longitude': '-73.93014442097454',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601217',
  'created_date': '2024-03-17T00:48:30.000',
  'closed_date': '2024-03-17T01:28:50.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': '11214',
  'incident_address': '8732 18 AVENUE',
  'street_name': '18 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': '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-03-17T01:28:55.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064020037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982748',
  'y_coordinate_state_plane': '159561',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60463428110638',
  'longitude': '-74.0054091533735',
  'location': {'latitude': '40.60463428110638',
   'longitude': '-74.0054091533735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598384',
  'created_date': '2024-03-17T00:48:21.000',
  'closed_date': '2024-03-17T01:31:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10003',
  'incident_address': '78 EAST    4 STREET',
  'street_name': 'EAST    4 STREET',
  'cross_street_1': 'BOWERY',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': 'BOWERY',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    4 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:31:48.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004590029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987021',
  'y_coordinate_state_plane': '203932',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72642249491312',
  'longitude': '-73.9900025591503',
  'location': {'latitude': '40.72642249491312',
   'longitude': '-73.9900025591503',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603140',
  'created_date': '2024-03-17T00:48:19.000',
  'closed_date': '2024-03-17T01:11:33.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': '11375',
  'incident_address': '72-07 AUSTIN STREET',
  'street_name': 'AUSTIN STREET',
  'cross_street_1': '72 AVENUE',
  'cross_street_2': '72 ROAD',
  'intersection_street_1': '72 AVENUE',
  'intersection_street_2': '72 ROAD',
  'address_type': 'ADDRESS',
  'city': 'FOREST HILLS',
  'landmark': 'AUSTIN 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-03-17T01:11:36.000',
  'community_board': '06 QUEENS',
  'bbl': '4032580028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027957',
  'y_coordinate_state_plane': '201350',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.719227996478985',
  'longitude': '-73.84232724151137',
  'location': {'latitude': '40.719227996478985',
   'longitude': '-73.84232724151137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604191',
  'created_date': '2024-03-17T00:48:17.000',
  'closed_date': '2024-03-17T00:56: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:56:06.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599527',
  'created_date': '2024-03-17T00:48:12.000',
  'closed_date': '2024-03-17T01:31: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': '10009',
  'incident_address': '45 AVENUE A',
  'street_name': 'AVENUE A',
  'cross_street_1': 'EAST    3 STREET',
  'cross_street_2': 'EAST    4 STREET',
  'intersection_street_1': 'EAST    3 STREET',
  'intersection_street_2': 'EAST    4 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE A',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:31:05.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004310031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988357',
  'y_coordinate_state_plane': '202979',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72380622191508',
  'longitude': '-73.98518301054553',
  'location': {'latitude': '40.72380622191508',
   'longitude': '-73.98518301054553',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601624',
  'created_date': '2024-03-17T00:48:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11378',
  'incident_address': '67-17 52 ROAD',
  'street_name': '52 ROAD',
  'cross_street_1': '67 STREET',
  'cross_street_2': '69 STREET',
  'intersection_street_1': '67 STREET',
  'intersection_street_2': '69 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '52 ROAD',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4024120047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012630',
  'y_coordinate_state_plane': '206317',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73292364027459',
  'longitude': '-73.89759829773965',
  'location': {'latitude': '40.73292364027459',
   'longitude': '-73.89759829773965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600158',
  'created_date': '2024-03-17T00:48:11.000',
  'closed_date': '2024-03-17T01:26:13.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': '881 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  'cross_street_1': 'PATCHEN AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'PATCHEN AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEXINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:26:17.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016230057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004853',
  'y_coordinate_state_plane': '190886',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69059076662568',
  'longitude': '-73.92570674576699',
  'location': {'latitude': '40.69059076662568',
   'longitude': '-73.92570674576699',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600462',
  'created_date': '2024-03-17T00:48:00.000',
  'closed_date': '2024-03-17T00:57: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': '11216',
  'incident_address': '284 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  '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': 'LEXINGTON 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-03-17T00:57:04.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018030114',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998006',
  'y_coordinate_state_plane': '189839',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687730283419306',
  'longitude': '-73.9503987722234',
  'location': {'latitude': '40.687730283419306',
   'longitude': '-73.9503987722234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604066',
  'created_date': '2024-03-17T00:47:44.000',
  'closed_date': '2024-03-17T00:58:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11225',
  'incident_address': '510 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'EMPIRE BOULEVARD',
  'cross_street_2': 'LEFFERTS AVENUE',
  'intersection_street_1': 'EMPIRE BOULEVARD',
  'intersection_street_2': 'LEFFERTS AVENUE',
  '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-03-17T00:58:15.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050240053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994920',
  'y_coordinate_state_plane': '180403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66183484805751',
  'longitude': '-73.96154117220703',
  'location': {'latitude': '40.66183484805751',
   'longitude': '-73.96154117220703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603609',
  'created_date': '2024-03-17T00:47: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': '11433',
  'incident_address': '107-37 UNION HALL STREET',
  'street_name': 'UNION HALL STREET',
  'cross_street_1': '107 AVENUE',
  'cross_street_2': '108 AVENUE',
  'intersection_street_1': '107 AVENUE',
  'intersection_street_2': '108 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'UNION HALL STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:23.000',
  'community_board': '12 QUEENS',
  'bbl': '4101400044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041694',
  'y_coordinate_state_plane': '193324',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69712005408168',
  'longitude': '-73.79283972655678',
  'location': {'latitude': '40.69712005408168',
   'longitude': '-73.79283972655678',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604942',
  'created_date': '2024-03-17T00:47:38.000',
  'closed_date': '2024-03-17T01:32: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': '10468',
  'incident_address': '135 WEST KINGSBRIDGE ROAD',
  'street_name': 'WEST KINGSBRIDGE ROAD',
  'cross_street_1': 'WEBB AVENUE',
  'cross_street_2': 'SEDGWICK AVENUE',
  'intersection_street_1': 'WEBB AVENUE',
  'intersection_street_2': 'SEDGWICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST KINGSBRIDGE 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-03-17T01:32:20.000',
  'community_board': '08 BRONX',
  'bbl': '2032480143',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011083',
  'y_coordinate_state_plane': '255910',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86904757553018',
  'longitude': '-73.90298204449822',
  'location': {'latitude': '40.86904757553018',
   'longitude': '-73.90298204449822',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602761',
  'created_date': '2024-03-17T00:47:34.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Street',
  'incident_zip': '11422',
  'incident_address': '257-02 HOOK CREEK BOULEVARD',
  'street_name': 'HOOK CREEK BOULEVARD',
  'cross_street_1': '257 STREET',
  'cross_street_2': 'FRANKTON STREET',
  'intersection_street_1': '257 STREET',
  'intersection_street_2': 'FRANKTON STREET',
  'address_type': 'ADDRESS',
  'city': 'ROSEDALE',
  'landmark': 'HOOK CREEK BOULEVARD',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4136030029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1059832',
  'y_coordinate_state_plane': '179660',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.65947932314202',
  'longitude': '-73.72758227992023',
  'location': {'latitude': '40.65947932314202',
   'longitude': '-73.72758227992023',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601447',
  'created_date': '2024-03-17T00:47:15.000',
  'closed_date': '2024-03-17T00:51: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': '10314',
  'incident_address': '145 EAST SERVICE ROAD',
  'street_name': 'EAST SERVICE ROAD',
  'cross_street_1': 'GLEN STREET',
  'cross_street_2': 'W SHORE EXPRESSWAY EXIT    7 NB',
  'intersection_street_1': 'GLEN STREET',
  'intersection_street_2': 'W SHORE EXPRESSWAY EXIT    7 NB',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'EAST SERVICE ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:51:07.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5026380050',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '930819',
  'y_coordinate_state_plane': '153517',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'Car',
  'latitude': '40.5878838093473',
  'longitude': '-74.1923729776601',
  'location': {'latitude': '40.5878838093473',
   'longitude': '-74.1923729776601',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599834',
  'created_date': '2024-03-17T00:46:56.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Sign - Dangling',
  'descriptor': 'Other/Unknown',
  'location_type': 'Street',
  'incident_zip': '11422',
  'incident_address': '128-18 LAURELTON PARKWAY',
  'street_name': 'LAURELTON PARKWAY',
  'cross_street_1': '128 AVENUE',
  'cross_street_2': '238 STREET',
  'intersection_street_1': '128 AVENUE',
  'intersection_street_2': '238 STREET',
  'address_type': 'ADDRESS',
  'city': 'ROSEDALE',
  'landmark': 'LAURELTON PARKWAY',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4128790013',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1059580',
  'y_coordinate_state_plane': '187638',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6813791911934',
  'longitude': '-73.72840139419411',
  'location': {'latitude': '40.6813791911934',
   'longitude': '-73.72840139419411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605022',
  'created_date': '2024-03-17T00:46:50.000',
  'closed_date': '2024-03-17T01:09:42.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': '10467',
  'incident_address': '3400 TRYON AVENUE',
  'street_name': 'TRYON AVENUE',
  'cross_street_1': 'RESERVOIR OVAL WEST',
  'cross_street_2': 'EAST GUN HILL ROAD',
  'intersection_street_1': 'RESERVOIR OVAL WEST',
  'intersection_street_2': 'EAST GUN HILL ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TRYON 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-03-17T01:09:45.000',
  'community_board': '07 BRONX',
  'bbl': '2033430216',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018242',
  'y_coordinate_state_plane': '259664',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87932647487253',
  'longitude': '-73.87707879848327',
  'location': {'latitude': '40.87932647487253',
   'longitude': '-73.87707879848327',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600482',
  'created_date': '2024-03-17T00:46:47.000',
  'closed_date': '2024-03-17T01:28:18.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': '420 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:21.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995055',
  'y_coordinate_state_plane': '185915',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67696389205034',
  'longitude': '-73.96104574481647',
  'location': {'latitude': '40.67696389205034',
   'longitude': '-73.96104574481647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604141',
  'created_date': '2024-03-17T00:46:46.000',
  'closed_date': '2024-03-17T01:40:18.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': '11237',
  'incident_address': '207 HIMROD STREET',
  'street_name': 'HIMROD STREET',
  'cross_street_1': 'MYRTLE AVENUE',
  'cross_street_2': 'KNICKERBOCKER AVENUE',
  'intersection_street_1': 'MYRTLE AVENUE',
  'intersection_street_2': 'KNICKERBOCKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HIMROD 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-03-17T01:40:23.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032680054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006214',
  'y_coordinate_state_plane': '194009',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69915940103971',
  'longitude': '-73.92078887598137',
  'location': {'latitude': '40.69915940103971',
   'longitude': '-73.92078887598137',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602669',
  'created_date': '2024-03-17T00:46:35.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': '41-08 VERNON BOULEVARD',
  'street_name': 'VERNON BOULEVARD',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': 'KOCH BR PEDESTRIAN AND BIKE PATH',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': 'KOCH BR PEDESTRIAN AND BIKE PATH',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': 'VERNON BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:00:57.000',
  'community_board': '01 QUEENS',
  'bbl': '4004650001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '998822',
  'y_coordinate_state_plane': '214828',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75631772807547',
  'longitude': '-73.94740234595908',
  'location': {'latitude': '40.75631772807547',
   'longitude': '-73.94740234595908',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605124',
  'created_date': '2024-03-17T00:46:34.000',
  'closed_date': '2024-03-17T00:49:54.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:49:57.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601570',
  'created_date': '2024-03-17T00:46:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10465',
  'incident_address': '821 REVERE AVENUE',
  'street_name': 'REVERE AVENUE',
  'cross_street_1': 'PHILIP AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'intersection_street_1': 'PHILIP AVENUE',
  'intersection_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'REVERE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055440027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032653',
  'y_coordinate_state_plane': '240951',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82789769340761',
  'longitude': '-73.8251012523748',
  'location': {'latitude': '40.82789769340761',
   'longitude': '-73.8251012523748',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599909',
  'created_date': '2024-03-17T00:46:27.000',
  'closed_date': '2024-03-17T01:16:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '280 UTICA AVENUE',
  'street_name': 'UTICA AVENUE',
  'cross_street_1': 'EUDES PIERRE WAY',
  'cross_street_2': 'UNION STREET',
  'intersection_street_1': 'EUDES PIERRE WAY',
  'intersection_street_2': 'UNION STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UTICA 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-03-17T01:16:09.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013960040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003347',
  'y_coordinate_state_plane': '182827',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66847402277289',
  'longitude': '-73.9311601319321',
  'location': {'latitude': '40.66847402277289',
   'longitude': '-73.9311601319321',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601681',
  'created_date': '2024-03-17T00:46: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': '11222',
  'incident_address': '106 ECKFORD STREET',
  'street_name': 'ECKFORD STREET',
  'cross_street_1': 'DRIGGS AVENUE',
  'cross_street_2': 'NASSAU AVENUE',
  'intersection_street_1': 'DRIGGS AVENUE',
  'intersection_street_2': 'NASSAU AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ECKFORD STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:08:33.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026820047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998517',
  'y_coordinate_state_plane': '202815',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.723345530163236',
  'longitude': '-73.94852872208473',
  'location': {'latitude': '40.723345530163236',
   'longitude': '-73.94852872208473',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598216',
  'created_date': '2024-03-17T00:46:02.000',
  'closed_date': '2024-03-17T01:34:05.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': '11369',
  'incident_address': '104-26 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '104 STREET',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '104 STREET',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:34:08.000',
  'community_board': '03 QUEENS',
  'bbl': '4016910008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021663',
  'y_coordinate_state_plane': '216645',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.761237776111926',
  'longitude': '-73.86494770435537',
  'location': {'latitude': '40.761237776111926',
   'longitude': '-73.86494770435537',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601300',
  'created_date': '2024-03-17T00:45:57.000',
  'closed_date': '2024-03-17T01:44: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': '11372',
  'incident_address': '87-01 ROOSEVELT AVENUE',
  'street_name': 'ROOSEVELT AVENUE',
  'cross_street_1': '87 STREET',
  'cross_street_2': 'BRITTON AVENUE',
  'intersection_street_1': '87 STREET',
  'intersection_street_2': 'BRITTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'ROOSEVELT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:44:28.000',
  'community_board': '03 QUEENS',
  'bbl': '4014750042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017734',
  'y_coordinate_state_plane': '211869',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74814463584497',
  'longitude': '-73.87915425252407',
  'location': {'latitude': '40.74814463584497',
   'longitude': '-73.87915425252407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605147',
  'created_date': '2024-03-17T00:45:43.000',
  'closed_date': '2024-03-17T01:24:22.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': '11354',
  'incident_address': '28 AVENUE',
  'street_name': '28 AVENUE',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': 'COLLEGE POINT BOULEVARD',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': 'COLLEGE POINT BOULEVARD',
  '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-03-17T01:24:26.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027002',
  'y_coordinate_state_plane': '220977',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77310376976948',
  'longitude': '-73.84564762954871',
  'location': {'latitude': '40.77310376976948',
   'longitude': '-73.84564762954871',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603352',
  'created_date': '2024-03-17T00:45:34.000',
  'closed_date': '2024-03-17T01:32: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': '11368',
  'incident_address': '35-11 SEAVER WAY',
  'street_name': 'SEAVER WAY',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '36 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '36 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'SEAVER WAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:32:17.000',
  'community_board': '07 QUEENS',
  'bbl': '4018230060',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027177',
  'y_coordinate_state_plane': '215812',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.758926355246146',
  'longitude': '-73.84504879474119',
  'location': {'latitude': '40.758926355246146',
   'longitude': '-73.84504879474119',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603799',
  'created_date': '2024-03-17T00:45:22.000',
  'closed_date': '2024-03-17T01:16:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Unauthorized Bus Layover',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '282 UTICA AVENUE',
  'street_name': 'UTICA AVENUE',
  'cross_street_1': 'EUDES PIERRE WAY',
  'cross_street_2': 'UNION STREET',
  'intersection_street_1': 'EUDES PIERRE WAY',
  'intersection_street_2': 'UNION STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UTICA 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-03-17T01:16:25.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013960040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003345',
  'y_coordinate_state_plane': '182806',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.668416386787',
  'longitude': '-73.93116740090835',
  'location': {'latitude': '40.668416386787',
   'longitude': '-73.93116740090835',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600384',
  'created_date': '2024-03-17T00:45:10.000',
  'closed_date': '2024-03-17T01:13:14.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': '11238',
  'incident_address': '388 ST MARKS AVENUE',
  'street_name': 'ST MARKS AVENUE',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'GRAND AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST MARKS 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-03-17T01:13:19.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011550014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994813',
  'y_coordinate_state_plane': '185981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67714533920554',
  'longitude': '-73.96191810121151',
  'location': {'latitude': '40.67714533920554',
   'longitude': '-73.96191810121151',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602373',
  'created_date': '2024-03-17T00:45:01.000',
  'closed_date': '2024-03-17T01:06:18.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': '11356',
  'incident_address': '3-23 ENDEAVOR PLACE',
  'street_name': 'ENDEAVOR PLACE',
  'cross_street_1': 'POWELLS COVE BOULEVARD',
  'cross_street_2': '5 AVENUE',
  'intersection_street_1': 'POWELLS COVE BOULEVARD',
  'intersection_street_2': '5 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': 'ENDEAVOR PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:06:24.000',
  'community_board': '07 QUEENS',
  'bbl': '4039167505',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027212',
  'y_coordinate_state_plane': '228404',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7934878597499',
  'longitude': '-73.84484194878644',
  'location': {'latitude': '40.7934878597499',
   'longitude': '-73.84484194878644',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604456',
  'created_date': '2024-03-17T00:44:56.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': '11101',
  'incident_address': '11-01 43 AVENUE',
  'street_name': '43 AVENUE',
  'cross_street_1': '11 STREET',
  'cross_street_2': '12 STREET',
  'intersection_street_1': '11 STREET',
  'intersection_street_2': '12 STREET',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': '43 AVENUE',
  'status': 'In Progress',
  'community_board': '02 QUEENS',
  'bbl': '4004590005',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '998678',
  'y_coordinate_state_plane': '213177',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75178638925487',
  'longitude': '-73.94792565667927',
  'location': {'latitude': '40.75178638925487',
   'longitude': '-73.94792565667927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604528',
  'created_date': '2024-03-17T00:44:47.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': '11103',
  'incident_address': '46-05 NEWTOWN ROAD',
  'street_name': 'NEWTOWN ROAD',
  'cross_street_1': '46 STREET',
  'cross_street_2': '47 STREET',
  'intersection_street_1': '46 STREET',
  'intersection_street_2': '47 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'NEWTOWN ROAD',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4007250009',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008295',
  'y_coordinate_state_plane': '215339',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.757699605159566',
  'longitude': '-73.91320772989519',
  'location': {'latitude': '40.757699605159566',
   'longitude': '-73.91320772989519',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601243',
  'created_date': '2024-03-17T00:44:13.000',
  'closed_date': '2024-03-17T01:11:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '11221',
  'incident_address': '885 LEXINGTON AVENUE',
  'street_name': 'LEXINGTON AVENUE',
  'cross_street_1': 'PATCHEN AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'PATCHEN AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEXINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:11:10.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016230056',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004883',
  'y_coordinate_state_plane': '190890',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690601675812196',
  'longitude': '-73.9255985552626',
  'location': {'latitude': '40.690601675812196',
   'longitude': '-73.9255985552626',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600421',
  'created_date': '2024-03-17T00:44:10.000',
  'closed_date': '2024-03-17T00:57:16.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': '11416',
  'incident_address': '94-09 82 PLACE',
  'street_name': '82 PLACE',
  'cross_street_1': '82 STREET',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': '82 STREET',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '82 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:57:21.000',
  'community_board': '09 QUEENS',
  'bbl': '4090110010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023478',
  'y_coordinate_state_plane': '188937',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.685178261317716',
  'longitude': '-73.85855748485336',
  'location': {'latitude': '40.685178261317716',
   'longitude': '-73.85855748485336',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603291',
  'created_date': '2024-03-17T00:44:05.000',
  'closed_date': '2024-03-17T00:49:40.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:49:43.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603844',
  'created_date': '2024-03-17T00:44:05.000',
  'closed_date': '2024-03-17T00:50:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10303',
  'incident_address': '81 BIRCH ROAD',
  'street_name': 'BIRCH ROAD',
  'cross_street_1': 'ROSECLIFF ROAD',
  'cross_street_2': 'YALE STREET',
  'intersection_street_1': 'ROSECLIFF ROAD',
  'intersection_street_2': 'YALE STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BIRCH ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:50:35.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5016730001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '938507',
  'y_coordinate_state_plane': '166762',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62428157204519',
  'longitude': '-74.16478287895573',
  'location': {'latitude': '40.62428157204519',
   'longitude': '-74.16478287895573',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602934',
  'created_date': '2024-03-17T00:44:04.000',
  'closed_date': '2024-03-17T01:11:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10019',
  'incident_address': '638 WEST   51 STREET',
  'street_name': 'WEST   51 STREET',
  'cross_street_1': '11 AVENUE',
  'cross_street_2': '12 AVENUE',
  'intersection_street_1': '11 AVENUE',
  'intersection_street_2': '12 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   51 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:11:21.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010980054',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985623',
  'y_coordinate_state_plane': '218662',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.766852974232506',
  'longitude': '-73.99504337096072',
  'location': {'latitude': '40.766852974232506',
   'longitude': '-73.99504337096072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602123',
  'created_date': '2024-03-17T00:43:37.000',
  'closed_date': '2024-03-17T01:05:46.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': '2715 AVENUE U',
  'street_name': 'AVENUE U',
  'cross_street_1': 'EAST   27 STREET',
  'cross_street_2': 'EAST   28 STREET',
  'intersection_street_1': 'EAST   27 STREET',
  'intersection_street_2': 'EAST   28 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-03-17T01:05:49.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073320049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999659',
  'y_coordinate_state_plane': '157931',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60014699391566',
  'longitude': '-73.94451128616055',
  'location': {'latitude': '40.60014699391566',
   'longitude': '-73.94451128616055',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605429',
  'created_date': '2024-03-17T00:43:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10039',
  'incident_address': '227 WEST  149 STREET',
  'street_name': 'WEST  149 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  149 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:06:52.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020350001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001346',
  'y_coordinate_state_plane': '239715',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82462130895263',
  'longitude': '-73.93822862166013',
  'location': {'latitude': '40.82462130895263',
   'longitude': '-73.93822862166013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602609',
  'created_date': '2024-03-17T00:43:25.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': '90-11 76 STREET',
  'street_name': '76 STREET',
  'cross_street_1': '90 AVENUE',
  'cross_street_2': '91 AVENUE',
  'intersection_street_1': '90 AVENUE',
  'intersection_street_2': '91 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '76 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4089510067',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021793',
  'y_coordinate_state_plane': '189694',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68726335802134',
  'longitude': '-73.86462878043393',
  'location': {'latitude': '40.68726335802134',
   'longitude': '-73.86462878043393',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605134',
  'created_date': '2024-03-17T00:43:18.000',
  'closed_date': '2024-03-17T01:18:24.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': '11234',
  'incident_address': '2112 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'AVENUE N',
  'cross_street_2': 'EAST   45 STREET',
  'intersection_street_1': 'AVENUE N',
  'intersection_street_2': 'EAST   45 STREET',
  '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-03-17T01:18:30.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3078660057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003061',
  'y_coordinate_state_plane': '164578',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61838507173187',
  'longitude': '-73.93224197372908',
  'location': {'latitude': '40.61838507173187',
   'longitude': '-73.93224197372908',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602557',
  'created_date': '2024-03-17T00:43:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '2515 CORTELYOU ROAD',
  'street_name': 'CORTELYOU ROAD',
  'cross_street_1': 'EAST   25 STREET',
  'cross_street_2': 'EAST   26 STREET',
  'intersection_street_1': 'EAST   25 STREET',
  'intersection_street_2': 'EAST   26 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CORTELYOU ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:02:52.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3051690096',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997192',
  'y_coordinate_state_plane': '173998',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64425149283767',
  'longitude': '-73.95336429317983',
  'location': {'latitude': '40.64425149283767',
   'longitude': '-73.95336429317983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598308',
  'created_date': '2024-03-17T00:42:59.000',
  'closed_date': '2024-03-17T01:48:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'Underage - Licensed Est',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10458',
  'incident_address': '585 EAST  189 STREET',
  'street_name': 'EAST  189 STREET',
  'cross_street_1': 'HOFFMAN STREET',
  'cross_street_2': 'ARTHUR AVENUE',
  'intersection_street_1': 'HOFFMAN STREET',
  'intersection_street_2': 'ARTHUR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  189 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-03-17T01:48:25.000',
  'community_board': '06 BRONX',
  'bbl': '2030670069',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015664',
  'y_coordinate_state_plane': '251747',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.857606294273914',
  'longitude': '-73.88643841565484',
  'location': {'latitude': '40.857606294273914',
   'longitude': '-73.88643841565484',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604353',
  'created_date': '2024-03-17T00:42:44.000',
  'closed_date': '2024-03-17T01:04:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11211',
  'incident_address': '951 GRAND STREET',
  'street_name': 'GRAND STREET',
  'cross_street_1': 'CATHERINE STREET',
  'cross_street_2': 'MORGAN AVENUE',
  'intersection_street_1': 'CATHERINE STREET',
  'intersection_street_2': 'MORGAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:04:26.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3029240048',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001906',
  'y_coordinate_state_plane': '199054',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71301637641102',
  'longitude': '-73.93631204306541',
  'location': {'latitude': '40.71301637641102',
   'longitude': '-73.93631204306541',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601196',
  'created_date': '2024-03-17T00:42:38.000',
  'closed_date': '2024-03-17T01:04:25.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': '11357',
  'incident_address': '14 AVENUE',
  'street_name': '14 AVENUE',
  'cross_street_1': '14 AVENUE',
  'cross_street_2': 'PARSONS BOULEVARD',
  'intersection_street_1': '14 AVENUE',
  'intersection_street_2': 'PARSONS BOULEVARD',
  '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-03-17T01:04:30.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033445',
  'y_coordinate_state_plane': '225999',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78685429400078',
  'longitude': '-73.82234902770452',
  'location': {'latitude': '40.78685429400078',
   'longitude': '-73.82234902770452',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599746',
  'created_date': '2024-03-17T00:42:37.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': '1919 82 STREET',
  'street_name': '82 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': '82 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3062970070',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984954',
  'y_coordinate_state_plane': '160733',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60785128096797',
  'longitude': '-73.99746456226916',
  'location': {'latitude': '40.60785128096797',
   'longitude': '-73.99746456226916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601339',
  'created_date': '2024-03-17T00:42:27.000',
  'closed_date': '2024-03-17T01:16:47.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': '1305 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'cross_street_1': 'WEST  123 STREET',
  'cross_street_2': 'LA SALLE STREET',
  'intersection_street_1': 'WEST  123 STREET',
  'intersection_street_2': 'LA SALLE STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AMSTERDAM 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-03-17T01:16:51.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019640001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996113',
  'y_coordinate_state_plane': '235172',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81216063135118',
  'longitude': '-73.9571445582535',
  'location': {'latitude': '40.81216063135118',
   'longitude': '-73.9571445582535',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598446',
  'created_date': '2024-03-17T00:42:24.000',
  'closed_date': '2024-03-17T01:02:47.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': '10128',
  'incident_address': '346 EAST   89 STREET',
  'street_name': 'EAST   89 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   89 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:02:50.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015510035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998317',
  'y_coordinate_state_plane': '223209',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77932221228995',
  'longitude': '-73.94920760285939',
  'location': {'latitude': '40.77932221228995',
   'longitude': '-73.94920760285939',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604192',
  'created_date': '2024-03-17T00:42:15.000',
  'closed_date': '2024-03-17T00:49:22.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:49:25.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600247',
  'created_date': '2024-03-17T00:42:03.000',
  'closed_date': '2024-03-17T00:58:38.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': '11235',
  'incident_address': '25 NEPTUNE AVENUE',
  'street_name': 'NEPTUNE AVENUE',
  'cross_street_1': 'EAST   14 STREET',
  'cross_street_2': 'CASS PLACE',
  'intersection_street_1': 'EAST   14 STREET',
  'intersection_street_2': 'CASS PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEPTUNE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:58:43.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3087650043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996678',
  'y_coordinate_state_plane': '151649',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.582908846708115',
  'longitude': '-73.95525759477458',
  'location': {'latitude': '40.582908846708115',
   'longitude': '-73.95525759477458',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602655',
  'created_date': '2024-03-17T00:42:02.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': '28 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'CATON AVENUE',
  'cross_street_2': 'CHURCH AVENUE',
  'intersection_street_1': 'CATON AVENUE',
  'intersection_street_2': 'CHURCH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   17 STREET',
  'status': 'In Progress',
  'community_board': '14 BROOKLYN',
  'bbl': '3050770015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994179',
  'y_coordinate_state_plane': '176175',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65023077690795',
  'longitude': '-73.96421824892836',
  'location': {'latitude': '40.65023077690795',
   'longitude': '-73.96421824892836',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599755',
  'created_date': '2024-03-17T00:42:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '131 KINGS HIGHWAY',
  'street_name': 'KINGS HIGHWAY',
  'cross_street_1': 'STILLWELL AVENUE',
  'cross_street_2': 'WEST   13 STREET',
  'intersection_street_1': 'STILLWELL AVENUE',
  'intersection_street_2': 'WEST   13 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGS HIGHWAY',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3066180027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987948',
  'y_coordinate_state_plane': '160055',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60598956598817',
  'longitude': '-73.98668212030385',
  'location': {'latitude': '40.60598956598817',
   'longitude': '-73.98668212030385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604173',
  'created_date': '2024-03-17T00:41:52.000',
  'closed_date': '2024-03-17T00:58: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': '11219',
  'incident_address': '914 40 STREET',
  'street_name': '40 STREET',
  'cross_street_1': '9 AVENUE',
  'cross_street_2': 'NEW UTRECHT AVENUE',
  'intersection_street_1': '9 AVENUE',
  'intersection_street_2': 'NEW UTRECHT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '40 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-03-17T00:58:41.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055860014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985571',
  'y_coordinate_state_plane': '174307',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64510898874882',
  'longitude': '-73.99523979620149',
  'location': {'latitude': '40.64510898874882',
   'longitude': '-73.99523979620149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601831',
  'created_date': '2024-03-17T00:41:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10039',
  'incident_address': '68 BRADHURST AVENUE',
  'street_name': 'BRADHURST AVENUE',
  'cross_street_1': 'WEST  145 STREET',
  'cross_street_2': 'WEST  146 STREET',
  'intersection_street_1': 'WEST  145 STREET',
  'intersection_street_2': 'WEST  146 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BRADHURST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:09:13.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020457501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000125',
  'y_coordinate_state_plane': '239346',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82361078775194',
  'longitude': '-73.94264121851711',
  'location': {'latitude': '40.82361078775194',
   'longitude': '-73.94264121851711',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603190',
  'created_date': '2024-03-17T00:41:37.000',
  'closed_date': '2024-03-17T01:30:19.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': '155 EAST    4 STREET',
  'street_name': 'EAST    4 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    4 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:30:26.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004320001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988076',
  'y_coordinate_state_plane': '203356',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.724841121483756',
  'longitude': '-73.98619657123014',
  'location': {'latitude': '40.724841121483756',
   'longitude': '-73.98619657123014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600733',
  'created_date': '2024-03-17T00:41:33.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': '11102',
  'incident_address': '18-14 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '18 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '18 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:28.000',
  'community_board': '01 QUEENS',
  'bbl': '4005390127',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004418',
  'y_coordinate_state_plane': '220637',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77225093512045',
  'longitude': '-73.92718615529014',
  'location': {'latitude': '40.77225093512045',
   'longitude': '-73.92718615529014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599333',
  'created_date': '2024-03-17T00:41:32.000',
  'closed_date': '2024-03-17T00:58:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Talking',
  'location_type': 'Park/Playground',
  'incident_zip': '11207',
  'incident_address': 'RUDD PLAYGROUND',
  'street_name': 'RUDD PLAYGROUND',
  'cross_street_1': 'BUSHWICK AVENUE',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'DEAD END',
  'address_type': 'UNRECOGNIZED',
  'city': 'BROOKLYN',
  'landmark': 'RUDD PLAYGROUND',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:58:53.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034670017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010493',
  'y_coordinate_state_plane': '188258',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Rudd Playground State Park',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68336258662453',
  'longitude': '-73.90537947467317',
  'location': {'latitude': '40.68336258662453',
   'longitude': '-73.90537947467317',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600268',
  'created_date': '2024-03-17T00:41:15.000',
  'closed_date': '2024-03-17T01:25:44.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': '11206',
  'incident_address': '167 GRAHAM AVENUE',
  'street_name': 'GRAHAM AVENUE',
  'cross_street_1': 'MONTROSE AVENUE',
  'cross_street_2': 'MESEROLE STREET',
  'intersection_street_1': 'MONTROSE AVENUE',
  'intersection_street_2': 'MESEROLE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAHAM AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:25:47.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030520022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999978',
  'y_coordinate_state_plane': '197117',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70770340973375',
  'longitude': '-73.94327116381723',
  'location': {'latitude': '40.70770340973375',
   'longitude': '-73.94327116381723',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603594',
  'created_date': '2024-03-17T00:41:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11365',
  'incident_address': '71-01 SUTTON PLACE',
  'street_name': 'SUTTON PLACE',
  'cross_street_1': '71 AVENUE',
  'cross_street_2': '161 STREET',
  'intersection_street_1': '71 AVENUE',
  'intersection_street_2': '161 STREET',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': 'SUTTON PLACE',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4067977501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037441',
  'y_coordinate_state_plane': '205363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73019074217415',
  'longitude': '-73.80808214665396',
  'location': {'latitude': '40.73019074217415',
   'longitude': '-73.80808214665396',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601245',
  'created_date': '2024-03-17T00:41:04.000',
  'closed_date': '2024-03-17T00:59:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '10038',
  'incident_address': '175 WATER STREET',
  'street_name': 'WATER STREET',
  'cross_street_1': 'FLETCHER STREET',
  'cross_street_2': 'JOHN STREET',
  'intersection_street_1': 'FLETCHER STREET',
  'intersection_street_2': 'JOHN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WATER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:59:20.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000717501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982806',
  'y_coordinate_state_plane': '196746',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70669896309399',
  'longitude': '-74.00520824004668',
  'location': {'latitude': '40.70669896309399',
   'longitude': '-74.00520824004668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599329',
  'created_date': '2024-03-17T00:40:51.000',
  'closed_date': '2024-03-17T01:29:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10009',
  'incident_address': '162 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST    9 STREET',
  'cross_street_2': 'EAST   10 STREET',
  'intersection_street_1': 'EAST    9 STREET',
  'intersection_street_2': 'EAST   10 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:29:31.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004370008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988550',
  'y_coordinate_state_plane': '204753',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72867532869267',
  'longitude': '-73.98448558314742',
  'location': {'latitude': '40.72867532869267',
   'longitude': '-73.98448558314742',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601074',
  'created_date': '2024-03-17T00:40:51.000',
  'closed_date': '2024-03-17T00:45:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:45:22.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599488',
  'created_date': '2024-03-17T00:40:46.000',
  'closed_date': '2024-03-17T00:43: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:43:29.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604715',
  'created_date': '2024-03-17T00:40:45.000',
  'closed_date': '2024-03-17T01:32:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '1014 WILLOUGHBY AVENUE',
  'street_name': 'WILLOUGHBY AVENUE',
  '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': 'WILLOUGHBY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:32:36.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032070120',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004020',
  'y_coordinate_state_plane': '193954',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.699013612447054',
  'longitude': '-73.92870149076384',
  'location': {'latitude': '40.699013612447054',
   'longitude': '-73.92870149076384',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599792',
  'created_date': '2024-03-17T00:40:44.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': '1855 MONROE AVENUE',
  'street_name': 'MONROE AVENUE',
  'cross_street_1': 'EAST  176 STREET',
  'cross_street_2': 'MOUNT HOPE PLACE',
  'intersection_street_1': 'EAST  176 STREET',
  'intersection_street_2': 'MOUNT HOPE PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MONROE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:13:17.000',
  'community_board': '05 BRONX',
  'bbl': '2028010018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010211',
  'y_coordinate_state_plane': '248271',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84808343203669',
  'longitude': '-73.9061644501481',
  'location': {'latitude': '40.84808343203669',
   'longitude': '-73.9061644501481',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601694',
  'created_date': '2024-03-17T00:40:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '14-70 UTOPIA PARKWAY',
  'street_name': 'UTOPIA PARKWAY',
  'cross_street_1': 'TOTTEN STREET',
  'cross_street_2': '14 ROAD',
  'intersection_street_1': 'TOTTEN STREET',
  'intersection_street_2': '14 ROAD',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'UTOPIA PARKWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:17:41.000',
  'community_board': '07 QUEENS',
  'bbl': '4046150052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041052',
  'y_coordinate_state_plane': '226312',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.787667775255194',
  'longitude': '-73.7948763873024',
  'location': {'latitude': '40.787667775255194',
   'longitude': '-73.7948763873024',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600377',
  'created_date': '2024-03-17T00:40:26.000',
  'closed_date': '2024-03-17T00:53: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': '11213',
  'incident_address': '96 KINGSTON AVENUE',
  'street_name': 'KINGSTON AVENUE',
  'cross_street_1': 'DEAN STREET',
  'cross_street_2': 'BERGEN STREET',
  'intersection_street_1': 'DEAN STREET',
  'intersection_street_2': 'BERGEN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KINGSTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:53:03.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012150040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000461',
  'y_coordinate_state_plane': '185678',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67630513144844',
  'longitude': '-73.94155657388579',
  'location': {'latitude': '40.67630513144844',
   'longitude': '-73.94155657388579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605416',
  'created_date': '2024-03-17T00:40: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': '11214',
  'incident_address': '34 BAY   26 STREET',
  'street_name': 'BAY   26 STREET',
  'cross_street_1': '86 STREET',
  'cross_street_2': 'BENSON AVENUE',
  'intersection_street_1': '86 STREET',
  'intersection_street_2': 'BENSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   26 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984929',
  'y_coordinate_state_plane': '158971',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60301495254104',
  'longitude': '-73.99755477625945',
  'location': {'latitude': '40.60301495254104',
   'longitude': '-73.99755477625945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605312',
  'created_date': '2024-03-17T00:39:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '2326 BARNES AVENUE',
  'street_name': 'BARNES AVENUE',
  'cross_street_1': 'ASTOR AVENUE',
  'cross_street_2': 'WARING AVENUE',
  'intersection_street_1': 'ASTOR AVENUE',
  'intersection_street_2': 'WARING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BARNES AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043530017',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021959',
  'y_coordinate_state_plane': '252694',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86018087847169',
  'longitude': '-73.8636767017976',
  'location': {'latitude': '40.86018087847169',
   'longitude': '-73.8636767017976',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600652',
  'created_date': '2024-03-17T00:39:27.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': '35-11 105 STREET',
  'street_name': '105 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': '105 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017470079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1022159',
  'y_coordinate_state_plane': '214302',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75480473478318',
  'longitude': '-73.8631704728744',
  'location': {'latitude': '40.75480473478318',
   'longitude': '-73.8631704728744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602274',
  'created_date': '2024-03-17T00:39:15.000',
  'closed_date': '2024-03-17T01:25: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': '10456',
  'incident_address': '1011 CARROLL PLACE',
  'street_name': 'CARROLL PLACE',
  'cross_street_1': 'EAST  164 STREET',
  'cross_street_2': 'EAST  165 STREET',
  'intersection_street_1': 'EAST  164 STREET',
  'intersection_street_2': 'EAST  165 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CARROLL 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-03-17T01:25:36.000',
  'community_board': '04 BRONX',
  'bbl': '2024610111',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006559',
  'y_coordinate_state_plane': '241612',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82981640259085',
  'longitude': '-73.91938667778365',
  'location': {'latitude': '40.82981640259085',
   'longitude': '-73.91938667778365',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604253',
  'created_date': '2024-03-17T00:39:04.000',
  'closed_date': '2024-03-17T01:18: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': '11357',
  'incident_address': '147 STREET',
  'street_name': '147 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '147 STREET',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '147 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-03-17T01:18:25.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033266',
  'y_coordinate_state_plane': '229409',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.7962148008141',
  'longitude': '-73.8229705373936',
  'location': {'latitude': '40.7962148008141',
   'longitude': '-73.8229705373936',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603704',
  'created_date': '2024-03-17T00:38:55.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Missed Collection',
  'descriptor': 'Recycling - Paper',
  'location_type': 'Street',
  'incident_zip': '10016',
  'incident_address': '154 EAST   28 STREET',
  'street_name': 'EAST   28 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   28 STREET',
  'status': 'In Progress',
  'community_board': '06 MANHATTAN',
  'bbl': '1008830054',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989280',
  'y_coordinate_state_plane': '209746',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.742379496558776',
  'longitude': '-73.9818480073176',
  'location': {'latitude': '40.742379496558776',
   'longitude': '-73.9818480073176',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599798',
  'created_date': '2024-03-17T00:38:53.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': '10314',
  'incident_address': '86 CANNON AVENUE',
  'street_name': 'CANNON AVENUE',
  'cross_street_1': 'LEROY STREET',
  'cross_street_2': 'PRICES LANE',
  'intersection_street_1': 'LEROY STREET',
  'intersection_street_2': 'PRICES LANE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CANNON AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:15:47.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5027740036',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '932076',
  'y_coordinate_state_plane': '155919',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59448429100274',
  'longitude': '-74.18786583607279',
  'location': {'latitude': '40.59448429100274',
   'longitude': '-74.18786583607279',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598470',
  'created_date': '2024-03-17T00:38:49.000',
  'closed_date': '2024-03-17T01:34: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': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:34:35.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602335',
  'created_date': '2024-03-17T00:38:46.000',
  'closed_date': '2024-03-17T00:43: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:43:09.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601668',
  'created_date': '2024-03-17T00:38: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': '11357',
  'incident_address': '151-29 12 AVENUE',
  'street_name': '12 AVENUE',
  'cross_street_1': 'CLINTONVILLE STREET',
  'cross_street_2': '151 PLACE',
  'intersection_street_1': 'CLINTONVILLE STREET',
  'intersection_street_2': '151 PLACE',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '12 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:10.000',
  'community_board': '07 QUEENS',
  'bbl': '4045280063',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036441',
  'y_coordinate_state_plane': '227678',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.79144550288266',
  'longitude': '-73.81151698141707',
  'location': {'latitude': '40.79144550288266',
   'longitude': '-73.81151698141707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599750',
  'created_date': '2024-03-17T00:38:31.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': '1773 74 STREET',
  'street_name': '74 STREET',
  'cross_street_1': '17 AVENUE',
  'cross_street_2': '18 AVENUE',
  'intersection_street_1': '17 AVENUE',
  'intersection_street_2': '18 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '74 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3062040055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985316',
  'y_coordinate_state_plane': '163149',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61448266788612',
  'longitude': '-73.99616044727624',
  'location': {'latitude': '40.61448266788612',
   'longitude': '-73.99616044727624',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599334',
  'created_date': '2024-03-17T00:38:28.000',
  'closed_date': '2024-03-17T00:44:56.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': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:44:59.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604145',
  'created_date': '2024-03-17T00:38:24.000',
  'closed_date': '2024-03-17T01:25:39.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': '11221',
  'incident_address': '1168 MADISON STREET',
  'street_name': 'MADISON STREET',
  'cross_street_1': 'CENTRAL AVENUE',
  'cross_street_2': 'WILSON AVENUE',
  'intersection_street_1': 'CENTRAL AVENUE',
  'intersection_street_2': 'WILSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MADISON 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-03-17T01:25:42.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3033690118',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007837',
  'y_coordinate_state_plane': '191822',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69315241985124',
  'longitude': '-73.91494333938174',
  'location': {'latitude': '40.69315241985124',
   'longitude': '-73.91494333938174',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605176',
  'created_date': '2024-03-17T00:38:23.000',
  'closed_date': '2024-03-17T00:44:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10031',
  'incident_address': '3612 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  148 STREET',
  'cross_street_2': 'WEST  149 STREET',
  'intersection_street_1': 'WEST  148 STREET',
  'intersection_street_2': 'WEST  149 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:45:01.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020800059',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998431',
  'y_coordinate_state_plane': '241210',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'SUV',
  'latitude': '40.82872981821377',
  'longitude': '-73.9487579560851',
  'location': {'latitude': '40.82872981821377',
   'longitude': '-73.9487579560851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603337',
  'created_date': '2024-03-17T00:38:15.000',
  'closed_date': '2024-03-17T01:21:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10009',
  'incident_address': '340 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': '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-03-17T01:21:42.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003730023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990169',
  'y_coordinate_state_plane': '202186',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72162860195064',
  'longitude': '-73.97864648273149',
  'location': {'latitude': '40.72162860195064',
   'longitude': '-73.97864648273149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599415',
  'created_date': '2024-03-17T00:38:11.000',
  'closed_date': '2024-03-17T01:09: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': '11369',
  'incident_address': '24-50 93 STREET',
  'street_name': '93 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': '93 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:04.000',
  'community_board': '03 QUEENS',
  'bbl': '4011030032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018412',
  'y_coordinate_state_plane': '218020',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76502495270549',
  'longitude': '-73.87667606005583',
  'location': {'latitude': '40.76502495270549',
   'longitude': '-73.87667606005583',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604091',
  'created_date': '2024-03-17T00:38:01.000',
  'closed_date': '2024-03-17T01:16:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10459',
  'incident_address': '935 KELLY STREET',
  'street_name': 'KELLY STREET',
  'cross_street_1': 'INTERVALE AVENUE',
  'cross_street_2': 'EAST  163 STREET',
  'intersection_street_1': 'INTERVALE AVENUE',
  'intersection_street_2': 'EAST  163 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KELLY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:16:24.000',
  'community_board': '02 BRONX',
  'bbl': '2027030018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013062',
  'y_coordinate_state_plane': '238285',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82066592008807',
  'longitude': '-73.89590246619456',
  'location': {'latitude': '40.82066592008807',
   'longitude': '-73.89590246619456',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603212',
  'created_date': '2024-03-17T00:37:46.000',
  'closed_date': '2024-03-17T01:02: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': '10036',
  'incident_address': '1 RIVER PLACE',
  'street_name': 'RIVER PLACE',
  'cross_street_1': '11 AVENUE',
  'cross_street_2': '12 AVENUE',
  'intersection_street_1': '11 AVENUE',
  'intersection_street_2': '12 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'RIVER 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-03-17T01:02:13.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010890001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984189',
  'y_coordinate_state_plane': '216753',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76161336818487',
  'longitude': '-74.00022019707659',
  'location': {'latitude': '40.76161336818487',
   'longitude': '-74.00022019707659',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600757',
  'created_date': '2024-03-17T00:37:14.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': '11355',
  'incident_address': '134-38 MAPLE AVENUE',
  'street_name': 'MAPLE AVENUE',
  'cross_street_1': 'EAGLE NEST LANE',
  'cross_street_2': 'MAIN STREET',
  'intersection_street_1': 'EAGLE NEST LANE',
  'intersection_street_2': 'MAIN STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'MAPLE AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4051220022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1031437',
  'y_coordinate_state_plane': '214339',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75486164419599',
  'longitude': '-73.82968208459589',
  'location': {'latitude': '40.75486164419599',
   'longitude': '-73.82968208459589',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600449',
  'created_date': '2024-03-17T00:37:08.000',
  'closed_date': '2024-03-17T01:00:37.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': '127 ALLEN STREET',
  'street_name': 'ALLEN 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': '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-03-17T01:00:41.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987018',
  'y_coordinate_state_plane': '201562',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.719917419566436',
  'longitude': '-73.99001435753044',
  'location': {'latitude': '40.719917419566436',
   'longitude': '-73.99001435753044',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600272',
  'created_date': '2024-03-17T00:37:07.000',
  'closed_date': '2024-03-17T01:08:10.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': '11203',
  'incident_address': '4902 FARRAGUT ROAD',
  'street_name': 'FARRAGUT ROAD',
  'cross_street_1': 'EAST   49 STREET',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'EAST   49 STREET',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FARRAGUT ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:08:14.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047860080',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003763',
  'y_coordinate_state_plane': '171505',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63739670450603',
  'longitude': '-73.92969331450443',
  'location': {'latitude': '40.63739670450603',
   'longitude': '-73.92969331450443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605305',
  'created_date': '2024-03-17T00:37:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10302',
  'incident_address': '498 HEBERTON AVENUE',
  'street_name': 'HEBERTON AVENUE',
  'cross_street_1': 'RAINBOW AVENUE',
  'cross_street_2': 'CATHERINE STREET',
  'intersection_street_1': 'RAINBOW AVENUE',
  'intersection_street_2': 'CATHERINE STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HEBERTON AVENUE',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5010490047',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '946123',
  'y_coordinate_state_plane': '168647',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'vehicle_type': 'SUV',
  'latitude': '40.62949154490488',
  'longitude': '-74.13735798161635',
  'location': {'latitude': '40.62949154490488',
   'longitude': '-74.13735798161635',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599177',
  'created_date': '2024-03-17T00:37:01.000',
  'closed_date': '2024-03-17T00:52:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10034',
  'incident_address': '100 COOPER STREET',
  'street_name': 'COOPER STREET',
  'cross_street_1': 'WEST  207 STREET',
  'cross_street_2': 'ISHAM STREET',
  'intersection_street_1': 'WEST  207 STREET',
  'intersection_street_2': 'ISHAM STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'COOPER 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-03-17T00:52:11.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022420026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006061',
  'y_coordinate_state_plane': '255784',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86871558176139',
  'longitude': '-73.92114009182538',
  'location': {'latitude': '40.86871558176139',
   'longitude': '-73.92114009182538',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602150',
  'created_date': '2024-03-17T00:36:57.000',
  'closed_date': '2024-03-17T00:45:41.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': '11358',
  'incident_address': '194-01 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '194 STREET',
  'cross_street_2': '195 STREET',
  'intersection_street_1': '194 STREET',
  'intersection_street_2': '195 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'NORTHERN 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-03-17T00:45:44.000',
  'community_board': '11 QUEENS',
  'bbl': '4053700001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043129',
  'y_coordinate_state_plane': '215477',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75791502816457',
  'longitude': '-73.78747087643431',
  'location': {'latitude': '40.75791502816457',
   'longitude': '-73.78747087643431',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600414',
  'created_date': '2024-03-17T00:36:53.000',
  'closed_date': '2024-03-17T01:16:13.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': '96 MESEROLE STREET',
  'street_name': 'MESEROLE STREET',
  'cross_street_1': 'LEONARD STREET',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'LEONARD STREET',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MESEROLE 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-03-17T01:16:16.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030510008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999202',
  'y_coordinate_state_plane': '197152',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.707800821780445',
  'longitude': '-73.94607001574181',
  'location': {'latitude': '40.707800821780445',
   'longitude': '-73.94607001574181',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598589',
  'created_date': '2024-03-17T00:36:51.000',
  'closed_date': '2024-03-17T01:28:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11368',
  'incident_address': '126-02 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': 'CONNECTOR RD TO NORTHERN BL/WHE',
  'cross_street_2': 'WHITESTONE EXPRESSWAY ET   13 SB',
  'intersection_street_1': 'CONNECTOR RD TO NORTHERN BL/WHE',
  'intersection_street_2': 'WHITESTONE EXPRESSWAY ET   13 SB',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:21.000',
  'community_board': '07 QUEENS',
  'bbl': '4018200001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026952',
  'y_coordinate_state_plane': '216425',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.76060997014107',
  'longitude': '-73.84585706939383',
  'location': {'latitude': '40.76060997014107',
   'longitude': '-73.84585706939383',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600720',
  'created_date': '2024-03-17T00:36:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '30-10 38 STREET',
  'street_name': '38 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '38 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006590047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007446',
  'y_coordinate_state_plane': '217525',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.763701879638475',
  'longitude': '-73.91626471589652',
  'location': {'latitude': '40.763701879638475',
   'longitude': '-73.91626471589652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602670',
  'created_date': '2024-03-17T00:36: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': '11385',
  'incident_address': '1016 SENECA AVENUE',
  'street_name': 'SENECA AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'STEPHEN STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'STEPHEN STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'SENECA AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:22.000',
  'community_board': '05 QUEENS',
  'bbl': '4035640032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011684',
  'y_coordinate_state_plane': '193912',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.698877891747934',
  'longitude': '-73.90106223973882',
  'location': {'latitude': '40.698877891747934',
   'longitude': '-73.90106223973882',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601294',
  'created_date': '2024-03-17T00:36:38.000',
  'closed_date': '2024-03-17T01:36:39.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': '11691',
  'incident_address': '1047 BEACH   21 STREET',
  'street_name': 'BEACH   21 STREET',
  'cross_street_1': 'CORNAGA AVENUE',
  'cross_street_2': 'CENTRAL AVENUE',
  'intersection_street_1': 'CORNAGA AVENUE',
  'intersection_street_2': 'CENTRAL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   21 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-03-17T01:36:42.000',
  'community_board': '14 QUEENS',
  'bbl': '4157050069',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052597',
  'y_coordinate_state_plane': '159192',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.60335801790573',
  'longitude': '-73.75386629508971',
  'location': {'latitude': '40.60335801790573',
   'longitude': '-73.75386629508971',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602664',
  'created_date': '2024-03-17T00:36:34.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': '11104',
  'incident_address': '43-05 44 STREET',
  'street_name': '44 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '44 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:52:20.000',
  'community_board': '02 QUEENS',
  'bbl': '4001610020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006348',
  'y_coordinate_state_plane': '210649',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74483182678611',
  'longitude': '-73.92025098371724',
  'location': {'latitude': '40.74483182678611',
   'longitude': '-73.92025098371724',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604962',
  'created_date': '2024-03-17T00:36:32.000',
  'closed_date': '2024-03-17T01:12:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:12:36.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602336',
  'created_date': '2024-03-17T00:36:26.000',
  'closed_date': '2024-03-17T00:39: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:39:51.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603620',
  'created_date': '2024-03-17T00:36: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': '11385',
  'incident_address': '63-14 FOREST AVENUE',
  'street_name': 'FOREST 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': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:55.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010605',
  'y_coordinate_state_plane': '198104',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71038721776248',
  'longitude': '-73.90493712722406',
  'location': {'latitude': '40.71038721776248',
   'longitude': '-73.90493712722406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598841',
  'created_date': '2024-03-17T00:36:20.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': '11357',
  'incident_address': '149-32 18 AVENUE',
  'street_name': '18 AVENUE',
  'cross_street_1': '149 STREET',
  'cross_street_2': '150 STREET',
  'intersection_street_1': '149 STREET',
  'intersection_street_2': '150 STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '18 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:59:45.000',
  'community_board': '07 QUEENS',
  'bbl': '4046680049',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035286',
  'y_coordinate_state_plane': '224540',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.782839297206806',
  'longitude': '-73.81571198734417',
  'location': {'latitude': '40.782839297206806',
   'longitude': '-73.81571198734417',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600483',
  'created_date': '2024-03-17T00:36:03.000',
  'closed_date': '2024-03-17T00:45: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': '10034',
  'incident_address': '125 SHERMAN AVENUE',
  'street_name': 'SHERMAN AVENUE',
  'cross_street_1': 'DYCKMAN STREET',
  'cross_street_2': 'ACADEMY STREET',
  'intersection_street_1': 'DYCKMAN STREET',
  'intersection_street_2': 'ACADEMY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SHERMAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:45:56.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022200019',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005139',
  'y_coordinate_state_plane': '254113',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8641314262044',
  'longitude': '-73.92447888449696',
  'location': {'latitude': '40.8641314262044',
   'longitude': '-73.92447888449696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602223',
  'created_date': '2024-03-17T00:35:54.000',
  'closed_date': '2024-03-17T01:08: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': '10457',
  'incident_address': '219 ECHO PLACE',
  'street_name': 'ECHO PLACE',
  'cross_street_1': 'GRAND CONCOURSE',
  'cross_street_2': 'ANTHONY AVENUE',
  'intersection_street_1': 'GRAND CONCOURSE',
  'intersection_street_2': 'ANTHONY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ECHO PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:08:54.000',
  'community_board': '05 BRONX',
  'bbl': '2028100050',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010600',
  'y_coordinate_state_plane': '248882',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84975929328488',
  'longitude': '-73.90475601677758',
  'location': {'latitude': '40.84975929328488',
   'longitude': '-73.90475601677758',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602555',
  'created_date': '2024-03-17T00:35:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '28-22 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': '28 AVENUE',
  'cross_street_2': '30 AVENUE',
  'intersection_street_1': '28 AVENUE',
  'intersection_street_2': '30 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '41 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006630128',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008316',
  'y_coordinate_state_plane': '217943',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76484685576465',
  'longitude': '-73.91312260674088',
  'location': {'latitude': '40.76484685576465',
   'longitude': '-73.91312260674088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602217',
  'created_date': '2024-03-17T00:35:39.000',
  'closed_date': '2024-03-17T01:22: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': '11356',
  'incident_address': '23-11 128 STREET',
  'street_name': '128 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:23:02.000',
  'community_board': '07 QUEENS',
  'bbl': '4042320029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028372',
  'y_coordinate_state_plane': '222868',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.778287327339235',
  'longitude': '-73.84068895805072',
  'location': {'latitude': '40.778287327339235',
   'longitude': '-73.84068895805072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602146',
  'created_date': '2024-03-17T00:35:35.000',
  'closed_date': '2024-03-17T00:37:21.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': '10011',
  'incident_address': '11 WEST   17 STREET',
  'street_name': 'WEST   17 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   17 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-03-17T00:37:25.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008190031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986209',
  'y_coordinate_state_plane': '208232',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.738225156346566',
  'longitude': '-73.99293090729802',
  'location': {'latitude': '40.738225156346566',
   'longitude': '-73.99293090729802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604033',
  'created_date': '2024-03-17T00:35:15.000',
  'closed_date': '2024-03-17T00:46:59.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': '190 ALLEN STREET',
  'street_name': 'ALLEN STREET',
  'cross_street_1': 'STANTON STREET',
  'cross_street_2': '1 AVENUE',
  'intersection_street_1': 'STANTON STREET',
  'intersection_street_2': '1 AVENUE',
  '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-03-17T00:47:04.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004177501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987327',
  'y_coordinate_state_plane': '202411',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.722247617621264',
  'longitude': '-73.9888992427031',
  'location': {'latitude': '40.722247617621264',
   'longitude': '-73.9888992427031',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598448',
  'created_date': '2024-03-17T00:35:04.000',
  'closed_date': '2024-03-17T01:19:01.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': '11234',
  'incident_address': '3321 AVENUE N',
  'street_name': 'AVENUE N',
  'cross_street_1': 'EAST   34 STREET',
  'cross_street_2': 'EAST   35 STREET',
  'intersection_street_1': 'EAST   34 STREET',
  'intersection_street_2': 'EAST   35 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE N',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:19:05.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3076690002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000359',
  'y_coordinate_state_plane': '164276',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.617561469335556',
  'longitude': '-73.94197541074034',
  'location': {'latitude': '40.617561469335556',
   'longitude': '-73.94197541074034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603486',
  'created_date': '2024-03-17T00:35:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '30-10 38 STREET',
  'street_name': '38 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '38 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006590047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007446',
  'y_coordinate_state_plane': '217525',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.763701879638475',
  'longitude': '-73.91626471589652',
  'location': {'latitude': '40.763701879638475',
   'longitude': '-73.91626471589652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602269',
  'created_date': '2024-03-17T00:34:47.000',
  'closed_date': '2024-03-17T01:00:29.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': '10128',
  'incident_address': '1705 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST   88 STREET',
  'cross_street_2': 'EAST   89 STREET',
  'intersection_street_1': 'EAST   88 STREET',
  'intersection_street_2': 'EAST   89 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 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-03-17T01:00:35.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015510026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998571',
  'y_coordinate_state_plane': '222865',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77837761538778',
  'longitude': '-73.94829120619998',
  'location': {'latitude': '40.77837761538778',
   'longitude': '-73.94829120619998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600450',
  'created_date': '2024-03-17T00:34:44.000',
  'closed_date': '2024-03-17T00:40:06.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:40:13.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601344',
  'created_date': '2024-03-17T00:34:40.000',
  'closed_date': '2024-03-17T00:58: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': '10310',
  'incident_address': '460 HENDERSON AVENUE',
  'street_name': 'HENDERSON AVENUE',
  'cross_street_1': 'BARD AVENUE',
  'cross_street_2': 'CURTIS COURT',
  'intersection_street_1': 'BARD AVENUE',
  'intersection_street_2': 'CURTIS COURT',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HENDERSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:58:29.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001390022',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '954334',
  'y_coordinate_state_plane': '171873',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63837775827951',
  'longitude': '-74.10779101269175',
  'location': {'latitude': '40.63837775827951',
   'longitude': '-74.10779101269175',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604385',
  'created_date': '2024-03-17T00:34:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '20-52 45 STREET',
  'street_name': '45 STREET',
  'cross_street_1': '20 ROAD',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 ROAD',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '45 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4007860052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011885',
  'y_coordinate_state_plane': '221013',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.773262766285505',
  'longitude': '-73.90022603254609',
  'location': {'latitude': '40.773262766285505',
   'longitude': '-73.90022603254609',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604837',
  'created_date': '2024-03-17T00:34:39.000',
  'closed_date': '2024-03-17T01:14:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  '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': '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-03-17T01:14:51.000',
  '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',
  'vehicle_type': 'Car',
  'latitude': '40.90665570023825',
  'longitude': '-73.90682699003065',
  'location': {'latitude': '40.90665570023825',
   'longitude': '-73.90682699003065',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601970',
  'created_date': '2024-03-17T00:34:33.000',
  'closed_date': '2024-03-17T00:36:30.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': '10040',
  'incident_address': '141 NAGLE AVENUE',
  'street_name': 'NAGLE AVENUE',
  'cross_street_1': 'ARDEN STREET',
  'cross_street_2': 'THAYER STREET',
  'intersection_street_1': 'ARDEN STREET',
  'intersection_street_2': 'THAYER STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'NAGLE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:36:35.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021730025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004643',
  'y_coordinate_state_plane': '252983',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.86103107825989',
  'longitude': '-73.92627553723854',
  'location': {'latitude': '40.86103107825989',
   'longitude': '-73.92627553723854',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602236',
  'created_date': '2024-03-17T00:34:25.000',
  'closed_date': '2024-03-17T01:00: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': '10002',
  'incident_address': '170 ELDRIDGE STREET',
  'street_name': 'ELDRIDGE 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': 'ELDRIDGE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:00:21.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986765',
  'y_coordinate_state_plane': '201651',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72016177866853',
  'longitude': '-73.99092702930629',
  'location': {'latitude': '40.72016177866853',
   'longitude': '-73.99092702930629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605502',
  'created_date': '2024-03-17T00:34:12.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11357',
  'incident_address': '20-05 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4046310013',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033443',
  'y_coordinate_state_plane': '224045',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78149110644518',
  'longitude': '-73.82237055853774',
  'location': {'latitude': '40.78149110644518',
   'longitude': '-73.82237055853774',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600647',
  'created_date': '2024-03-17T00:34:02.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': '40-40 WARREN STREET',
  'street_name': 'WARREN STREET',
  'cross_street_1': '40 ROAD',
  'cross_street_2': '41 AVENUE',
  'intersection_street_1': '40 ROAD',
  'intersection_street_2': '41 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'WARREN STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015950022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020291',
  'y_coordinate_state_plane': '211928',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74829652393002',
  'longitude': '-73.86992558434027',
  'location': {'latitude': '40.74829652393002',
   'longitude': '-73.86992558434027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603598',
  'created_date': '2024-03-17T00:33: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': '11102',
  'incident_address': '18-14 ASTORIA BOULEVARD',
  'street_name': 'ASTORIA BOULEVARD',
  'cross_street_1': '18 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '18 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'ASTORIA BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:10:13.000',
  'community_board': '01 QUEENS',
  'bbl': '4005390127',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004418',
  'y_coordinate_state_plane': '220637',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77225093512045',
  'longitude': '-73.92718615529014',
  'location': {'latitude': '40.77225093512045',
   'longitude': '-73.92718615529014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600711',
  'created_date': '2024-03-17T00:33:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '30-10 38 STREET',
  'street_name': '38 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '38 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006590047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007446',
  'y_coordinate_state_plane': '217525',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.763701879638475',
  'longitude': '-73.91626471589652',
  'location': {'latitude': '40.763701879638475',
   'longitude': '-73.91626471589652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598358',
  'created_date': '2024-03-17T00:33:44.000',
  'closed_date': '2024-03-17T00:58:47.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': '10013',
  'incident_address': '192 GRAND STREET',
  'street_name': 'GRAND STREET',
  'cross_street_1': 'MULBERRY STREET',
  'cross_street_2': 'MOTT STREET',
  'intersection_street_1': 'MULBERRY STREET',
  'intersection_street_2': 'MOTT 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-03-17T00:58:50.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1004710057',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985074',
  'y_coordinate_state_plane': '201316',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.719242603448414',
  'longitude': '-73.9970274255534',
  'location': {'latitude': '40.719242603448414',
   'longitude': '-73.9970274255534',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599528',
  'created_date': '2024-03-17T00:33:19.000',
  'closed_date': '2024-03-17T01:16:43.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': '11211',
  'incident_address': 'SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'SOUTH    2 STREET',
  'cross_street_2': 'UNION AVENUE',
  'intersection_street_1': 'SOUTH    2 STREET',
  'intersection_street_2': 'UNION 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-03-17T01:16:50.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997882',
  'y_coordinate_state_plane': '197640',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70914239819131',
  'longitude': '-73.95083010073871',
  'location': {'latitude': '40.70914239819131',
   'longitude': '-73.95083010073871',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601295',
  'created_date': '2024-03-17T00:32:58.000',
  'closed_date': '2024-03-17T01:21:50.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': '11356',
  'incident_address': '23-09 128 STREET',
  'street_name': '128 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:21:55.000',
  'community_board': '07 QUEENS',
  'bbl': '4042320031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028372',
  'y_coordinate_state_plane': '222869',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7782900720709',
  'longitude': '-73.84068895148404',
  'location': {'latitude': '40.7782900720709',
   'longitude': '-73.84068895148404',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599951',
  'created_date': '2024-03-17T00:32:55.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '30-10 38 STREET',
  'street_name': '38 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '38 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006590047',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007446',
  'y_coordinate_state_plane': '217525',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.763701879638475',
  'longitude': '-73.91626471589652',
  'location': {'latitude': '40.763701879638475',
   'longitude': '-73.91626471589652',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603111',
  'created_date': '2024-03-17T00:32:55.000',
  'closed_date': '2024-03-17T00:58:22.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': '123 ALLEN STREET',
  'street_name': 'ALLEN 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': '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-03-17T00:58:25.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150035',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986986',
  'y_coordinate_state_plane': '201478',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71968686975031',
  'longitude': '-73.99012983262756',
  'location': {'latitude': '40.71968686975031',
   'longitude': '-73.99012983262756',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602337',
  'created_date': '2024-03-17T00:32:50.000',
  'closed_date': '2024-03-17T00:36:18.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:36:22.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599695',
  'created_date': '2024-03-17T00:32:41.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Dead/Dying Tree',
  'descriptor': 'Planted More Than 2 Years Ago',
  'location_type': 'Street',
  'incident_zip': '11370',
  'incident_address': '32-07 83 STREET',
  'street_name': '83 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': '83 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4014130001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016182',
  'y_coordinate_state_plane': '215228',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75736997217697',
  'longitude': '-73.88473955499583',
  'location': {'latitude': '40.75736997217697',
   'longitude': '-73.88473955499583',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600718',
  'created_date': '2024-03-17T00:32:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10461',
  'incident_address': '1729 MAHAN AVENUE',
  'street_name': 'MAHAN AVENUE',
  'cross_street_1': 'ROBERTS AVENUE',
  'cross_street_2': 'BUHRE AVENUE',
  'intersection_street_1': 'ROBERTS AVENUE',
  'intersection_street_2': 'BUHRE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MAHAN AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2041760019',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031569',
  'y_coordinate_state_plane': '247858',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84686124369995',
  'longitude': '-73.82896942438336',
  'location': {'latitude': '40.84686124369995',
   'longitude': '-73.82896942438336',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601649',
  'created_date': '2024-03-17T00:32:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Traffic',
  'descriptor': 'Drag Racing',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11420',
  'incident_address': '111 AVENUE',
  'street_name': '111 AVENUE',
  'cross_street_1': '110 STREET',
  'cross_street_2': '111 STREET',
  'intersection_street_1': '110 STREET',
  'intersection_street_2': '111 STREET',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '60604505',
  'created_date': '2024-03-17T00:32:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '20 ROAD',
  'street_name': '20 ROAD',
  'cross_street_1': '20 ROAD',
  'cross_street_2': '146 STREET',
  'intersection_street_1': '20 ROAD',
  'intersection_street_2': '146 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:16:59.000',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033799',
  'y_coordinate_state_plane': '223909',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.7811158346905',
  'longitude': '-73.82108609601183',
  'location': {'latitude': '40.7811158346905',
   'longitude': '-73.82108609601183',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598810',
  'created_date': '2024-03-17T00:32:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '10454',
  'incident_address': '245 BROOK AVENUE',
  'street_name': 'BROOK AVENUE',
  'cross_street_1': 'EAST  138 STREET',
  'cross_street_2': 'EAST  139 STREET',
  'intersection_street_1': 'EAST  138 STREET',
  'intersection_street_2': 'EAST  139 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BROOK AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:07:07.000',
  'community_board': '01 BRONX',
  'bbl': '2022830053',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006665',
  'y_coordinate_state_plane': '233624',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80789133164972',
  'longitude': '-73.91903032885082',
  'location': {'latitude': '40.80789133164972',
   'longitude': '-73.91903032885082',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603668',
  'created_date': '2024-03-17T00:31:35.000',
  'closed_date': '2024-03-17T00:47:07.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '1182 AVENUE OF THE AMERICAS',
  'street_name': 'AVENUE OF THE AMERICAS',
  'cross_street_1': 'WEST 46 STREET',
  'cross_street_2': 'WEST 47 STREET',
  'intersection_street_1': 'WEST   46 STREET',
  'intersection_street_2': 'WEST   47 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE OF THE AMERICAS',
  'status': 'Closed',
  'resolution_description': 'Based on the information you provided, the Department of Homeless Services has referred this request to the New York City Police Department.',
  'resolution_action_updated_date': '2024-03-17T00:47:07.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1012620001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989198',
  'y_coordinate_state_plane': '215265',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.757527805004486',
  'longitude': '-73.98213986369088',
  'location': {'latitude': '40.757527805004486',
   'longitude': '-73.98213986369088',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604124',
  'created_date': '2024-03-17T00:31:34.000',
  'closed_date': '2024-03-17T01:10:47.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': '11221',
  'incident_address': '673 JEFFERSON AVENUE',
  'street_name': 'JEFFERSON AVENUE',
  'cross_street_1': 'STUYVESANT AVENUE',
  'cross_street_2': 'MALCOLM X BOULEVARD',
  'intersection_street_1': 'STUYVESANT AVENUE',
  'intersection_street_2': 'MALCOLM X BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'JEFFERSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:51.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016510062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003336',
  'y_coordinate_state_plane': '189016',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68546144882444',
  'longitude': '-73.9311822572325',
  'location': {'latitude': '40.68546144882444',
   'longitude': '-73.9311822572325',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600466',
  'created_date': '2024-03-17T00:31:33.000',
  'closed_date': '2024-03-17T00:38: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': '11226',
  'incident_address': '60 MARTENSE STREET',
  'street_name': 'MARTENSE STREET',
  'cross_street_1': 'MARTENSE COURT',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'MARTENSE COURT',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MARTENSE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:38:33.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050890029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996194',
  'y_coordinate_state_plane': '176568',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65130698792159',
  'longitude': '-73.95695597400044',
  'location': {'latitude': '40.65130698792159',
   'longitude': '-73.95695597400044',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605483',
  'created_date': '2024-03-17T00:31:29.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Indoor Air Quality',
  'descriptor': 'Sewage Odor',
  'location_type': '1-2 Family Dwelling',
  'incident_zip': '11203',
  'incident_address': '719 EAST NEW YORK AVENUE',
  'street_name': 'EAST NEW YORK AVENUE',
  'cross_street_1': 'ALBANY AVENUE',
  'cross_street_2': 'TROY AVENUE',
  'intersection_street_1': 'ALBANY AVENUE',
  'intersection_street_2': 'TROY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST NEW YORK AVENUE',
  'status': 'In Progress',
  'community_board': '09 BROOKLYN',
  'bbl': '3014280065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001148',
  'y_coordinate_state_plane': '180574',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66229450961754',
  'longitude': '-73.93909261651713',
  'location': {'latitude': '40.66229450961754',
   'longitude': '-73.93909261651713',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598432',
  'created_date': '2024-03-17T00:31:11.000',
  'closed_date': '2024-03-17T01:20:34.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': '11356',
  'incident_address': '22-04 128 STREET',
  'street_name': '128 STREET',
  'cross_street_1': '22 AVENUE',
  'cross_street_2': '23 AVENUE',
  'intersection_street_1': '22 AVENUE',
  'intersection_street_2': '23 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:20:39.000',
  'community_board': '07 QUEENS',
  'bbl': '4042030026',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028391',
  'y_coordinate_state_plane': '223449',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77988192137734',
  'longitude': '-73.84061653804136',
  'location': {'latitude': '40.77988192137734',
   'longitude': '-73.84061653804136',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605051',
  'created_date': '2024-03-17T00:31:02.000',
  'closed_date': '2024-03-17T00:35: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': '10011',
  'incident_address': '11 WEST   17 STREET',
  'street_name': 'WEST   17 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   17 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-03-17T00:35:40.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008190031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986209',
  'y_coordinate_state_plane': '208232',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.738225156346566',
  'longitude': '-73.99293090729802',
  'location': {'latitude': '40.738225156346566',
   'longitude': '-73.99293090729802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601232',
  'created_date': '2024-03-17T00:31:01.000',
  'closed_date': '2024-03-17T00:50:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:50:47.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602100',
  'created_date': '2024-03-17T00:31:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10461',
  'incident_address': '1501 WATERS PLACE',
  'street_name': 'WATERS PLACE',
  'cross_street_1': 'BRONX STATE HOSP EN',
  'cross_street_2': 'INDUSTRIAL ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027647',
  'y_coordinate_state_plane': '247679',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84639008890676',
  'longitude': '-73.84314629282704',
  'location': {'latitude': '40.84639008890676',
   'longitude': '-73.84314629282704',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598531',
  'created_date': '2024-03-17T00:30:56.000',
  'closed_date': '2024-03-17T00:33:37.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:33:41.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602121',
  'created_date': '2024-03-17T00:30:54.000',
  'closed_date': '2024-03-17T00: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': '10002',
  'incident_address': '129 ALLEN STREET',
  'street_name': 'ALLEN 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': '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-03-17T00:58:05.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004150031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987026',
  'y_coordinate_state_plane': '201580',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71996682272388',
  'longitude': '-73.98998548986862',
  'location': {'latitude': '40.71996682272388',
   'longitude': '-73.98998548986862',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601368',
  'created_date': '2024-03-17T00:30:46.000',
  'closed_date': '2024-03-17T01:09: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': '10001',
  'incident_address': '208 WEST   30 STREET',
  'street_name': 'WEST   30 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': 'NEW YORK',
  'landmark': 'WEST   30 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-03-17T01:09:36.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007790049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986175',
  'y_coordinate_state_plane': '212052',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74871010966081',
  'longitude': '-73.99305250373475',
  'location': {'latitude': '40.74871010966081',
   'longitude': '-73.99305250373475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605422',
  'created_date': '2024-03-17T00:30: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': '10462',
  'incident_address': '2179 MATTHEWS AVENUE',
  'street_name': 'MATTHEWS 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': 'MATTHEWS AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043220043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022178',
  'y_coordinate_state_plane': '251165',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85598329878383',
  'longitude': '-73.86289363917999',
  'location': {'latitude': '40.85598329878383',
   'longitude': '-73.86289363917999',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599125',
  'created_date': '2024-03-17T00:30:34.000',
  'closed_date': '2024-03-17T00:53:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2535 WEST    1 STREET',
  'street_name': 'WEST    1 STREET',
  'cross_street_1': 'AVENUE Y',
  'cross_street_2': 'AVENUE Z',
  'intersection_street_1': 'AVENUE Y',
  'intersection_street_2': 'AVENUE Z',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    1 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-03-17T00:53:57.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3072150020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992420',
  'y_coordinate_state_plane': '153316',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58748937712629',
  'longitude': '-73.970584928024',
  'location': {'latitude': '40.58748937712629',
   'longitude': '-73.970584928024',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600651',
  'created_date': '2024-03-17T00:30:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '858 EAST  215 STREET',
  'street_name': 'EAST  215 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  215 STREET',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2046730077',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023002',
  'y_coordinate_state_plane': '259663',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87930411344348',
  'longitude': '-73.85986581349823',
  'location': {'latitude': '40.87930411344348',
   'longitude': '-73.85986581349823',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600349',
  'created_date': '2024-03-17T00:30:17.000',
  'closed_date': '2024-03-17T01:17: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': '11206',
  'incident_address': '895 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BELVIDERE STREET',
  'cross_street_2': 'ARION PLACE',
  'intersection_street_1': 'BELVIDERE STREET',
  'intersection_street_2': 'ARION PLACE',
  '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-03-17T01:17:09.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031360003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001734',
  'y_coordinate_state_plane': '193564',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.697947965452556',
  'longitude': '-73.93694672836828',
  'location': {'latitude': '40.697947965452556',
   'longitude': '-73.93694672836828',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601248',
  'created_date': '2024-03-17T00:30:17.000',
  'closed_date': '2024-03-17T00:42: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': '10002',
  'incident_address': '37 CANAL STREET',
  'street_name': 'CANAL STREET',
  'cross_street_1': 'DIVISION STREET',
  'cross_street_2': 'LUDLOW STREET',
  'intersection_street_1': 'DIVISION STREET',
  'intersection_street_2': 'LUDLOW STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CANAL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:42:49.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002970037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986725',
  'y_coordinate_state_plane': '199646',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71465854603709',
  'longitude': '-73.99107206822782',
  'location': {'latitude': '40.71465854603709',
   'longitude': '-73.99107206822782',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605280',
  'created_date': '2024-03-17T00:30:14.000',
  'closed_date': '2024-03-17T01:45:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '32-33 100 STREET',
  'street_name': '100 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': '100 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:45:09.000',
  'community_board': '03 QUEENS',
  'bbl': '4016950055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020640',
  'y_coordinate_state_plane': '215570',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75829144967848',
  'longitude': '-73.8686463115297',
  'location': {'latitude': '40.75829144967848',
   'longitude': '-73.8686463115297',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604142',
  'created_date': '2024-03-17T00:30:08.000',
  'closed_date': '2024-03-17T00:50: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': '10455',
  'incident_address': '700 BECK STREET',
  'street_name': 'BECK STREET',
  'cross_street_1': 'AVENUE ST JOHN',
  'cross_street_2': 'LEGGETT AVENUE',
  'intersection_street_1': 'AVENUE ST JOHN',
  'intersection_street_2': 'LEGGETT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BECK 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-03-17T00:50:55.000',
  'community_board': '02 BRONX',
  'bbl': '2026840068',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011788',
  'y_coordinate_state_plane': '236206',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8149637164277',
  'longitude': '-73.90051394518662',
  'location': {'latitude': '40.8149637164277',
   'longitude': '-73.90051394518662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602270',
  'created_date': '2024-03-17T00:30:03.000',
  'closed_date': '2024-03-17T01:18: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': '11215',
  'incident_address': '721 UNION STREET',
  'street_name': 'UNION STREET',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': '5 AVENUE',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': '5 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UNION STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:18:05.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3009520046',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989465',
  'y_coordinate_state_plane': '185819',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67670545186577',
  'longitude': '-73.9811989219419',
  'location': {'latitude': '40.67670545186577',
   'longitude': '-73.9811989219419',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600328',
  'created_date': '2024-03-17T00:29:49.000',
  'closed_date': '2024-03-17T01:06:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10065',
  'incident_address': '1171 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   61 STREET',
  'cross_street_2': 'EAST   62 STREET',
  'intersection_street_1': 'EAST   61 STREET',
  'intersection_street_2': 'EAST   62 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-03-17T01:06:49.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1014160026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994460',
  'y_coordinate_state_plane': '216994',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.762268955963556',
  'longitude': '-73.9631436992251',
  'location': {'latitude': '40.762268955963556',
   'longitude': '-73.9631436992251',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601390',
  'created_date': '2024-03-17T00:29:42.000',
  'closed_date': '2024-03-17T01:08:37.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': '11358',
  'incident_address': '30-35 FRANCIS LEWIS BOULEVARD',
  'street_name': 'FRANCIS LEWIS BOULEVARD',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '32 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '32 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'FRANCIS LEWIS 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-03-17T01:08:40.000',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041819',
  'y_coordinate_state_plane': '219604',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.769251174197905',
  'longitude': '-73.7921640785289',
  'location': {'latitude': '40.769251174197905',
   'longitude': '-73.7921640785289',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604495',
  'created_date': '2024-03-17T00:29: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': '11419',
  'incident_address': '103-01 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': '103 AVENUE',
  'cross_street_2': 'LIBERTY AVENUE',
  'intersection_street_1': '103 AVENUE',
  'intersection_street_2': 'LIBERTY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4095570001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032818',
  'y_coordinate_state_plane': '189871',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6876955499591',
  'longitude': '-73.82487404392059',
  'location': {'latitude': '40.6876955499591',
   'longitude': '-73.82487404392059',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598533',
  'created_date': '2024-03-17T00:29:27.000',
  'closed_date': '2024-03-17T00:32: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:32:29.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603596',
  'created_date': '2024-03-17T00:29:15.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': '11356',
  'incident_address': '128-04 23 AVENUE',
  'street_name': '23 AVENUE',
  'cross_street_1': '128 STREET',
  'cross_street_2': '129 STREET',
  'intersection_street_1': '128 STREET',
  'intersection_street_2': '129 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '23 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4042320032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028420',
  'y_coordinate_state_plane': '222984',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77860547646769',
  'longitude': '-73.84051488255317',
  'location': {'latitude': '40.77860547646769',
   'longitude': '-73.84051488255317',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601667',
  'created_date': '2024-03-17T00:28:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11427',
  'incident_address': '86-16 208 STREET',
  'street_name': '208 STREET',
  'cross_street_1': 'GRAND CENTRAL PARKWAY',
  'cross_street_2': '86 ROAD',
  'intersection_street_1': 'GRAND CENTRAL PARKWAY',
  'intersection_street_2': '86 ROAD',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '208 STREET',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4105990100',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1050029',
  'y_coordinate_state_plane': '203533',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72508320130992',
  'longitude': '-73.76268161362778',
  'location': {'latitude': '40.72508320130992',
   'longitude': '-73.76268161362778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600497',
  'created_date': '2024-03-17T00:28:32.000',
  'closed_date': '2024-03-17T01:00:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10025',
  'incident_address': '161 WEST  106 STREET',
  'street_name': 'WEST  106 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DUKE ELLINGTON BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:00:18.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018610001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993923',
  'y_coordinate_state_plane': '230804',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800174346139464',
  'longitude': '-73.96506229130087',
  'location': {'latitude': '40.800174346139464',
   'longitude': '-73.96506229130087',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602321',
  'created_date': '2024-03-17T00:28:31.000',
  'closed_date': '2024-03-17T01:13:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10035',
  'incident_address': '173 EAST  117 STREET',
  'street_name': 'EAST  117 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  117 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-03-17T01:13:20.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016450028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000785',
  'y_coordinate_state_plane': '230363',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79895374529731',
  'longitude': '-73.94027866742019',
  'location': {'latitude': '40.79895374529731',
   'longitude': '-73.94027866742019',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600786',
  'created_date': '2024-03-17T00:28:22.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Cave-in',
  'location_type': 'Street',
  'incident_zip': '11232',
  'incident_address': '18 STREET',
  'street_name': '18 STREET',
  'cross_street_1': '18 STREET',
  'cross_street_2': 'HAMILTON AVENUE',
  'intersection_street_1': '18 STREET',
  'intersection_street_2': 'HAMILTON AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985249',
  'y_coordinate_state_plane': '181877',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66588702427862',
  'longitude': '-73.99639899702046',
  'location': {'latitude': '40.66588702427862',
   'longitude': '-73.99639899702046',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605052',
  'created_date': '2024-03-17T00:28:20.000',
  'closed_date': '2024-03-17T01:17:12.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': '11420',
  'incident_address': '115-51 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:17:16.000',
  'community_board': '10 QUEENS',
  'bbl': '4116660041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035194',
  'y_coordinate_state_plane': '185790',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67648080105422',
  'longitude': '-73.8163375668986',
  'location': {'latitude': '40.67648080105422',
   'longitude': '-73.8163375668986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604180',
  'created_date': '2024-03-17T00:28:20.000',
  'closed_date': '2024-03-17T00:54:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10014',
  'incident_address': '41 PERRY STREET',
  'street_name': 'PERRY STREET',
  'cross_street_1': 'WAVERLY PLACE',
  'cross_street_2': 'WEST    4 STREET',
  'intersection_street_1': 'WAVERLY PLACE',
  'intersection_street_2': 'WEST    4 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PERRY 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-03-17T00:54:18.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006130040',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983469',
  'y_coordinate_state_plane': '207283',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73562056845719',
  'longitude': '-74.00281814476',
  'location': {'latitude': '40.73562056845719',
   'longitude': '-74.00281814476',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601318',
  'created_date': '2024-03-17T00:28:12.000',
  'closed_date': '2024-03-17T01:38: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': '11211',
  'incident_address': '396 SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'HOOPER STREET',
  'cross_street_2': 'HEWES STREET',
  'intersection_street_1': 'HOOPER STREET',
  'intersection_street_2': 'HEWES STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:38:38.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024250017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997659',
  'y_coordinate_state_plane': '197747',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.709436428552344',
  'longitude': '-73.95163423662422',
  'location': {'latitude': '40.709436428552344',
   'longitude': '-73.95163423662422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602237',
  'created_date': '2024-03-17T00:28:11.000',
  'closed_date': '2024-03-17T01:17:27.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': '11420',
  'incident_address': '115-54 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:17:31.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035191',
  'y_coordinate_state_plane': '185781',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67645611540318',
  'longitude': '-73.81634845044111',
  'location': {'latitude': '40.67645611540318',
   'longitude': '-73.81634845044111',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605062',
  'created_date': '2024-03-17T00:28:03.000',
  'closed_date': '2024-03-17T00:41:16.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': '11236',
  'incident_address': '10123 AVENUE J',
  'street_name': 'AVENUE J',
  'cross_street_1': 'EAST  101 STREET',
  'cross_street_2': 'EAST  102 STREET',
  'intersection_street_1': 'EAST  101 STREET',
  'intersection_street_2': 'EAST  102 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE J',
  '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-03-17T00:41:21.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3082090001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013232',
  'y_coordinate_state_plane': '173966',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.644125695786094',
  'longitude': '-73.8955653095973',
  'location': {'latitude': '40.644125695786094',
   'longitude': '-73.8955653095973',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600225',
  'created_date': '2024-03-17T00:28:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10461',
  'incident_address': '1520 WILLIAMSBRIDGE ROAD',
  'street_name': 'WILLIAMSBRIDGE ROAD',
  'cross_street_1': 'EASTCHESTER RD',
  'cross_street_2': 'POPLAR ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '11 BRONX',
  'bbl': '2040820013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026665',
  'y_coordinate_state_plane': '247145',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.844929189710584',
  'longitude': '-73.8466989948002',
  'location': {'latitude': '40.844929189710584',
   'longitude': '-73.8466989948002',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604480',
  'created_date': '2024-03-17T00:27:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11207',
  'incident_address': '869 VAN SICLEN AVENUE',
  'street_name': 'VAN SICLEN AVENUE',
  'cross_street_1': 'STANLEY AVENUE',
  'cross_street_2': 'WORTMAN AVENUE',
  'intersection_street_1': 'STANLEY AVENUE',
  'intersection_street_2': 'WORTMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VAN SICLEN AVENUE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3043750001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016361',
  'y_coordinate_state_plane': '179262',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65865125900525',
  'longitude': '-73.88426496691983',
  'location': {'latitude': '40.65865125900525',
   'longitude': '-73.88426496691983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605088',
  'created_date': '2024-03-17T00:27:50.000',
  'closed_date': '2024-03-17T01:18:14.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': '11237',
  'incident_address': '314 SUYDAM STREET',
  'street_name': 'SUYDAM 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': 'SUYDAM STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:18:19.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032200027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005676',
  'y_coordinate_state_plane': '195454',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.7031269052177',
  'longitude': '-73.92272452474049',
  'location': {'latitude': '40.7031269052177',
   'longitude': '-73.92272452474049',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605576',
  'created_date': '2024-03-17T00:27:45.000',
  'agency': 'DCWP',
  'agency_name': 'Department of Consumer and Worker Protection',
  'complaint_type': 'Consumer Complaint',
  'descriptor': 'Hotel or Motel',
  'location_type': 'Business',
  'incident_zip': '10473',
  'incident_address': '2338 BRUCKNER BOULEVARD',
  'street_name': 'BRUCKNER BOULEVARD',
  'cross_street_1': 'HAVEMEYER AVENUE',
  'cross_street_2': 'CONNECTOR ROAD TO ZEREGA AVENUE',
  'intersection_street_1': 'HAVEMEYER AVENUE',
  'intersection_street_2': 'CONNECTOR ROAD TO ZEREGA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRUCKNER BOULEVARD',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037000026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027007',
  'y_coordinate_state_plane': '240800',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82751237857679',
  'longitude': '-73.84550334987348',
  'location': {'latitude': '40.82751237857679',
   'longitude': '-73.84550334987348',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600217',
  'created_date': '2024-03-17T00:27:29.000',
  'closed_date': '2024-03-17T01:35:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11103',
  'incident_address': '32-68 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  '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-03-17T01:36:02.000',
  'community_board': '01 QUEENS',
  'bbl': '4006760082',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006581',
  'y_coordinate_state_plane': '215134',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7571414278536',
  'longitude': '-73.91939522151064',
  'location': {'latitude': '40.7571414278536',
   'longitude': '-73.91939522151064',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602241',
  'created_date': '2024-03-17T00:27:17.000',
  'closed_date': '2024-03-17T00:58:27.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': '11214',
  'incident_address': '2141 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'BAY PARKWAY',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'BAY PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:58:30.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063300061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985953',
  'y_coordinate_state_plane': '159277',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60385472263235',
  'longitude': '-73.99386705683236',
  'location': {'latitude': '40.60385472263235',
   'longitude': '-73.99386705683236',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602007',
  'created_date': '2024-03-17T00:27:08.000',
  'closed_date': '2024-03-17T00:51:12.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': '11238',
  'incident_address': '727 CLASSON AVENUE',
  'street_name': 'CLASSON AVENUE',
  'cross_street_1': 'PROSPECT PLACE',
  'cross_street_2': 'PARK PLACE',
  'intersection_street_1': 'PROSPECT PLACE',
  'intersection_street_2': 'PARK PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T00:51:15.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011630001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995402',
  'y_coordinate_state_plane': '185426',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.67562126714233',
  'longitude': '-73.95979554750588',
  'location': {'latitude': '40.67562126714233',
   'longitude': '-73.95979554750588',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600237',
  'created_date': '2024-03-17T00:27:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10455',
  'incident_address': 'EAST  156 STREET',
  'street_name': 'EAST  156 STREET',
  'cross_street_1': 'CAULDWELL AVENUE',
  'cross_street_2': 'EAGLE AVENUE',
  'address_type': 'BLOCKFACE',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX'},
 {'unique_key': '60602813',
  'created_date': '2024-03-17T00:27:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Lamppost Knocked Down',
  'incident_zip': '10016',
  'incident_address': 'FDR DR',
  'street_name': 'FDR DR',
  'intersection_street_1': 'EAST 34 STREET',
  'intersection_street_2': 'FDR DRIVE',
  'address_type': 'INTERSECTION',
  'city': 'MANHATTAN',
  'status': 'Open',
  'community_board': '06 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991992',
  'y_coordinate_state_plane': '210041',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7431872395782',
  'longitude': '-73.97206074900083',
  'location': {'latitude': '40.7431872395782',
   'longitude': '-73.97206074900083',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602896',
  'created_date': '2024-03-17T00:26:58.000',
  'closed_date': '2024-03-17T00:55:44.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': '2761 BATH AVENUE',
  'street_name': 'BATH AVENUE',
  'cross_street_1': 'BAY   47 STREET',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': 'BAY   47 STREET',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:55:49.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3068877501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988463',
  'y_coordinate_state_plane': '154468',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59065415093266',
  'longitude': '-73.98483089722414',
  'location': {'latitude': '40.59065415093266',
   'longitude': '-73.98483089722414',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604045',
  'created_date': '2024-03-17T00:26:52.000',
  'closed_date': '2024-03-17T01:40:08.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': '11211',
  'incident_address': '245 SOUTH    1 STREET',
  'street_name': 'SOUTH    1 STREET',
  'cross_street_1': 'ROEBLING STREET',
  'cross_street_2': 'HAVEMEYER STREET',
  'intersection_street_1': 'ROEBLING STREET',
  'intersection_street_2': 'HAVEMEYER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    1 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:40:13.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023950128',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995912',
  'y_coordinate_state_plane': '198876',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71253774004245',
  'longitude': '-73.95793364388881',
  'location': {'latitude': '40.71253774004245',
   'longitude': '-73.95793364388881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602204',
  'created_date': '2024-03-17T00:26:48.000',
  'closed_date': '2024-03-17T00:58:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11207',
  'incident_address': '640 STANLEY AVENUE',
  'street_name': 'STANLEY AVENUE',
  'cross_street_1': 'VERMONT STREET',
  'cross_street_2': 'VAN SICLEN AVENUE',
  'intersection_street_1': 'VERMONT STREET',
  'intersection_street_2': 'VAN SICLEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STANLEY 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-03-17T00:58:53.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3043710001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016195',
  'y_coordinate_state_plane': '179364',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65893182677183',
  'longitude': '-73.88486278314905',
  'location': {'latitude': '40.65893182677183',
   'longitude': '-73.88486278314905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600763',
  'created_date': '2024-03-17T00:26:46.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': '826 WILCOX AVENUE',
  'street_name': 'WILCOX AVENUE',
  'cross_street_1': 'PHILIP AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'intersection_street_1': 'PHILIP AVENUE',
  'intersection_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILCOX AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2054770051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1034678',
  'y_coordinate_state_plane': '242268',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83150114399885',
  'longitude': '-73.81777426573238',
  'location': {'latitude': '40.83150114399885',
   'longitude': '-73.81777426573238',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603997',
  'created_date': '2024-03-17T00:26:44.000',
  'closed_date': '2024-03-17T01:10:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11237',
  'incident_address': '44 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'MELROSE STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'MELROSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:20.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031570031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003829',
  'y_coordinate_state_plane': '195325',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70277711007218',
  'longitude': '-73.92938632693719',
  'location': {'latitude': '40.70277711007218',
   'longitude': '-73.92938632693719',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604193',
  'created_date': '2024-03-17T00:26:34.000',
  'closed_date': '2024-03-17T01:08: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': '10467',
  'incident_address': '3225 RESERVOIR OVAL EAST',
  'street_name': 'RESERVOIR OVAL EAST',
  'cross_street_1': 'VAN CORTLANDT AVENUE EAST',
  'cross_street_2': 'BEND',
  'intersection_street_1': 'VAN CORTLANDT AVENUE EAST',
  'intersection_street_2': 'BEND',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RESERVOIR OVAL EAST',
  '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-03-17T01:08:59.000',
  'community_board': '07 BRONX',
  'bbl': '2033430400',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017739',
  'y_coordinate_state_plane': '258580',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.876353156168754',
  'longitude': '-73.87890315388029',
  'location': {'latitude': '40.876353156168754',
   'longitude': '-73.87890315388029',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600753',
  'created_date': '2024-03-17T00:26:33.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': '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': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:36.000',
  'community_board': '05 BRONX',
  'bbl': '2031730005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011782',
  'y_coordinate_state_plane': '252825',
  'open_data_channel_type': 'MOBILE',
  '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': '60600405',
  'created_date': '2024-03-17T00:26:33.000',
  'closed_date': '2024-03-17T00:50:02.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': '10473',
  'incident_address': '715 NOBLE AVENUE',
  'street_name': 'NOBLE 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': 'NOBLE 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-03-17T00:50:05.000',
  'community_board': '09 BRONX',
  'bbl': '2035930001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020999',
  'y_coordinate_state_plane': '237637',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.818857890625004',
  'longitude': '-73.86722973414106',
  'location': {'latitude': '40.818857890625004',
   'longitude': '-73.86722973414106',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599751',
  'created_date': '2024-03-17T00:26:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11106',
  'incident_address': '31-48 29 STREET',
  'street_name': '29 STREET',
  'cross_street_1': '31 AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': '31 AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '29 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4005797501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004776',
  'y_coordinate_state_plane': '217659',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76407627713915',
  'longitude': '-73.92590273985275',
  'location': {'latitude': '40.76407627713915',
   'longitude': '-73.92590273985275',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601692',
  'created_date': '2024-03-17T00:26: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': '10314',
  'incident_address': 'MEREDITH AVENUE',
  'street_name': 'MEREDITH AVENUE',
  'cross_street_1': 'EGRIT COURT',
  'cross_street_2': 'MEREDITH AVENUE',
  'intersection_street_1': 'EGRIT COURT',
  'intersection_street_2': 'MEREDITH AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:18:02.000',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '931937',
  'y_coordinate_state_plane': '156247',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.595383763570545',
  'longitude': '-74.18836887931478',
  'location': {'latitude': '40.595383763570545',
   'longitude': '-74.18836887931478',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600818',
  'created_date': '2024-03-17T00:25:37.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10001',
  'incident_address': '161 WEST   27 STREET',
  'street_name': 'WEST   27 STREET',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   27 STREET',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1008037502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986282',
  'y_coordinate_state_plane': '211118',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74614649045339',
  'longitude': '-73.99266661341788',
  'location': {'latitude': '40.74614649045339',
   'longitude': '-73.99266661341788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599858',
  'created_date': '2024-03-17T00:25:37.000',
  'closed_date': '2024-03-17T00:42:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10001',
  'incident_address': '161 WEST   27 STREET',
  'street_name': 'WEST   27 STREET',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   27 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-03-17T00:42:34.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008037502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986282',
  'y_coordinate_state_plane': '211118',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74614649045339',
  'longitude': '-73.99266661341788',
  'location': {'latitude': '40.74614649045339',
   'longitude': '-73.99266661341788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602303',
  'created_date': '2024-03-17T00:25:26.000',
  'closed_date': '2024-03-17T01:09: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': '10467',
  'incident_address': '277 EAST  207 STREET',
  'street_name': 'EAST  207 STREET',
  'cross_street_1': 'BAINBRIDGE AVENUE',
  'cross_street_2': 'PERRY AVENUE',
  'intersection_street_1': 'BAINBRIDGE AVENUE',
  'intersection_street_2': 'PERRY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  207 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-03-17T01:09:20.000',
  'community_board': '07 BRONX',
  'bbl': '2033430042',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018146',
  'y_coordinate_state_plane': '258298',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875577600258325',
  'longitude': '-73.87743286302903',
  'location': {'latitude': '40.875577600258325',
   'longitude': '-73.87743286302903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603315',
  'created_date': '2024-03-17T00:24:50.000',
  'closed_date': '2024-03-17T01:08: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': '11221',
  'incident_address': 'BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'DEKALB AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'DEKALB AVENUE',
  '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-03-17T01:08:44.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003744',
  'y_coordinate_state_plane': '192077',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.693862297662506',
  'longitude': '-73.92970228883433',
  'location': {'latitude': '40.693862297662506',
   'longitude': '-73.92970228883433',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601379',
  'created_date': '2024-03-17T00:24:49.000',
  'closed_date': '2024-03-17T00:58: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': '11214',
  'incident_address': '2141 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'BAY PARKWAY',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'BAY PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:58:48.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063300061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985953',
  'y_coordinate_state_plane': '159277',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60385472263235',
  'longitude': '-73.99386705683236',
  'location': {'latitude': '40.60385472263235',
   'longitude': '-73.99386705683236',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600411',
  'created_date': '2024-03-17T00:24:31.000',
  'closed_date': '2024-03-17T01:32: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': '11216',
  'incident_address': '91 MACON STREET',
  'street_name': 'MACON STREET',
  'cross_street_1': 'VERONA PLACE',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'VERONA PLACE',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MACON 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-03-17T01:32:05.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018440067',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998794',
  'y_coordinate_state_plane': '187508',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.681330962000644',
  'longitude': '-73.94756244294499',
  'location': {'latitude': '40.681330962000644',
   'longitude': '-73.94756244294499',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602304',
  'created_date': '2024-03-17T00:24:09.000',
  'closed_date': '2024-03-17T01:14:14.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': '1027 WALTON AVENUE',
  'street_name': 'WALTON AVENUE',
  'cross_street_1': 'EAST  164 STREET',
  'cross_street_2': 'EAST  165 STREET',
  'intersection_street_1': 'EAST  164 STREET',
  'intersection_street_2': 'EAST  165 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-03-17T01:14:20.000',
  'community_board': '04 BRONX',
  'bbl': '2024770021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005828',
  'y_coordinate_state_plane': '241946',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83073495266584',
  'longitude': '-73.92202706239397',
  'location': {'latitude': '40.83073495266584',
   'longitude': '-73.92202706239397',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598746',
  'created_date': '2024-03-17T00:24:07.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': '14 BAY   37 STREET',
  'street_name': 'BAY   37 STREET',
  'cross_street_1': '86 STREET',
  'cross_street_2': 'BENSON AVENUE',
  'intersection_street_1': '86 STREET',
  'intersection_street_2': 'BENSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BAY   37 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3068640050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987274',
  'y_coordinate_state_plane': '157282',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59837850019545',
  'longitude': '-73.9891106875518',
  'location': {'latitude': '40.59837850019545',
   'longitude': '-73.9891106875518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599790',
  'created_date': '2024-03-17T00:24:05.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': '37-41 92 STREET',
  'street_name': '92 STREET',
  'cross_street_1': 'ELMHURST AVENUE',
  'cross_street_2': 'ROOSEVELT AVENUE',
  'intersection_street_1': 'ELMHURST AVENUE',
  'intersection_street_2': 'ROOSEVELT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '92 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4014800059',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018939',
  'y_coordinate_state_plane': '212404',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74960842969996',
  'longitude': '-73.874802582035',
  'location': {'latitude': '40.74960842969996',
   'longitude': '-73.874802582035',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598837',
  'created_date': '2024-03-17T00:24: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': '10461',
  'incident_address': '1342 EDWARDS AVENUE',
  'street_name': 'EDWARDS AVENUE',
  'cross_street_1': 'WATERBURY AVENUE',
  'cross_street_2': 'LATTING STREET',
  'intersection_street_1': 'WATERBURY AVENUE',
  'intersection_street_2': 'LATTING STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EDWARDS AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2053500018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1029710',
  'y_coordinate_state_plane': '244468',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.837566467166134',
  'longitude': '-73.83571158883258',
  'location': {'latitude': '40.837566467166134',
   'longitude': '-73.83571158883258',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603605',
  'created_date': '2024-03-17T00:23:53.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': '10462',
  'incident_address': '2179 MATTHEWS AVENUE',
  'street_name': 'MATTHEWS 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': 'MATTHEWS AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043220043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022178',
  'y_coordinate_state_plane': '251165',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85598329878383',
  'longitude': '-73.86289363917999',
  'location': {'latitude': '40.85598329878383',
   'longitude': '-73.86289363917999',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604211',
  'created_date': '2024-03-17T00:23:38.000',
  'closed_date': '2024-03-17T01:16: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': '11206',
  'incident_address': '889 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BELVIDERE STREET',
  'cross_street_2': 'ARION PLACE',
  'intersection_street_1': 'BELVIDERE STREET',
  'intersection_street_2': 'ARION PLACE',
  '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-03-17T01:16:14.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031360005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001693',
  'y_coordinate_state_plane': '193594',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.698030389351416',
  'longitude': '-73.93709451061773',
  'location': {'latitude': '40.698030389351416',
   'longitude': '-73.93709451061773',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599431',
  'created_date': '2024-03-17T00:23:27.000',
  'closed_date': '2024-03-17T01:06: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': '11216',
  'incident_address': '91 MACON STREET',
  'street_name': 'MACON STREET',
  'cross_street_1': 'VERONA PLACE',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'VERONA PLACE',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MACON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:06:11.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018440067',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998794',
  'y_coordinate_state_plane': '187508',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.681330962000644',
  'longitude': '-73.94756244294499',
  'location': {'latitude': '40.681330962000644',
   'longitude': '-73.94756244294499',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601225',
  'created_date': '2024-03-17T00:23:24.000',
  'closed_date': '2024-03-17T00:38:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11219',
  'incident_address': '3901 NEW UTRECHT AVENUE',
  'street_name': 'NEW UTRECHT AVENUE',
  'cross_street_1': '39 STREET',
  'cross_street_2': '40 STREET',
  'intersection_street_1': '39 STREET',
  'intersection_street_2': '40 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW UTRECHT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:38:51.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055830049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985783',
  'y_coordinate_state_plane': '174428',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.645441073496016',
  'longitude': '-73.99447582986821',
  'location': {'latitude': '40.645441073496016',
   'longitude': '-73.99447582986821',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604185',
  'created_date': '2024-03-17T00:23:15.000',
  'closed_date': '2024-03-17T00:53: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': '10473',
  'incident_address': '535 HAVEMEYER AVENUE',
  'street_name': 'HAVEMEYER AVENUE',
  'cross_street_1': 'LACOMBE AVENUE',
  'cross_street_2': 'RANDALL AVENUE',
  'intersection_street_1': 'LACOMBE AVENUE',
  'intersection_street_2': 'RANDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HAVEMEYER 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-03-17T00:53:12.000',
  'community_board': '09 BRONX',
  'bbl': '2035370001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027243',
  'y_coordinate_state_plane': '237367',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81808863502929',
  'longitude': '-73.84467259346006',
  'location': {'latitude': '40.81808863502929',
   'longitude': '-73.84467259346006',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600019',
  'created_date': '2024-03-17T00:23:03.000',
  'closed_date': '2024-03-17T00:44:22.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': '2528 WEST STREET',
  'street_name': 'WEST STREET',
  'cross_street_1': 'AVENUE Y',
  'cross_street_2': 'AVENUE Z',
  'intersection_street_1': 'AVENUE Y',
  'intersection_street_2': 'AVENUE Z',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST 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-03-17T00:44:25.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3072150019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992667',
  'y_coordinate_state_plane': '153387',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.587684026859016',
  'longitude': '-73.96969554678562',
  'location': {'latitude': '40.587684026859016',
   'longitude': '-73.96969554678562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599544',
  'created_date': '2024-03-17T00:22:42.000',
  'closed_date': '2024-03-17T01:11:06.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': '44 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'MELROSE STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'MELROSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:11:11.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031570031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003829',
  'y_coordinate_state_plane': '195325',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70277711007218',
  'longitude': '-73.92938632693719',
  'location': {'latitude': '40.70277711007218',
   'longitude': '-73.92938632693719',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604506',
  'created_date': '2024-03-17T00:22:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '2166 MATTHEWS AVENUE',
  'street_name': 'MATTHEWS 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': 'MATTHEWS AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2043230018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022182',
  'y_coordinate_state_plane': '251067',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.85571430119927',
  'longitude': '-73.86287973410012',
  'location': {'latitude': '40.85571430119927',
   'longitude': '-73.86287973410012',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602242',
  'created_date': '2024-03-17T00:22:21.000',
  'closed_date': '2024-03-17T00:58: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': '11214',
  'incident_address': '2141 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'BAY PARKWAY',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'BAY PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:59:00.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3063300061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985953',
  'y_coordinate_state_plane': '159277',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60385472263235',
  'longitude': '-73.99386705683236',
  'location': {'latitude': '40.60385472263235',
   'longitude': '-73.99386705683236',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600712',
  'created_date': '2024-03-17T00: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': '11378',
  'incident_address': '61-34 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': '61 STREET',
  'cross_street_2': '64 STREET',
  'intersection_street_1': '61 STREET',
  'intersection_street_2': '64 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': 'GRAND AVENUE',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4027130023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010859',
  'y_coordinate_state_plane': '202332',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72199129801535',
  'longitude': '-73.90400423360109',
  'location': {'latitude': '40.72199129801535',
   'longitude': '-73.90400423360109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600773',
  'created_date': '2024-03-17T00: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': '10314',
  'incident_address': 'MEREDITH AVENUE',
  'street_name': 'MEREDITH AVENUE',
  'cross_street_1': 'EGRIT COURT',
  'cross_street_2': 'MEREDITH AVENUE',
  'intersection_street_1': 'EGRIT COURT',
  'intersection_street_2': 'MEREDITH AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:18:16.000',
  'community_board': '02 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '931937',
  'y_coordinate_state_plane': '156247',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.595383763570545',
  'longitude': '-74.18836887931478',
  'location': {'latitude': '40.595383763570545',
   'longitude': '-74.18836887931478',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603604',
  'created_date': '2024-03-17T00:22:11.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': '1806 WEST    8 STREET',
  'street_name': 'WEST    8 STREET',
  'cross_street_1': 'HIGHLAWN AVENUE',
  'cross_street_2': 'AVENUE S',
  'intersection_street_1': 'HIGHLAWN AVENUE',
  'intersection_street_2': 'AVENUE S',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    8 STREET',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3066720008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989616',
  'y_coordinate_state_plane': '158898',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.602812983831456',
  'longitude': '-73.98067594844662',
  'location': {'latitude': '40.602812983831456',
   'longitude': '-73.98067594844662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599429',
  'created_date': '2024-03-17T00:21:50.000',
  'closed_date': '2024-03-17T00:41: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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:41:35.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600284',
  'created_date': '2024-03-17T00:21:43.000',
  'closed_date': '2024-03-17T00:26:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10026',
  'incident_address': '2164 FREDERICK DOUGLASS BOULEVARD',
  'street_name': 'FREDERICK DOUGLASS BOULEVARD',
  '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': '8 AVENUE',
  'status': 'Closed',
  'resolution_description': "This complaint does not fall under the Police Department's jurisdiction.",
  'resolution_action_updated_date': '2024-03-17T00:26:15.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019220061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996704',
  'y_coordinate_state_plane': '232522',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80488630245875',
  'longitude': '-73.95501446978744',
  'location': {'latitude': '40.80488630245875',
   'longitude': '-73.95501446978744',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599654',
  'created_date': '2024-03-17T00:21:27.000',
  'closed_date': '2024-03-17T00:49:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10022',
  'incident_address': '99 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'LEXINGTON AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'LEXINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   52 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-03-17T00:49:23.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1013070001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991877',
  'y_coordinate_state_plane': '215507',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75819012805686',
  'longitude': '-73.97246956034411',
  'location': {'latitude': '40.75819012805686',
   'longitude': '-73.97246956034411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598444',
  'created_date': '2024-03-17T00:21:25.000',
  'closed_date': '2024-03-17T00:35:01.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': '11691',
  'incident_address': '22-04 COLLIER AVENUE',
  'street_name': 'COLLIER AVENUE',
  'cross_street_1': 'BEACH   22 STREET',
  'cross_street_2': 'BRIAR PLACE',
  'intersection_street_1': 'BEACH   22 STREET',
  'intersection_street_2': 'BRIAR PLACE',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'COLLIER 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-03-17T00:35:04.000',
  'community_board': '14 QUEENS',
  'bbl': '4157710071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051629',
  'y_coordinate_state_plane': '157514',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59875967880786',
  'longitude': '-73.7573690117753',
  'location': {'latitude': '40.59875967880786',
   'longitude': '-73.7573690117753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603679',
  'created_date': '2024-03-17T00:21:15.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-03-17T00:27:08.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000926',
  'y_coordinate_state_plane': '197130',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'L',
  'bridge_highway_segment': 'Mezzanine',
  'latitude': '40.70773735576328',
  'longitude': '-73.93985182081995',
  'location': {'latitude': '40.70773735576328',
   'longitude': '-73.93985182081995',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599756',
  'created_date': '2024-03-17T00:21:12.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': '71-20 QUEENS MIDTOWN EXPRESSWAY',
  'street_name': 'QUEENS MIDTOWN EXPRESSWAY',
  'cross_street_1': '58 ROAD',
  'cross_street_2': 'MAZEAU ST PEDESTRIAN OVERPASS',
  'intersection_street_1': '58 ROAD',
  'intersection_street_2': 'MAZEAU ST PEDESTRIAN OVERPASS',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': 'QUEENS MIDTOWN EXPRESSWAY',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4028190077',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014646',
  'y_coordinate_state_plane': '203691',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72570921923832',
  'longitude': '-73.89033596597109',
  'location': {'latitude': '40.72570921923832',
   'longitude': '-73.89033596597109',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601336',
  'created_date': '2024-03-17T00:20:59.000',
  'closed_date': '2024-03-17T00:32:47.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': '11232',
  'incident_address': '827 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 to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:32:51.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009160061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985045',
  'y_coordinate_state_plane': '174732',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6462755848795',
  'longitude': '-73.99713517926862',
  'location': {'latitude': '40.6462755848795',
   'longitude': '-73.99713517926862',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598995',
  'created_date': '2024-03-17T00:20:58.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Bridge Condition',
  'descriptor': 'Dirt, Debris, Litter Complaint',
  'location_type': 'Bridge',
  'status': 'In Progress',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'bridge_highway_name': 'Queensboro/59th St Br',
  'bridge_highway_direction': 'Manhattan Bound',
  'road_ramp': 'Roadway',
  'bridge_highway_segment': 'Upper Level'},
 {'unique_key': '60604130',
  'created_date': '2024-03-17T00:20:43.000',
  'closed_date': '2024-03-17T00:39: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': '11225',
  'incident_address': '1214 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-03-17T00:39:42.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050470042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998037',
  'y_coordinate_state_plane': '178856',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6575843694729',
  'longitude': '-73.95030945770479',
  'location': {'latitude': '40.6575843694729',
   'longitude': '-73.95030945770479',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601239',
  'created_date': '2024-03-17T00:20:35.000',
  'closed_date': '2024-03-17T00:28:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11225',
  'incident_address': '510 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'EMPIRE BOULEVARD',
  'cross_street_2': 'LEFFERTS AVENUE',
  'intersection_street_1': 'EMPIRE BOULEVARD',
  'intersection_street_2': 'LEFFERTS AVENUE',
  '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-03-17T00:29:01.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050240053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994920',
  'y_coordinate_state_plane': '180403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66183484805751',
  'longitude': '-73.96154117220703',
  'location': {'latitude': '40.66183484805751',
   'longitude': '-73.96154117220703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601737',
  'created_date': '2024-03-17T00:20:24.000',
  'closed_date': '2024-03-17T00:23:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Store/Commercial',
  'incident_zip': '10001',
  'incident_address': '161 WEST   27 STREET',
  'street_name': 'WEST   27 STREET',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   27 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2024-03-17T00:23:20.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008037502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986282',
  'y_coordinate_state_plane': '211118',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74614649045339',
  'longitude': '-73.99266661341788',
  'location': {'latitude': '40.74614649045339',
   'longitude': '-73.99266661341788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601206',
  'created_date': '2024-03-17T00:20:19.000',
  'closed_date': '2024-03-17T01:00:54.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': '40 MARKET STREET',
  'street_name': 'MARKET STREET',
  'cross_street_1': 'HENRY STREET',
  'cross_street_2': 'MADISON STREET',
  'intersection_street_1': 'HENRY STREET',
  'intersection_street_2': 'MADISON STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MARKET STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:00:58.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002750027',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985812',
  'y_coordinate_state_plane': '198829',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71241628420856',
  'longitude': '-73.99436567260881',
  'location': {'latitude': '40.71241628420856',
   'longitude': '-73.99436567260881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602674',
  'created_date': '2024-03-17T00:20: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': '11385',
  'incident_address': '1638 SUMMERFIELD STREET',
  'street_name': 'SUMMERFIELD STREET',
  'cross_street_1': 'WYCKOFF AVENUE',
  'cross_street_2': 'CYPRESS AVENUE',
  'intersection_street_1': 'WYCKOFF AVENUE',
  'intersection_street_2': 'CYPRESS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'SUMMERFIELD STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:01:36.000',
  'community_board': '05 QUEENS',
  'bbl': '4035550029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011521',
  'y_coordinate_state_plane': '192700',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69555173968695',
  'longitude': '-73.90165498839248',
  'location': {'latitude': '40.69555173968695',
   'longitude': '-73.90165498839248',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603917',
  'created_date': '2024-03-17T00:19:49.000',
  'closed_date': '2024-03-17T00:28:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:28:11.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600762',
  'created_date': '2024-03-17T00:19:49.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': '11354',
  'incident_address': '33-35 153 STREET',
  'street_name': '153 STREET',
  'cross_street_1': '33 ROAD',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': '33 ROAD',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '153 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4052380026',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036446',
  'y_coordinate_state_plane': '218998',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.767621222918365',
  'longitude': '-73.81156635607293',
  'location': {'latitude': '40.767621222918365',
   'longitude': '-73.81156635607293',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601184',
  'created_date': '2024-03-17T00:19:48.000',
  'closed_date': '2024-03-17T00:57:47.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': '10457',
  'incident_address': '2051 WEBSTER AVENUE',
  'street_name': 'WEBSTER AVENUE',
  'cross_street_1': 'EAST  179 STREET',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST  179 STREET',
  'intersection_street_2': 'EAST  180 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-03-17T00:57:50.000',
  'community_board': '05 BRONX',
  'bbl': '2031420058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012251',
  'y_coordinate_state_plane': '249441',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.851288500289606',
  'longitude': '-73.89878602823659',
  'location': {'latitude': '40.851288500289606',
   'longitude': '-73.89878602823659',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598388',
  'created_date': '2024-03-17T00:19:44.000',
  'closed_date': '2024-03-17T00:24:40.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:24:43.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605057',
  'created_date': '2024-03-17T00:19:40.000',
  'closed_date': '2024-03-17T00:59: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': '10128',
  'incident_address': '1705 FIRST AVENUE',
  'street_name': 'FIRST AVENUE',
  'cross_street_1': 'EAST   88 STREET',
  'cross_street_2': 'EAST   89 STREET',
  'intersection_street_1': 'EAST   88 STREET',
  'intersection_street_2': 'EAST   89 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 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-03-17T00:59:25.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015510026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998571',
  'y_coordinate_state_plane': '222865',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.77837761538778',
  'longitude': '-73.94829120619998',
  'location': {'latitude': '40.77837761538778',
   'longitude': '-73.94829120619998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602193',
  'created_date': '2024-03-17T00:19:34.000',
  'closed_date': '2024-03-17T00:39: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': '11225',
  'incident_address': '415 LEFFERTS AVENUE',
  'street_name': 'LEFFERTS AVENUE',
  'cross_street_1': 'NEW YORK AVENUE',
  'cross_street_2': 'BROOKLYN AVENUE',
  'intersection_street_1': 'NEW YORK AVENUE',
  'intersection_street_2': 'BROOKLYN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEFFERTS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:39:15.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013220046',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998864',
  'y_coordinate_state_plane': '180676',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66257854139589',
  'longitude': '-73.94732487429349',
  'location': {'latitude': '40.66257854139589',
   'longitude': '-73.94732487429349',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599225',
  'created_date': '2024-03-17T00:19:24.000',
  'closed_date': '2024-03-17T01:48:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '2087 BATHGATE AVENUE',
  'street_name': 'BATHGATE AVENUE',
  'cross_street_1': 'EAST  179 STREET',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST  179 STREET',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BATHGATE 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-03-17T01:48:09.000',
  'community_board': '06 BRONX',
  'bbl': '2030460032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013286',
  'y_coordinate_state_plane': '249207',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85064289707357',
  'longitude': '-73.89504587662107',
  'location': {'latitude': '40.85064289707357',
   'longitude': '-73.89504587662107',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604252',
  'created_date': '2024-03-17T00:19:15.000',
  'closed_date': '2024-03-17T01:28:23.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': '176 CLARKSON AVENUE',
  'street_name': 'CLARKSON AVENUE',
  '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': 'CLARKSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:28:26.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050650040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996969',
  'y_coordinate_state_plane': '177975',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.6551678163122',
  'longitude': '-73.95416036056795',
  'location': {'latitude': '40.6551678163122',
   'longitude': '-73.95416036056795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599328',
  'created_date': '2024-03-17T00:19:10.000',
  'closed_date': '2024-03-17T00:24: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': '10031',
  'incident_address': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:24:43.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600468',
  'created_date': '2024-03-17T00:18:57.000',
  'closed_date': '2024-03-17T00:24:54.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': '10031',
  'incident_address': '568 WEST  149 STREET',
  'street_name': 'WEST  149 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': 'WEST  149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:24:59.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020800059',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998780',
  'y_coordinate_state_plane': '241128',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82850418445052',
  'longitude': '-73.94749704707705',
  'location': {'latitude': '40.82850418445052',
   'longitude': '-73.94749704707705',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602351',
  'created_date': '2024-03-17T00:18:55.000',
  'closed_date': '2024-03-17T00:48: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': '11368',
  'incident_address': '126-30 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': 'SEAVER WAY',
  'cross_street_2': '126 PLACE',
  'intersection_street_1': 'SEAVER WAY',
  'intersection_street_2': '126 PLACE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:49:03.000',
  'community_board': '07 QUEENS',
  'bbl': '4018220017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027319',
  'y_coordinate_state_plane': '216204',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76000160258923',
  'longitude': '-73.84453371502632',
  'location': {'latitude': '40.76000160258923',
   'longitude': '-73.84453371502632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602084',
  'created_date': '2024-03-17T00:18:46.000',
  'closed_date': '2024-03-17T01:05:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10458',
  'incident_address': '2415A ARTHUR AVENUE',
  'street_name': 'ARTHUR AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARTHUR AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:05:24.000',
  'community_board': '06 BRONX',
  'bbl': '2030667501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015438',
  'y_coordinate_state_plane': '251136',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85593008469887',
  'longitude': '-73.88725824734692',
  'location': {'latitude': '40.85593008469887',
   'longitude': '-73.88725824734692',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598382',
  'created_date': '2024-03-17T00:18:40.000',
  'closed_date': '2024-03-17T00:24:33.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:24:38.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598370',
  'created_date': '2024-03-17T00:18:19.000',
  'closed_date': '2024-03-17T01:16:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11420',
  'incident_address': '115-51 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:16:56.000',
  'community_board': '10 QUEENS',
  'bbl': '4116660041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035194',
  'y_coordinate_state_plane': '185790',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67648080105422',
  'longitude': '-73.8163375668986',
  'location': {'latitude': '40.67648080105422',
   'longitude': '-73.8163375668986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604952',
  'created_date': '2024-03-17T00:18:02.000',
  'closed_date': '2024-03-17T00:18:35.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 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-03-17T00:18:38.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599686',
  'created_date': '2024-03-17T00:18:01.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': '821 REVERE AVENUE',
  'street_name': 'REVERE AVENUE',
  'cross_street_1': 'PHILIP AVENUE',
  'cross_street_2': 'LAFAYETTE AVENUE',
  'intersection_street_1': 'PHILIP AVENUE',
  'intersection_street_2': 'LAFAYETTE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'REVERE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055440027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032653',
  'y_coordinate_state_plane': '240951',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82789769340761',
  'longitude': '-73.8251012523748',
  'location': {'latitude': '40.82789769340761',
   'longitude': '-73.8251012523748',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599433',
  'created_date': '2024-03-17T00:17:50.000',
  'closed_date': '2024-03-17T01:31: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': '11374',
  'incident_address': '63-36 98 PLACE',
  'street_name': '98 PLACE',
  'cross_street_1': '63 ROAD',
  'cross_street_2': '63 DRIVE',
  'intersection_street_1': '63 ROAD',
  'intersection_street_2': '63 DRIVE',
  'address_type': 'ADDRESS',
  'city': 'REGO PARK',
  'landmark': '98 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-03-17T01:31:12.000',
  'community_board': '06 QUEENS',
  'bbl': '4020980018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023605',
  'y_coordinate_state_plane': '205911',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73176724760799',
  'longitude': '-73.85800035578632',
  'location': {'latitude': '40.73176724760799',
   'longitude': '-73.85800035578632',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600722',
  'created_date': '2024-03-17T00:17:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '118-02 SPRINGFIELD BOULEVARD',
  'street_name': 'SPRINGFIELD BOULEVARD',
  'cross_street_1': '118 AVENUE',
  'cross_street_2': 'FRANCIS LEWIS BOULEVARD',
  'intersection_street_1': '118 AVENUE',
  'intersection_street_2': 'FRANCIS LEWIS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': 'SPRINGFIELD BOULEVARD',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4126420061',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055168',
  'y_coordinate_state_plane': '192334',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69430502643684',
  'longitude': '-73.74425911912945',
  'location': {'latitude': '40.69430502643684',
   'longitude': '-73.74425911912945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602309',
  'created_date': '2024-03-17T00:17:32.000',
  'closed_date': '2024-03-17T01:35: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': '11103',
  'incident_address': '32-71 41 STREET',
  'street_name': '41 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  '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-03-17T01:35:12.000',
  'community_board': '01 QUEENS',
  'bbl': '4006770009',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006576',
  'y_coordinate_state_plane': '215114',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75708654560649',
  'longitude': '-73.91941333564532',
  'location': {'latitude': '40.75708654560649',
   'longitude': '-73.91941333564532',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603491',
  'created_date': '2024-03-17T00:17:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11105',
  'incident_address': '23-60 STEINWAY STREET',
  'street_name': 'STEINWAY STREET',
  'cross_street_1': '23 ROAD',
  'cross_street_2': 'ASTORIA BOULEVARD NORTH',
  'intersection_street_1': '23 ROAD',
  'intersection_street_2': 'ASTORIA BOULEVARD NORTH',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'STEINWAY STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4008030069',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009219',
  'y_coordinate_state_plane': '219733',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.769757434838276',
  'longitude': '-73.9098561618319',
  'location': {'latitude': '40.769757434838276',
   'longitude': '-73.9098561618319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599075',
  'created_date': '2024-03-17T00:17:24.000',
  'closed_date': '2024-03-17T01:26:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11372',
  'incident_address': '37-14 79 STREET',
  'street_name': '79 STREET',
  'cross_street_1': '37 AVENUE',
  'cross_street_2': 'ROOSEVELT AVENUE',
  'intersection_street_1': '37 AVENUE',
  'intersection_street_2': 'ROOSEVELT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '79 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:26:41.000',
  'community_board': '03 QUEENS',
  'bbl': '4012890013',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015546',
  'y_coordinate_state_plane': '212224',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74912703492839',
  'longitude': '-73.88704921355588',
  'location': {'latitude': '40.74912703492839',
   'longitude': '-73.88704921355588',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604498',
  'created_date': '2024-03-17T00:17: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': '11207',
  'incident_address': '86 VAN SICLEN AVENUE',
  'street_name': 'VAN SICLEN AVENUE',
  'cross_street_1': 'ARLINGTON AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'ARLINGTON AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VAN SICLEN AVENUE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039320150',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014262',
  'y_coordinate_state_plane': '186479',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67846766244985',
  'longitude': '-73.89179808171289',
  'location': {'latitude': '40.67846766244985',
   'longitude': '-73.89179808171289',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602014',
  'created_date': '2024-03-17T00:17:15.000',
  'closed_date': '2024-03-17T00:27:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:27:45.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604926',
  'created_date': '2024-03-17T00:17:03.000',
  'closed_date': '2024-03-17T00:36:38.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': '10001',
  'incident_address': '208 WEST   30 STREET',
  'street_name': 'WEST   30 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': 'NEW YORK',
  'landmark': 'WEST   30 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-03-17T00:36:43.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1007790049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986175',
  'y_coordinate_state_plane': '212052',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74871010966081',
  'longitude': '-73.99305250373475',
  'location': {'latitude': '40.74871010966081',
   'longitude': '-73.99305250373475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601389',
  'created_date': '2024-03-17T00:17:01.000',
  'closed_date': '2024-03-17T00:42:20.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': '10461',
  'incident_address': '3151 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'CODDINGTON AVENUE',
  'cross_street_2': 'LA SALLE AVENUE',
  'intersection_street_1': 'CODDINGTON AVENUE',
  'intersection_street_2': 'LA SALLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:42:24.000',
  'community_board': '10 BRONX',
  'bbl': '2053560001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1030021',
  'y_coordinate_state_plane': '244520',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8377075854206',
  'longitude': '-73.83458731019586',
  'location': {'latitude': '40.8377075854206',
   'longitude': '-73.83458731019586',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600433',
  'created_date': '2024-03-17T00:16:54.000',
  'closed_date': '2024-03-17T01:20:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11418',
  'incident_address': '85-46 105 STREET',
  'street_name': '105 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': '105 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:20:05.000',
  'community_board': '09 QUEENS',
  'bbl': '4091900029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027658',
  'y_coordinate_state_plane': '193658',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69811678361186',
  'longitude': '-73.84345546979662',
  'location': {'latitude': '40.69811678361186',
   'longitude': '-73.84345546979662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602162',
  'created_date': '2024-03-17T00:16:52.000',
  'closed_date': '2024-03-17T00:17:40.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:17:44.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599489',
  'created_date': '2024-03-17T00:16:39.000',
  'closed_date': '2024-03-17T00:22: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': '10455',
  'incident_address': '1034 AVENUE ST JOHN',
  'street_name': 'AVENUE ST JOHN',
  'cross_street_1': 'SOUTHERN BOULEVARD',
  'cross_street_2': 'TIMPSON PLACE',
  'intersection_street_1': 'SOUTHERN BOULEVARD',
  'intersection_street_2': 'TIMPSON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'AVENUE ST JOHN',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:22:14.000',
  'community_board': '02 BRONX',
  'bbl': '2026030026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011559',
  'y_coordinate_state_plane': '235372',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.812675331572436',
  'longitude': '-73.90134464214002',
  'location': {'latitude': '40.812675331572436',
   'longitude': '-73.90134464214002',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601296',
  'created_date': '2024-03-17T00:16:33.000',
  'closed_date': '2024-03-17T00:16: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': '10031',
  'incident_address': '559 WEST  149 STREET',
  'street_name': 'WEST  149 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': 'WEST  149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:16:59.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020810006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998837',
  'y_coordinate_state_plane': '241103',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.828435472653496',
  'longitude': '-73.94729113669881',
  'location': {'latitude': '40.828435472653496',
   'longitude': '-73.94729113669881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601638',
  'created_date': '2024-03-17T00:16: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': '11357',
  'incident_address': '22-15 WHITESTONE EXPRESSWAY',
  'street_name': 'WHITESTONE EXPRESSWAY',
  'cross_street_1': '22 AVENUE',
  'cross_street_2': '22 ROAD',
  'intersection_street_1': '22 AVENUE',
  'intersection_street_2': '22 ROAD',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': 'WHITESTONE EXPRESSWAY',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4042200001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032497',
  'y_coordinate_state_plane': '223311',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77948168931599',
  'longitude': '-73.8257917017099',
  'location': {'latitude': '40.77948168931599',
   'longitude': '-73.8257917017099',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602621',
  'created_date': '2024-03-17T00:16:23.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': '11356',
  'incident_address': '130-24 20 AVENUE',
  'street_name': '20 AVENUE',
  'cross_street_1': '130 STREET',
  'cross_street_2': '131 STREET',
  'intersection_street_1': '130 STREET',
  'intersection_street_2': '131 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '20 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4041760042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1029003',
  'y_coordinate_state_plane': '224098',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.781660173921665',
  'longitude': '-73.83840242231074',
  'location': {'latitude': '40.781660173921665',
   'longitude': '-73.83840242231074',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599357',
  'created_date': '2024-03-17T00:16:18.000',
  'closed_date': '2024-03-17T00:52:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11207',
  'incident_address': '55 COVERT STREET',
  'street_name': 'COVERT STREET',
  'cross_street_1': 'BUSHWICK AVENUE',
  'cross_street_2': 'EVERGREEN AVENUE',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'EVERGREEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'COVERT 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-03-17T00:53:02.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034150071',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008612',
  'y_coordinate_state_plane': '189390',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68647504344796',
  'longitude': '-73.91215742208085',
  'location': {'latitude': '40.68647504344796',
   'longitude': '-73.91215742208085',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599332',
  'created_date': '2024-03-17T00:16:12.000',
  'closed_date': '2024-03-17T00:16:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '10031',
  'incident_address': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:16:44.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604889',
  'created_date': '2024-03-17T00:15:58.000',
  'closed_date': '2024-03-17T01:30:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '107-31 120 STREET',
  'street_name': '120 STREET',
  'cross_street_1': '107 AVENUE',
  'cross_street_2': '109 AVENUE',
  'intersection_street_1': '107 AVENUE',
  'intersection_street_2': '109 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '120 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-03-17T01:30:27.000',
  'community_board': '10 QUEENS',
  'bbl': '4096000063',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033645',
  'y_coordinate_state_plane': '188436',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68375223461799',
  'longitude': '-73.8219025847115',
  'location': {'latitude': '40.68375223461799',
   'longitude': '-73.8219025847115',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602116',
  'created_date': '2024-03-17T00:15:46.000',
  'closed_date': '2024-03-17T00:34:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10461',
  'incident_address': '3390 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'MEYERS STREET',
  'cross_street_2': 'BRUCKNER BOULEVARD',
  'intersection_street_1': 'MEYERS STREET',
  'intersection_street_2': 'BRUCKNER BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:34:10.000',
  'community_board': '10 BRONX',
  'bbl': '2053060028',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031699',
  'y_coordinate_state_plane': '243005',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8335405000108',
  'longitude': '-73.82853388634003',
  'location': {'latitude': '40.8335405000108',
   'longitude': '-73.82853388634003',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603581',
  'created_date': '2024-03-17T00:15:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11249',
  'incident_address': '98 BERRY STREET',
  'street_name': 'BERRY STREET',
  'cross_street_1': 'NORTH    8 STREET',
  'cross_street_2': 'NORTH    7 STREET',
  'intersection_street_1': 'NORTH    8 STREET',
  'intersection_street_2': 'NORTH    7 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BERRY STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:48.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023180017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995750',
  'y_coordinate_state_plane': '201271',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71911165311201',
  'longitude': '-73.95851390747367',
  'location': {'latitude': '40.71911165311201',
   'longitude': '-73.95851390747367',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600655',
  'created_date': '2024-03-17T00:15:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '764 EAST  149 STREET',
  'street_name': 'EAST  149 STREET',
  'cross_street_1': 'CONCORD AVENUE',
  'cross_street_2': 'WALES AVENUE',
  'intersection_street_1': 'CONCORD AVENUE',
  'intersection_street_2': 'WALES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  149 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:10:21.000',
  'community_board': '01 BRONX',
  'bbl': '2025800022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009833',
  'y_coordinate_state_plane': '235458',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81291654429486',
  'longitude': '-73.90757958540141',
  'location': {'latitude': '40.81291654429486',
   'longitude': '-73.90757958540141',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601231',
  'created_date': '2024-03-17T00:15:32.000',
  'closed_date': '2024-03-17T00:16:28.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:16:33.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604384',
  'created_date': '2024-03-17T00:15:22.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': '108-50 48 AVENUE',
  'street_name': '48 AVENUE',
  'cross_street_1': '108 STREET',
  'cross_street_2': '111 STREET',
  'intersection_street_1': '108 STREET',
  'intersection_street_2': '111 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '48 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4020040024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024484',
  'y_coordinate_state_plane': '211229',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74635986363601',
  'longitude': '-73.85479697071423',
  'location': {'latitude': '40.74635986363601',
   'longitude': '-73.85479697071423',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602396',
  'created_date': '2024-03-17T00:15:14.000',
  'closed_date': '2024-03-17T00:27: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': '10032',
  'incident_address': '524 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 with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-03-17T00:27:18.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021250032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001578',
  'y_coordinate_state_plane': '245628',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Van',
  'latitude': '40.840850336148144',
  'longitude': '-73.93737508387434',
  'location': {'latitude': '40.840850336148144',
   'longitude': '-73.93737508387434',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602157',
  'created_date': '2024-03-17T00:15:07.000',
  'closed_date': '2024-03-17T00:16:19.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:16:24.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598357',
  'created_date': '2024-03-17T00:14:47.000',
  'closed_date': '2024-03-17T00:49:46.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': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:49:50.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600594',
  'created_date': '2024-03-17T00:14:27.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_address': 'HICKS STREET',
  'street_name': 'HICKS STREET',
  'cross_street_1': 'SUMMIT STREET',
  'cross_street_2': 'WOODHULL STREET',
  'address_type': 'BLOCKFACE',
  'facility_type': 'N/A',
  'status': 'Open',
  'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
  'resolution_action_updated_date': '2024-03-17T00:14:27.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '60603559',
  'created_date': '2024-03-17T00:14: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': '11379',
  'incident_address': '68-41 76 STREET',
  'street_name': '76 STREET',
  'cross_street_1': '68 AVENUE',
  'cross_street_2': '69 ROAD',
  'intersection_street_1': '68 AVENUE',
  'intersection_street_2': '69 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '76 STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4037890017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018659',
  'y_coordinate_state_plane': '197864',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70970081931325',
  'longitude': '-73.87588749159707',
  'location': {'latitude': '40.70970081931325',
   'longitude': '-73.87588749159707',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602344',
  'created_date': '2024-03-17T00:14:22.000',
  'closed_date': '2024-03-17T00:32: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': '10456',
  'incident_address': '1480 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:32:13.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010929',
  'y_coordinate_state_plane': '244302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83718755388138',
  'longitude': '-73.90358504457679',
  'location': {'latitude': '40.83718755388138',
   'longitude': '-73.90358504457679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603215',
  'created_date': '2024-03-17T00:14:21.000',
  'closed_date': '2024-03-17T00:55:44.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': '11237',
  'incident_address': '404 SUYDAM STREET',
  'street_name': 'SUYDAM STREET',
  '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': 'SUYDAM 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-03-17T00:55:48.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032220015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006371',
  'y_coordinate_state_plane': '196380',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.705666846215436',
  'longitude': '-73.92021488217888',
  'location': {'latitude': '40.705666846215436',
   'longitude': '-73.92021488217888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602322',
  'created_date': '2024-03-17T00:14:19.000',
  'closed_date': '2024-03-17T01:24: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': '11377',
  'incident_address': '32 AVENUE',
  'street_name': '32 AVENUE',
  'cross_street_1': '32 AVENUE',
  'cross_street_2': '58 STREET',
  'intersection_street_1': '32 AVENUE',
  'intersection_street_2': '58 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-03-17T01:24:55.000',
  'community_board': '01 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011013',
  'y_coordinate_state_plane': '214659',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75582537026595',
  'longitude': '-73.90339961494442',
  'location': {'latitude': '40.75582537026595',
   'longitude': '-73.90339961494442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604189',
  'created_date': '2024-03-17T00:14:18.000',
  'closed_date': '2024-03-17T01:10: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': '10452',
  'incident_address': '951 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': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:20.000',
  'community_board': '04 BRONX',
  'bbl': '2025110074',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003906',
  'y_coordinate_state_plane': '242182',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.831387191331984',
  'longitude': '-73.92897158905042',
  'location': {'latitude': '40.831387191331984',
   'longitude': '-73.92897158905042',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599267',
  'created_date': '2024-03-17T00:14:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Lamp Missing',
  'incident_zip': '11357',
  'incident_address': '166-12 24 ROAD',
  'street_name': '24 ROAD',
  'cross_street_1': '166 ST',
  'cross_street_2': '169 ST',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'status': 'Open',
  'community_board': '07 QUEENS',
  'bbl': '4057680011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040269',
  'y_coordinate_state_plane': '221739',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.775121133876624',
  'longitude': '-73.7977420800268',
  'location': {'latitude': '40.775121133876624',
   'longitude': '-73.7977420800268',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603243',
  'created_date': '2024-03-17T00:13:59.000',
  'closed_date': '2024-03-17T00:29:47.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': '11385',
  'incident_address': '63-14 FOREST AVENUE',
  'street_name': 'FOREST 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': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:29:53.000',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010605',
  'y_coordinate_state_plane': '198104',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71038721776248',
  'longitude': '-73.90493712722406',
  'location': {'latitude': '40.71038721776248',
   'longitude': '-73.90493712722406',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598383',
  'created_date': '2024-03-17T00:13:53.000',
  'closed_date': '2024-03-17T00:14:49.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:14:53.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598445',
  'created_date': '2024-03-17T00:13:50.000',
  'closed_date': '2024-03-17T00:51: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': '10455',
  'incident_address': '1034 AVENUE ST JOHN',
  'street_name': 'AVENUE ST JOHN',
  'cross_street_1': 'SOUTHERN BOULEVARD',
  'cross_street_2': 'TIMPSON PLACE',
  'intersection_street_1': 'SOUTHERN BOULEVARD',
  'intersection_street_2': 'TIMPSON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'AVENUE ST JOHN',
  '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-03-17T00:51:11.000',
  'community_board': '02 BRONX',
  'bbl': '2026030026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011559',
  'y_coordinate_state_plane': '235372',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.812675331572436',
  'longitude': '-73.90134464214002',
  'location': {'latitude': '40.812675331572436',
   'longitude': '-73.90134464214002',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600343',
  'created_date': '2024-03-17T00:13:33.000',
  'closed_date': '2024-03-17T01:37:27.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': '11369',
  'incident_address': '23-20 99 STREET',
  'street_name': '99 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '24 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '24 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '99 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:37:30.000',
  'community_board': '03 QUEENS',
  'bbl': '4010920014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019854',
  'y_coordinate_state_plane': '219099',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76798083536721',
  'longitude': '-73.87146476898695',
  'location': {'latitude': '40.76798083536721',
   'longitude': '-73.87146476898695',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599806',
  'created_date': '2024-03-17T00:13:29.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': '10461',
  'incident_address': '1315 COMMERCE AVENUE',
  'street_name': 'COMMERCE AVENUE',
  'cross_street_1': 'WATERBURY AVENUE',
  'cross_street_2': 'HALSEY STREET',
  'intersection_street_1': 'WATERBURY AVENUE',
  'intersection_street_2': 'HALSEY STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COMMERCE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2038520164',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028492',
  'y_coordinate_state_plane': '243858',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.835898382519844',
  'longitude': '-73.84011734660629',
  'location': {'latitude': '40.835898382519844',
   'longitude': '-73.84011734660629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600292',
  'created_date': '2024-03-17T00:13:26.000',
  'closed_date': '2024-03-17T00:14:50.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:14:58.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601233',
  'created_date': '2024-03-17T00:13:16.000',
  'closed_date': '2024-03-17T00:43:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11372',
  'incident_address': '80-15 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '80 STREET',
  'cross_street_2': '81 STREET',
  'intersection_street_1': '80 STREET',
  'intersection_street_2': '81 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': 'NORTHERN 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-03-17T00:43:22.000',
  'community_board': '03 QUEENS',
  'bbl': '4011760038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015558',
  'y_coordinate_state_plane': '214508',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75539598889271',
  'longitude': '-73.88699527010941',
  'location': {'latitude': '40.75539598889271',
   'longitude': '-73.88699527010941',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600381',
  'created_date': '2024-03-17T00:13:13.000',
  'closed_date': '2024-03-17T01:20: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': '11356',
  'incident_address': '23-09 128 STREET',
  'street_name': '128 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '25 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '25 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '128 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:21:05.000',
  'community_board': '07 QUEENS',
  'bbl': '4042320031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028372',
  'y_coordinate_state_plane': '222869',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7782900720709',
  'longitude': '-73.84068895148404',
  'location': {'latitude': '40.7782900720709',
   'longitude': '-73.84068895148404',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598173',
  'created_date': '2024-03-17T00:13:13.000',
  'closed_date': '2024-03-17T00:35: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': '10036',
  'incident_address': '360 WEST   42 STREET',
  'street_name': 'WEST   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': 'NEW YORK',
  'landmark': 'WEST   42 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-03-17T00:35:11.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010320061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986621',
  'y_coordinate_state_plane': '215407',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.757918625340736',
  'longitude': '-73.9914416670525',
  'location': {'latitude': '40.757918625340736',
   'longitude': '-73.9914416670525',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603489',
  'created_date': '2024-03-17T00:13:13.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': '111-02 37 AVENUE',
  'street_name': '37 AVENUE',
  'cross_street_1': '111 STREET',
  'cross_street_2': '111 STREET',
  'intersection_street_1': '111 STREET',
  'intersection_street_2': '111 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '37 AVENUE',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017810110',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023866',
  'y_coordinate_state_plane': '214071',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75416321600285',
  'longitude': '-73.85701056356145',
  'location': {'latitude': '40.75416321600285',
   'longitude': '-73.85701056356145',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598522',
  'created_date': '2024-03-17T00:13:05.000',
  'closed_date': '2024-03-17T00:18:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10014',
  'incident_address': '68 CARMINE STREET',
  'street_name': 'CARMINE STREET',
  'cross_street_1': 'BEDFORD STREET',
  'cross_street_2': '7 AVENUE SOUTH',
  'intersection_street_1': 'BEDFORD STREET',
  'intersection_street_2': '7 AVENUE SOUTH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CARMINE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:18:43.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005280068',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983046',
  'y_coordinate_state_plane': '205132',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.729716554328135',
  'longitude': '-74.00434410457407',
  'location': {'latitude': '40.729716554328135',
   'longitude': '-74.00434410457407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599392',
  'created_date': '2024-03-17T00:12:49.000',
  'closed_date': '2024-03-17T00:20:20.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': '259 WEST  116 STREET',
  'street_name': 'WEST  116 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  116 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:20:24.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019220003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996712',
  'y_coordinate_state_plane': '232297',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80426872814799',
  'longitude': '-73.95498599035358',
  'location': {'latitude': '40.80426872814799',
   'longitude': '-73.95498599035358',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602158',
  'created_date': '2024-03-17T00:12:44.000',
  'closed_date': '2024-03-17T00:14:46.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:14:49.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599434',
  'created_date': '2024-03-17T00:12:41.000',
  'closed_date': '2024-03-17T00:15:42.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': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:15:48.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605159',
  'created_date': '2024-03-17T00:12:39.000',
  'closed_date': '2024-03-17T00:47: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': '10035',
  'incident_address': '508 EAST  117 STREET',
  'street_name': 'EAST  117 STREET',
  'cross_street_1': 'PLEASANT AVENUE',
  'cross_street_2': 'UNNAMED STREET',
  'intersection_street_1': 'PLEASANT AVENUE',
  'intersection_street_2': 'UNNAMED STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  117 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:47:09.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017150047',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002947',
  'y_coordinate_state_plane': '229158',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.795642038698574',
  'longitude': '-73.93247328506276',
  'location': {'latitude': '40.795642038698574',
   'longitude': '-73.93247328506276',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600310',
  'created_date': '2024-03-17T00:12:38.000',
  'closed_date': '2024-03-17T01:10: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': '11362',
  'incident_address': '54-18 LITTLE NECK PARKWAY',
  'street_name': 'LITTLE NECK PARKWAY',
  'cross_street_1': 'LEEDS ROAD',
  'cross_street_2': 'NASSAU BOULEVARD',
  'intersection_street_1': 'LEEDS ROAD',
  'intersection_street_2': 'NASSAU BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'LITTLE NECK',
  'landmark': 'LITTLE NECK PARKWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-03-17T01:10:51.000',
  'community_board': '11 QUEENS',
  'bbl': '4082560089',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1060164',
  'y_coordinate_state_plane': '218623',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76642009504383',
  'longitude': '-73.72594631838963',
  'location': {'latitude': '40.76642009504383',
   'longitude': '-73.72594631838963',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604487',
  'created_date': '2024-03-17T00:12: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': '10302',
  'incident_address': 'CASTLETON AVENUE',
  'street_name': 'CASTLETON AVENUE',
  'cross_street_1': 'CASTLETON AVENUE',
  'cross_street_2': 'TREADWELL AVENUE',
  'intersection_street_1': 'CASTLETON AVENUE',
  'intersection_street_2': 'TREADWELL AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '945883',
  'y_coordinate_state_plane': '171062',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63611916371968',
  'longitude': '-74.13823634456084',
  'location': {'latitude': '40.63611916371968',
   'longitude': '-74.13823634456084',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600289',
  'created_date': '2024-03-17T00:12:13.000',
  'closed_date': '2024-03-17T00:12:23.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:12:28.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604156',
  'created_date': '2024-03-17T00:12:08.000',
  'closed_date': '2024-03-17T00:25:46.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': '11220',
  'incident_address': '253 67 STREET',
  'street_name': '67 STREET',
  'cross_street_1': 'RIDGE BOULEVARD',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'RIDGE BOULEVARD',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '67 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-03-17T00:25:49.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058410052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '977002',
  'y_coordinate_state_plane': '171795',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.638211220682',
  'longitude': '-74.02611536049568',
  'location': {'latitude': '40.638211220682',
   'longitude': '-74.02611536049568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600388',
  'created_date': '2024-03-17T00:12:07.000',
  'closed_date': '2024-03-17T01:37: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': '11369',
  'incident_address': '23-20 99 STREET',
  'street_name': '99 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '24 AVENUE',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '24 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '99 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:37:13.000',
  'community_board': '03 QUEENS',
  'bbl': '4010920014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019854',
  'y_coordinate_state_plane': '219099',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76798083536721',
  'longitude': '-73.87146476898695',
  'location': {'latitude': '40.76798083536721',
   'longitude': '-73.87146476898695',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600517',
  'created_date': '2024-03-17T00:11:59.000',
  'closed_date': '2024-03-17T00:59: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': '10473',
  'incident_address': '510 ROSEDALE AVENUE',
  'street_name': 'ROSEDALE AVENUE',
  'cross_street_1': 'SOUNDVIEW PARK PATH',
  'cross_street_2': 'RANDALL AVENUE',
  'intersection_street_1': 'SOUNDVIEW PARK PATH',
  'intersection_street_2': 'RANDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ROSEDALE 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-03-17T00:59:18.000',
  'community_board': '09 BRONX',
  'bbl': '2035190005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021550',
  'y_coordinate_state_plane': '236127',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'SUV',
  'latitude': '40.814711059634774',
  'longitude': '-73.86524742455468',
  'location': {'latitude': '40.814711059634774',
   'longitude': '-73.86524742455468',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603161',
  'created_date': '2024-03-17T00:11:56.000',
  'closed_date': '2024-03-17T00:18: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': '10304',
  'incident_address': '180 BURGHER AVENUE',
  'street_name': 'BURGHER AVENUE',
  'cross_street_1': 'REMSEN STREET',
  'cross_street_2': 'NORTH RAILROAD AVENUE',
  'intersection_street_1': 'REMSEN STREET',
  'intersection_street_2': 'NORTH RAILROAD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BURGHER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:18:38.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5033140030',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '958723',
  'y_coordinate_state_plane': '155184',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.592583669081044',
  'longitude': '-74.0919138249725',
  'location': {'latitude': '40.592583669081044',
   'longitude': '-74.0919138249725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599304',
  'created_date': '2024-03-17T00:11:44.000',
  'closed_date': '2024-03-17T00:16: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': '10011',
  'incident_address': '11 WEST   17 STREET',
  'street_name': 'WEST   17 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   17 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-03-17T00:16:18.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008190031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986209',
  'y_coordinate_state_plane': '208232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.738225156346566',
  'longitude': '-73.99293090729802',
  'location': {'latitude': '40.738225156346566',
   'longitude': '-73.99293090729802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601227',
  'created_date': '2024-03-17T00:11:39.000',
  'closed_date': '2024-03-17T00:12:19.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:12:22.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600269',
  'created_date': '2024-03-17T00:11:19.000',
  'closed_date': '2024-03-17T00:18:44.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': '11216',
  'incident_address': '321 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'LEXINGTON AVENUE',
  'cross_street_2': 'QUINCY STREET',
  'intersection_street_1': 'LEXINGTON AVENUE',
  'intersection_street_2': 'QUINCY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND 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-03-17T00:18:48.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018030006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997855',
  'y_coordinate_state_plane': '189684',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68730507743066',
  'longitude': '-73.9509435591804',
  'location': {'latitude': '40.68730507743066',
   'longitude': '-73.9509435591804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604109',
  'created_date': '2024-03-17T00:11:17.000',
  'closed_date': '2024-03-17T00:41:18.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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:41:22.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605142',
  'created_date': '2024-03-17T00:11:10.000',
  'closed_date': '2024-03-17T00:11:56.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': '10031',
  'incident_address': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:59.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604419',
  'created_date': '2024-03-17T00:10:59.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Signs of Rodents',
  'location_type': 'Vacant Lot',
  'incident_zip': '11235',
  'incident_address': '3066 BRIGHTON   14 STREET',
  'street_name': 'BRIGHTON   14 STREET',
  'cross_street_1': 'OCEAN VIEW AVENUE',
  'cross_street_2': 'BRIGHTON BEACH AVENUE',
  'intersection_street_1': 'OCEAN VIEW AVENUE',
  'intersection_street_2': 'BRIGHTON BEACH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON   14 STREET',
  'status': 'In Progress',
  'community_board': '13 BROOKLYN',
  'bbl': '3087160053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996583',
  'y_coordinate_state_plane': '150010',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.578410248799706',
  'longitude': '-73.9556025976265',
  'location': {'latitude': '40.578410248799706',
   'longitude': '-73.9556025976265',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599300',
  'created_date': '2024-03-17T00:10:57.000',
  'closed_date': '2024-03-17T01:10:25.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': '11368',
  'incident_address': '98-05 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': '98 STREET',
  'cross_street_2': '99 STREET',
  'intersection_street_1': '98 STREET',
  'intersection_street_2': '99 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:30.000',
  'community_board': '03 QUEENS',
  'bbl': '4014280041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020196',
  'y_coordinate_state_plane': '215156',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75715694291976',
  'longitude': '-73.87025118924203',
  'location': {'latitude': '40.75715694291976',
   'longitude': '-73.87025118924203',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604202',
  'created_date': '2024-03-17T00:10:49.000',
  'closed_date': '2024-03-17T00:26: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': '10026',
  'incident_address': '247 WEST  115 STREET',
  'street_name': 'WEST  115 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  115 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-03-17T00:26:54.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018317502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996634',
  'y_coordinate_state_plane': '232017',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80350031484927',
  'longitude': '-73.9552682506942',
  'location': {'latitude': '40.80350031484927',
   'longitude': '-73.9552682506942',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604718',
  'created_date': '2024-03-17T00:10:44.000',
  'closed_date': '2024-03-17T00:26:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '588 EAST    2 STREET',
  'street_name': 'EAST    2 STREET',
  'cross_street_1': 'CORTELYOU ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'CORTELYOU ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST    2 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:26:13.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053850029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990601',
  'y_coordinate_state_plane': '171292',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6368312816152',
  'longitude': '-73.97711710483661',
  'location': {'latitude': '40.6368312816152',
   'longitude': '-73.97711710483661',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602081',
  'created_date': '2024-03-17T00:10:39.000',
  'closed_date': '2024-03-17T00:28:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11235',
  'incident_address': '2922 BRIGHTON   12 STREET',
  'street_name': 'BRIGHTON   12 STREET',
  'cross_street_1': 'CORBIN PLACE',
  'cross_street_2': 'OCEAN VIEW AVENUE',
  'intersection_street_1': 'CORBIN PLACE',
  'intersection_street_2': 'OCEAN VIEW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON   12 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:28:31.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3087110027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996523',
  'y_coordinate_state_plane': '150991',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58110298312103',
  'longitude': '-73.95581680954189',
  'location': {'latitude': '40.58110298312103',
   'longitude': '-73.95581680954189',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603151',
  'created_date': '2024-03-17T00:10:35.000',
  'closed_date': '2024-03-17T00:11:44.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:48.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601345',
  'created_date': '2024-03-17T00:10:20.000',
  'closed_date': '2024-03-17T01:09:15.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': '18 WILLIS AVENUE',
  'street_name': 'WILLIS AVENUE',
  'cross_street_1': 'FIEDLER AVENUE',
  'cross_street_2': 'AVON PLACE',
  'intersection_street_1': 'FIEDLER AVENUE',
  'intersection_street_2': 'AVON PLACE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WILLIS 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-03-17T01:09:19.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005740022',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '961530',
  'y_coordinate_state_plane': '170990',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63597549424073',
  'longitude': '-74.08185998749462',
  'location': {'latitude': '40.63597549424073',
   'longitude': '-74.08185998749462',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598380',
  'created_date': '2024-03-17T00:10:07.000',
  'closed_date': '2024-03-17T00:11:45.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:48.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600756',
  'created_date': '2024-03-17T00:10:05.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': '11358',
  'incident_address': '29-20 166 STREET',
  'street_name': '166 STREET',
  'cross_street_1': '29 AVENUE',
  'cross_street_2': '32 AVENUE',
  'intersection_street_1': '29 AVENUE',
  'intersection_street_2': '32 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '166 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4049100015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039961',
  'y_coordinate_state_plane': '219981',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77029784285216',
  'longitude': '-73.79886869132818',
  'location': {'latitude': '40.77029784285216',
   'longitude': '-73.79886869132818',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600391',
  'created_date': '2024-03-17T00:10:03.000',
  'closed_date': '2024-03-17T00:44: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': '10032',
  'incident_address': '128 FORT WASHINGTON AVENUE',
  'street_name': 'FORT WASHINGTON AVENUE',
  'cross_street_1': 'WEST  164 STREET',
  'cross_street_2': 'WEST  165 STREET',
  'intersection_street_1': 'WEST  164 STREET',
  'intersection_street_2': 'WEST  165 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'FORT 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-03-17T00:44:11.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021370157',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999955',
  'y_coordinate_state_plane': '245213',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83971431784294',
  'longitude': '-73.94324171872209',
  'location': {'latitude': '40.83971431784294',
   'longitude': '-73.94324171872209',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603141',
  'created_date': '2024-03-17T00:09:52.000',
  'closed_date': '2024-03-17T00:34:30.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': '10461',
  'incident_address': '3390 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'MEYERS STREET',
  'cross_street_2': 'BRUCKNER BOULEVARD',
  'intersection_street_1': 'MEYERS STREET',
  'intersection_street_2': 'BRUCKNER BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:34:33.000',
  'community_board': '10 BRONX',
  'bbl': '2053060028',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031699',
  'y_coordinate_state_plane': '243005',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8335405000108',
  'longitude': '-73.82853388634003',
  'location': {'latitude': '40.8335405000108',
   'longitude': '-73.82853388634003',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598367',
  'created_date': '2024-03-17T00:09:41.000',
  'closed_date': '2024-03-17T00:27:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10032',
  'incident_address': '4093 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  172 STREET',
  'cross_street_2': 'WEST  173 STREET',
  'intersection_street_1': 'WEST  172 STREET',
  'intersection_street_2': 'WEST  173 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  '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-03-17T00:27:38.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021420109',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001152',
  'y_coordinate_state_plane': '246950',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.844479664357614',
  'longitude': '-73.93891135287524',
  'location': {'latitude': '40.844479664357614',
   'longitude': '-73.93891135287524',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602196',
  'created_date': '2024-03-17T00:09:40.000',
  'closed_date': '2024-03-17T01:45: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': '10454',
  'incident_address': '578 EAST  141 STREET',
  'street_name': 'EAST  141 STREET',
  'cross_street_1': 'ST ANNS AVENUE',
  'cross_street_2': 'CRIMMINS AVENUE',
  'intersection_street_1': 'ST ANNS AVENUE',
  'intersection_street_2': 'CRIMMINS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  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-03-17T01:45:11.000',
  'community_board': '01 BRONX',
  'bbl': '2025530009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007607',
  'y_coordinate_state_plane': '233863',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80854488009559',
  'longitude': '-73.91562671414997',
  'location': {'latitude': '40.80854488009559',
   'longitude': '-73.91562671414997',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604767',
  'created_date': '2024-03-17T00:09:36.000',
  'closed_date': '2024-03-17T00:22:42.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': '11220',
  'incident_address': '662 54 STREET',
  'street_name': '54 STREET',
  'cross_street_1': '6 AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': '6 AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '54 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-03-17T00:22:48.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008250033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981712',
  'y_coordinate_state_plane': '172715',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.64073902580271',
  'longitude': '-74.0091450462142',
  'location': {'latitude': '40.64073902580271',
   'longitude': '-74.0091450462142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604927',
  'created_date': '2024-03-17T00:09:32.000',
  'closed_date': '2024-03-17T01:08:45.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': '10028',
  'incident_address': '1664 1 AVENUE',
  'street_name': '1 AVENUE',
  'cross_street_1': 'EAST   86 STREET',
  'cross_street_2': 'EAST   87 STREET',
  'intersection_street_1': 'EAST   86 STREET',
  'intersection_street_2': 'EAST   87 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '1 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:08:50.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015660046',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998376',
  'y_coordinate_state_plane': '222501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.777378845308476',
  'longitude': '-73.94899605723712',
  'location': {'latitude': '40.777378845308476',
   'longitude': '-73.94899605723712',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598389',
  'created_date': '2024-03-17T00:09:31.000',
  'closed_date': '2024-03-17T00:11:43.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:47.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599192',
  'created_date': '2024-03-17T00:09:10.000',
  'closed_date': '2024-03-17T00:18:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10003',
  'incident_address': '117 EAST   11 STREET',
  'street_name': 'EAST   11 STREET',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   11 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-03-17T00:18:34.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1005560075',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987082',
  'y_coordinate_state_plane': '205901',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.73182689956645',
  'longitude': '-73.98978164967104',
  'location': {'latitude': '40.73182689956645',
   'longitude': '-73.98978164967104',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599423',
  'created_date': '2024-03-17T00:09:00.000',
  'closed_date': '2024-03-17T00:40: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': '11216',
  'incident_address': '1388 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'ST MARKS AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'ST MARKS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:40:57.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012170050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997219',
  'y_coordinate_state_plane': '185481',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67576975425458',
  'longitude': '-73.9532449146568',
  'location': {'latitude': '40.67576975425458',
   'longitude': '-73.9532449146568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602224',
  'created_date': '2024-03-17T00:08:54.000',
  'closed_date': '2024-03-17T01:28: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': '11377',
  'incident_address': '54-03 37 AVENUE',
  'street_name': '37 AVENUE',
  'cross_street_1': '54 STREET',
  'cross_street_2': '55 STREET',
  'intersection_street_1': '54 STREET',
  'intersection_street_2': '55 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '37 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-03-17T01:28:40.000',
  'community_board': '02 QUEENS',
  'bbl': '4011930007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009812',
  'y_coordinate_state_plane': '212920',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75105581274255',
  'longitude': '-73.90774120229557',
  'location': {'latitude': '40.75105581274255',
   'longitude': '-73.90774120229557',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598378',
  'created_date': '2024-03-17T00:08:53.000',
  'closed_date': '2024-03-17T00:11:45.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': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:49.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604162',
  'created_date': '2024-03-17T00:08:34.000',
  'closed_date': '2024-03-17T00:42: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': '11369',
  'incident_address': '100 STREET',
  'street_name': '100 STREET',
  'cross_street_1': '32 AVENUE',
  'cross_street_2': 'NORTHERN BOULEVARD',
  'intersection_street_1': '32 AVENUE',
  'intersection_street_2': 'NORTHERN BOULEVARD',
  '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-03-17T00:42:56.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '60601234',
  'created_date': '2024-03-17T00:08:26.000',
  'closed_date': '2024-03-17T00:11: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': '10031',
  'incident_address': '3428 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:42.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997259',
  'y_coordinate_state_plane': '239095',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.822926549929285',
  'longitude': '-73.95299699539169',
  'location': {'latitude': '40.822926549929285',
   'longitude': '-73.95299699539169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604951',
  'created_date': '2024-03-17T00:07:52.000',
  'closed_date': '2024-03-17T00:46:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10038',
  'incident_address': '6 PLATT STREET',
  'street_name': 'PLATT STREET',
  'cross_street_1': 'GOLD STREET',
  'cross_street_2': 'PEARL STREET',
  'intersection_street_1': 'GOLD STREET',
  'intersection_street_2': 'PEARL STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'PLATT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:46:33.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000690030',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982427',
  'y_coordinate_state_plane': '197093',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.707651326155535',
  'longitude': '-74.0065753166599',
  'location': {'latitude': '40.707651326155535',
   'longitude': '-74.0065753166599',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604248',
  'created_date': '2024-03-17T00:07:39.000',
  'closed_date': '2024-03-17T01:38: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': '11211',
  'incident_address': '278 SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'HAVEMEYER STREET',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'HAVEMEYER STREET',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 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-03-17T01:38:05.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024210014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996233',
  'y_coordinate_state_plane': '198432',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.7113186368982',
  'longitude': '-73.95677654544475',
  'location': {'latitude': '40.7113186368982',
   'longitude': '-73.95677654544475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602255',
  'created_date': '2024-03-17T00:07:31.000',
  'closed_date': '2024-03-17T00:27: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': '10032',
  'incident_address': '516 WEST  167 STREET',
  'street_name': 'WEST  167 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  167 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-03-17T00:27:25.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021230054',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001386',
  'y_coordinate_state_plane': '245168',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.839588145100706',
  'longitude': '-73.93807016387643',
  'location': {'latitude': '40.839588145100706',
   'longitude': '-73.93807016387643',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599268',
  'created_date': '2024-03-17T00:07:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11377',
  'incident_address': '42-25 65 PLACE',
  'street_name': '65 PLACE',
  'cross_street_1': 'LIRR N SIDE DIV',
  'cross_street_2': 'QUEENS BLVD',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'status': 'Open',
  'community_board': '02 QUEENS',
  'bbl': '4013430031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012188',
  'y_coordinate_state_plane': '209961',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74292691846122',
  'longitude': '-73.89917800263275',
  'location': {'latitude': '40.74292691846122',
   'longitude': '-73.89917800263275',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600766',
  'created_date': '2024-03-17T00:06: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': '11419',
  'incident_address': '107-41 133 STREET',
  'street_name': '133 STREET',
  'cross_street_1': '107 AVENUE',
  'cross_street_2': '109 AVENUE',
  'intersection_street_1': '107 AVENUE',
  'intersection_street_2': '109 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '133 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036517',
  'y_coordinate_state_plane': '189765',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68738353413167',
  'longitude': '-73.81153709274274',
  'location': {'latitude': '40.68738353413167',
   'longitude': '-73.81153709274274',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605158',
  'created_date': '2024-03-17T00:06:53.000',
  'closed_date': '2024-03-17T00:51:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11201',
  'incident_address': '10 REMSEN STREET',
  'street_name': 'REMSEN STREET',
  'cross_street_1': 'BROOKLYN HEIGHTS PROMENADE',
  'cross_street_2': 'MONTAGUE TERRACE',
  'intersection_street_1': 'BROOKLYN HEIGHTS PROMENADE',
  'intersection_street_2': 'MONTAGUE TERRACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'REMSEN 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-03-17T00:51:55.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3002510010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984806',
  'y_coordinate_state_plane': '192507',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6950640003256',
  'longitude': '-73.99799496113215',
  'location': {'latitude': '40.6950640003256',
   'longitude': '-73.99799496113215',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600469',
  'created_date': '2024-03-17T00:06:48.000',
  'closed_date': '2024-03-17T00:59: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': '10473',
  'incident_address': 'ROSEDALE AVENUE',
  'street_name': 'ROSEDALE AVENUE',
  'cross_street_1': 'LACOMBE AVENUE',
  'cross_street_2': 'ROSEDALE AVENUE',
  'intersection_street_1': 'LACOMBE AVENUE',
  'intersection_street_2': 'ROSEDALE 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-03-17T00:59:35.000',
  'community_board': '09 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021558',
  'y_coordinate_state_plane': '236061',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814529874515266',
  'longitude': '-73.86521889011219',
  'location': {'latitude': '40.814529874515266',
   'longitude': '-73.86521889011219',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601369',
  'created_date': '2024-03-17T00:06:42.000',
  'closed_date': '2024-03-17T00:29: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': '11385',
  'incident_address': '66-28 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:29:16.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011111',
  'y_coordinate_state_plane': '196833',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70689710411462',
  'longitude': '-73.90311704974741',
  'location': {'latitude': '40.70689710411462',
   'longitude': '-73.90311704974741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598898',
  'created_date': '2024-03-17T00:06:33.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-03-17T00:13:37.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999500',
  'y_coordinate_state_plane': '243145',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'bridge_highway_direction': '1 Uptown & The Bronx',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.83403905549454',
  'longitude': '-73.94489080211983',
  'location': {'latitude': '40.83403905549454',
   'longitude': '-73.94489080211983',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599950',
  'created_date': '2024-03-17T00:06:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10462',
  'incident_address': '1903 RADCLIFF AVENUE',
  'street_name': 'RADCLIFF AVENUE',
  'cross_street_1': 'RHINELANDER AVENUE',
  'cross_street_2': 'NEILL AVENUE',
  'intersection_street_1': 'RHINELANDER AVENUE',
  'intersection_street_2': 'NEILL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RADCLIFF AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2042660060',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023294',
  'y_coordinate_state_plane': '248987',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.850000479230125',
  'longitude': '-73.8588720895298',
  'location': {'latitude': '40.850000479230125',
   'longitude': '-73.8588720895298',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601133',
  'created_date': '2024-03-17T00:06:21.000',
  'closed_date': '2024-03-17T00:26:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '588 EAST    2 STREET',
  'street_name': 'EAST    2 STREET',
  'cross_street_1': 'CORTELYOU ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'CORTELYOU ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST    2 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:26:38.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053850029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990601',
  'y_coordinate_state_plane': '171292',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6368312816152',
  'longitude': '-73.97711710483661',
  'location': {'latitude': '40.6368312816152',
   'longitude': '-73.97711710483661',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604970',
  'created_date': '2024-03-17T00:06:18.000',
  'closed_date': '2024-03-17T00:12: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': '11219',
  'incident_address': '974 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': '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-03-17T00:12:09.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3056130036',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985052',
  'y_coordinate_state_plane': '173056',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641675325013274',
  'longitude': '-73.9971101536776',
  'location': {'latitude': '40.641675325013274',
   'longitude': '-73.9971101536776',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600800',
  'created_date': '2024-03-17T00:05:59.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Taxi Complaint',
  'descriptor': 'Driver Complaint - Passenger',
  'location_type': 'Highway',
  'incident_zip': '11430',
  'incident_address': 'JOHN F KENNEDY AIRPORT',
  'street_name': 'JOHN F KENNEDY AIRPORT',
  'cross_street_1': 'BEND',
  'cross_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'AIRTRAIN-HOWARD BCH/JAMAICA LINE',
  'address_type': 'UNRECOGNIZED',
  'city': 'JAMAICA',
  'landmark': 'JOHN F KENNEDY AIRPORT',
  'status': 'In Progress',
  'community_board': '83 QUEENS',
  'bbl': '4142600001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043001',
  'y_coordinate_state_plane': '175548',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'taxi_pick_up_location': 'JOHN F KENNEDY AIRPORT, QUEENS (JAMAICA) ,NY, 11430',
  'bridge_highway_name': 'Van Wyck Expwy',
  'bridge_highway_direction': 'North/Bronx Bound',
  'road_ramp': 'Roadway',
  'bridge_highway_segment': 'Liberty Ave (Exit 4) - Atlantic Ave (Exit 5)',
  'latitude': '40.64832048620134',
  'longitude': '-73.78828125130184',
  'location': {'latitude': '40.64832048620134',
   'longitude': '-73.78828125130184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598426',
  'created_date': '2024-03-17T00:05:58.000',
  'closed_date': '2024-03-17T00:11: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': '10031',
  'incident_address': '61 HAMILTON PLACE',
  'street_name': 'HAMILTON PLACE',
  'cross_street_1': 'WEST  139 STREET',
  'cross_street_2': 'WEST  140 STREET',
  'intersection_street_1': 'WEST  139 STREET',
  'intersection_street_2': 'WEST  140 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HAMILTON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:24.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020710045',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997649',
  'y_coordinate_state_plane': '238929',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82247034401549',
  'longitude': '-73.95158821255185',
  'location': {'latitude': '40.82247034401549',
   'longitude': '-73.95158821255185',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601685',
  'created_date': '2024-03-17T00:05:29.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': '1680 PELHAM PARKWAY SOUTH',
  'street_name': 'PELHAM PARKWAY SOUTH',
  'cross_street_1': 'STILLWELL AVENUE',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'STILLWELL AVENUE',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PELHAM PARKWAY SOUTH',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'bbl': '2042230039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1029020',
  'y_coordinate_state_plane': '251277',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85625866053893',
  'longitude': '-73.83815971912294',
  'location': {'latitude': '40.85625866053893',
   'longitude': '-73.83815971912294',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604975',
  'created_date': '2024-03-17T00:05:12.000',
  'closed_date': '2024-03-17T00:53: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': '10034',
  'incident_address': '103 SEAMAN AVENUE',
  'street_name': 'SEAMAN 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': 'SEAMAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T00:53:40.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022390017',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005167',
  'y_coordinate_state_plane': '255644',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86833348832193',
  'longitude': '-73.92437287591825',
  'location': {'latitude': '40.86833348832193',
   'longitude': '-73.92437287591825',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604197',
  'created_date': '2024-03-17T00:05:08.000',
  'closed_date': '2024-03-17T00:31:56.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': '10456',
  'incident_address': '1480 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:31:59.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010929',
  'y_coordinate_state_plane': '244302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83718755388138',
  'longitude': '-73.90358504457679',
  'location': {'latitude': '40.83718755388138',
   'longitude': '-73.90358504457679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598114',
  'created_date': '2024-03-17T00:05:01.000',
  'closed_date': '2024-03-17T01:35:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '358 39 STREET',
  'street_name': '39 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '39 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-03-17T01:35:15.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3007080030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '982306',
  'y_coordinate_state_plane': '177228',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.653126385510525',
  'longitude': '-74.00700601684973',
  'location': {'latitude': '40.653126385510525',
   'longitude': '-74.00700601684973',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605198',
  'created_date': '2024-03-17T00:05:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Fixture/Luminaire Out Of Position',
  'incident_zip': '11104',
  'intersection_street_1': '42 STREET',
  'intersection_street_2': 'GREENPOINT AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'status': 'Open',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005577',
  'y_coordinate_state_plane': '209047',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.740436631083575',
  'longitude': '-73.92303850771624',
  'location': {'latitude': '40.740436631083575',
   'longitude': '-73.92303850771624',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598322',
  'created_date': '2024-03-17T00:05:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Controller',
  'incident_zip': '11214',
  'intersection_street_1': 'BATH AVENUE',
  'intersection_street_2': 'BAY 25 STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '11 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984017',
  'y_coordinate_state_plane': '158221',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60095637786012',
  'longitude': '-74.00083905679729',
  'location': {'latitude': '40.60095637786012',
   'longitude': '-74.00083905679729',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604337',
  'created_date': '2024-03-17T00:04:49.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11363',
  'incident_address': '38 ROAD',
  'street_name': '38 ROAD',
  'cross_street_1': '233 STREET',
  'cross_street_2': 'DEAD END',
  'address_type': 'BLOCKFACE',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Open',
  'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
  'resolution_action_updated_date': '2024-03-17T00:04:49.000',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '60601358',
  'created_date': '2024-03-17T00:04:27.000',
  'closed_date': '2024-03-17T00:46: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': '10452',
  'incident_address': '1390 OGDEN AVENUE',
  'street_name': 'OGDEN AVENUE',
  'cross_street_1': 'WEST  170 STREET',
  'cross_street_2': 'WEST  171 STREET',
  'intersection_street_1': 'WEST  170 STREET',
  'intersection_street_2': 'WEST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'OGDEN 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-03-17T00:46:27.000',
  'community_board': '04 BRONX',
  'bbl': '2025220055',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005214',
  'y_coordinate_state_plane': '246164',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84231361587705',
  'longitude': '-73.92423259050432',
  'location': {'latitude': '40.84231361587705',
   'longitude': '-73.92423259050432',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605095',
  'created_date': '2024-03-17T00:04:25.000',
  'closed_date': '2024-03-17T00:28: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': '11385',
  'incident_address': '66-28 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:28:43.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011111',
  'y_coordinate_state_plane': '196833',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70689710411462',
  'longitude': '-73.90311704974741',
  'location': {'latitude': '40.70689710411462',
   'longitude': '-73.90311704974741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598747',
  'created_date': '2024-03-17T00:04:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11418',
  'incident_address': '86-24 126 STREET',
  'street_name': '126 STREET',
  'cross_street_1': 'HILLSIDE AVENUE',
  'cross_street_2': 'JAMAICA AVENUE',
  'intersection_street_1': 'HILLSIDE AVENUE',
  'intersection_street_2': 'JAMAICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': '126 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4092790069',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032757',
  'y_coordinate_state_plane': '195233',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70241330143117',
  'longitude': '-73.82505538317518',
  'location': {'latitude': '40.70241330143117',
   'longitude': '-73.82505538317518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602163',
  'created_date': '2024-03-17T00:03:59.000',
  'closed_date': '2024-03-17T01:05:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10455',
  'incident_address': '457 SOUTHERN BOULEVARD',
  'street_name': 'SOUTHERN BOULEVARD',
  'cross_street_1': 'TINTON AVENUE',
  'cross_street_2': 'EAST  147 STREET',
  'intersection_street_1': 'TINTON AVENUE',
  'intersection_street_2': 'EAST  147 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SOUTHERN BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:05:54.000',
  'community_board': '01 BRONX',
  'bbl': '2025820001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010043',
  'y_coordinate_state_plane': '234513',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.810322173010164',
  'longitude': '-73.906824577248',
  'location': {'latitude': '40.810322173010164',
   'longitude': '-73.906824577248',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600775',
  'created_date': '2024-03-17T00:03:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10039',
  'incident_address': '202 WEST  149 STREET',
  'street_name': 'WEST  149 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  149 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:04:51.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020340038',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001473',
  'y_coordinate_state_plane': '239637',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.82440697443507',
  'longitude': '-73.93776994480358',
  'location': {'latitude': '40.82440697443507',
   'longitude': '-73.93776994480358',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598492',
  'created_date': '2024-03-17T00:03:07.000',
  'closed_date': '2024-03-17T00:44:50.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': '11358',
  'incident_address': '40-05 195 STREET',
  'street_name': '195 STREET',
  'cross_street_1': 'STATION ROAD',
  'cross_street_2': '42 AVENUE',
  'intersection_street_1': 'STATION ROAD',
  'intersection_street_2': '42 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '195 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-03-17T00:44:54.000',
  'community_board': '11 QUEENS',
  'bbl': '4053600033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043223',
  'y_coordinate_state_plane': '216613',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76103242156549',
  'longitude': '-73.7871216112048',
  'location': {'latitude': '40.76103242156549',
   'longitude': '-73.7871216112048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605431',
  'created_date': '2024-03-17T00:03:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1812 GROVE STREET',
  'street_name': 'GROVE STREET',
  'cross_street_1': 'SENECA AVENUE',
  'cross_street_2': 'ONDERDONK AVENUE',
  'intersection_street_1': 'SENECA AVENUE',
  'intersection_street_2': 'ONDERDONK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'GROVE STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:01:16.000',
  'community_board': '05 QUEENS',
  'bbl': '4034390016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009311',
  'y_coordinate_state_plane': '195924',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70440739588521',
  'longitude': '-73.90961271460708',
  'location': {'latitude': '40.70440739588521',
   'longitude': '-73.90961271460708',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605268',
  'created_date': '2024-03-17T00:02:59.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Pothole',
  'incident_zip': '11377',
  'intersection_street_1': '48 AVENUE',
  'intersection_street_2': '70 STREET',
  'address_type': 'INTERSECTION',
  'city': 'QUEENS',
  'facility_type': 'N/A',
  'status': 'Open',
  'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
  'resolution_action_updated_date': '2024-03-17T00:02:59.000',
  'community_board': '02 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013595',
  'y_coordinate_state_plane': '208283',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.738316672260204',
  'longitude': '-73.89410777919184',
  'location': {'latitude': '40.738316672260204',
   'longitude': '-73.89410777919184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604382',
  'created_date': '2024-03-17T00:02:52.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': '2835 PHILIP AVENUE',
  'street_name': 'PHILIP AVENUE',
  'cross_street_1': 'QUINCY AVENUE',
  'cross_street_2': 'CALHOUN AVENUE',
  'intersection_street_1': 'QUINCY AVENUE',
  'intersection_street_2': 'CALHOUN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PHILIP AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055450040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032450',
  'y_coordinate_state_plane': '240540',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82677072802343',
  'longitude': '-73.82583772060124',
  'location': {'latitude': '40.82677072802343',
   'longitude': '-73.82583772060124',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599556',
  'created_date': '2024-03-17T00:02:26.000',
  'closed_date': '2024-03-17T00:26:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10032',
  'incident_address': '524 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 with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-03-17T00:26:38.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021250032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001578',
  'y_coordinate_state_plane': '245628',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Van',
  'latitude': '40.840850336148144',
  'longitude': '-73.93737508387434',
  'location': {'latitude': '40.840850336148144',
   'longitude': '-73.93737508387434',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604212',
  'created_date': '2024-03-17T00:01:51.000',
  'closed_date': '2024-03-17T01:39: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': '11211',
  'incident_address': '390 HOOPER STREET',
  'street_name': 'HOOPER STREET',
  'cross_street_1': 'SOUTH    2 STREET',
  'cross_street_2': 'SOUTH    1 STREET',
  'intersection_street_1': 'SOUTH    2 STREET',
  'intersection_street_2': 'SOUTH    1 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOOPER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:39:13.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024130001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997494',
  'y_coordinate_state_plane': '197917',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70990328669034',
  'longitude': '-73.95222905095925',
  'location': {'latitude': '40.70990328669034',
   'longitude': '-73.95222905095925',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601434',
  'created_date': '2024-03-17T00:01:49.000',
  'closed_date': '2024-03-17T00:40:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10029',
  'incident_address': '303 EAST  102 STREET',
  'street_name': 'EAST  102 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  102 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-03-17T00:40:45.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016740104',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999702',
  'y_coordinate_state_plane': '226377',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78801521491444',
  'longitude': '-73.94419943098177',
  'location': {'latitude': '40.78801521491444',
   'longitude': '-73.94419943098177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603262',
  'created_date': '2024-03-17T00:01:45.000',
  'closed_date': '2024-03-17T00:27: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': '10009',
  'incident_address': '604 EAST    9 STREET',
  'street_name': 'EAST    9 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    9 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:28:03.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003910009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989888',
  'y_coordinate_state_plane': '203774',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.725987460624225',
  'longitude': '-73.97965889428309',
  'location': {'latitude': '40.725987460624225',
   'longitude': '-73.97965889428309',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601373',
  'created_date': '2024-03-17T00:01:28.000',
  'closed_date': '2024-03-17T00:14:50.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': '10011',
  'incident_address': '11 WEST   17 STREET',
  'street_name': 'WEST   17 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   17 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-03-17T00:14:58.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1008190031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986209',
  'y_coordinate_state_plane': '208232',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.738225156346566',
  'longitude': '-73.99293090729802',
  'location': {'latitude': '40.738225156346566',
   'longitude': '-73.99293090729802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601359',
  'created_date': '2024-03-17T00:01:22.000',
  'closed_date': '2024-03-17T00:27:01.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': '10032',
  'incident_address': '432 WEST  160 STREET',
  'street_name': 'WEST  160 STREET',
  'cross_street_1': 'JUMEL TERRACE',
  'cross_street_2': 'ST NICHOLAS AVENUE',
  'intersection_street_1': 'JUMEL TERRACE',
  'intersection_street_2': 'ST NICHOLAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  160 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-03-17T00:27:05.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021090024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000931',
  'y_coordinate_state_plane': '243259',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83434936562059',
  'longitude': '-73.93971928988034',
  'location': {'latitude': '40.83434936562059',
   'longitude': '-73.93971928988034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604869',
  'created_date': '2024-03-17T00:01:20.000',
  'closed_date': '2024-03-17T00:54:14.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': '2439 EAST SECOND STREET',
  'street_name': 'EAST SECOND STREET',
  'cross_street_1': 'AVENUE X',
  'cross_street_2': 'AVENUE Y',
  'intersection_street_1': 'AVENUE X',
  'intersection_street_2': 'AVENUE Y',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST    2 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-03-17T00:54:18.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071980062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993084',
  'y_coordinate_state_plane': '154179',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58985750280745',
  'longitude': '-73.96819315035034',
  'location': {'latitude': '40.58985750280745',
   'longitude': '-73.96819315035034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598481',
  'created_date': '2024-03-17T00:01:13.000',
  'closed_date': '2024-03-17T00:25:49.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': '358 WEST  118 STREET',
  'street_name': 'WEST  118 STREET',
  'cross_street_1': 'MANHATTAN AVENUE',
  'cross_street_2': 'MORNINGSIDE AVENUE',
  'intersection_street_1': 'MANHATTAN AVENUE',
  'intersection_street_2': 'MORNINGSIDE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  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-03-17T00:25:53.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019440156',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996323',
  'y_coordinate_state_plane': '233125',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80654189991776',
  'longitude': '-73.95638960864126',
  'location': {'latitude': '40.80654189991776',
   'longitude': '-73.95638960864126',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599174',
  'created_date': '2024-03-17T00:01:02.000',
  'closed_date': '2024-03-17T00:08:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:08:49.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605096',
  'created_date': '2024-03-17T00:00:59.000',
  'closed_date': '2024-03-17T00:42: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': '11356',
  'incident_address': '110-39 15 AVENUE',
  'street_name': '15 AVENUE',
  'cross_street_1': '110 STREET',
  'cross_street_2': '112 STREET',
  'intersection_street_1': '110 STREET',
  'intersection_street_2': '112 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '15 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:42:49.000',
  'community_board': '07 QUEENS',
  'bbl': '4040600020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024003',
  'y_coordinate_state_plane': '224877',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7838222219688',
  'longitude': '-73.8564521633559',
  'location': {'latitude': '40.7838222219688',
   'longitude': '-73.8564521633559',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604936',
  'created_date': '2024-03-17T00:00:58.000',
  'closed_date': '2024-03-17T00:54:20.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': '10021',
  'incident_address': '1450 2 AVENUE',
  'street_name': '2 AVENUE',
  'cross_street_1': 'EAST   75 STREET',
  'cross_street_2': 'EAST   76 STREET',
  'intersection_street_1': 'EAST   75 STREET',
  'intersection_street_2': 'EAST   76 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '2 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-03-17T00:54:24.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1014500051',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996263',
  'y_coordinate_state_plane': '220235',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.771162394352885',
  'longitude': '-73.95662939538269',
  'location': {'latitude': '40.771162394352885',
   'longitude': '-73.95662939538269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600214',
  'created_date': '2024-03-17T00:00:54.000',
  'closed_date': '2024-03-17T00:39:46.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': '11229',
  'incident_address': '3661 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  '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': '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-03-17T00:39:51.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074051001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000704',
  'y_coordinate_state_plane': '155913',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59460611411102',
  'longitude': '-73.94075309594254',
  'location': {'latitude': '40.59460611411102',
   'longitude': '-73.94075309594254',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598390',
  'created_date': '2024-03-17T00:00:51.000',
  'closed_date': '2024-03-17T01:07: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': '11103',
  'incident_address': '41-14 31 AVENUE',
  'street_name': '31 AVENUE',
  'cross_street_1': '41 STREET',
  'cross_street_2': '42 STREET',
  'intersection_street_1': '41 STREET',
  'intersection_street_2': '42 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '31 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:07:19.000',
  'community_board': '01 QUEENS',
  'bbl': '4006790043',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007493',
  'y_coordinate_state_plane': '216484',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76084448027141',
  'longitude': '-73.91609864996568',
  'location': {'latitude': '40.76084448027141',
   'longitude': '-73.91609864996568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602013',
  'created_date': '2024-03-17T00:00:50.000',
  'closed_date': '2024-03-17T00:49:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11369',
  'incident_address': '25-62 100 STREET',
  'street_name': '100 STREET',
  'cross_street_1': 'MCINTOSH STREET',
  'cross_street_2': 'KEARNEY STREET',
  'intersection_street_1': 'MCINTOSH STREET',
  'intersection_street_2': 'KEARNEY STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '100 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-03-17T00:49:07.000',
  'community_board': '03 QUEENS',
  'bbl': '4013730038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020354',
  'y_coordinate_state_plane': '217573',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76379033687415',
  'longitude': '-73.86966790104269',
  'location': {'latitude': '40.76379033687415',
   'longitude': '-73.86966790104269',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603616',
  'created_date': '2024-03-17T00:00:44.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': '11358',
  'incident_address': '29-20 166 STREET',
  'street_name': '166 STREET',
  'cross_street_1': '29 AVENUE',
  'cross_street_2': '32 AVENUE',
  'intersection_street_1': '29 AVENUE',
  'intersection_street_2': '32 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '166 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4049100015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039961',
  'y_coordinate_state_plane': '219981',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77029784285216',
  'longitude': '-73.79886869132818',
  'location': {'latitude': '40.77029784285216',
   'longitude': '-73.79886869132818',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604221',
  'created_date': '2024-03-17T00:00:27.000',
  'closed_date': '2024-03-17T00:38: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': '10038',
  'incident_address': '100 WILLIAM STREET',
  'street_name': 'WILLIAM STREET',
  'cross_street_1': 'PLATT STREET',
  'cross_street_2': 'JOHN STREET',
  'intersection_street_1': 'PLATT STREET',
  'intersection_street_2': 'JOHN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WILLIAM STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:38:57.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1000680036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982177',
  'y_coordinate_state_plane': '197401',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70849665825823',
  'longitude': '-74.0074771279733',
  'location': {'latitude': '40.70849665825823',
   'longitude': '-74.0074771279733',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603990',
  'created_date': '2024-03-17T00:00:12.000',
  'closed_date': '2024-03-17T00:19:18.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': '66 BAY   49 STREET',
  'street_name': 'BAY   49 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   49 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T00:19:23.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3069160001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988230',
  'y_coordinate_state_plane': '153467',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.587906713645125',
  'longitude': '-73.98567041414788',
  'location': {'latitude': '40.587906713645125',
   'longitude': '-73.98567041414788',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601571',
  'created_date': '2024-03-17T00:00:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11385',
  'incident_address': '1880 HIMROD STREET',
  'street_name': 'HIMROD STREET',
  'cross_street_1': 'ONDERDONK AVENUE',
  'cross_street_2': 'WOODWARD AVENUE',
  'intersection_street_1': 'ONDERDONK AVENUE',
  'intersection_street_2': 'WOODWARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'HIMROD STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4034030034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008641',
  'y_coordinate_state_plane': '197183',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70786492440928',
  'longitude': '-73.91202463556576',
  'location': {'latitude': '40.70786492440928',
   'longitude': '-73.91202463556576',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602618',
  'created_date': '2024-03-17T00:00:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '119-20 CROSS ISLAND PARKWAY',
  'street_name': 'CROSS ISLAND PARKWAY',
  'cross_street_1': '119 AVENUE',
  'cross_street_2': '238 STREET',
  'intersection_street_1': '119 AVENUE',
  'intersection_street_2': '238 STREET',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': 'CROSS ISLAND PARKWAY',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4127970006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1060031',
  'y_coordinate_state_plane': '189668',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68694720122482',
  'longitude': '-73.72675251567647',
  'location': {'latitude': '40.68694720122482',
   'longitude': '-73.72675251567647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601683',
  'created_date': '2024-03-16T23:59:47.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': '11207',
  'incident_address': '552 GLENMORE AVENUE',
  'street_name': 'GLENMORE AVENUE',
  'cross_street_1': 'VAN SICLEN AVENUE',
  'cross_street_2': 'HENDRIX STREET',
  'intersection_street_1': 'VAN SICLEN AVENUE',
  'intersection_street_2': 'HENDRIX STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GLENMORE AVENUE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039940015',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014754',
  'y_coordinate_state_plane': '184876',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6740661107231',
  'longitude': '-73.89003153685108',
  'location': {'latitude': '40.6740661107231',
   'longitude': '-73.89003153685108',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599307',
  'created_date': '2024-03-16T23:59:46.000',
  'closed_date': '2024-03-17T00:42:52.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': '10034',
  'incident_address': '3795 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': 'WEST  203 STREET',
  'cross_street_2': 'WEST  204 STREET',
  'intersection_street_1': 'WEST  203 STREET',
  'intersection_street_2': 'WEST  204 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '10 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-03-17T00:42:55.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022000001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1006188',
  'y_coordinate_state_plane': '253349',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8620319333462',
  'longitude': '-73.9206888817376',
  'location': {'latitude': '40.8620319333462',
   'longitude': '-73.9206888817376',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602239',
  'created_date': '2024-03-16T23:59:28.000',
  'closed_date': '2024-03-17T01:17:02.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': '11420',
  'incident_address': '115-54 122 STREET',
  'street_name': '122 STREET',
  'cross_street_1': '115 AVENUE',
  'cross_street_2': '116 AVENUE',
  'intersection_street_1': '115 AVENUE',
  'intersection_street_2': '116 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '122 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:17:06.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035191',
  'y_coordinate_state_plane': '185781',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67645611540318',
  'longitude': '-73.81634845044111',
  'location': {'latitude': '40.67645611540318',
   'longitude': '-73.81634845044111',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605383',
  'created_date': '2024-03-16T23:59:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '116-18 234 STREET',
  'street_name': '234 STREET',
  'cross_street_1': '116 AVENUE',
  'cross_street_2': 'CROSS ISLAND PKWY ET   25 B SB',
  'intersection_street_1': '116 AVENUE',
  'intersection_street_2': 'CROSS ISLAND PKWY ET   25 B SB',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': '234 STREET',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4113340052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1059850',
  'y_coordinate_state_plane': '191763',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69269901410886',
  'longitude': '-73.72738164306165',
  'location': {'latitude': '40.69269901410886',
   'longitude': '-73.72738164306165',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599241',
  'created_date': '2024-03-16T23:59:15.000',
  'closed_date': '2024-03-17T00:56:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11429',
  'incident_address': '97-23 220 STREET',
  'street_name': '220 STREET',
  'cross_street_1': '97 AVENUE',
  'cross_street_2': '99 AVENUE',
  'intersection_street_1': '97 AVENUE',
  'intersection_street_2': '99 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '220 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-03-17T00:56:54.000',
  'community_board': '13 QUEENS',
  'bbl': '4107860014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1058180',
  'y_coordinate_state_plane': '200689',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71721277688993',
  'longitude': '-73.733305733665',
  'location': {'latitude': '40.71721277688993',
   'longitude': '-73.733305733665',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603582',
  'created_date': '2024-03-16T23:59:08.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11378',
  'incident_address': '71-15 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': '71 STREET',
  'cross_street_2': '72 STREET',
  'intersection_street_1': '71 STREET',
  'intersection_street_2': '72 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': 'GRAND AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:55:10.000',
  'community_board': '05 QUEENS',
  'bbl': '4025050079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014156',
  'y_coordinate_state_plane': '204476',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72786552169542',
  'longitude': '-73.89210031928765',
  'location': {'latitude': '40.72786552169542',
   'longitude': '-73.89210031928765',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599718',
  'created_date': '2024-03-16T23:59:05.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': '10034',
  'incident_address': '3716 10 AVENUE',
  'street_name': '10 AVENUE',
  'cross_street_1': 'DYCKMAN STREET',
  'cross_street_2': 'DYCKMAN HOUSES   10 AVE PED OVPS',
  'intersection_street_1': 'DYCKMAN STREET',
  'intersection_street_2': 'DYCKMAN HOUSES   10 AVE PED OVPS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '10 AVENUE',
  'status': 'In Progress',
  'community_board': '12 MANHATTAN',
  'bbl': '1022160001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005574',
  'y_coordinate_state_plane': '252243',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.858997801840935',
  'longitude': '-73.92291215620644',
  'location': {'latitude': '40.858997801840935',
   'longitude': '-73.92291215620644',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604160',
  'created_date': '2024-03-16T23:58:54.000',
  'closed_date': '2024-03-17T01:16:28.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': '11205',
  'incident_address': '198 WASHINGTON PARK',
  'street_name': 'WASHINGTON PARK',
  'cross_street_1': 'WILLOUGHBY AVENUE',
  'cross_street_2': 'CUMBERLAND STREET',
  'intersection_street_1': 'WILLOUGHBY AVENUE',
  'intersection_street_2': 'CUMBERLAND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WASHINGTON PARK',
  '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-03-17T01:16:31.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020890012',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991662',
  'y_coordinate_state_plane': '190817',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690422254756776',
  'longitude': '-73.97327281700572',
  'location': {'latitude': '40.690422254756776',
   'longitude': '-73.97327281700572',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598307',
  'created_date': '2024-03-16T23:58:53.000',
  'closed_date': '2024-03-17T01:04:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'Underage - Licensed Est',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10458',
  'incident_address': '2415A ARTHUR AVENUE',
  'street_name': 'ARTHUR AVENUE',
  'cross_street_1': 'EAST  187 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  187 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ARTHUR AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:04:54.000',
  'community_board': '06 BRONX',
  'bbl': '2030667501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015438',
  'y_coordinate_state_plane': '251136',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85593008469887',
  'longitude': '-73.88725824734692',
  'location': {'latitude': '40.85593008469887',
   'longitude': '-73.88725824734692',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598796',
  'created_date': '2024-03-16T23:58:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '231-06 116 AVENUE',
  'street_name': '116 AVENUE',
  'cross_street_1': '231 STREET',
  'cross_street_2': '232 STREET',
  'intersection_street_1': '231 STREET',
  'intersection_street_2': '232 STREET',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': '116 AVENUE',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4113320037',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1059265',
  'y_coordinate_state_plane': '192172',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69382659700013',
  'longitude': '-73.72948662177197',
  'location': {'latitude': '40.69382659700013',
   'longitude': '-73.72948662177197',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599943',
  'created_date': '2024-03-16T23:58:45.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Chronic Dumping',
  'location_type': 'Sidewalk',
  'incident_zip': '11211',
  'incident_address': '250 SOUTH SECOND STREET',
  'street_name': 'SOUTH SECOND STREET',
  'cross_street_1': 'ROEBLING STREET',
  'cross_street_2': 'HAVEMEYER STREET',
  'intersection_street_1': 'ROEBLING STREET',
  'intersection_street_2': 'HAVEMEYER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3024207501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995892',
  'y_coordinate_state_plane': '198597',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71177197787558',
  'longitude': '-73.95800626894679',
  'location': {'latitude': '40.71177197787558',
   'longitude': '-73.95800626894679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605045',
  'created_date': '2024-03-16T23:58:37.000',
  'closed_date': '2024-03-17T01:02: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': '11414',
  'incident_address': '89-40 151 AVENUE',
  'street_name': '151 AVENUE',
  'cross_street_1': '89 STREET',
  'cross_street_2': '153 AVENUE',
  'intersection_street_1': '89 STREET',
  'intersection_street_2': '153 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '151 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-03-17T01:03:00.000',
  'community_board': '10 QUEENS',
  'bbl': '4114340025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027127',
  'y_coordinate_state_plane': '182666',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.667948883818354',
  'longitude': '-73.84544038267242',
  'location': {'latitude': '40.667948883818354',
   'longitude': '-73.84544038267242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601426',
  'created_date': '2024-03-16T23:58:34.000',
  'closed_date': '2024-03-17T00:25: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': '10027',
  'incident_address': '362 WEST  127 STREET',
  'street_name': 'WEST  127 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  127 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-03-17T00:25:28.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019537504',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997435',
  'y_coordinate_state_plane': '235247',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.812364611331716',
  'longitude': '-73.95236864734623',
  'location': {'latitude': '40.812364611331716',
   'longitude': '-73.95236864734623',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602187',
  'created_date': '2024-03-16T23:58:33.000',
  'closed_date': '2024-03-17T00:08: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': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-17T00:08:27.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604194',
  'created_date': '2024-03-16T23:58:12.000',
  'closed_date': '2024-03-17T00:22: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:22:13.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602682',
  'created_date': '2024-03-16T23:58:11.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Sidewalk Condition',
  'descriptor': 'Sidewalk Violation',
  'location_type': 'Sidewalk',
  'incident_zip': '11220',
  'incident_address': '6521 8 AVENUE',
  'street_name': '8 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': '8 AVENUE',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3057490001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980721',
  'y_coordinate_state_plane': '169694',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63244668501321',
  'longitude': '-74.01271428606665',
  'location': {'latitude': '40.63244668501321',
   'longitude': '-74.01271428606665',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603583',
  'created_date': '2024-03-16T23:58:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '11385',
  'incident_address': '66-48 MYRTLE AVENUE',
  'street_name': 'MYRTLE AVENUE',
  'cross_street_1': '66 PLACE',
  'cross_street_2': '67 STREET',
  'intersection_street_1': '66 PLACE',
  'intersection_street_2': '67 STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'MYRTLE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:58:55.000',
  'community_board': '05 QUEENS',
  'bbl': '4037000023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015679',
  'y_coordinate_state_plane': '194855',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.701452917478285',
  'longitude': '-73.88665031782351',
  'location': {'latitude': '40.701452917478285',
   'longitude': '-73.88665031782351',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605370',
  'created_date': '2024-03-16T23:57:59.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Rodents/Insects/Garbage',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '10014',
  'incident_address': '282 BLEECKER STREET',
  'street_name': 'BLEECKER STREET',
  'cross_street_1': 'JONES STREET',
  'cross_street_2': '7 AVENUE SOUTH',
  'intersection_street_1': 'JONES STREET',
  'intersection_street_2': '7 AVENUE SOUTH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BLEECKER STREET',
  'status': 'In Progress',
  'community_board': '02 MANHATTAN',
  'bbl': '1005870024',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983321',
  'y_coordinate_state_plane': '205898',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73181906989017',
  'longitude': '-74.0033519937574',
  'location': {'latitude': '40.73181906989017',
   'longitude': '-74.0033519937574',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598840',
  'created_date': '2024-03-16T23:57: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': '11366',
  'incident_address': '189-00 UNION TURNPIKE',
  'street_name': 'UNION TURNPIKE',
  'cross_street_1': '189 STREET',
  'cross_street_2': '190 STREET',
  'intersection_street_1': '189 STREET',
  'intersection_street_2': '190 STREET',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': 'UNION TURNPIKE',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045194',
  'y_coordinate_state_plane': '205126',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.729490216613435',
  'longitude': '-73.78011089047172',
  'location': {'latitude': '40.729490216613435',
   'longitude': '-73.78011089047172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601274',
  'created_date': '2024-03-16T23:57:34.000',
  'closed_date': '2024-03-17T01:07:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11421',
  'incident_address': '86-75 77 STREET',
  'street_name': '77 STREET',
  'cross_street_1': 'JAMAICA AVENUE',
  'cross_street_2': '88 AVENUE',
  'intersection_street_1': 'JAMAICA AVENUE',
  'intersection_street_2': '88 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '77 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-03-17T01:07:19.000',
  'community_board': '09 QUEENS',
  'bbl': '4089080069',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021785',
  'y_coordinate_state_plane': '191191',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69137230779946',
  'longitude': '-73.86464928606392',
  'location': {'latitude': '40.69137230779946',
   'longitude': '-73.86464928606392',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600286',
  'created_date': '2024-03-16T23:57:20.000',
  'closed_date': '2024-03-17T00:14:30.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:14:34.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604290',
  'created_date': '2024-03-16T23:57:19.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': '11204',
  'incident_address': '4217 16 AVENUE',
  'street_name': '16 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053800001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989364',
  'y_coordinate_state_plane': '170552',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63480093969539',
  'longitude': '-73.98157462367998',
  'location': {'latitude': '40.63480093969539',
   'longitude': '-73.98157462367998',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604164',
  'created_date': '2024-03-16T23:57:11.000',
  'closed_date': '2024-03-17T01:08: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': '11373',
  'incident_address': '41-12 ELBERTSON STREET',
  'street_name': 'ELBERTSON STREET',
  'cross_street_1': 'ELMHURST AVENUE',
  'cross_street_2': 'WHITNEY AVENUE',
  'intersection_street_1': 'ELMHURST AVENUE',
  'intersection_street_2': 'WHITNEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'ELBERTSON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:08:36.000',
  'community_board': '04 QUEENS',
  'bbl': '4015540011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018404',
  'y_coordinate_state_plane': '211333',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74667088963048',
  'longitude': '-73.87673890787416',
  'location': {'latitude': '40.74667088963048',
   'longitude': '-73.87673890787416',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603118',
  'created_date': '2024-03-16T23:57:11.000',
  'closed_date': '2024-03-17T00:23:56.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': '11691',
  'incident_address': '125 BEACH   17 STREET',
  'street_name': 'BEACH   17 STREET',
  'cross_street_1': 'BOARDWALK',
  'cross_street_2': 'SEAGIRT BOULEVARD',
  'intersection_street_1': 'BOARDWALK',
  'intersection_street_2': 'SEAGIRT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   17 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-03-17T00:24:00.000',
  'community_board': '14 QUEENS',
  'bbl': '4156380001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053344',
  'y_coordinate_state_plane': '155877',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.594253257596634',
  'longitude': '-73.75121009186816',
  'location': {'latitude': '40.594253257596634',
   'longitude': '-73.75121009186816',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601178',
  'created_date': '2024-03-16T23:57:06.000',
  'closed_date': '2024-03-17T00:11:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '10031',
  'incident_address': '3450 BROADWAY',
  'street_name': 'BROADWAY',
  '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': 'BROADWAY',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:11:04.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020720064',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997401',
  'y_coordinate_state_plane': '239350',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82362624228102',
  'longitude': '-73.95248343347647',
  'location': {'latitude': '40.82362624228102',
   'longitude': '-73.95248343347647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599802',
  'created_date': '2024-03-16T23:57:05.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': '10461',
  'incident_address': '3111 WILLOW LANE',
  'street_name': 'WILLOW LANE',
  'cross_street_1': 'MAHAN AVENUE',
  'cross_street_2': 'PARKVIEW AVENUE',
  'intersection_street_1': 'MAHAN AVENUE',
  'intersection_street_2': 'PARKVIEW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILLOW LANE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2041990032',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031317',
  'y_coordinate_state_plane': '248760',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84933830982508',
  'longitude': '-73.82987392328783',
  'location': {'latitude': '40.84933830982508',
   'longitude': '-73.82987392328783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603321',
  'created_date': '2024-03-16T23:57:02.000',
  'closed_date': '2024-03-17T00:53:38.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': '10460',
  'incident_address': '901 EAST  179 STREET',
  'street_name': 'EAST  179 STREET',
  'cross_street_1': 'HONEYWELL AVENUE',
  'cross_street_2': 'DALY AVENUE',
  'intersection_street_1': 'HONEYWELL AVENUE',
  'intersection_street_2': 'DALY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  179 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-03-17T00:53:40.000',
  'community_board': '06 BRONX',
  'bbl': '2031220031',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016553',
  'y_coordinate_state_plane': '246720',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.843805472578545',
  'longitude': '-73.88324890587567',
  'location': {'latitude': '40.843805472578545',
   'longitude': '-73.88324890587567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604948',
  'created_date': '2024-03-16T23:57:02.000',
  'closed_date': '2024-03-17T00:10:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10002',
  'incident_address': '197 MADISON STREET',
  'street_name': 'MADISON STREET',
  'cross_street_1': 'PIKE STREET',
  'cross_street_2': 'RUTGERS STREET',
  'intersection_street_1': 'PIKE STREET',
  'intersection_street_2': 'RUTGERS STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MADISON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:10:22.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002730020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986922',
  'y_coordinate_state_plane': '198905',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.712624620513665',
  'longitude': '-73.99036173504172',
  'location': {'latitude': '40.712624620513665',
   'longitude': '-73.99036173504172',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603746',
  'created_date': '2024-03-16T23:56:57.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Residential Disposal Complaint',
  'descriptor': 'Waste Set Out Too Early or Too Late',
  'location_type': 'Sidewalk',
  'incident_zip': '11205',
  'incident_address': '275 CLINTON AVENUE',
  'street_name': 'CLINTON 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': 'CLINTON AVENUE',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3019160001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993078',
  'y_coordinate_state_plane': '190651',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68996532387982',
  'longitude': '-73.96816703236634',
  'location': {'latitude': '40.68996532387982',
   'longitude': '-73.96816703236634',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605396',
  'created_date': '2024-03-16T23:56: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': '11206',
  'incident_address': '247 VARET STREET',
  'street_name': 'VARET STREET',
  'cross_street_1': 'WHITE STREET',
  'cross_street_2': 'BOGART STREET',
  'intersection_street_1': 'WHITE STREET',
  'intersection_street_2': 'BOGART STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VARET STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3031100032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002480',
  'y_coordinate_state_plane': '195787',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70404807317634',
  'longitude': '-73.93425038133091',
  'location': {'latitude': '40.70404807317634',
   'longitude': '-73.93425038133091',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603347',
  'created_date': '2024-03-16T23:56:38.000',
  'closed_date': '2024-03-17T01:38:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11211',
  'incident_address': '385 SOUTH SECOND STREET',
  'street_name': 'SOUTH SECOND STREET',
  'cross_street_1': 'HOOPER STREET',
  'cross_street_2': 'HEWES STREET',
  'intersection_street_1': 'HOOPER STREET',
  'intersection_street_2': 'HEWES STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:38:55.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024130031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997572',
  'y_coordinate_state_plane': '197796',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Van',
  'latitude': '40.70957105333611',
  'longitude': '-73.95194794536684',
  'location': {'latitude': '40.70957105333611',
   'longitude': '-73.95194794536684',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602293',
  'created_date': '2024-03-16T23:56:31.000',
  'closed_date': '2024-03-17T00:43: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': '11358',
  'incident_address': '40-05 195 STREET',
  'street_name': '195 STREET',
  'cross_street_1': 'STATION ROAD',
  'cross_street_2': '42 AVENUE',
  'intersection_street_1': 'STATION ROAD',
  'intersection_street_2': '42 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '195 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-03-17T00:43:59.000',
  'community_board': '11 QUEENS',
  'bbl': '4053600033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043223',
  'y_coordinate_state_plane': '216613',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76103242156549',
  'longitude': '-73.7871216112048',
  'location': {'latitude': '40.76103242156549',
   'longitude': '-73.7871216112048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605420',
  'created_date': '2024-03-16T23:56: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': '11378',
  'incident_address': '73-32 53 ROAD',
  'street_name': '53 ROAD',
  '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': '53 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:55:55.000',
  'community_board': '05 QUEENS',
  'bbl': '4024910024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014936',
  'y_coordinate_state_plane': '205445',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73052251633896',
  'longitude': '-73.8892816937889',
  'location': {'latitude': '40.73052251633896',
   'longitude': '-73.8892816937889',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600623',
  'created_date': '2024-03-16T23:56:01.000',
  'closed_date': '2024-03-16T23:57:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10469',
  'incident_address': '2753 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'cross_street_1': 'ALLERTON AVENUE',
  'cross_street_2': 'ARNOW AVENUE',
  'intersection_street_1': 'ALLERTON AVENUE',
  'intersection_street_2': 'ARNOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLDEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:57:14.000',
  'community_board': '11 BRONX',
  'bbl': '2045160023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023083',
  'y_coordinate_state_plane': '254909',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'Car',
  'latitude': '40.86625550351285',
  'longitude': '-73.85960045742786',
  'location': {'latitude': '40.86625550351285',
   'longitude': '-73.85960045742786',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604216',
  'created_date': '2024-03-16T23:55:51.000',
  'closed_date': '2024-03-17T01:06: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': '11216',
  'incident_address': '140 HALSEY STREET',
  'street_name': 'HALSEY STREET',
  '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': 'HALSEY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T01:06:36.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018440031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998648',
  'y_coordinate_state_plane': '187752',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68200092509373',
  'longitude': '-73.94808831609706',
  'location': {'latitude': '40.68200092509373',
   'longitude': '-73.94808831609706',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599502',
  'created_date': '2024-03-16T23:54:51.000',
  'closed_date': '2024-03-17T01:39: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': '11211',
  'incident_address': '390 HOOPER STREET',
  'street_name': 'HOOPER STREET',
  'cross_street_1': 'SOUTH    2 STREET',
  'cross_street_2': 'SOUTH    1 STREET',
  'intersection_street_1': 'SOUTH    2 STREET',
  'intersection_street_2': 'SOUTH    1 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HOOPER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:39:29.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024130001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997494',
  'y_coordinate_state_plane': '197917',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70990328669034',
  'longitude': '-73.95222905095925',
  'location': {'latitude': '40.70990328669034',
   'longitude': '-73.95222905095925',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604499',
  'created_date': '2024-03-16T23:54:43.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': '10039',
  'incident_address': '208 WEST  149 STREET',
  'street_name': 'WEST  149 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  149 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:07:26.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020340041',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001440',
  'y_coordinate_state_plane': '239655',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82445644359595',
  'longitude': '-73.93788913407933',
  'location': {'latitude': '40.82445644359595',
   'longitude': '-73.93788913407933',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598792',
  'created_date': '2024-03-16T23:54:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '114-95 226 STREET',
  'street_name': '226 STREET',
  'cross_street_1': '114 ROAD',
  'cross_street_2': '115 AVENUE',
  'intersection_street_1': '114 ROAD',
  'intersection_street_2': '115 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': '226 STREET',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4112700006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1058544',
  'y_coordinate_state_plane': '194023',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69891322006433',
  'longitude': '-73.73206620417912',
  'location': {'latitude': '40.69891322006433',
   'longitude': '-73.73206620417912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601825',
  'created_date': '2024-03-16T23:54:24.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Yard',
  'incident_zip': '10304',
  'incident_address': '660 TARGEE STREET',
  'street_name': 'TARGEE STREET',
  'cross_street_1': 'MARY STREET',
  'cross_street_2': 'STEUBEN STREET',
  'intersection_street_1': 'MARY STREET',
  'intersection_street_2': 'STEUBEN STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'TARGEE STREET',
  'status': 'In Progress',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028830018',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960344',
  'y_coordinate_state_plane': '161887',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.610986554039485',
  'longitude': '-74.0861008960307',
  'location': {'latitude': '40.610986554039485',
   'longitude': '-74.0861008960307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601494',
  'created_date': '2024-03-16T23:54:16.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': '10303',
  'incident_address': '145 UNION AVENUE',
  'street_name': 'UNION AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5012130004',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '940360',
  'y_coordinate_state_plane': '169930',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63298642436606',
  'longitude': '-74.15812831674621',
  'location': {'latitude': '40.63298642436606',
   'longitude': '-74.15812831674621',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598447',
  'created_date': '2024-03-16T23:53:42.000',
  'closed_date': '2024-03-17T00:18:15.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': '10304',
  'incident_address': '180 BURGHER AVENUE',
  'street_name': 'BURGHER AVENUE',
  'cross_street_1': 'REMSEN STREET',
  'cross_street_2': 'NORTH RAILROAD AVENUE',
  'intersection_street_1': 'REMSEN STREET',
  'intersection_street_2': 'NORTH RAILROAD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BURGHER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:18:24.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5033140030',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '958723',
  'y_coordinate_state_plane': '155184',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.592583669081044',
  'longitude': '-74.0919138249725',
  'location': {'latitude': '40.592583669081044',
   'longitude': '-74.0919138249725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598460',
  'created_date': '2024-03-16T23:53:13.000',
  'closed_date': '2024-03-17T00:15:18.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': '250 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-03-17T00:15:23.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019330050',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998740',
  'y_coordinate_state_plane': '235701',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.813608670505694',
  'longitude': '-73.94765330236223',
  'location': {'latitude': '40.813608670505694',
   'longitude': '-73.94765330236223',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604796',
  'created_date': '2024-03-16T23:53:12.000',
  'closed_date': '2024-03-17T00:30:24.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': '10001',
  'incident_address': '536 WEST   29 STREET',
  'street_name': 'WEST   29 STREET',
  'cross_street_1': 'HIGH LINE',
  'cross_street_2': '11 AVENUE',
  'intersection_street_1': 'HIGH LINE',
  'intersection_street_2': '11 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   29 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:30:28.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007000054',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983460',
  'y_coordinate_state_plane': '213263',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75203417316025',
  'longitude': '-74.00285132255534',
  'location': {'latitude': '40.75203417316025',
   'longitude': '-74.00285132255534',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604491',
  'created_date': '2024-03-16T23:53: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': '10466',
  'incident_address': '689 EAST  233 STREET',
  'street_name': 'EAST  233 STREET',
  'cross_street_1': 'CARPENTER AVENUE',
  'cross_street_2': 'WHITE PLAINS ROAD',
  'intersection_street_1': 'CARPENTER AVENUE',
  'intersection_street_2': 'WHITE PLAINS ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  233 STREET',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2049940005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023461',
  'y_coordinate_state_plane': '264894',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89365952055385',
  'longitude': '-73.85817536363159',
  'location': {'latitude': '40.89365952055385',
   'longitude': '-73.85817536363159',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601337',
  'created_date': '2024-03-16T23:53:05.000',
  'closed_date': '2024-03-17T00:39:15.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': '950 EAST    4 WALK',
  'street_name': 'EAST    4 WALK',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    4 WALK',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:39:19.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003560001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991009',
  'y_coordinate_state_plane': '201709',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.720318750158356',
  'longitude': '-73.9756165590316',
  'location': {'latitude': '40.720318750158356',
   'longitude': '-73.9756165590316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600721',
  'created_date': '2024-03-16T23:52:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11411',
  'incident_address': '217-08 114 ROAD',
  'street_name': '114 ROAD',
  'cross_street_1': '217 STREET',
  'cross_street_2': '219 STREET',
  'intersection_street_1': '217 STREET',
  'intersection_street_2': '219 STREET',
  'address_type': 'ADDRESS',
  'city': 'CAMBRIA HEIGHTS',
  'landmark': '114 ROAD',
  'status': 'In Progress',
  'community_board': '13 QUEENS',
  'bbl': '4112620001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1056721',
  'y_coordinate_state_plane': '194830',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.701143353682404',
  'longitude': '-73.73863194599797',
  'location': {'latitude': '40.701143353682404',
   'longitude': '-73.73863194599797',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602771',
  'created_date': '2024-03-16T23:52:35.000',
  'closed_date': '2024-03-17T01:06:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '687 WEST  204 STREET',
  'street_name': 'WEST  204 STREET',
  'cross_street_1': 'COOPER STREET',
  'cross_street_2': 'SEAMAN AVENUE',
  'intersection_street_1': 'COOPER STREET',
  'intersection_street_2': 'SEAMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  204 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:06:55.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022400037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005368',
  'y_coordinate_state_plane': '255474',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86786641170486',
  'longitude': '-73.92364668009985',
  'location': {'latitude': '40.86786641170486',
   'longitude': '-73.92364668009985',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598488',
  'created_date': '2024-03-16T23:52:11.000',
  'closed_date': '2024-03-17T00:51: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': '11237',
  'incident_address': '295 COOPER STREET',
  'street_name': 'COOPER 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': 'COOPER 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-03-17T00:51:58.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034370058',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011051',
  'y_coordinate_state_plane': '191352',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69185322980438',
  'longitude': '-73.90335526997582',
  'location': {'latitude': '40.69185322980438',
   'longitude': '-73.90335526997582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598489',
  'created_date': '2024-03-16T23:52:08.000',
  'closed_date': '2024-03-17T00:15: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': '10025',
  'incident_address': '18 WEST  103 STREET',
  'street_name': 'WEST  103 STREET',
  'cross_street_1': 'CENTRAL PARK WEST',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'CENTRAL PARK WEST',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  103 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:16:04.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018380044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994615',
  'y_coordinate_state_plane': '229493',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79657522387224',
  'longitude': '-73.96256489470255',
  'location': {'latitude': '40.79657522387224',
   'longitude': '-73.96256489470255',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599508',
  'created_date': '2024-03-16T23:52:02.000',
  'closed_date': '2024-03-17T00:06: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': '10473',
  'incident_address': '541 ROSEDALE AVENUE',
  'street_name': 'ROSEDALE AVENUE',
  'cross_street_1': 'SOUNDVIEW PARK PATH',
  'cross_street_2': 'RANDALL AVENUE',
  'intersection_street_1': 'SOUNDVIEW PARK PATH',
  'intersection_street_2': 'RANDALL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ROSEDALE 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-03-17T00:06:09.000',
  'community_board': '09 BRONX',
  'bbl': '2035150001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021495',
  'y_coordinate_state_plane': '236402',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.815466088873976',
  'longitude': '-73.86544459500982',
  'location': {'latitude': '40.815466088873976',
   'longitude': '-73.86544459500982',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599552',
  'created_date': '2024-03-16T23:52:01.000',
  'closed_date': '2024-03-17T01:07:38.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': '71-17 WOODSIDE AVENUE',
  'street_name': 'WOODSIDE AVENUE',
  'cross_street_1': '71 STREET',
  'cross_street_2': '72 STREET',
  'intersection_street_1': '71 STREET',
  'intersection_street_2': '72 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': 'WOODSIDE 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-03-17T01:07:44.000',
  'community_board': '02 QUEENS',
  'bbl': '4013110077',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013757',
  'y_coordinate_state_plane': '209863',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74265283725043',
  'longitude': '-73.89351626767264',
  'location': {'latitude': '40.74265283725043',
   'longitude': '-73.89351626767264',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602305',
  'created_date': '2024-03-16T23:52:00.000',
  'closed_date': '2024-03-17T01:05: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': '11373',
  'incident_address': '87-19 JUSTICE AVENUE',
  'street_name': 'JUSTICE AVENUE',
  'cross_street_1': '52 AVENUE',
  'cross_street_2': '53 AVENUE',
  'intersection_street_1': '52 AVENUE',
  'intersection_street_2': '53 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'JUSTICE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:05:59.000',
  'community_board': '04 QUEENS',
  'bbl': '4018380079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018614',
  'y_coordinate_state_plane': '207946',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737373614451336',
  'longitude': '-73.87599832675195',
  'location': {'latitude': '40.737373614451336',
   'longitude': '-73.87599832675195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604122',
  'created_date': '2024-03-16T23:51:51.000',
  'closed_date': '2024-03-16T23:57: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': '10025',
  'incident_address': '120 WEST   97 STREET',
  'street_name': 'WEST   97 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   97 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:57:44.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018510008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993141',
  'y_coordinate_state_plane': '228521',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.793908953480674',
  'longitude': '-73.96788980334472',
  'location': {'latitude': '40.793908953480674',
   'longitude': '-73.96788980334472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601406',
  'created_date': '2024-03-16T23:51:42.000',
  'closed_date': '2024-03-17T00:52: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': '10460',
  'incident_address': '1961 MAPES AVENUE',
  'street_name': 'MAPES AVENUE',
  'cross_street_1': 'EAST TREMONT AVENUE',
  'cross_street_2': 'EAST  178 STREET',
  'intersection_street_1': 'EAST TREMONT AVENUE',
  'intersection_street_2': 'EAST  178 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MAPES 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-03-17T00:52:15.000',
  'community_board': '06 BRONX',
  'bbl': '2031060044',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015287',
  'y_coordinate_state_plane': '246773',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.843955482449644',
  'longitude': '-73.88782429504275',
  'location': {'latitude': '40.843955482449644',
   'longitude': '-73.88782429504275',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600754',
  'created_date': '2024-03-16T23:51:33.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11419',
  'incident_address': '104-28 117 STREET',
  'street_name': '117 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': '117 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:16:33.000',
  'community_board': '10 QUEENS',
  'bbl': '4095700016',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032565',
  'y_coordinate_state_plane': '189111',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68561091285362',
  'longitude': '-73.82579175604369',
  'location': {'latitude': '40.68561091285362',
   'longitude': '-73.82579175604369',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599476',
  'created_date': '2024-03-16T23:51:27.000',
  'closed_date': '2024-03-17T01:00:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10034',
  'incident_address': '5089 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST  216 STREET',
  'cross_street_2': 'WEST  218 STREET',
  'intersection_street_1': 'WEST  216 STREET',
  'intersection_street_2': 'WEST  218 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  '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-03-17T01:00:29.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022430270',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1007892',
  'y_coordinate_state_plane': '256579',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.870892898687906',
  'longitude': '-73.91451712249305',
  'location': {'latitude': '40.870892898687906',
   'longitude': '-73.91451712249305',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603408',
  'created_date': '2024-03-16T23:51:22.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': '10034',
  'incident_address': '61 VERMILYEA AVENUE',
  'street_name': 'VERMILYEA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022250004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005318',
  'y_coordinate_state_plane': '254634',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86556098738824',
  'longitude': '-73.92383009870014',
  'location': {'latitude': '40.86556098738824',
   'longitude': '-73.92383009870014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598624',
  'created_date': '2024-03-16T23:51:17.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': '1245 EDWARD L GRANT HIGHWAY',
  'street_name': 'EDWARD L GRANT HIGHWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '04 BRONX',
  'bbl': '2025060054',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005747',
  'y_coordinate_state_plane': '244229',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83700132457027',
  'longitude': '-73.92231244243682',
  'location': {'latitude': '40.83700132457027',
   'longitude': '-73.92231244243682',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599490',
  'created_date': '2024-03-16T23:50:43.000',
  'closed_date': '2024-03-17T00:21:42.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:21:45.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603110',
  'created_date': '2024-03-16T23:50:43.000',
  'closed_date': '2024-03-17T01:33:00.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': '11222',
  'incident_address': '158 NORMAN AVENUE',
  'street_name': 'NORMAN AVENUE',
  'cross_street_1': 'NEWEL STREET',
  'cross_street_2': 'DIAMOND STREET',
  'intersection_street_1': 'NEWEL STREET',
  'intersection_street_2': 'DIAMOND STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NORMAN 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-03-17T01:33:05.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026510003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998641',
  'y_coordinate_state_plane': '204014',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72663629269381',
  'longitude': '-73.94807880153185',
  'location': {'latitude': '40.72663629269381',
   'longitude': '-73.94807880153185',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600378',
  'created_date': '2024-03-16T23:50:38.000',
  'closed_date': '2024-03-17T00:40: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': '10455',
  'incident_address': 'BECK STREET',
  'street_name': 'BECK STREET',
  'cross_street_1': 'BECK STREET',
  'cross_street_2': 'LEGGETT AVENUE',
  'intersection_street_1': 'BECK STREET',
  'intersection_street_2': 'LEGGETT AVENUE',
  '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-03-17T00:40:47.000',
  'community_board': '02 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011897',
  'y_coordinate_state_plane': '236250',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.815084143591456',
  'longitude': '-73.90011998187153',
  'location': {'latitude': '40.815084143591456',
   'longitude': '-73.90011998187153',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604237',
  'created_date': '2024-03-16T23:50:14.000',
  'closed_date': '2024-03-17T01:21:34.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': '40-51 72 STREET',
  'street_name': '72 STREET',
  'cross_street_1': 'ROOSEVELT AVENUE',
  'cross_street_2': '41 AVENUE',
  'intersection_street_1': 'ROOSEVELT AVENUE',
  'intersection_street_2': '41 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '72 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:21:37.000',
  'community_board': '04 QUEENS',
  'bbl': '4013040001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013787',
  'y_coordinate_state_plane': '211007',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.745792728710896',
  'longitude': '-73.89340298105401',
  'location': {'latitude': '40.745792728710896',
   'longitude': '-73.89340298105401',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599499',
  'created_date': '2024-03-16T23:50:06.000',
  'closed_date': '2024-03-17T00:31:40.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': '10456',
  'incident_address': '1480 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:31:45.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010929',
  'y_coordinate_state_plane': '244302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83718755388138',
  'longitude': '-73.90358504457679',
  'location': {'latitude': '40.83718755388138',
   'longitude': '-73.90358504457679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599135',
  'created_date': '2024-03-16T23:50:04.000',
  'closed_date': '2024-03-17T01:12:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11218',
  'incident_address': '35 MCDONALD AVENUE',
  'street_name': 'MCDONALD AVENUE',
  'cross_street_1': '10 AVENUE',
  'cross_street_2': 'TERRACE PLACE',
  'intersection_street_1': '10 AVENUE',
  'intersection_street_2': 'TERRACE PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MCDONALD 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-03-17T01:12:10.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008957502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989356',
  'y_coordinate_state_plane': '177637',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.654247742544385',
  'longitude': '-73.98159808459668',
  'location': {'latitude': '40.654247742544385',
   'longitude': '-73.98159808459668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605153',
  'created_date': '2024-03-16T23:50:03.000',
  'closed_date': '2024-03-17T01:09: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': '11221',
  'incident_address': 'BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'DEKALB AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'DEKALB AVENUE',
  '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-03-17T01:09:39.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003744',
  'y_coordinate_state_plane': '192077',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.693862297662506',
  'longitude': '-73.92970228883433',
  'location': {'latitude': '40.693862297662506',
   'longitude': '-73.92970228883433',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603868',
  'created_date': '2024-03-16T23:49:58.000',
  'closed_date': '2024-03-17T00:54:52.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': '11229',
  'incident_address': '1505 EAST   29 STREET',
  'street_name': 'EAST   29 STREET',
  'cross_street_1': 'KINGS HIGHWAY',
  'cross_street_2': 'AVENUE P',
  'intersection_street_1': 'KINGS HIGHWAY',
  'intersection_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   29 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-03-17T00:54:57.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3076900044',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999392',
  'y_coordinate_state_plane': '162969',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.61397573092461',
  'longitude': '-73.94546147319575',
  'location': {'latitude': '40.61397573092461',
   'longitude': '-73.94546147319575',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603914',
  'created_date': '2024-03-16T23:49:50.000',
  'closed_date': '2024-03-17T00:18:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11238',
  'incident_address': '605 CARLTON AVENUE',
  'street_name': 'CARLTON AVENUE',
  'cross_street_1': 'ST MARKS AVENUE',
  'cross_street_2': 'PROSPECT PLACE',
  'intersection_street_1': 'ST MARKS AVENUE',
  'intersection_street_2': 'PROSPECT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CARLTON 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-03-17T00:18:18.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011510008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '992082',
  'y_coordinate_state_plane': '186664',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67902285716502',
  'longitude': '-73.97176315213112',
  'location': {'latitude': '40.67902285716502',
   'longitude': '-73.97176315213112',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598797',
  'created_date': '2024-03-16T23:49:43.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': '53 AVENUE',
  'street_name': '53 AVENUE',
  'cross_street_1': 'MAURICE AVENUE',
  'cross_street_2': '62 STREET',
  'intersection_street_1': 'MAURICE AVENUE',
  'intersection_street_2': '62 STREET',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '60603568',
  'created_date': '2024-03-16T23:49:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Unauthorized Bus Layover',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11354',
  'incident_address': '141-05 NORTHERN BOULEVARD',
  'street_name': 'NORTHERN BOULEVARD',
  'cross_street_1': 'BOWNE STREET',
  'cross_street_2': 'PARSONS BOULEVARD',
  'intersection_street_1': 'BOWNE STREET',
  'intersection_street_2': 'PARSONS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'NORTHERN BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4050020042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032569',
  'y_coordinate_state_plane': '217818',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.764404475512904',
  'longitude': '-73.82557122211675',
  'location': {'latitude': '40.764404475512904',
   'longitude': '-73.82557122211675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601219',
  'created_date': '2024-03-16T23:49:29.000',
  'closed_date': '2024-03-17T00:12:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11225',
  'incident_address': '1173 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'RUTLAND ROAD',
  'cross_street_2': 'FENIMORE STREET',
  'intersection_street_1': 'RUTLAND ROAD',
  'intersection_street_2': 'FENIMORE 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-03-17T00:12:48.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3048090002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998006',
  'y_coordinate_state_plane': '179315',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65884427164864',
  'longitude': '-73.95042025028128',
  'location': {'latitude': '40.65884427164864',
   'longitude': '-73.95042025028128',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601353',
  'created_date': '2024-03-16T23:49:28.000',
  'closed_date': '2024-03-17T00:17: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': '10011',
  'incident_address': '61 WEST   10 STREET',
  'street_name': 'WEST   10 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'AVENUE OF THE AMERICAS',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'AVENUE OF THE AMERICAS',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   10 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:17:13.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005740073',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984908',
  'y_coordinate_state_plane': '206816',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.734338778578724',
  'longitude': '-73.99762573165059',
  'location': {'latitude': '40.734338778578724',
   'longitude': '-73.99762573165059',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598399',
  'created_date': '2024-03-16T23:49:22.000',
  'closed_date': '2024-03-17T00:07:28.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-03-17T00:07:32.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': '60603273',
  'created_date': '2024-03-16T23:49:16.000',
  'closed_date': '2024-03-16T23:54: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': '11385',
  'incident_address': '66-28 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:54:55.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011111',
  'y_coordinate_state_plane': '196833',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70689710411462',
  'longitude': '-73.90311704974741',
  'location': {'latitude': '40.70689710411462',
   'longitude': '-73.90311704974741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605126',
  'created_date': '2024-03-16T23:49:15.000',
  'closed_date': '2024-03-17T00:06: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:06:37.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605099',
  'created_date': '2024-03-16T23:49:10.000',
  'closed_date': '2024-03-16T23:52:05.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': '10017',
  'incident_address': '310 EAST   46 STREET',
  'street_name': 'EAST   46 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   46 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-03-16T23:52:09.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1013380005',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '992608',
  'y_coordinate_state_plane': '213308',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75215377197153',
  'longitude': '-73.96983367446778',
  'location': {'latitude': '40.75215377197153',
   'longitude': '-73.96983367446778',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602260',
  'created_date': '2024-03-16T23:49:09.000',
  'closed_date': '2024-03-17T01:08:14.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': '3026 BAINBRIDGE AVENUE',
  'street_name': 'BAINBRIDGE AVENUE',
  'cross_street_1': 'EAST  201 STREET',
  'cross_street_2': 'EAST MOSHOLU PARKWAY SOUTH',
  'intersection_street_1': 'EAST  201 STREET',
  'intersection_street_2': 'EAST MOSHOLU PARKWAY SOUTH',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BAINBRIDGE 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-03-17T01:08:19.000',
  'community_board': '07 BRONX',
  'bbl': '2032990013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016685',
  'y_coordinate_state_plane': '256995',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87200675900803',
  'longitude': '-73.88272210618928',
  'location': {'latitude': '40.87200675900803',
   'longitude': '-73.88272210618928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605025',
  'created_date': '2024-03-16T23:49:09.000',
  'closed_date': '2024-03-17T00: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': '11225',
  'incident_address': '1159 PRESIDENT STREET',
  'street_name': 'PRESIDENT STREET',
  'cross_street_1': 'ROGERS AVENUE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'ROGERS AVENUE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PRESIDENT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:22:14.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3012750064',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997574',
  'y_coordinate_state_plane': '182706',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.668152475151814',
  'longitude': '-73.95197057485875',
  'location': {'latitude': '40.668152475151814',
   'longitude': '-73.95197057485875',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599813',
  'created_date': '2024-03-16T23:49: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': '11365',
  'incident_address': '61-00 FRANCIS LEWIS BOULEVARD',
  'street_name': 'FRANCIS LEWIS BOULEVARD',
  'cross_street_1': 'HORACE HARDING EXPRESSWAY',
  'cross_street_2': '73 AVENUE',
  'intersection_street_1': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_2': '73 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FRESH MEADOWS',
  'landmark': 'FRANCIS LEWIS BOULEVARD',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4071280002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1046476',
  'y_coordinate_state_plane': '209932',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7426725307322',
  'longitude': '-73.77544093564363',
  'location': {'latitude': '40.7426725307322',
   'longitude': '-73.77544093564363',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598372',
  'created_date': '2024-03-16T23:49:03.000',
  'closed_date': '2024-03-17T01:09:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11221',
  'incident_address': '1104 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'DODWORTH STREET',
  'cross_street_2': 'DEKALB AVENUE',
  'intersection_street_1': 'DODWORTH STREET',
  'intersection_street_2': 'DEKALB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  '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-03-17T01:09:51.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016000019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003614',
  'y_coordinate_state_plane': '192169',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69411510167481',
  'longitude': '-73.93017081981881',
  'location': {'latitude': '40.69411510167481',
   'longitude': '-73.93017081981881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599131',
  'created_date': '2024-03-16T23:48:56.000',
  'closed_date': '2024-03-17T01:01:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11234',
  'incident_address': 'AVENUE K',
  'street_name': 'AVENUE K',
  'cross_street_1': 'AVENUE K',
  'cross_street_2': 'EAST   72 STREET',
  'intersection_street_1': 'AVENUE K',
  'intersection_street_2': 'EAST   72 STREET',
  'address_type': 'INTERSECTION',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2024-03-17T01:01:25.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007366',
  'y_coordinate_state_plane': '167855',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.627369561768525',
  'longitude': '-73.91672396653802',
  'location': {'latitude': '40.627369561768525',
   'longitude': '-73.91672396653802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602675',
  'created_date': '2024-03-16T23:48: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': '11356',
  'incident_address': '110-39 15 AVENUE',
  'street_name': '15 AVENUE',
  'cross_street_1': '110 STREET',
  'cross_street_2': '112 STREET',
  'intersection_street_1': '110 STREET',
  'intersection_street_2': '112 STREET',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '15 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:53:15.000',
  'community_board': '07 QUEENS',
  'bbl': '4040600020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024003',
  'y_coordinate_state_plane': '224877',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7838222219688',
  'longitude': '-73.8564521633559',
  'location': {'latitude': '40.7838222219688',
   'longitude': '-73.8564521633559',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601374',
  'created_date': '2024-03-16T23:48:33.000',
  'closed_date': '2024-03-17T01:07: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': '10468',
  'incident_address': '2266 ANDREWS AVENUE',
  'street_name': 'ANDREWS AVENUE',
  'cross_street_1': 'WEST  183 STREET',
  'cross_street_2': 'WEST FORDHAM ROAD',
  'intersection_street_1': 'WEST  183 STREET',
  'intersection_street_2': 'WEST FORDHAM ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANDREWS 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-03-17T01:07:59.000',
  'community_board': '07 BRONX',
  'bbl': '2032180007',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009715',
  'y_coordinate_state_plane': '252894',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86077362675839',
  'longitude': '-73.90793967044966',
  'location': {'latitude': '40.86077362675839',
   'longitude': '-73.90793967044966',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601979',
  'created_date': '2024-03-16T23:48:32.000',
  'closed_date': '2024-03-17T01:10:48.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': '11368',
  'incident_address': '102-05 35 AVENUE',
  'street_name': '35 AVENUE',
  'cross_street_1': '102 STREET',
  'cross_street_2': '103 STREET',
  'intersection_street_1': '102 STREET',
  'intersection_street_2': '103 STREET',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '35 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:10:54.000',
  'community_board': '03 QUEENS',
  'bbl': '4017360022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021411',
  'y_coordinate_state_plane': '214222',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75458833069208',
  'longitude': '-73.86587075739271',
  'location': {'latitude': '40.75458833069208',
   'longitude': '-73.86587075739271',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605358',
  'created_date': '2024-03-16T23:48:29.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': '11209',
  'incident_address': '211 81 STREET',
  'street_name': '81 STREET',
  'cross_street_1': 'RIDGE BOULEVARD',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'RIDGE BOULEVARD',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '81 STREET',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3059870076',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '975462',
  'y_coordinate_state_plane': '167932',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.627606710979336',
  'longitude': '-74.03165912303892',
  'location': {'latitude': '40.627606710979336',
   'longitude': '-74.03165912303892',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603602',
  'created_date': '2024-03-16T23:48: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': '11206',
  'incident_address': '279 LEE AVENUE',
  'street_name': 'LEE AVENUE',
  'cross_street_1': 'WALLABOUT STREET',
  'cross_street_2': 'FLUSHING AVENUE',
  'intersection_street_1': 'WALLABOUT STREET',
  'intersection_street_2': 'FLUSHING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEE AVENUE',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3022640001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997128',
  'y_coordinate_state_plane': '194206',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69971800689027',
  'longitude': '-73.95355630526956',
  'location': {'latitude': '40.69971800689027',
   'longitude': '-73.95355630526956',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598563',
  'created_date': '2024-03-16T23:48:23.000',
  'closed_date': '2024-03-17T00:19:56.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': '104 WEST  113 STREET',
  'street_name': 'WEST  113 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  113 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:19:59.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018220037',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997662',
  'y_coordinate_state_plane': '230842',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.800273761500215',
  'longitude': '-73.95155740097667',
  'location': {'latitude': '40.800273761500215',
   'longitude': '-73.95155740097667',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602210',
  'created_date': '2024-03-16T23:48:18.000',
  'closed_date': '2024-03-17T00:07:09.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-03-17T00:07:13.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': '60599754',
  'created_date': '2024-03-16T23:48:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '31-01 54 STREET',
  'street_name': '54 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': 'WOODSIDE',
  'landmark': '54 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4011320001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1009926',
  'y_coordinate_state_plane': '215016',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75680846711092',
  'longitude': '-73.90732174818272',
  'location': {'latitude': '40.75680846711092',
   'longitude': '-73.90732174818272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598397',
  'created_date': '2024-03-16T23:48:04.000',
  'closed_date': '2024-03-17T00:18: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': '10029',
  'incident_address': '126 EAST  103 STREET',
  'street_name': 'EAST  103 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'LEXINGTON AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'LEXINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST  103 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:18:53.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1016300061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998554',
  'y_coordinate_state_plane': '227311',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79058072637985',
  'longitude': '-73.94834312134499',
  'location': {'latitude': '40.79058072637985',
   'longitude': '-73.94834312134499',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600707',
  'created_date': '2024-03-16T23:47:50.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': '1203 63 STREET',
  'street_name': '63 STREET',
  'cross_street_1': '12 AVENUE',
  'cross_street_2': '13 AVENUE',
  'intersection_street_1': '12 AVENUE',
  'intersection_street_2': '13 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '63 STREET',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3057320080',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983654',
  'y_coordinate_state_plane': '168169',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.628261564958706',
  'longitude': '-74.00214713496399',
  'location': {'latitude': '40.628261564958706',
   'longitude': '-74.00214713496399',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602345',
  'created_date': '2024-03-16T23:47:49.000',
  'closed_date': '2024-03-17T00:31: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': '10456',
  'incident_address': '1480 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:31:18.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010929',
  'y_coordinate_state_plane': '244302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83718755388138',
  'longitude': '-73.90358504457679',
  'location': {'latitude': '40.83718755388138',
   'longitude': '-73.90358504457679',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601394',
  'created_date': '2024-03-16T23:47:41.000',
  'closed_date': '2024-03-17T00:06: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:06:53.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604584',
  'created_date': '2024-03-16T23:47:36.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Missed Collection',
  'descriptor': 'Trash',
  'location_type': 'Street',
  'incident_zip': '11229',
  'incident_address': '1831 EAST   22 STREET',
  'street_name': 'EAST   22 STREET',
  'cross_street_1': 'QUENTIN ROAD',
  'cross_street_2': 'AVENUE R',
  'intersection_street_1': 'QUENTIN ROAD',
  'intersection_street_2': 'AVENUE R',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   22 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3068050054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997899',
  'y_coordinate_state_plane': '160442',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60704206194637',
  'longitude': '-73.950844073955',
  'location': {'latitude': '40.60704206194637',
   'longitude': '-73.950844073955',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601244',
  'created_date': '2024-03-16T23:47:34.000',
  'closed_date': '2024-03-17T00:18:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '10304',
  'incident_address': '180 BURGHER AVENUE',
  'street_name': 'BURGHER AVENUE',
  'cross_street_1': 'REMSEN STREET',
  'cross_street_2': 'NORTH RAILROAD AVENUE',
  'intersection_street_1': 'REMSEN STREET',
  'intersection_street_2': 'NORTH RAILROAD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'BURGHER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:18:04.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5033140030',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '958723',
  'y_coordinate_state_plane': '155184',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.592583669081044',
  'longitude': '-74.0919138249725',
  'location': {'latitude': '40.592583669081044',
   'longitude': '-74.0919138249725',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603320',
  'created_date': '2024-03-16T23:47:29.000',
  'closed_date': '2024-03-17T00:26:54.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': '73 TROY AVENUE',
  'street_name': 'TROY AVENUE',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'PACIFIC STREET',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'PACIFIC STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'TROY 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-03-17T00:26:58.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013350001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002028',
  'y_coordinate_state_plane': '185933',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67700204042484',
  'longitude': '-73.93590660030002',
  'location': {'latitude': '40.67700204042484',
   'longitude': '-73.93590660030002',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600368',
  'created_date': '2024-03-16T23:47:29.000',
  'closed_date': '2024-03-17T01:14: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': '11214',
  'incident_address': '2036 77 STREET',
  'street_name': '77 STREET',
  'cross_street_1': '20 AVENUE',
  'cross_street_2': '21 AVENUE',
  'intersection_street_1': '20 AVENUE',
  'intersection_street_2': '21 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '77 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-03-17T01:15:01.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3062510020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '986447',
  'y_coordinate_state_plane': '161201',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6091356006654',
  'longitude': '-73.9920874092836',
  'location': {'latitude': '40.6091356006654',
   'longitude': '-73.9920874092836',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602619',
  'created_date': '2024-03-16T23:47:00.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': '8793 BAY PARKWAY',
  'street_name': 'BAY PARKWAY',
  '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': 'BAY PARKWAY',
  'status': 'In Progress',
  'community_board': '11 BROOKLYN',
  'bbl': '3064480021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984841',
  'y_coordinate_state_plane': '157150',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59801668308081',
  'longitude': '-73.99787184233872',
  'location': {'latitude': '40.59801668308081',
   'longitude': '-73.99787184233872',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600475',
  'created_date': '2024-03-16T23:46:44.000',
  'closed_date': '2024-03-17T00:17:20.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': '10459',
  'incident_address': '1214 WESTCHESTER AVENUE',
  'street_name': 'WESTCHESTER AVENUE',
  'cross_street_1': 'FAILE STREET',
  'cross_street_2': 'BRYANT AVENUE',
  'intersection_street_1': 'FAILE STREET',
  'intersection_street_2': 'BRYANT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WESTCHESTER AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:17:23.000',
  'community_board': '02 BRONX',
  'bbl': '2027500022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014900',
  'y_coordinate_state_plane': '240239',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.826022905668054',
  'longitude': '-73.88925286771357',
  'location': {'latitude': '40.826022905668054',
   'longitude': '-73.88925286771357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599491',
  'created_date': '2024-03-16T23:46:34.000',
  'closed_date': '2024-03-17T00:06:19.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:06:23.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600854',
  'created_date': '2024-03-16T23:46:28.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Missed Collection',
  'descriptor': 'Trash',
  'location_type': 'Street',
  'incident_zip': '10312',
  'incident_address': '257 POILLON AVENUE',
  'street_name': 'POILLON AVENUE',
  'cross_street_1': 'AMBOY ROAD',
  'cross_street_2': 'ALLEGRO STREET',
  'intersection_street_1': 'AMBOY ROAD',
  'intersection_street_2': 'ALLEGRO STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'POILLON AVENUE',
  'status': 'In Progress',
  'resolution_description': 'The Department of Sanitation collected the requested items.',
  'resolution_action_updated_date': '2024-03-17T00:00:52.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5064420041',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '935325',
  'y_coordinate_state_plane': '132016',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.528893834105325',
  'longitude': '-74.17599408967445',
  'location': {'latitude': '40.528893834105325',
   'longitude': '-74.17599408967445',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602218',
  'created_date': '2024-03-16T23:46:24.000',
  'closed_date': '2024-03-16T23:54:28.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': '10031',
  'incident_address': '559 WEST  149 STREET',
  'street_name': 'WEST  149 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': 'WEST  149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:54:32.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020810006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998837',
  'y_coordinate_state_plane': '241103',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.828435472653496',
  'longitude': '-73.94729113669881',
  'location': {'latitude': '40.828435472653496',
   'longitude': '-73.94729113669881',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603752',
  'created_date': '2024-03-16T23:46:23.000',
  'closed_date': '2024-03-17T00:46:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10001',
  'incident_address': '311 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': 'WEST   29 STREET',
  'cross_street_2': 'WEST   30 STREET',
  'intersection_street_1': 'WEST   29 STREET',
  'intersection_street_2': 'WEST   30 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '11 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:46:58.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1006750012',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983137',
  'y_coordinate_state_plane': '213619',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.753011268221584',
  'longitude': '-74.0040171753845',
  'location': {'latitude': '40.753011268221584',
   'longitude': '-74.0040171753845',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603396',
  'created_date': '2024-03-16T23:46: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': '10040',
  'incident_address': '600 WEST  192 STREET',
  'street_name': 'WEST  192 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The complaint you filed is a duplicate of a condition already reported by another tenant for a building-wide condition. The original complaint is still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection of your unit if the original complainant is not available for verification.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021690029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003928',
  'y_coordinate_state_plane': '251236',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85623771170069',
  'longitude': '-73.92886552195142',
  'location': {'latitude': '40.85623771170069',
   'longitude': '-73.92886552195142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603922',
  'created_date': '2024-03-16T23:46:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Cycling',
  'incident_address': 'BRONX RVR PKWY',
  'street_name': 'BRONX RVR PKWY',
  'cross_street_1': 'NONAME ST',
  'address_type': 'BLOCKFACE',
  'status': 'Open',
  'community_board': 'Unspecified BRONX',
  'borough': 'BRONX',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX'},
 {'unique_key': '60600294',
  'created_date': '2024-03-16T23:46:00.000',
  'closed_date': '2024-03-17T00:15:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:15:22.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598461',
  'created_date': '2024-03-16T23:45:59.000',
  'closed_date': '2024-03-16T23:54: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': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-16T23:54:46.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598572',
  'created_date': '2024-03-16T23:45:57.000',
  'closed_date': '2024-03-16T23:51: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': '10031',
  'incident_address': '568 WEST  149 STREET',
  'street_name': 'WEST  149 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': 'WEST  149 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:51:49.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020800059',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998780',
  'y_coordinate_state_plane': '241128',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82850418445052',
  'longitude': '-73.94749704707705',
  'location': {'latitude': '40.82850418445052',
   'longitude': '-73.94749704707705',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598473',
  'created_date': '2024-03-16T23:45:51.000',
  'closed_date': '2024-03-17T00:14: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': '11232',
  'incident_address': '153 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:14:08.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984226',
  'y_coordinate_state_plane': '180030',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66081747439813',
  'longitude': '-74.00008650400753',
  'location': {'latitude': '40.66081747439813',
   'longitude': '-74.00008650400753',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598629',
  'created_date': '2024-03-16T23:45: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': '10040',
  'incident_address': '600 WEST  192 STREET',
  'street_name': 'WEST  192 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021690029',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003928',
  'y_coordinate_state_plane': '251236',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.85623771170069',
  'longitude': '-73.92886552195142',
  'location': {'latitude': '40.85623771170069',
   'longitude': '-73.92886552195142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605037',
  'created_date': '2024-03-16T23:45:30.000',
  'closed_date': '2024-03-17T00:20: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': '10465',
  'incident_address': '2830 SCHLEY AVENUE',
  'street_name': 'SCHLEY AVENUE',
  'cross_street_1': 'BALCOM AVENUE',
  'cross_street_2': 'CROSS BRONX EXPRESSWAY',
  'intersection_street_1': 'BALCOM AVENUE',
  'intersection_street_2': 'CROSS BRONX EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SCHLEY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:20:04.000',
  'community_board': '10 BRONX',
  'bbl': '2055640001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033240',
  'y_coordinate_state_plane': '239407',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82365662505882',
  'longitude': '-73.82299147388855',
  'location': {'latitude': '40.82365662505882',
   'longitude': '-73.82299147388855',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598534',
  'created_date': '2024-03-16T23:45:26.000',
  'closed_date': '2024-03-17T00:05: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:06:03.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603912',
  'created_date': '2024-03-16T23:45:12.000',
  'closed_date': '2024-03-17T01:37:42.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': '11249',
  'incident_address': 'SOUTH    8 STREET',
  'street_name': 'SOUTH    8 STREET',
  'cross_street_1': 'KENT AVENUE',
  'cross_street_2': 'WYTHE AVENUE',
  'intersection_street_1': 'KENT AVENUE',
  'intersection_street_2': 'WYTHE AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:37:48.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car'},
 {'unique_key': '60600226',
  'created_date': '2024-03-16T23:45:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10461',
  'incident_address': '1680 STILLWELL AVENUE',
  'street_name': 'STILLWELL AVENUE',
  'cross_street_1': 'PELHAM PKWY N',
  'cross_street_2': 'RHINELANDER AVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '11 BRONX',
  'bbl': '2042230024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028682',
  'y_coordinate_state_plane': '251234',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.856142346105834',
  'longitude': '-73.83938184671064',
  'location': {'latitude': '40.856142346105834',
   'longitude': '-73.83938184671064',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599413',
  'created_date': '2024-03-16T23:44:54.000',
  'closed_date': '2024-03-17T00:26: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': '11220',
  'incident_address': '253 67 STREET',
  'street_name': '67 STREET',
  'cross_street_1': 'RIDGE BOULEVARD',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'RIDGE BOULEVARD',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '67 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-03-17T00:26:38.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3058410052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '977002',
  'y_coordinate_state_plane': '171795',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.638211220682',
  'longitude': '-74.02611536049568',
  'location': {'latitude': '40.638211220682',
   'longitude': '-74.02611536049568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599563',
  'created_date': '2024-03-16T23:44:53.000',
  'closed_date': '2024-03-17T01:39: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': '11211',
  'incident_address': '385 SOUTH    2 STREET',
  'street_name': 'SOUTH    2 STREET',
  'cross_street_1': 'HOOPER STREET',
  'cross_street_2': 'HEWES STREET',
  'intersection_street_1': 'HOOPER STREET',
  'intersection_street_2': 'HEWES STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    2 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:39:43.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024130031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997572',
  'y_coordinate_state_plane': '197796',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Other',
  'latitude': '40.70957105333611',
  'longitude': '-73.95194794536684',
  'location': {'latitude': '40.70957105333611',
   'longitude': '-73.95194794536684',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599448',
  'created_date': '2024-03-16T23:44:42.000',
  'closed_date': '2024-03-16T23:53:54.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': '10031',
  'incident_address': '526 WEST  147 STREET',
  'street_name': 'WEST  147 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': 'WEST  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:53:57.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020780049',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998756',
  'y_coordinate_state_plane': '240547',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.826909545027505',
  'longitude': '-73.947585025272',
  'location': {'latitude': '40.826909545027505',
   'longitude': '-73.947585025272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598468',
  'created_date': '2024-03-16T23:44:41.000',
  'closed_date': '2024-03-17T00:15: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': '10025',
  'incident_address': '18 WEST  103 STREET',
  'street_name': 'WEST  103 STREET',
  'cross_street_1': 'CENTRAL PARK WEST',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'CENTRAL PARK WEST',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  103 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:16:03.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018380044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994615',
  'y_coordinate_state_plane': '229493',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79657522387224',
  'longitude': '-73.96256489470255',
  'location': {'latitude': '40.79657522387224',
   'longitude': '-73.96256489470255',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599814',
  'created_date': '2024-03-16T23:44: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': '11357',
  'incident_address': '21 AVENUE',
  'street_name': '21 AVENUE',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'CLINTONVILLE STREET',
  'intersection_street_1': '21 AVENUE',
  'intersection_street_2': 'CLINTONVILLE STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038345',
  'y_coordinate_state_plane': '223188',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.77911023134818',
  'longitude': '-73.80467703851485',
  'location': {'latitude': '40.77911023134818',
   'longitude': '-73.80467703851485',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600452',
  'created_date': '2024-03-16T23:44:23.000',
  'closed_date': '2024-03-17T00: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:05:16.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602027',
  'created_date': '2024-03-16T23:44:20.000',
  'closed_date': '2024-03-16T23:58:32.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': '159 WEST   53 STREET',
  'street_name': 'WEST   53 STREET',
  'cross_street_1': '6 1/2 AVENUE',
  'cross_street_2': '7 AVENUE',
  'intersection_street_1': '6 1/2 AVENUE',
  'intersection_street_2': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   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-03-16T23:58:36.000',
  'community_board': '05 MANHATTAN',
  'bbl': '1010067501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989441',
  'y_coordinate_state_plane': '217154',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.76271248631404',
  'longitude': '-73.98126128039407',
  'location': {'latitude': '40.76271248631404',
   'longitude': '-73.98126128039407',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604113',
  'created_date': '2024-03-16T23:44:16.000',
  'closed_date': '2024-03-16T23:53: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': '10456',
  'incident_address': '1465 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'ST PAULS PLACE',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'ST PAULS PLACE',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON 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-03-16T23:54:00.000',
  'community_board': '03 BRONX',
  'bbl': '2029020036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010885',
  'y_coordinate_state_plane': '244212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83694066292417',
  'longitude': '-73.90374441298103',
  'location': {'latitude': '40.83694066292417',
   'longitude': '-73.90374441298103',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602947',
  'created_date': '2024-03-16T23:44:00.000',
  'closed_date': '2024-03-17T01:12:21.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': '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 responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:12:26.000',
  'community_board': '02 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987107',
  'y_coordinate_state_plane': '194711',
  'open_data_channel_type': 'MOBILE',
  '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': '60602101',
  'created_date': '2024-03-16T23:44:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '10461',
  'incident_address': '1533 STILLWELL AVENUE',
  'street_name': 'STILLWELL AVENUE',
  'cross_street_1': 'EASTCHESTER RD',
  'cross_street_2': 'SEMINOLE ST',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1027823',
  'y_coordinate_state_plane': '250457',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8540139976219',
  'longitude': '-73.84249210723364',
  'location': {'latitude': '40.8540139976219',
   'longitude': '-73.84249210723364',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598814',
  'created_date': '2024-03-16T23:43:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11211',
  'incident_address': '181 NORTH   10 STREET',
  'street_name': 'NORTH   10 STREET',
  'cross_street_1': 'BEDFORD AVENUE',
  'cross_street_2': 'DRIGGS AVENUE',
  'intersection_street_1': 'BEDFORD AVENUE',
  'intersection_street_2': 'DRIGGS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NORTH   10 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:11:28.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3022980021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996710',
  'y_coordinate_state_plane': '201213',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71895115707354',
  'longitude': '-73.9550508285691',
  'location': {'latitude': '40.71895115707354',
   'longitude': '-73.9550508285691',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601297',
  'created_date': '2024-03-16T23:43:39.000',
  'closed_date': '2024-03-17T00:11: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': '11237',
  'incident_address': '139 STARR STREET',
  'street_name': 'STARR 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': 'STARR 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-03-17T00:11:07.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031870052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005084',
  'y_coordinate_state_plane': '195540',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.7033643685691',
  'longitude': '-73.92485937762685',
  'location': {'latitude': '40.7033643685691',
   'longitude': '-73.92485937762685',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598525',
  'created_date': '2024-03-16T23:43:39.000',
  'closed_date': '2024-03-17T01:07:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10468',
  'incident_address': '2690 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST KINGSBRIDGE ROAD',
  'cross_street_2': 'EAST  196 STREET',
  'intersection_street_1': 'EAST KINGSBRIDGE ROAD',
  'intersection_street_2': 'EAST  196 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS 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-03-17T01:07:34.000',
  'community_board': '07 BRONX',
  'bbl': '2033160013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013058',
  'y_coordinate_state_plane': '255392',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.867619599701904',
  'longitude': '-73.89584342666986',
  'location': {'latitude': '40.867619599701904',
   'longitude': '-73.89584342666986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600832',
  'created_date': '2024-03-16T23:43:37.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Store/Commercial',
  'incident_zip': '11220',
  'incident_address': '5924 8 AVENUE',
  'street_name': '8 AVENUE',
  'cross_street_1': '59 STREET',
  'cross_street_2': '60 STREET',
  'intersection_street_1': '59 STREET',
  'intersection_street_2': '60 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '8 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-03-16T23:47:44.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008660049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981709',
  'y_coordinate_state_plane': '170950',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63589447686178',
  'longitude': '-74.00915519127616',
  'location': {'latitude': '40.63589447686178',
   'longitude': '-74.00915519127616',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604051',
  'created_date': '2024-03-16T23:43:11.000',
  'closed_date': '2024-03-17T00:27:58.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': '10027',
  'incident_address': '2247 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST  132 STREET',
  'cross_street_2': 'WEST  133 STREET',
  'intersection_street_1': 'WEST  132 STREET',
  'intersection_street_2': 'WEST  133 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:28:03.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019170002',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999480',
  'y_coordinate_state_plane': '235676',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81353880775362',
  'longitude': '-73.94498002946125',
  'location': {'latitude': '40.81353880775362',
   'longitude': '-73.94498002946125',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600771',
  'created_date': '2024-03-16T23:43: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': '10461',
  'incident_address': '1315 COMMERCE AVENUE',
  'street_name': 'COMMERCE AVENUE',
  'cross_street_1': 'WATERBURY AVENUE',
  'cross_street_2': 'HALSEY STREET',
  'intersection_street_1': 'WATERBURY AVENUE',
  'intersection_street_2': 'HALSEY STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COMMERCE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2038520164',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028492',
  'y_coordinate_state_plane': '243858',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.835898382519844',
  'longitude': '-73.84011734660629',
  'location': {'latitude': '40.835898382519844',
   'longitude': '-73.84011734660629',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600453',
  'created_date': '2024-03-16T23:43:05.000',
  'closed_date': '2024-03-17T00:04: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:04:31.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598407',
  'created_date': '2024-03-16T23:42:39.000',
  'closed_date': '2024-03-17T01:24:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11210',
  'incident_address': '3111 AURELIA COURT',
  'street_name': 'AURELIA COURT',
  'cross_street_1': 'EAST   31 STREET',
  'cross_street_2': 'EAST   32 STREET',
  'intersection_street_1': 'EAST   31 STREET',
  'intersection_street_2': 'EAST   32 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AURELIA COURT',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:24:40.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3075770025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999282',
  'y_coordinate_state_plane': '168813',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.630016475236744',
  'longitude': '-73.94584465849762',
  'location': {'latitude': '40.630016475236744',
   'longitude': '-73.94584465849762',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601029',
  'created_date': '2024-03-16T23:42:35.000',
  'closed_date': '2024-03-17T01:02: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': '11210',
  'incident_address': '1737 ALBANY AVENUE',
  'street_name': 'ALBANY AVENUE',
  'cross_street_1': 'EAST   40 STREET',
  'cross_street_2': 'AVENUE I',
  'intersection_street_1': 'EAST   40 STREET',
  'intersection_street_2': 'AVENUE I',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ALBANY 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-03-17T01:02:10.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3077450019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001779',
  'y_coordinate_state_plane': '169123',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63086277042666',
  'longitude': '-73.93684798823416',
  'location': {'latitude': '40.63086277042666',
   'longitude': '-73.93684798823416',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598829',
  'created_date': '2024-03-16T23:42: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': '11211',
  'incident_address': '298 GRAHAM AVENUE',
  'street_name': 'GRAHAM AVENUE',
  'cross_street_1': 'POWERS STREET',
  'cross_street_2': 'AINSLIE STREET',
  'intersection_street_1': 'POWERS STREET',
  'intersection_street_2': 'AINSLIE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAHAM AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:13:37.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027777502',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999758',
  'y_coordinate_state_plane': '198911',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.712627901345236',
  'longitude': '-73.9440605425944',
  'location': {'latitude': '40.712627901345236',
   'longitude': '-73.9440605425944',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600583',
  'created_date': '2024-03-16T23:42:14.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'UNSANITARY CONDITION',
  'descriptor': 'SEWAGE',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11204',
  'incident_address': '1479 DAHILL ROAD',
  'street_name': 'DAHILL ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3065820068',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991292',
  'y_coordinate_state_plane': '162230',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61195746829367',
  'longitude': '-73.97463685940265',
  'location': {'latitude': '40.61195746829367',
   'longitude': '-73.97463685940265',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601548',
  'created_date': '2024-03-16T23:42:05.000',
  'closed_date': '2024-03-17T00:52: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': '11412',
  'incident_address': '187-01 120 AVENUE',
  'street_name': '120 AVENUE',
  'cross_street_1': 'LIRR MONTAUK LINE',
  'cross_street_2': 'FARMERS BOULEVARD',
  'intersection_street_1': 'LIRR MONTAUK LINE',
  'intersection_street_2': 'FARMERS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': '120 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:52:37.000',
  'community_board': '12 QUEENS',
  'bbl': '4124550233',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1050119',
  'y_coordinate_state_plane': '189341',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Truck',
  'latitude': '40.68612898008182',
  'longitude': '-73.762495736977',
  'location': {'latitude': '40.68612898008182',
   'longitude': '-73.762495736977',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603267',
  'created_date': '2024-03-16T23:42:03.000',
  'closed_date': '2024-03-17T00:10: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': '11216',
  'incident_address': '91 MACON STREET',
  'street_name': 'MACON STREET',
  'cross_street_1': 'VERONA PLACE',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'VERONA PLACE',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MACON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:10:27.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018440067',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998794',
  'y_coordinate_state_plane': '187508',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.681330962000644',
  'longitude': '-73.94756244294499',
  'location': {'latitude': '40.681330962000644',
   'longitude': '-73.94756244294499',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601784',
  'created_date': '2024-03-16T23:42:03.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Obstruction',
  'descriptor': 'Trash or Recycling',
  'location_type': 'Sidewalk',
  'incident_zip': '10465',
  'incident_address': '1059 VINCENT AVENUE',
  'street_name': 'VINCENT AVENUE',
  'cross_street_1': 'BARKLEY AVENUE',
  'cross_street_2': 'LAYTON AVENUE',
  'intersection_street_1': 'BARKLEY AVENUE',
  'intersection_street_2': 'LAYTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VINCENT AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2054590009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033951',
  'y_coordinate_state_plane': '243294',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83432133380996',
  'longitude': '-73.82039373094585',
  'location': {'latitude': '40.83432133380996',
   'longitude': '-73.82039373094585',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599493',
  'created_date': '2024-03-16T23:41:40.000',
  'closed_date': '2024-03-17T00:03: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:03:46.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604947',
  'created_date': '2024-03-16T23:41:32.000',
  'closed_date': '2024-03-17T00:34:43.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': '859 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': 'MARTENSE STREET',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': 'MARTENSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FLATBUSH 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-03-17T00:34:48.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050860001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995638',
  'y_coordinate_state_plane': '176601',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65139829818225',
  'longitude': '-73.95895964189803',
  'location': {'latitude': '40.65139829818225',
   'longitude': '-73.95895964189803',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605061',
  'created_date': '2024-03-16T23:41:32.000',
  'closed_date': '2024-03-16T23:52:28.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': '31 TIEMANN PLACE',
  'street_name': 'TIEMANN PLACE',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'CLAREMONT AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'CLAREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'TIEMANN PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:52:31.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019957501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '995514',
  'y_coordinate_state_plane': '236342',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81537273845797',
  'longitude': '-73.95930649981621',
  'location': {'latitude': '40.81537273845797',
   'longitude': '-73.95930649981621',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604378',
  'created_date': '2024-03-16T23:41:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '89-02 23 AVENUE',
  'street_name': '23 AVENUE',
  'cross_street_1': '89 STREET',
  'cross_street_2': '90 STREET',
  'intersection_street_1': '89 STREET',
  'intersection_street_2': '90 STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '23 AVENUE',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017271',
  'y_coordinate_state_plane': '218972',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.767642279255774',
  'longitude': '-73.88079035854909',
  'location': {'latitude': '40.767642279255774',
   'longitude': '-73.88079035854909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599426',
  'created_date': '2024-03-16T23:41:28.000',
  'closed_date': '2024-03-16T23:56:28.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': '10025',
  'incident_address': '120 WEST   97 STREET',
  'street_name': 'WEST   97 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   97 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:56:30.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018510008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993141',
  'y_coordinate_state_plane': '228521',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.793908953480674',
  'longitude': '-73.96788980334472',
  'location': {'latitude': '40.793908953480674',
   'longitude': '-73.96788980334472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604500',
  'created_date': '2024-03-16T23:41:19.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': '11360',
  'incident_address': '201-10 CROSS ISLAND PARKWAY',
  'street_name': 'CROSS ISLAND PARKWAY',
  'cross_street_1': '201 STREET',
  'cross_street_2': 'CROSS ISLAND PARKWAY ET   33 SB',
  'intersection_street_1': '201 STREET',
  'intersection_street_2': 'CROSS ISLAND PARKWAY ET   33 SB',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': 'CROSS ISLAND PARKWAY',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4057750100',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041550',
  'y_coordinate_state_plane': '225908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.78655569162361',
  'longitude': '-73.7930814605531',
  'location': {'latitude': '40.78655569162361',
   'longitude': '-73.7930814605531',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603557',
  'created_date': '2024-03-16T23:40:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11357',
  'incident_address': '150-14 22 AVENUE',
  'street_name': '22 AVENUE',
  'cross_street_1': '150 STREET',
  'cross_street_2': 'MURRAY STREET',
  'intersection_street_1': '150 STREET',
  'intersection_street_2': 'MURRAY STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '22 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4046920052',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035767',
  'y_coordinate_state_plane': '223083',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77883743655346',
  'longitude': '-73.81398630173537',
  'location': {'latitude': '40.77883743655346',
   'longitude': '-73.81398630173537',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598505',
  'created_date': '2024-03-16T23:40:51.000',
  'closed_date': '2024-03-17T00:07:14.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': '10304',
  'incident_address': '33 JACKSON STREET',
  'street_name': 'JACKSON STREET',
  'cross_street_1': 'TAXTER PLACE',
  'cross_street_2': 'BEACH STREET',
  'intersection_street_1': 'TAXTER PLACE',
  'intersection_street_2': 'BEACH STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'JACKSON 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-03-17T00:07:18.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005150072',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '962088',
  'y_coordinate_state_plane': '168985',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.630473610323044',
  'longitude': '-74.07984293434507',
  'location': {'latitude': '40.630473610323044',
   'longitude': '-74.07984293434507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601127',
  'created_date': '2024-03-16T23:40:50.000',
  'closed_date': '2024-03-17T01:08:45.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': '1926 SCHENECTADY AVENUE',
  'street_name': 'SCHENECTADY AVENUE',
  'cross_street_1': 'AVENUE K',
  'cross_street_2': 'FLATLANDS AVENUE',
  'intersection_street_1': 'AVENUE K',
  'intersection_street_2': 'FLATLANDS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHENECTADY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:08:50.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003543',
  'y_coordinate_state_plane': '167106',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.625322865488485',
  'longitude': '-73.93049856498372',
  'location': {'latitude': '40.625322865488485',
   'longitude': '-73.93049856498372',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598827',
  'created_date': '2024-03-16T23:40: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': '11207',
  'incident_address': '410 WARWICK STREET',
  'street_name': 'WARWICK STREET',
  'cross_street_1': 'GLENMORE AVENUE',
  'cross_street_2': 'PITKIN AVENUE',
  'intersection_street_1': 'GLENMORE AVENUE',
  'intersection_street_2': 'PITKIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WARWICK STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039980030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1015889',
  'y_coordinate_state_plane': '184752',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67372177519043',
  'longitude': '-73.88594039104395',
  'location': {'latitude': '40.67372177519043',
   'longitude': '-73.88594039104395',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601689',
  'created_date': '2024-03-16T23:40: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': '11357',
  'incident_address': '157 STREET',
  'street_name': '157 STREET',
  'cross_street_1': '23 AVENUE',
  'cross_street_2': '157 STREET',
  'intersection_street_1': '23 AVENUE',
  'intersection_street_2': '157 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037870',
  'y_coordinate_state_plane': '222513',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.777260433221116',
  'longitude': '-73.80639752090221',
  'location': {'latitude': '40.777260433221116',
   'longitude': '-73.80639752090221',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599452',
  'created_date': '2024-03-16T23:40:18.000',
  'closed_date': '2024-03-17T00:15:47.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': '10025',
  'incident_address': '18 WEST  103 STREET',
  'street_name': 'WEST  103 STREET',
  'cross_street_1': 'CENTRAL PARK WEST',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'CENTRAL PARK WEST',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  103 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:15:55.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018380044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '994615',
  'y_coordinate_state_plane': '229493',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79657522387224',
  'longitude': '-73.96256489470255',
  'location': {'latitude': '40.79657522387224',
   'longitude': '-73.96256489470255',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604195',
  'created_date': '2024-03-16T23:40:00.000',
  'closed_date': '2024-03-17T00:03: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:03:31.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598509',
  'created_date': '2024-03-16T23:39:51.000',
  'closed_date': '2024-03-17T00:27:50.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': '604 EAST    9 STREET',
  'street_name': 'EAST    9 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    9 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:27:54.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003910009',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989888',
  'y_coordinate_state_plane': '203774',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.725987460624225',
  'longitude': '-73.97965889428309',
  'location': {'latitude': '40.725987460624225',
   'longitude': '-73.97965889428309',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601566',
  'created_date': '2024-03-16T23:39:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11418',
  'incident_address': '113-20 93 AVENUE',
  'street_name': '93 AVENUE',
  'cross_street_1': '113 STREET',
  'cross_street_2': '114 STREET',
  'intersection_street_1': '113 STREET',
  'intersection_street_2': '114 STREET',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': '93 AVENUE',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4093200111',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030515',
  'y_coordinate_state_plane': '191966',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69345816969675',
  'longitude': '-73.83316376776551',
  'location': {'latitude': '40.69345816969675',
   'longitude': '-73.83316376776551',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605373',
  'created_date': '2024-03-16T23:39:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10465',
  'incident_address': '1059 VINCENT AVENUE',
  'street_name': 'VINCENT AVENUE',
  'cross_street_1': 'BARKLEY AVENUE',
  'cross_street_2': 'LAYTON AVENUE',
  'intersection_street_1': 'BARKLEY AVENUE',
  'intersection_street_2': 'LAYTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VINCENT AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2054590009',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033951',
  'y_coordinate_state_plane': '243294',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83432133380996',
  'longitude': '-73.82039373094585',
  'location': {'latitude': '40.83432133380996',
   'longitude': '-73.82039373094585',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601687',
  'created_date': '2024-03-16T23:39:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11222',
  'incident_address': '106 DIAMOND STREET',
  'street_name': 'DIAMOND STREET',
  'cross_street_1': 'NASSAU AVENUE',
  'cross_street_2': 'NORMAN AVENUE',
  'intersection_street_1': 'NASSAU AVENUE',
  'intersection_street_2': 'NORMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DIAMOND STREET',
  'status': 'In Progress',
  'community_board': '01 BROOKLYN',
  'bbl': '3026520051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998880',
  'y_coordinate_state_plane': '203882',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72627359281697',
  'longitude': '-73.94721680210836',
  'location': {'latitude': '40.72627359281697',
   'longitude': '-73.94721680210836',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603619',
  'created_date': '2024-03-16T23:39: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': '11208',
  'incident_address': '3015 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'LINWOOD STREET',
  'cross_street_2': 'ESSEX STREET',
  'intersection_street_1': 'LINWOOD STREET',
  'intersection_street_2': 'ESSEX STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FULTON STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039420016',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016579',
  'y_coordinate_state_plane': '187164',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68033967177625',
  'longitude': '-73.88344135165052',
  'location': {'latitude': '40.68033967177625',
   'longitude': '-73.88344135165052',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599485',
  'created_date': '2024-03-16T23:39:03.000',
  'closed_date': '2024-03-16T23:55: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': '10473',
  'incident_address': '1720 LACOMBE AVENUE',
  'street_name': 'LACOMBE AVENUE',
  'cross_street_1': 'BRONX RIVER AVENUE',
  'cross_street_2': 'SOUNDVIEW PARK PATH',
  'intersection_street_1': 'BRONX RIVER AVENUE',
  'intersection_street_2': 'SOUNDVIEW PARK PATH',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'LACOMBE 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-03-16T23:55:20.000',
  'community_board': '09 BRONX',
  'bbl': '2034910001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021360',
  'y_coordinate_state_plane': '236028',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81444013280825',
  'longitude': '-73.86593437808237',
  'location': {'latitude': '40.81444013280825',
   'longitude': '-73.86593437808237',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601395',
  'created_date': '2024-03-16T23:38:59.000',
  'closed_date': '2024-03-17T00:03: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:03:17.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605174',
  'created_date': '2024-03-16T23:38:51.000',
  'closed_date': '2024-03-17T00:29:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1120 ANDERSON AVENUE',
  'street_name': 'ANDERSON AVENUE',
  'cross_street_1': 'WEST  166 STREET',
  'cross_street_2': 'WEST  167 STREET',
  'intersection_street_1': 'WEST  166 STREET',
  'intersection_street_2': 'WEST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANDERSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:30:03.000',
  'community_board': '04 BRONX',
  'bbl': '2025050044',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004995',
  'y_coordinate_state_plane': '243520',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'vehicle_type': 'SUV',
  'latitude': '40.83505712389516',
  'longitude': '-73.92503227094195',
  'location': {'latitude': '40.83505712389516',
   'longitude': '-73.92503227094195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605064',
  'created_date': '2024-03-16T23:38:43.000',
  'closed_date': '2024-03-16T23:56: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': '10025',
  'incident_address': '120 WEST   97 STREET',
  'street_name': 'WEST   97 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   97 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:56:06.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018510008',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '993141',
  'y_coordinate_state_plane': '228521',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.793908953480674',
  'longitude': '-73.96788980334472',
  'location': {'latitude': '40.793908953480674',
   'longitude': '-73.96788980334472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598564',
  'created_date': '2024-03-16T23:38:41.000',
  'closed_date': '2024-03-17T01:03:06.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': '11229',
  'incident_address': 'MARINE PARK',
  'street_name': 'MARINE PARK',
  'cross_street_1': 'BURNETT STREET',
  'cross_street_2': 'EAST   33 STREET',
  'intersection_street_1': 'BURNETT STREET',
  'intersection_street_2': 'EAST   33 STREET',
  'address_type': 'UNRECOGNIZED',
  'city': 'BROOKLYN',
  'landmark': 'MARINE PARK',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T01:03:08.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3085900600',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006747',
  'y_coordinate_state_plane': '156658',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59663770945727',
  'longitude': '-73.91899123356184',
  'location': {'latitude': '40.59663770945727',
   'longitude': '-73.91899123356184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603593',
  'created_date': '2024-03-16T23:38:28.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11208',
  'incident_address': '110 DINSMORE PLACE',
  'street_name': 'DINSMORE PLACE',
  'cross_street_1': 'RICHMOND STREET',
  'cross_street_2': 'CHESTNUT STREET',
  'intersection_street_1': 'RICHMOND STREET',
  'intersection_street_2': 'CHESTNUT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DINSMORE PLACE',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3041427501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1018809',
  'y_coordinate_state_plane': '187563',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68142640964559',
  'longitude': '-73.87539929655513',
  'location': {'latitude': '40.68142640964559',
   'longitude': '-73.87539929655513',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603179',
  'created_date': '2024-03-16T23:38:10.000',
  'closed_date': '2024-03-17T00:34:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11361',
  'incident_address': '43-01 201 STREET',
  'street_name': '201 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'NORTHERN BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'NORTHERN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': '201 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-03-17T00:34:15.000',
  'community_board': '11 QUEENS',
  'bbl': '4062620001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044526',
  'y_coordinate_state_plane': '215531',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75805383048295',
  'longitude': '-73.78242781381614',
  'location': {'latitude': '40.75805383048295',
   'longitude': '-73.78242781381614',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603553',
  'created_date': '2024-03-16T23:38:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11104',
  'incident_address': '43-01 39 STREET',
  'street_name': '39 STREET',
  'cross_street_1': '43 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '43 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'SUNNYSIDE',
  'landmark': '39 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:57:01.000',
  'community_board': '02 QUEENS',
  'bbl': '4001910020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004799',
  'y_coordinate_state_plane': '210901',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74552723846362',
  'longitude': '-73.92584036515933',
  'location': {'latitude': '40.74552723846362',
   'longitude': '-73.92584036515933',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602662',
  'created_date': '2024-03-16T23:37:53.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': '11357',
  'incident_address': '2-16 149 STREET',
  'street_name': '149 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': 'WHITESTONE',
  'landmark': '149 STREET',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4044670012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033833',
  'y_coordinate_state_plane': '230251',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.79852269372435',
  'longitude': '-73.82091651090973',
  'location': {'latitude': '40.79852269372435',
   'longitude': '-73.82091651090973',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601396',
  'created_date': '2024-03-16T23:37:46.000',
  'closed_date': '2024-03-17T00:01:37.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:01:41.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601241',
  'created_date': '2024-03-16T23:37:23.000',
  'closed_date': '2024-03-17T00:59:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11206',
  'incident_address': '247 VARET STREET',
  'street_name': 'VARET STREET',
  'cross_street_1': 'WHITE STREET',
  'cross_street_2': 'BOGART STREET',
  'intersection_street_1': 'WHITE STREET',
  'intersection_street_2': 'BOGART STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VARET 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-03-17T00:59:58.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3031100032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002480',
  'y_coordinate_state_plane': '195787',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70404807317634',
  'longitude': '-73.93425038133091',
  'location': {'latitude': '40.70404807317634',
   'longitude': '-73.93425038133091',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602310',
  'created_date': '2024-03-16T23:37:12.000',
  'closed_date': '2024-03-17T00:07:02.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': '10467',
  'incident_address': '2316 WALLACE AVENUE',
  'street_name': 'WALLACE AVENUE',
  'cross_street_1': 'ASTOR AVENUE',
  'cross_street_2': 'WARING AVENUE',
  'intersection_street_1': 'ASTOR AVENUE',
  'intersection_street_2': 'WARING AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WALLACE 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-03-17T00:07:07.000',
  'community_board': '11 BRONX',
  'bbl': '2043520010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021701',
  'y_coordinate_state_plane': '252647',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86005297602237',
  'longitude': '-73.86460966893242',
  'location': {'latitude': '40.86005297602237',
   'longitude': '-73.86460966893242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601076',
  'created_date': '2024-03-16T23:37:11.000',
  'closed_date': '2024-03-17T00:34:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:34:45.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603096',
  'created_date': '2024-03-16T23:37:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Out',
  'incident_zip': '11234',
  'intersection_street_1': 'AVENUE H',
  'intersection_street_2': 'SCHENECTADY AVENUE',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003326',
  'y_coordinate_state_plane': '169781',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.632665644336356',
  'longitude': '-73.9312727285903',
  'location': {'latitude': '40.632665644336356',
   'longitude': '-73.9312727285903',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605164',
  'created_date': '2024-03-16T23:36:58.000',
  'closed_date': '2024-03-16T23:59:02.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': '1 ALBEMARLE ROAD',
  'street_name': 'ALBEMARLE ROAD',
  'cross_street_1': 'DAHILL ROAD',
  'cross_street_2': 'MCDONALD AVENUE',
  'intersection_street_1': 'DAHILL ROAD',
  'intersection_street_2': 'MCDONALD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ALBEMARLE 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-03-16T23:59:06.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3053230032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989589',
  'y_coordinate_state_plane': '174274',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64501690010781',
  'longitude': '-73.98076101953396',
  'location': {'latitude': '40.64501690010781',
   'longitude': '-73.98076101953396',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599494',
  'created_date': '2024-03-16T23:36:47.000',
  'closed_date': '2024-03-16T23:53:22.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:53:26.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602263',
  'created_date': '2024-03-16T23:36:38.000',
  'closed_date': '2024-03-17T00:07:29.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': '10304',
  'incident_address': '320 VANDERBILT AVENUE',
  'street_name': 'VANDERBILT AVENUE',
  'cross_street_1': 'OSGOOD AVENUE',
  'cross_street_2': 'PRINCE STREET',
  'intersection_street_1': 'OSGOOD AVENUE',
  'intersection_street_2': 'PRINCE STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VANDERBILT 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-03-17T00:07:33.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5028710001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '961624',
  'y_coordinate_state_plane': '164252',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61748134864129',
  'longitude': '-74.08149871960771',
  'location': {'latitude': '40.61748134864129',
   'longitude': '-74.08149871960771',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603613',
  'created_date': '2024-03-16T23:36: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': '11102',
  'incident_address': '30-06 29 STREET',
  'street_name': '29 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '30 ROAD',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '30 ROAD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '29 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4005767501',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1005530',
  'y_coordinate_state_plane': '218877',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76741758810454',
  'longitude': '-73.92317700391392',
  'location': {'latitude': '40.76741758810454',
   'longitude': '-73.92317700391392',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601602',
  'created_date': '2024-03-16T23:36:13.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Condition Attracting Rodents',
  'location_type': '3+ Family Mixed Use Building',
  'incident_zip': '11419',
  'incident_address': '112-18 101 AVENUE',
  'street_name': '101 AVENUE',
  'cross_street_1': '112 STREET',
  'cross_street_2': '113 STREET',
  'intersection_street_1': '112 STREET',
  'intersection_street_2': '113 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '101 AVENUE',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4094300007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030949',
  'y_coordinate_state_plane': '190107',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.688353373195994',
  'longitude': '-73.8316116106582',
  'location': {'latitude': '40.688353373195994',
   'longitude': '-73.8316116106582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603021',
  'created_date': '2024-03-16T23:36:00.000',
  'closed_date': '2024-03-17T00:03:31.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '318 WEST   48 STREET',
  'street_name': 'WEST   48 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': 'NEW YORK',
  'landmark': 'WEST   48 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:03:34.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010380023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987548',
  'y_coordinate_state_plane': '216705',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76148100560247',
  'longitude': '-73.98809494233373',
  'location': {'latitude': '40.76148100560247',
   'longitude': '-73.98809494233373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605056',
  'created_date': '2024-03-16T23:36:00.000',
  'closed_date': '2024-03-17T01:28: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': '11368',
  'incident_address': '55-05 97 STREET',
  'street_name': '97 STREET',
  'cross_street_1': '55 AVENUE',
  'cross_street_2': '57 AVENUE',
  'intersection_street_1': '55 AVENUE',
  'intersection_street_2': '57 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '97 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-03-17T01:28:55.000',
  'community_board': '04 QUEENS',
  'bbl': '4019050022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021787',
  'y_coordinate_state_plane': '208329',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73841195568297',
  'longitude': '-73.86454651242965',
  'location': {'latitude': '40.73841195568297',
   'longitude': '-73.86454651242965',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605065',
  'created_date': '2024-03-16T23:35:55.000',
  'closed_date': '2024-03-17T00:08: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': '11216',
  'incident_address': '92 MACON STREET',
  'street_name': 'MACON STREET',
  'cross_street_1': 'VERONA PLACE',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'VERONA PLACE',
  'intersection_street_2': 'MARCY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MACON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:08:23.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018500014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998855',
  'y_coordinate_state_plane': '187511',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6813390958794',
  'longitude': '-73.94734250449771',
  'location': {'latitude': '40.6813390958794',
   'longitude': '-73.94734250449771',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598739',
  'created_date': '2024-03-16T23:35:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11416',
  'incident_address': '101-61 97 STREET',
  'street_name': '97 STREET',
  'cross_street_1': '101 AVENUE',
  'cross_street_2': '103 AVENUE',
  'intersection_street_1': '101 AVENUE',
  'intersection_street_2': '103 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '97 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4091040041',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027699',
  'y_coordinate_state_plane': '188160',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.68302586326217',
  'longitude': '-73.84334306909784',
  'location': {'latitude': '40.68302586326217',
   'longitude': '-73.84334306909784',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599495',
  'created_date': '2024-03-16T23:35:41.000',
  'closed_date': '2024-03-17T00:02:21.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:02:24.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601222',
  'created_date': '2024-03-16T23:35:16.000',
  'closed_date': '2024-03-17T00:51:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11428',
  'incident_address': '210 STREET',
  'street_name': '210 STREET',
  'cross_street_1': '210 STREET',
  'cross_street_2': 'JAMAICA AVENUE',
  'intersection_street_1': '210 STREET',
  'intersection_street_2': 'JAMAICA AVENUE',
  '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-03-17T00:51:24.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053434',
  'y_coordinate_state_plane': '199826',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.714882445326424',
  'longitude': '-73.75043517530578',
  'location': {'latitude': '40.714882445326424',
   'longitude': '-73.75043517530578',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605382',
  'created_date': '2024-03-16T23:35:01.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': '184 ETNA STREET',
  'street_name': 'ETNA STREET',
  'cross_street_1': 'RICHMOND STREET',
  'cross_street_2': 'CHESTNUT STREET',
  'intersection_street_1': 'RICHMOND STREET',
  'intersection_street_2': 'CHESTNUT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ETNA STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3041150026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1018413',
  'y_coordinate_state_plane': '189241',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68603366963854',
  'longitude': '-73.87681854478991',
  'location': {'latitude': '40.68603366963854',
   'longitude': '-73.87681854478991',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601452',
  'created_date': '2024-03-16T23:34:41.000',
  'closed_date': '2024-03-17T00:15: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': '10026',
  'incident_address': '160 WEST  119 STREET',
  'street_name': 'WEST  119 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  119 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:15:23.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019030061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998118',
  'y_coordinate_state_plane': '232432',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'SUV',
  'latitude': '40.80463717100776',
  'longitude': '-73.94990709775495',
  'location': {'latitude': '40.80463717100776',
   'longitude': '-73.94990709775495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601397',
  'created_date': '2024-03-16T23:34:36.000',
  'closed_date': '2024-03-17T00:01: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:01:26.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604749',
  'created_date': '2024-03-16T23:34:32.000',
  'closed_date': '2024-03-17T00:30:39.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': 'BERGEN STREET',
  'street_name': 'BERGEN STREET',
  'cross_street_1': 'BERGEN STREET',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'BERGEN STREET',
  'intersection_street_2': 'GRAND AVENUE',
  '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-03-17T00:30:43.000',
  'community_board': '08 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994727',
  'y_coordinate_state_plane': '186353',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67816649723685',
  'longitude': '-73.96222757145927',
  'location': {'latitude': '40.67816649723685',
   'longitude': '-73.96222757145927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603348',
  'created_date': '2024-03-16T23:34:26.000',
  'closed_date': '2024-03-17T00:11:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11361',
  'incident_address': '35 AVENUE',
  'street_name': '35 AVENUE',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '200 STREET',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '200 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-03-17T00:11:58.000',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043311',
  'y_coordinate_state_plane': '217992',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Other',
  'latitude': '40.76481682286893',
  'longitude': '-73.78679183767296',
  'location': {'latitude': '40.76481682286893',
   'longitude': '-73.78679183767296',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599454',
  'created_date': '2024-03-16T23:34:25.000',
  'closed_date': '2024-03-17T00:00:27.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': '10474',
  'incident_address': '621 FAILE STREET',
  'street_name': 'FAILE STREET',
  'cross_street_1': 'RANDALL AVENUE',
  'cross_street_2': 'SPOFFORD AVENUE',
  'intersection_street_1': 'RANDALL AVENUE',
  'intersection_street_2': 'SPOFFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FAILE 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-03-17T00:00:31.000',
  'community_board': '02 BRONX',
  'bbl': '2027660026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015787',
  'y_coordinate_state_plane': '235453',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81288357245228',
  'longitude': '-73.88607038063523',
  'location': {'latitude': '40.81288357245228',
   'longitude': '-73.88607038063523',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604061',
  'created_date': '2024-03-16T23:34:08.000',
  'closed_date': '2024-03-16T23:58:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11693',
  'incident_address': '155 BEACH   95 STREET',
  'street_name': 'BEACH   95 STREET',
  'cross_street_1': 'SHORE FRONT PARKWAY',
  'cross_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'intersection_street_1': 'SHORE FRONT PARKWAY',
  'intersection_street_2': 'ROCKAWAY BEACH BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   95 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-03-16T23:59:01.000',
  'community_board': '14 QUEENS',
  'bbl': '4161680072',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035176',
  'y_coordinate_state_plane': '152338',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.58466244193748',
  'longitude': '-73.81665488229976',
  'location': {'latitude': '40.58466244193748',
   'longitude': '-73.81665488229976',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600402',
  'created_date': '2024-03-16T23:34:05.000',
  'closed_date': '2024-03-17T00:12: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': '11225',
  'incident_address': '1159 PRESIDENT STREET',
  'street_name': 'PRESIDENT STREET',
  'cross_street_1': 'ROGERS AVENUE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'ROGERS AVENUE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PRESIDENT STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:12:27.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3012750064',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997574',
  'y_coordinate_state_plane': '182706',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.668152475151814',
  'longitude': '-73.95197057485875',
  'location': {'latitude': '40.668152475151814',
   'longitude': '-73.95197057485875',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604858',
  'created_date': '2024-03-16T23:34:00.000',
  'closed_date': '2024-03-17T01:23:06.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': '34-04 57 STREET',
  'street_name': '57 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': '37 AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': '37 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '57 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:23:10.000',
  'community_board': '02 QUEENS',
  'bbl': '4011950054',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010696',
  'y_coordinate_state_plane': '213242',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75193702111648',
  'longitude': '-73.9045493908421',
  'location': {'latitude': '40.75193702111648',
   'longitude': '-73.9045493908421',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598363',
  'created_date': '2024-03-16T23:33:55.000',
  'closed_date': '2024-03-17T00:34:37.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': '11211',
  'incident_address': '353 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'SOUTH    4 STREET',
  'cross_street_2': 'SOUTH    5 STREET',
  'intersection_street_1': 'SOUTH    4 STREET',
  'intersection_street_2': 'SOUTH    5 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:34:39.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024440004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994502',
  'y_coordinate_state_plane': '198593',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71176271864057',
  'longitude': '-73.96302012822102',
  'location': {'latitude': '40.71176271864057',
   'longitude': '-73.96302012822102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604986',
  'created_date': '2024-03-16T23:33:52.000',
  'closed_date': '2024-03-17T01:06: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': '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 with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2024-03-17T01:06:26.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': '60604155',
  'created_date': '2024-03-16T23:33:28.000',
  'closed_date': '2024-03-17T00:11: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': '10024',
  'incident_address': '136 WEST   91 STREET',
  'street_name': 'WEST   91 STREET',
  'cross_street_1': 'COLUMBUS AVENUE',
  'cross_street_2': 'AMSTERDAM AVENUE',
  'intersection_street_1': 'COLUMBUS AVENUE',
  'intersection_street_2': 'AMSTERDAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   91 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-03-17T00:11:22.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012210007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '992093',
  'y_coordinate_state_plane': '227254',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79043237261105',
  'longitude': '-73.97167617588958',
  'location': {'latitude': '40.79043237261105',
   'longitude': '-73.97167617588958',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598552',
  'created_date': '2024-03-16T23:33:22.000',
  'closed_date': '2024-03-17T01:47: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': '11357',
  'incident_address': '145-76 3 AVENUE',
  'street_name': '3 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': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:47:21.000',
  'community_board': '07 QUEENS',
  'bbl': '4044510033',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032755',
  'y_coordinate_state_plane': '229260',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.795808656775954',
  'longitude': '-73.82481717041398',
  'location': {'latitude': '40.795808656775954',
   'longitude': '-73.82481717041398',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599565',
  'created_date': '2024-03-16T23:33:21.000',
  'closed_date': '2024-03-17T00:41:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10040',
  'incident_address': '30 BOGARDUS PLACE',
  'street_name': 'BOGARDUS PLACE',
  'cross_street_1': 'HILLSIDE AVENUE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'HILLSIDE AVENUE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BOGARDUS 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-03-17T00:41:30.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021710105',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003910',
  'y_coordinate_state_plane': '252315',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Car',
  'latitude': '40.85919928257615',
  'longitude': '-73.92892742586055',
  'location': {'latitude': '40.85919928257615',
   'longitude': '-73.92892742586055',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601398',
  'created_date': '2024-03-16T23:33:05.000',
  'closed_date': '2024-03-17T00:04: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:05:03.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602448',
  'created_date': '2024-03-16T23:33:04.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': '10011',
  'incident_address': '62 7 AVENUE',
  'street_name': '7 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1006180032',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984315',
  'y_coordinate_state_plane': '208315',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73845318750216',
  'longitude': '-73.99976544533042',
  'location': {'latitude': '40.73845318750216',
   'longitude': '-73.99976544533042',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603355',
  'created_date': '2024-03-16T23:32:45.000',
  'closed_date': '2024-03-17T01:17: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': '11368',
  'incident_address': '32-20 HARPER STREET',
  'street_name': 'HARPER STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'MARINA ROAD',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'MARINA ROAD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': 'HARPER STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:17:49.000',
  'community_board': '81 QUEENS',
  'bbl': '4017890065',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027993',
  'y_coordinate_state_plane': '217593',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Car',
  'latitude': '40.76381073536178',
  'longitude': '-73.84209174232672',
  'location': {'latitude': '40.76381073536178',
   'longitude': '-73.84209174232672',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601680',
  'created_date': '2024-03-16T23:32: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': '11385',
  'incident_address': '78-38 83 STREET',
  'street_name': '83 STREET',
  'cross_street_1': '78 ROAD',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': '78 ROAD',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '83 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:58:10.000',
  'community_board': '05 QUEENS',
  'bbl': '4038330064',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021453',
  'y_coordinate_state_plane': '195931',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.704383890249495',
  'longitude': '-73.8658202900494',
  'location': {'latitude': '40.704383890249495',
   'longitude': '-73.8658202900494',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602676',
  'created_date': '2024-03-16T23:32: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': '11358',
  'incident_address': '27-17 FRANCIS LEWIS BOULEVARD',
  'street_name': 'FRANCIS LEWIS BOULEVARD',
  'cross_street_1': '170 STREET',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': '170 STREET',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'FRANCIS LEWIS BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041128',
  'y_coordinate_state_plane': '220638',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77209369985531',
  'longitude': '-73.79464997037981',
  'location': {'latitude': '40.77209369985531',
   'longitude': '-73.79464997037981',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602225',
  'created_date': '2024-03-16T23:32:21.000',
  'closed_date': '2024-03-17T00:37:29.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': '11373',
  'incident_address': '87-19 JUSTICE AVENUE',
  'street_name': 'JUSTICE AVENUE',
  'cross_street_1': '52 AVENUE',
  'cross_street_2': '53 AVENUE',
  'intersection_street_1': '52 AVENUE',
  'intersection_street_2': '53 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'JUSTICE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:37:33.000',
  'community_board': '04 QUEENS',
  'bbl': '4018380079',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018614',
  'y_coordinate_state_plane': '207946',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.737373614451336',
  'longitude': '-73.87599832675195',
  'location': {'latitude': '40.737373614451336',
   'longitude': '-73.87599832675195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603279',
  'created_date': '2024-03-16T23:32:16.000',
  'closed_date': '2024-03-17T00:19: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': '10456',
  'incident_address': 'BOSTON ROAD',
  'street_name': 'BOSTON ROAD',
  'cross_street_1': 'BOSTON ROAD',
  'cross_street_2': 'PROSPECT AVENUE',
  'intersection_street_1': 'BOSTON ROAD',
  'intersection_street_2': 'PROSPECT 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-03-17T00:20:03.000',
  'community_board': '03 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012946',
  'y_coordinate_state_plane': '242977',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83354449063731',
  'longitude': '-73.89630150477724',
  'location': {'latitude': '40.83354449063731',
   'longitude': '-73.89630150477724',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601382',
  'created_date': '2024-03-16T23:32:12.000',
  'closed_date': '2024-03-16T23:37:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10010',
  'incident_address': '234 EAST   23 STREET',
  'street_name': 'EAST   23 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   23 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-03-16T23:37:07.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009037504',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989163',
  'y_coordinate_state_plane': '208315',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73845182313584',
  'longitude': '-73.98227127575564',
  'location': {'latitude': '40.73845182313584',
   'longitude': '-73.98227127575564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598425',
  'created_date': '2024-03-16T23:32:00.000',
  'closed_date': '2024-03-17T00:28:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10458',
  'incident_address': '480 EAST  188 STREET',
  'street_name': 'EAST  188 STREET',
  'cross_street_1': 'WASHINGTON AVENUE',
  'cross_street_2': 'BATHGATE AVENUE',
  'intersection_street_1': 'WASHINGTON AVENUE',
  'intersection_street_2': 'BATHGATE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  188 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-03-17T00:29:01.000',
  'community_board': '06 BRONX',
  'bbl': '2030570011',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014570',
  'y_coordinate_state_plane': '251994',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85828805965668',
  'longitude': '-73.89039210329346',
  'location': {'latitude': '40.85828805965668',
   'longitude': '-73.89039210329346',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603563',
  'created_date': '2024-03-16T23:31: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': '11235',
  'incident_address': '2537 EAST   12 STREET',
  'street_name': 'EAST   12 STREET',
  'cross_street_1': 'AVENUE Y',
  'cross_street_2': 'AVENUE Z',
  'intersection_street_1': 'AVENUE Y',
  'intersection_street_2': 'AVENUE Z',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   12 STREET',
  'status': 'In Progress',
  'community_board': '15 BROOKLYN',
  'bbl': '3074330163',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995798',
  'y_coordinate_state_plane': '153796',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'vehicle_type': 'Car',
  'latitude': '40.588803124050585',
  'longitude': '-73.95842203915278',
  'location': {'latitude': '40.588803124050585',
   'longitude': '-73.95842203915278',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599496',
  'created_date': '2024-03-16T23:31:39.000',
  'closed_date': '2024-03-17T00:04: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:04:16.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603617',
  'created_date': '2024-03-16T23:31:35.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': '11211',
  'incident_address': '210 NORTH   12 STREET',
  'street_name': 'NORTH   12 STREET',
  'cross_street_1': 'BEDFORD AVENUE',
  'cross_street_2': 'DRIGGS AVENUE',
  'intersection_street_1': 'BEDFORD AVENUE',
  'intersection_street_2': 'DRIGGS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NORTH   12 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T02:10:58.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3022910017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997064',
  'y_coordinate_state_plane': '201587',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71997719124783',
  'longitude': '-73.95377306971749',
  'location': {'latitude': '40.71997719124783',
   'longitude': '-73.95377306971749',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602900',
  'created_date': '2024-03-16T23:31:28.000',
  'closed_date': '2024-03-17T00: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': '10011',
  'incident_address': '360 WEST   22 STREET',
  'street_name': 'WEST   22 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': 'NEW YORK',
  'landmark': 'WEST   22 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T00:47:14.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1007457502',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984079',
  'y_coordinate_state_plane': '210814',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.745312318455504',
  'longitude': '-74.00061712273754',
  'location': {'latitude': '40.745312318455504',
   'longitude': '-74.00061712273754',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601077',
  'created_date': '2024-03-16T23:31:15.000',
  'closed_date': '2024-03-16T23:54:33.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-03-16T23:54:36.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': '60598364',
  'created_date': '2024-03-16T23:31:13.000',
  'closed_date': '2024-03-16T23:53:53.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': '11385',
  'incident_address': '66-28 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:53:56.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011111',
  'y_coordinate_state_plane': '196833',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70689710411462',
  'longitude': '-73.90311704974741',
  'location': {'latitude': '40.70689710411462',
   'longitude': '-73.90311704974741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599178',
  'created_date': '2024-03-16T23:31:08.000',
  'closed_date': '2024-03-17T00:33:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:33:45.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600293',
  'created_date': '2024-03-16T23:30:52.000',
  'closed_date': '2024-03-16T23:56:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '10456',
  'incident_address': '1088 BROOK AVENUE',
  'street_name': 'BROOK AVENUE',
  'cross_street_1': 'EAST  166 STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'EAST  166 STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BROOK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:56:54.000',
  'community_board': '03 BRONX',
  'bbl': '2023920051',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008944',
  'y_coordinate_state_plane': '241426',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82929953985468',
  'longitude': '-73.91076919725046',
  'location': {'latitude': '40.82929953985468',
   'longitude': '-73.91076919725046',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600280',
  'created_date': '2024-03-16T23:30:47.000',
  'closed_date': '2024-03-17T00:37:09.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': '115-98 LEFFERTS BOULEVARD',
  'street_name': 'LEFFERTS BOULEVARD',
  'cross_street_1': 'ROCKAWAY BOULEVARD',
  'cross_street_2': 'SUTTER AVENUE',
  'intersection_street_1': 'ROCKAWAY BOULEVARD',
  'intersection_street_2': 'SUTTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': 'LEFFERTS BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:37:13.000',
  'community_board': '10 QUEENS',
  'bbl': '4117110001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034273',
  'y_coordinate_state_plane': '185055',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67446864824971',
  'longitude': '-73.81966338595954',
  'location': {'latitude': '40.67446864824971',
   'longitude': '-73.81966338595954',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599461',
  'created_date': '2024-03-16T23:30:34.000',
  'closed_date': '2024-03-17T00:04: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': '11237',
  'incident_address': '2 WYCKOFF AVENUE',
  'street_name': 'WYCKOFF AVENUE',
  'cross_street_1': 'JEFFERSON STREET',
  'cross_street_2': 'TROUTMAN STREET',
  'intersection_street_1': 'JEFFERSON STREET',
  'intersection_street_2': 'TROUTMAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WYCKOFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:04:08.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031760034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005463',
  'y_coordinate_state_plane': '196848',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70695361871314',
  'longitude': '-73.92348834338263',
  'location': {'latitude': '40.70695361871314',
   'longitude': '-73.92348834338263',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605360',
  'created_date': '2024-03-16T23:30:27.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Taxi Complaint',
  'descriptor': 'Driver Complaint - Passenger',
  'location_type': 'Street',
  'status': 'In Progress',
  'community_board': '0 Unspecified',
  'borough': 'Unspecified',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'Unspecified'},
 {'unique_key': '60602338',
  'created_date': '2024-03-16T23:30:26.000',
  'closed_date': '2024-03-17T00:03: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:04:03.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602355',
  'created_date': '2024-03-16T23:30:24.000',
  'closed_date': '2024-03-17T01:06:44.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': '10468',
  'incident_address': '2543 GRAND AVENUE',
  'street_name': 'GRAND AVENUE',
  'cross_street_1': 'WEST  190 STREET',
  'cross_street_2': 'WEST  192 STREET',
  'intersection_street_1': 'WEST  190 STREET',
  'intersection_street_2': 'WEST  192 STREET',
  '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-03-17T01:06:49.000',
  'community_board': '07 BRONX',
  'bbl': '2032140139',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011551',
  'y_coordinate_state_plane': '254590',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86542314433969',
  'longitude': '-73.90129531313143',
  'location': {'latitude': '40.86542314433969',
   'longitude': '-73.90129531313143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601277',
  'created_date': '2024-03-16T23:30:21.000',
  'closed_date': '2024-03-17T00:02:22.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': '14 METROPOLITAN OVAL',
  'street_name': 'METROPOLITAN OVAL',
  'cross_street_1': 'METROPOLITAN AVENUE',
  'cross_street_2': 'UNIONPORT ROAD',
  'intersection_street_1': 'METROPOLITAN AVENUE',
  'intersection_street_2': 'UNIONPORT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'METROPOLITAN OVAL',
  '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-03-17T00:02:26.000',
  'community_board': '09 BRONX',
  'bbl': '2039437501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023226',
  'y_coordinate_state_plane': '244720',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.838289130462634',
  'longitude': '-73.85914268202058',
  'location': {'latitude': '40.838289130462634',
   'longitude': '-73.85914268202058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600157',
  'created_date': '2024-03-16T23:30:21.000',
  'closed_date': '2024-03-17T01:06:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10455',
  'incident_address': '421 EAST  153 STREET',
  'street_name': 'EAST  153 STREET',
  'cross_street_1': 'MELROSE AVENUE',
  'cross_street_2': 'ELTON AVENUE',
  'intersection_street_1': 'MELROSE AVENUE',
  'intersection_street_2': 'ELTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  153 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-03-17T01:06:50.000',
  'community_board': '01 BRONX',
  'bbl': '2023750131',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007511',
  'y_coordinate_state_plane': '237581',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81875000105622',
  'longitude': '-73.91596061284801',
  'location': {'latitude': '40.81875000105622',
   'longitude': '-73.91596061284801',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603973',
  'created_date': '2024-03-16T23:30:03.000',
  'closed_date': '2024-03-17T00:11:59.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': '126 4 AVENUE',
  'street_name': '4 AVENUE',
  'cross_street_1': 'BALTIC STREET',
  'cross_street_2': 'BUTLER STREET',
  'intersection_street_1': 'BALTIC STREET',
  'intersection_street_2': 'BUTLER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '4 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:12:02.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3004070026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989530',
  'y_coordinate_state_plane': '187202',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68050143523295',
  'longitude': '-73.98096350090113',
  'location': {'latitude': '40.68050143523295',
   'longitude': '-73.98096350090113',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601166',
  'created_date': '2024-03-16T23:30:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Light Condition',
  'descriptor': 'Street Light Lamp Missing',
  'incident_zip': '10314',
  'incident_address': '65 BOWDOIN STREET',
  'street_name': 'BOWDOIN STREET',
  'cross_street_1': 'FRASER ST',
  'cross_street_2': 'ROCKNE ST',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'status': 'Open',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5023960076',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '940563',
  'y_coordinate_state_plane': '153286',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.58730314135394',
  'longitude': '-74.15728926953615',
  'location': {'latitude': '40.58730314135394',
   'longitude': '-74.15728926953615',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601674',
  'created_date': '2024-03-16T23:29: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': '11103',
  'incident_address': '25-11 34 STREET',
  'street_name': '34 STREET',
  'cross_street_1': 'ASTORIA BOULEVARD SOUTH',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': 'ASTORIA BOULEVARD SOUTH',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '34 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006320028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007483',
  'y_coordinate_state_plane': '219557',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76927909378272',
  'longitude': '-73.91612412591321',
  'location': {'latitude': '40.76927909378272',
   'longitude': '-73.91612412591321',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598681',
  'created_date': '2024-03-16T23:29:46.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'WATER LEAK',
  'descriptor': 'SLOW LEAK',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '10454',
  'incident_address': '105 WILLIS AVENUE',
  'street_name': 'WILLIS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '01 BRONX',
  'bbl': '2022957501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1004928',
  'y_coordinate_state_plane': '232856',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.80578762054628',
  'longitude': '-73.92530725375082',
  'location': {'latitude': '40.80578762054628',
   'longitude': '-73.92530725375082',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600341',
  'created_date': '2024-03-16T23:29:43.000',
  'closed_date': '2024-03-17T01:08: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': '11377',
  'incident_address': '50-51 67 STREET',
  'street_name': '67 STREET',
  'cross_street_1': 'GARFIELD AVENUE',
  'cross_street_2': 'MAURICE AVENUE',
  'intersection_street_1': 'GARFIELD AVENUE',
  'intersection_street_2': 'MAURICE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '67 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:08:45.000',
  'community_board': '02 QUEENS',
  'bbl': '4024240012',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012573',
  'y_coordinate_state_plane': '207327',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73569602238988',
  'longitude': '-73.89779971508605',
  'location': {'latitude': '40.73569602238988',
   'longitude': '-73.89779971508605',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599558',
  'created_date': '2024-03-16T23:29:40.000',
  'closed_date': '2024-03-17T00:31: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': '10026',
  'incident_address': '160 WEST  119 STREET',
  'street_name': 'WEST  119 STREET',
  'cross_street_1': 'LENOX AVENUE',
  'cross_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_1': 'LENOX AVENUE',
  'intersection_street_2': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  119 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:31:16.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019030061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998118',
  'y_coordinate_state_plane': '232432',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'SUV',
  'latitude': '40.80463717100776',
  'longitude': '-73.94990709775495',
  'location': {'latitude': '40.80463717100776',
   'longitude': '-73.94990709775495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598373',
  'created_date': '2024-03-16T23:29:32.000',
  'closed_date': '2024-03-17T00:10:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11225',
  'incident_address': '510 FLATBUSH AVENUE',
  'street_name': 'FLATBUSH AVENUE',
  'cross_street_1': 'EMPIRE BOULEVARD',
  'cross_street_2': 'LEFFERTS AVENUE',
  'intersection_street_1': 'EMPIRE BOULEVARD',
  'intersection_street_2': 'LEFFERTS AVENUE',
  '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-03-17T00:10:22.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050240053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994920',
  'y_coordinate_state_plane': '180403',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66183484805751',
  'longitude': '-73.96154117220703',
  'location': {'latitude': '40.66183484805751',
   'longitude': '-73.96154117220703',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603292',
  'created_date': '2024-03-16T23:29:30.000',
  'closed_date': '2024-03-17T00:07:18.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:07:23.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600761',
  'created_date': '2024-03-16T23:29:29.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': '11208',
  'incident_address': '3035 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'ESSEX STREET',
  'cross_street_2': 'SHEPHERD AVENUE',
  'intersection_street_1': 'ESSEX STREET',
  'intersection_street_2': 'SHEPHERD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FULTON STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3039430020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016783',
  'y_coordinate_state_plane': '187249',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.680572229866854',
  'longitude': '-73.88270544264448',
  'location': {'latitude': '40.680572229866854',
   'longitude': '-73.88270544264448',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603947',
  'created_date': '2024-03-16T23:29:29.000',
  'closed_date': '2024-03-16T23:56:32.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': '849 VANNEST AVENUE',
  'street_name': 'VANNEST AVENUE',
  'cross_street_1': 'MATTHEWS AVENUE',
  'cross_street_2': 'BRONXDALE AVENUE',
  'intersection_street_1': 'MATTHEWS AVENUE',
  'intersection_street_2': 'BRONXDALE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VAN NEST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:56:35.000',
  'community_board': '11 BRONX',
  'bbl': '2040450043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022930',
  'y_coordinate_state_plane': '247153',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.844968298182685',
  'longitude': '-73.86019837657344',
  'location': {'latitude': '40.844968298182685',
   'longitude': '-73.86019837657344',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604567',
  'created_date': '2024-03-16T23:29:27.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '11221',
  'incident_address': '548 VAN BUREN STREET',
  'street_name': 'VAN BUREN STREET',
  'cross_street_1': 'PATCHEN AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'PATCHEN AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VAN BUREN STREET',
  'status': 'In Progress',
  'community_board': '03 BROOKLYN',
  'bbl': '3016180013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004465',
  'y_coordinate_state_plane': '191367',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69191189496036',
  'longitude': '-73.92710440783817',
  'location': {'latitude': '40.69191189496036',
   'longitude': '-73.92710440783817',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598478',
  'created_date': '2024-03-16T23:29:16.000',
  'closed_date': '2024-03-17T00:02: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': '11237',
  'incident_address': '156 KNICKERBOCKER AVENUE',
  'street_name': 'KNICKERBOCKER AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'MELROSE STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'MELROSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KNICKERBOCKER 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-03-17T00:02:59.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031580032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004212',
  'y_coordinate_state_plane': '195876',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70428861940433',
  'longitude': '-73.9280033654214',
  'location': {'latitude': '40.70428861940433',
   'longitude': '-73.9280033654214',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603112',
  'created_date': '2024-03-16T23:29:15.000',
  'closed_date': '2024-03-17T00:27:25.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': '168 DELANCEY STREET',
  'street_name': 'DELANCEY STREET',
  'cross_street_1': 'CLINTON STREET',
  'cross_street_2': 'ATTORNEY STREET',
  'intersection_street_1': 'CLINTON STREET',
  'intersection_street_2': 'ATTORNEY STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DELANCEY STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:27:30.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003480075',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988250',
  'y_coordinate_state_plane': '200743',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71766899024975',
  'longitude': '-73.9855703675894',
  'location': {'latitude': '40.71766899024975',
   'longitude': '-73.9855703675894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598229',
  'created_date': '2024-03-16T23:29:08.000',
  'closed_date': '2024-03-17T00:07:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '10040',
  'incident_address': '35 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': 'BOGARDUS PLACE',
  'cross_street_2': 'ELLWOOD STREET',
  'intersection_street_1': 'BOGARDUS PLACE',
  'intersection_street_2': 'ELLWOOD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:07:19.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021700112',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003721',
  'y_coordinate_state_plane': '252074',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8585382289902',
  'longitude': '-73.92961137673909',
  'location': {'latitude': '40.8585382289902',
   'longitude': '-73.92961137673909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599286',
  'created_date': '2024-03-16T23:28:54.000',
  'closed_date': '2024-03-17T00:10: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': '11214',
  'incident_address': '2158 BATH AVENUE',
  'street_name': 'BATH AVENUE',
  'cross_street_1': 'BAY   29 STREET',
  'cross_street_2': 'BAY PARKWAY',
  'intersection_street_1': 'BAY   29 STREET',
  'intersection_street_2': 'BAY PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATH AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:10:07.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3064470030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984838',
  'y_coordinate_state_plane': '157477',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.598914232156574',
  'longitude': '-73.99788261670697',
  'location': {'latitude': '40.598914232156574',
   'longitude': '-73.99788261670697',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603244',
  'created_date': '2024-03-16T23:28:48.000',
  'closed_date': '2024-03-16T23:48: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': '11235',
  'incident_address': '2916 BRIGHTON THIRD STREET',
  'street_name': 'BRIGHTON THIRD STREET',
  'cross_street_1': 'NEPTUNE AVENUE',
  'cross_street_2': 'BRIGHTON    2 PLACE',
  'intersection_street_1': 'NEPTUNE AVENUE',
  'intersection_street_2': 'BRIGHTON    2 PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTON    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-03-16T23:48:49.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3086620110',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993858',
  'y_coordinate_state_plane': '150712',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58034047229148',
  'longitude': '-73.96541128979334',
  'location': {'latitude': '40.58034047229148',
   'longitude': '-73.96541128979334',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598160',
  'created_date': '2024-03-16T23:28:47.000',
  'closed_date': '2024-03-17T01:47:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11228',
  'incident_address': '7205 TENTH AVENUE',
  'street_name': 'TENTH AVENUE',
  'cross_street_1': '72 STREET',
  'cross_street_2': '73 STREET',
  'intersection_street_1': '72 STREET',
  'intersection_street_2': '73 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '10 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-03-17T01:47:20.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3059140008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '980824',
  'y_coordinate_state_plane': '167313',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62591138248642',
  'longitude': '-74.01234198889648',
  'location': {'latitude': '40.62591138248642',
   'longitude': '-74.01234198889648',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600434',
  'created_date': '2024-03-16T23:28:43.000',
  'closed_date': '2024-03-16T23:48: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': '10467',
  'incident_address': '712 EAST GUN HILL ROAD',
  'street_name': 'EAST GUN HILL ROAD',
  'cross_street_1': 'WHITE PLAINS ROAD',
  'cross_street_2': 'HOLLAND AVENUE',
  'intersection_street_1': 'WHITE PLAINS ROAD',
  'intersection_street_2': 'HOLLAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST GUN HILL ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:48:12.000',
  'community_board': '12 BRONX',
  'bbl': '2046290050',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021339',
  'y_coordinate_state_plane': '258894',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87720059434862',
  'longitude': '-73.86588376795467',
  'location': {'latitude': '40.87720059434862',
   'longitude': '-73.86588376795467',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599349',
  'created_date': '2024-03-16T23:28:31.000',
  'closed_date': '2024-03-17T00:25:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10026',
  'incident_address': '265 WEST  114 STREET',
  'street_name': 'WEST  114 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  114 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:25:09.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1018300011',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996586',
  'y_coordinate_state_plane': '231745',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80275381673463',
  'longitude': '-73.95544212929333',
  'location': {'latitude': '40.80275381673463',
   'longitude': '-73.95544212929333',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601112',
  'created_date': '2024-03-16T23:28:22.000',
  'closed_date': '2024-03-17T00:02:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11236',
  'incident_address': '1596 EAST   96 STREET',
  'street_name': 'EAST   96 STREET',
  'cross_street_1': 'AVENUE N',
  'cross_street_2': 'SEAVIEW AVENUE',
  'intersection_street_1': 'AVENUE N',
  'intersection_street_2': 'SEAVIEW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   96 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-03-17T00:02:21.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3082980061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1014312',
  'y_coordinate_state_plane': '170405',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.634347919647055',
  'longitude': '-73.89168947206986',
  'location': {'latitude': '40.634347919647055',
   'longitude': '-73.89168947206986',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598368',
  'created_date': '2024-03-16T23:28:02.000',
  'closed_date': '2024-03-16T23:58:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11219',
  'incident_address': '3901 NEW UTRECHT AVENUE',
  'street_name': 'NEW UTRECHT AVENUE',
  'cross_street_1': '39 STREET',
  'cross_street_2': '40 STREET',
  'intersection_street_1': '39 STREET',
  'intersection_street_2': '40 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW UTRECHT 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-03-16T23:58:51.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3055830049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '985783',
  'y_coordinate_state_plane': '174428',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.645441073496016',
  'longitude': '-73.99447582986821',
  'location': {'latitude': '40.645441073496016',
   'longitude': '-73.99447582986821',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601399',
  'created_date': '2024-03-16T23:28:01.000',
  'closed_date': '2024-03-17T00:07: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:07:08.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600510',
  'created_date': '2024-03-16T23:28:00.000',
  'closed_date': '2024-03-17T00:39:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '541 ACADEMY STREET',
  'street_name': 'ACADEMY STREET',
  'cross_street_1': 'NAGLE AVENUE',
  'cross_street_2': 'POST AVENUE',
  'intersection_street_1': 'NAGLE AVENUE',
  'intersection_street_2': 'POST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'ACADEMY 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-03-17T00:39:16.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022180042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005592',
  'y_coordinate_state_plane': '253692',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'vehicle_type': 'Other',
  'latitude': '40.862974825408074',
  'longitude': '-73.92284247094732',
  'location': {'latitude': '40.862974825408074',
   'longitude': '-73.92284247094732',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599522',
  'created_date': '2024-03-16T23:27:49.000',
  'closed_date': '2024-03-16T23:29: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': '10024',
  'incident_address': '212 WEST   91 STREET',
  'street_name': 'WEST   91 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': 'WEST   91 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-03-16T23:29:57.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012380046',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991598',
  'y_coordinate_state_plane': '227529',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79118759901982',
  'longitude': '-73.97346349355507',
  'location': {'latitude': '40.79118759901982',
   'longitude': '-73.97346349355507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599391',
  'created_date': '2024-03-16T23:27:23.000',
  'closed_date': '2024-03-17T00:28: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': '10460',
  'incident_address': '1932 BRYANT AVENUE',
  'street_name': 'BRYANT AVENUE',
  'cross_street_1': 'BOSTON ROAD',
  'cross_street_2': 'EAST TREMONT AVENUE',
  'intersection_street_1': 'BOSTON ROAD',
  'intersection_street_2': 'EAST TREMONT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRYANT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:28:11.000',
  'community_board': '06 BRONX',
  'bbl': '2030057501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016835',
  'y_coordinate_state_plane': '245328',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83998380642961',
  'longitude': '-73.88223645239954',
  'location': {'latitude': '40.83998380642961',
   'longitude': '-73.88223645239954',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601199',
  'created_date': '2024-03-16T23:27:18.000',
  'closed_date': '2024-03-16T23:53: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': '11385',
  'incident_address': '66-32 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:53:19.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890035',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011127',
  'y_coordinate_state_plane': '196800',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.706806478375505',
  'longitude': '-73.90305947230092',
  'location': {'latitude': '40.706806478375505',
   'longitude': '-73.90305947230092',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600242',
  'created_date': '2024-03-16T23:27:17.000',
  'closed_date': '2024-03-16T23:30:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11385',
  'incident_address': '66-28 FOREST AVENUE',
  'street_name': 'FOREST AVENUE',
  'cross_street_1': 'GRANDVIEW AVENUE',
  'cross_street_2': 'WOODBINE STREET',
  'intersection_street_1': 'GRANDVIEW AVENUE',
  'intersection_street_2': 'WOODBINE STREET',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'FOREST AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:30:07.000',
  'community_board': '05 QUEENS',
  'bbl': '4034890032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011111',
  'y_coordinate_state_plane': '196833',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70689710411462',
  'longitude': '-73.90311704974741',
  'location': {'latitude': '40.70689710411462',
   'longitude': '-73.90311704974741',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600376',
  'created_date': '2024-03-16T23:27:17.000',
  'closed_date': '2024-03-17T00:56:46.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': '340 EAST  184 STREET',
  'street_name': 'EAST  184 STREET',
  'cross_street_1': 'MARION AVENUE',
  'cross_street_2': 'WEBSTER AVENUE',
  'intersection_street_1': 'MARION AVENUE',
  'intersection_street_2': 'WEBSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  184 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-03-17T00:56:50.000',
  'community_board': '05 BRONX',
  'bbl': '2031430271',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013110',
  'y_coordinate_state_plane': '251923',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.858098079528844',
  'longitude': '-73.89567035668057',
  'location': {'latitude': '40.858098079528844',
   'longitude': '-73.89567035668057',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600914',
  'created_date': '2024-03-16T23:27:04.000',
  'closed_date': '2024-03-16T23:32:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'License Plate Obscured',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10003',
  'incident_address': '28 EAST    1 STREET',
  'street_name': 'EAST    1 STREET',
  'cross_street_1': 'EXTRA PLACE',
  'cross_street_2': '2 AVENUE',
  'intersection_street_1': 'EXTRA PLACE',
  'intersection_street_2': '2 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST    1 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:32:22.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004570028',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986762',
  'y_coordinate_state_plane': '203170',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.724331067337985',
  'longitude': '-73.99093728499508',
  'location': {'latitude': '40.724331067337985',
   'longitude': '-73.99093728499508',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602349',
  'created_date': '2024-03-16T23:26:55.000',
  'closed_date': '2024-03-17T00:24: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': '10040',
  'incident_address': '561 WEST  192 STREET',
  'street_name': 'WEST  192 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  192 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:24:20.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021610100',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1004133',
  'y_coordinate_state_plane': '251128',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.855940824772055',
  'longitude': '-73.92812478316542',
  'location': {'latitude': '40.855940824772055',
   'longitude': '-73.92812478316542',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604230',
  'created_date': '2024-03-16T23:26:50.000',
  'closed_date': '2024-03-17T00:00: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': '11229',
  'incident_address': '2745 OCEAN AVENUE',
  'street_name': 'OCEAN AVENUE',
  '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': '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-03-17T00:00:16.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074050065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998017',
  'y_coordinate_state_plane': '155787',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59426485051554',
  'longitude': '-73.95042859238197',
  'location': {'latitude': '40.59426485051554',
   'longitude': '-73.95042859238197',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599256',
  'created_date': '2024-03-16T23:26:48.000',
  'closed_date': '2024-03-17T00:33:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10312',
  'incident_address': '12 VICTORIA DRIVE',
  'street_name': 'VICTORIA DRIVE',
  'cross_street_1': 'GREEN VALLEY ROAD',
  'cross_street_2': 'MANCHESTER DRIVE',
  'intersection_street_1': 'GREEN VALLEY ROAD',
  'intersection_street_2': 'MANCHESTER DRIVE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VICTORIA 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-03-17T00:33:20.000',
  'community_board': '03 STATEN ISLAND',
  'bbl': '5060230284',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '930208',
  'y_coordinate_state_plane': '139362',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.549027480748755',
  'longitude': '-74.19445967937345',
  'location': {'latitude': '40.549027480748755',
   'longitude': '-74.19445967937345',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603305',
  'created_date': '2024-03-16T23:26:46.000',
  'closed_date': '2024-03-17T00:24: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': '10128',
  'incident_address': '131 EAST   93 STREET',
  'street_name': 'EAST   93 STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'LEXINGTON AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'LEXINGTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   93 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:24:58.000',
  'community_board': '08 MANHATTAN',
  'bbl': '1015220014',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997294',
  'y_coordinate_state_plane': '224979',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78418196101319',
  'longitude': '-73.95289796116178',
  'location': {'latitude': '40.78418196101319',
   'longitude': '-73.95289796116178',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603342',
  'created_date': '2024-03-16T23:26:44.000',
  'closed_date': '2024-03-17T00:35:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11434',
  'incident_address': '130-19 180 STREET',
  'street_name': '180 STREET',
  'cross_street_1': 'DEAD END',
  'cross_street_2': 'MERRICK BOULEVARD',
  'intersection_street_1': 'DEAD END',
  'intersection_street_2': 'MERRICK BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '180 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-03-17T00:35:47.000',
  'community_board': '12 QUEENS',
  'bbl': '4127000130',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1050966',
  'y_coordinate_state_plane': '187190',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'vehicle_type': 'Other',
  'latitude': '40.68021865362268',
  'longitude': '-73.75946301619742',
  'location': {'latitude': '40.68021865362268',
   'longitude': '-73.75946301619742',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601400',
  'created_date': '2024-03-16T23:26:32.000',
  'closed_date': '2024-03-17T00:02: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:03:01.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602311',
  'created_date': '2024-03-16T23:26:14.000',
  'closed_date': '2024-03-17T00:51: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': '11222',
  'incident_address': '579 LEONARD STREET',
  'street_name': 'LEONARD STREET',
  'cross_street_1': 'NASSAU AVENUE',
  'cross_street_2': 'NORMAN AVENUE',
  'intersection_street_1': 'NASSAU AVENUE',
  'intersection_street_2': 'NORMAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEONARD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:51:54.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3026470022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998024',
  'y_coordinate_state_plane': '203311',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.724707711096556',
  'longitude': '-73.9503063103308',
  'location': {'latitude': '40.724707711096556',
   'longitude': '-73.9503063103308',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599151',
  'created_date': '2024-03-16T23:26:11.000',
  'closed_date': '2024-03-17T00:49: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': '10001',
  'incident_address': '270 11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': 'WEST   27 STREET',
  'cross_street_2': 'WEST   28 STREET',
  'intersection_street_1': 'WEST   27 STREET',
  'intersection_street_2': 'WEST   28 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '11 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2024-03-17T00:49:32.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1006990001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '982877',
  'y_coordinate_state_plane': '213136',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75168551899265',
  'longitude': '-74.00495550048122',
  'location': {'latitude': '40.75168551899265',
   'longitude': '-74.00495550048122',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601197',
  'created_date': '2024-03-16T23:25:58.000',
  'closed_date': '2024-03-17T00:07:03.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': '11237',
  'incident_address': '44 WILSON AVENUE',
  'street_name': 'WILSON AVENUE',
  'cross_street_1': 'GEORGE STREET',
  'cross_street_2': 'MELROSE STREET',
  'intersection_street_1': 'GEORGE STREET',
  'intersection_street_2': 'MELROSE STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON 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-03-17T00:07:09.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3031570031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003829',
  'y_coordinate_state_plane': '195325',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70277711007218',
  'longitude': '-73.92938632693719',
  'location': {'latitude': '40.70277711007218',
   'longitude': '-73.92938632693719',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601188',
  'created_date': '2024-03-16T23:25:38.000',
  'closed_date': '2024-03-16T23:44:08.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': '11232',
  'incident_address': '163 26 STREET',
  'street_name': '26 STREET',
  'cross_street_1': '3 AVENUE',
  'cross_street_2': '4 AVENUE',
  'intersection_street_1': '3 AVENUE',
  'intersection_street_2': '4 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '26 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-16T23:44:14.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006540001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984305',
  'y_coordinate_state_plane': '179968',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.660647297930005',
  'longitude': '-73.99980176215517',
  'location': {'latitude': '40.660647297930005',
   'longitude': '-73.99980176215517',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601209',
  'created_date': '2024-03-16T23:25:27.000',
  'closed_date': '2024-03-17T01:07:47.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': '11103',
  'incident_address': '42-18 31 AVENUE',
  'street_name': '31 AVENUE',
  'cross_street_1': '42 STREET',
  'cross_street_2': '43 STREET',
  'intersection_street_1': '42 STREET',
  'intersection_street_2': '43 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '31 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T01:07:54.000',
  'community_board': '01 QUEENS',
  'bbl': '4006920043',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007721',
  'y_coordinate_state_plane': '216342',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76045412454783',
  'longitude': '-73.91527612392564',
  'location': {'latitude': '40.76045412454783',
   'longitude': '-73.91527612392564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600438',
  'created_date': '2024-03-16T23:25:26.000',
  'closed_date': '2024-03-17T00:27:14.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10465',
  'incident_address': '365 HUNTINGTON AVENUE',
  'street_name': 'HUNTINGTON AVENUE',
  'cross_street_1': 'MILES AVENUE',
  'cross_street_2': 'SAMPSON AVENUE',
  'intersection_street_1': 'MILES AVENUE',
  'intersection_street_2': 'SAMPSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HUNTINGTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:27:18.000',
  'community_board': '10 BRONX',
  'bbl': '2055820088',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033273',
  'y_coordinate_state_plane': '237357',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8180297822173',
  'longitude': '-73.82288721618447',
  'location': {'latitude': '40.8180297822173',
   'longitude': '-73.82288721618447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601402',
  'created_date': '2024-03-16T23:25:22.000',
  'closed_date': '2024-03-17T00:02: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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:02:44.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601626',
  'created_date': '2024-03-16T23:25:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11220',
  'incident_address': '260 65 STREET',
  'street_name': '65 STREET',
  'cross_street_1': 'BELT PARKWAY',
  'cross_street_2': '3 AVENUE',
  'intersection_street_1': 'BELT PARKWAY',
  'intersection_street_2': '3 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '65 STREET',
  'status': 'In Progress',
  'community_board': '10 BROOKLYN',
  'bbl': '3058250001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '977471',
  'y_coordinate_state_plane': '172384',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6398282710889',
  'longitude': '-74.02442609252809',
  'location': {'latitude': '40.6398282710889',
   'longitude': '-74.02442609252809',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601598',
  'created_date': '2024-03-16T23:24:54.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': 'School/Pre-School',
  'incident_zip': '11220',
  'incident_address': '4 AVENUE',
  'street_name': '4 AVENUE',
  'cross_street_1': '4 AVENUE',
  'cross_street_2': '63 STREET',
  'intersection_street_1': '4 AVENUE',
  'intersection_street_2': '63 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '978645',
  'y_coordinate_state_plane': '172132',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63913740574683',
  'longitude': '-74.02019572659799',
  'location': {'latitude': '40.63913740574683',
   'longitude': '-74.02019572659799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605397',
  'created_date': '2024-03-16T23:24:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Store/Commercial',
  'incident_zip': '11106',
  'incident_address': '34-03 36 AVENUE',
  'street_name': '36 AVENUE',
  'cross_street_1': '34 STREET',
  'cross_street_2': '35 STREET',
  'intersection_street_1': '34 STREET',
  'intersection_street_2': '35 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '36 AVENUE',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006380001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004415',
  'y_coordinate_state_plane': '214500',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75540646524208',
  'longitude': '-73.92721539648714',
  'location': {'latitude': '40.75540646524208',
   'longitude': '-73.92721539648714',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601139',
  'created_date': '2024-03-16T23:24:44.000',
  'closed_date': '2024-03-17T00:55:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '30-40 80 STREET',
  'street_name': '80 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '80 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T00:55:10.000',
  'community_board': '03 QUEENS',
  'bbl': '4011280026',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015254',
  'y_coordinate_state_plane': '216188',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7600082272867',
  'longitude': '-73.8880847951058',
  'location': {'latitude': '40.7600082272867',
   'longitude': '-73.8880847951058',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60605166',
  'created_date': '2024-03-16T23:24:30.000',
  'closed_date': '2024-03-17T00:12:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '1815 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'AVENUE R',
  'cross_street_2': 'MOORE PLACE',
  'intersection_street_1': 'AVENUE R',
  'intersection_street_2': 'MOORE PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   17 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-03-17T00:13:03.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3068210275',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996536',
  'y_coordinate_state_plane': '159911',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.605586570194475',
  'longitude': '-73.95575378891145',
  'location': {'latitude': '40.605586570194475',
   'longitude': '-73.95575378891145',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601666',
  'created_date': '2024-03-16T23:24: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': '10462',
  'incident_address': '2140 EAST TREMONT AVENUE',
  'street_name': 'EAST TREMONT AVENUE',
  'cross_street_1': 'DOGWOOD DRIVE',
  'cross_street_2': 'ELM DRIVE',
  'intersection_street_1': 'DOGWOOD DRIVE',
  'intersection_street_2': 'ELM DRIVE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST TREMONT AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2039447501',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023910',
  'y_coordinate_state_plane': '246103',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.842082012271206',
  'longitude': '-73.85666256605478',
  'location': {'latitude': '40.842082012271206',
   'longitude': '-73.85666256605478',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599533',
  'created_date': '2024-03-16T23:24:19.000',
  'closed_date': '2024-03-17T00:31: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': '11356',
  'incident_address': '3-23 ENDEAVOR PLACE',
  'street_name': 'ENDEAVOR PLACE',
  'cross_street_1': 'POWELLS COVE BOULEVARD',
  'cross_street_2': '5 AVENUE',
  'intersection_street_1': 'POWELLS COVE BOULEVARD',
  'intersection_street_2': '5 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': 'ENDEAVOR 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-03-17T00:31:29.000',
  'community_board': '07 QUEENS',
  'bbl': '4039167505',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027212',
  'y_coordinate_state_plane': '228404',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7934878597499',
  'longitude': '-73.84484194878644',
  'location': {'latitude': '40.7934878597499',
   'longitude': '-73.84484194878644',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604985',
  'created_date': '2024-03-16T23:24:13.000',
  'closed_date': '2024-03-17T00:24:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11372',
  'incident_address': '74-12 35 AVENUE',
  'street_name': '35 AVENUE',
  'cross_street_1': '74 STREET',
  'cross_street_2': '75 STREET',
  'intersection_street_1': '74 STREET',
  'intersection_street_2': '75 STREET',
  'address_type': 'ADDRESS',
  'city': 'JACKSON HEIGHTS',
  'landmark': '35 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-03-17T00:24:15.000',
  'community_board': '03 QUEENS',
  'bbl': '4012740001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014201',
  'y_coordinate_state_plane': '212911',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.751017333021714',
  'longitude': '-73.89190040511717',
  'location': {'latitude': '40.751017333021714',
   'longitude': '-73.89190040511717',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603688',
  'created_date': '2024-03-16T23:24:01.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Trash',
  'location_type': 'Sidewalk',
  'incident_zip': '10314',
  'incident_address': '877 TRAVIS AVENUE',
  'street_name': 'TRAVIS AVENUE',
  'cross_street_1': 'FREEDOM AVENUE',
  'cross_street_2': 'MULBERRY AVENUE',
  'intersection_street_1': 'FREEDOM AVENUE',
  'intersection_street_2': 'MULBERRY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'TRAVIS AVENUE',
  'status': 'In Progress',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5021100001',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '938032',
  'y_coordinate_state_plane': '155644',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59376253229419',
  'longitude': '-74.16641790791597',
  'location': {'latitude': '40.59376253229419',
   'longitude': '-74.16641790791597',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600455',
  'created_date': '2024-03-16T23:23:57.000',
  'closed_date': '2024-03-17T00:00:54.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-17T00:00:57.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598359',
  'created_date': '2024-03-16T23:23:48.000',
  'closed_date': '2024-03-17T00:39:11.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': '11249',
  'incident_address': '45 SOUTH    3 STREET',
  'street_name': 'SOUTH    3 STREET',
  'cross_street_1': 'KENT AVENUE',
  'cross_street_2': 'WYTHE AVENUE',
  'intersection_street_1': 'KENT AVENUE',
  'intersection_street_2': 'WYTHE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SOUTH    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-03-17T00:39:15.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3024157503',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993676',
  'y_coordinate_state_plane': '199272',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71362733030471',
  'longitude': '-73.96599863237199',
  'location': {'latitude': '40.71362733030471',
   'longitude': '-73.96599863237199',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60603621',
  'created_date': '2024-03-16T23:23: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': '11378',
  'incident_address': '66-16 53 AVENUE',
  'street_name': '53 AVENUE',
  'cross_street_1': '66 STREET',
  'cross_street_2': '68 STREET',
  'intersection_street_1': '66 STREET',
  'intersection_street_2': '68 STREET',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '53 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2024-03-17T01:56:16.000',
  'community_board': '05 QUEENS',
  'bbl': '4024060008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012283',
  'y_coordinate_state_plane': '205748',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.731362982549676',
  'longitude': '-73.8988527247464',
  'location': {'latitude': '40.731362982549676',
   'longitude': '-73.8988527247464',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598326',
  'created_date': '2024-03-16T23:23:45.000',
  'closed_date': '2024-03-16T23:39:20.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10027',
  'incident_address': '248 WEST  132 STREET',
  'street_name': 'WEST  132 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  132 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-03-16T23:39:23.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019370150',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999046',
  'y_coordinate_state_plane': '235838',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81398418999208',
  'longitude': '-73.94654754241463',
  'location': {'latitude': '40.81398418999208',
   'longitude': '-73.94654754241463',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604314',
  'created_date': '2024-03-16T23:23:42.000',
  'agency': 'HPD',
  'agency_name': 'Department of Housing Preservation and Development',
  'complaint_type': 'PAINT/PLASTER',
  'descriptor': 'CEILING',
  'location_type': 'RESIDENTIAL BUILDING',
  'incident_zip': '11369',
  'incident_address': '31-29 87 STREET',
  'street_name': '87 STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'status': 'Open',
  'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
  'resolution_action_updated_date': '2024-03-16T00:00:00.000',
  'community_board': '03 QUEENS',
  'bbl': '4013990043',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017141',
  'y_coordinate_state_plane': '215889',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75918073108456',
  'longitude': '-73.88127475811943',
  'location': {'latitude': '40.75918073108456',
   'longitude': '-73.88127475811943',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60599819',
  'created_date': '2024-03-16T23:23:34.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Smoking',
  'descriptor': 'Smoking Violation',
  'location_type': 'Residential Building',
  'incident_zip': '11217',
  'incident_address': '310 LIVINGSTON STREET',
  'street_name': 'LIVINGSTON STREET',
  'cross_street_1': 'HANOVER PLACE',
  'cross_street_2': 'NEVINS STREET',
  'intersection_street_1': 'HANOVER PLACE',
  'intersection_street_2': 'NEVINS STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LIVINGSTON STREET',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3001660025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989187',
  'y_coordinate_state_plane': '190024',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68824737883683',
  'longitude': '-73.9821980845326',
  'location': {'latitude': '40.68824737883683',
   'longitude': '-73.9821980845326',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604436',
  'created_date': '2024-03-16T23:23:21.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': '89-21 90 STREET',
  'street_name': '90 STREET',
  'cross_street_1': '89 AVENUE',
  'cross_street_2': '91 AVENUE',
  'intersection_street_1': '89 AVENUE',
  'intersection_street_2': '91 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '90 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4089720044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024827',
  'y_coordinate_state_plane': '190773',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.690211571596535',
  'longitude': '-73.8536824116188',
  'location': {'latitude': '40.690211571596535',
   'longitude': '-73.8536824116188',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602243',
  'created_date': '2024-03-16T23:23:21.000',
  'closed_date': '2024-03-17T00:00: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': '11217',
  'incident_address': '18 6 AVENUE',
  'street_name': '6 AVENUE',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'PACIFIC STREET',
  'intersection_street_1': 'ATLANTIC AVENUE',
  'intersection_street_2': 'PACIFIC STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '6 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:00:47.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3011180004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991493',
  'y_coordinate_state_plane': '187934',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.682509220188656',
  'longitude': '-73.97388531907048',
  'location': {'latitude': '40.682509220188656',
   'longitude': '-73.97388531907048',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604111',
  'created_date': '2024-03-16T23:23:05.000',
  'closed_date': '2024-03-17T00:28:34.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': '1555 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'ROCKWOOD STREET',
  'cross_street_2': 'HAWKSTONE STREET',
  'intersection_street_1': 'ROCKWOOD STREET',
  'intersection_street_2': 'HAWKSTONE STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2024-03-17T00:28:41.000',
  'community_board': '04 BRONX',
  'bbl': '2028360012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008520',
  'y_coordinate_state_plane': '246129',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84220908371895',
  'longitude': '-73.91228428654',
  'location': {'latitude': '40.84220908371895',
   'longitude': '-73.91228428654',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602870',
  'created_date': '2024-03-16T23:23:00.000',
  'agency': 'DEP',
  'agency_name': 'Department of Environmental Protection',
  'complaint_type': 'Water System',
  'descriptor': 'Leak (Use Comments) (WA2)',
  'incident_zip': '11229',
  'incident_address': '1520 EAST   28 STREET',
  'street_name': 'EAST   28 STREET',
  'cross_street_1': 'KINGS HWY',
  'cross_street_2': 'AVENUE P',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'status': 'Open',
  'community_board': '15 BROOKLYN',
  'bbl': '3076880062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999137',
  'y_coordinate_state_plane': '162874',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.613715407690144',
  'longitude': '-73.94638014261281',
  'location': {'latitude': '40.613715407690144',
   'longitude': '-73.94638014261281',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60600734',
  'created_date': '2024-03-16T23:22:42.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': '11102',
  'incident_address': '27-35 21 STREET',
  'street_name': '21 STREET',
  'cross_street_1': '27 ROAD',
  'cross_street_2': '28 AVENUE',
  'intersection_street_1': '27 ROAD',
  'intersection_street_2': '28 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '21 STREET',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4005430002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1004605',
  'y_coordinate_state_plane': '220362',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77149570357546',
  'longitude': '-73.92651185025316',
  'location': {'latitude': '40.77149570357546',
   'longitude': '-73.92651185025316',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60602626',
  'created_date': '2024-03-16T23:22:37.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Maintenance or Facility',
  'descriptor': 'Garbage or Litter',
  'location_type': 'Park',
  'incident_zip': '11357',
  'incident_address': '163-02 21 AVENUE',
  'street_name': '21 AVENUE',
  'cross_street_1': '163 STREET',
  'cross_street_2': '166 STREET',
  'intersection_street_1': '163 STREET',
  'intersection_street_2': '166 STREET',
  'address_type': 'ADDRESS',
  'city': 'WHITESTONE',
  'landmark': '21 AVENUE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4057560001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1039612',
  'y_coordinate_state_plane': '223053',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Playground Twenty One',
  'park_borough': 'QUEENS',
  'latitude': '40.77873184790316',
  'longitude': '-73.8001033594334',
  'location': {'latitude': '40.77873184790316',
   'longitude': '-73.8001033594334',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601107',
  'created_date': '2024-03-16T23:22:25.000',
  'closed_date': '2024-03-17T01:09:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11370',
  'incident_address': '30-56 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '30 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '30 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '84 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-03-17T01:09:44.000',
  'community_board': '03 QUEENS',
  'bbl': '4013810034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016305',
  'y_coordinate_state_plane': '216188',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760004479261895',
  'longitude': '-73.88429100250596',
  'location': {'latitude': '40.760004479261895',
   'longitude': '-73.88429100250596',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598811',
  'created_date': '2024-03-16T23:22:22.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': '11103',
  'incident_address': '37-18 28 AVENUE',
  'street_name': '28 AVENUE',
  'cross_street_1': '37 STREET',
  'cross_street_2': '38 STREET',
  'intersection_street_1': '37 STREET',
  'intersection_street_2': '38 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '28 AVENUE',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4006610024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1007773',
  'y_coordinate_state_plane': '218406',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.766119131945075',
  'longitude': '-73.9150811956357',
  'location': {'latitude': '40.766119131945075',
   'longitude': '-73.9150811956357',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598535',
  'created_date': '2024-03-16T23:22:21.000',
  'closed_date': '2024-03-16T23:55:37.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': '11368',
  'incident_address': '127-27 34 AVENUE',
  'street_name': '34 AVENUE',
  'cross_street_1': '127 PLACE',
  'cross_street_2': 'WILLETS POINT BOULEVARD',
  'intersection_street_1': '127 PLACE',
  'intersection_street_2': 'WILLETS POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '34 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2024-03-16T23:55:40.000',
  'community_board': '07 QUEENS',
  'bbl': '4018290071',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028046',
  'y_coordinate_state_plane': '216501',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.760813218746605',
  'longitude': '-73.84190753197079',
  'location': {'latitude': '40.760813218746605',
   'longitude': '-73.84190753197079',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60604754',
  'created_date': '2024-03-16T23:22:09.000',
  'closed_date': '2024-03-17T01:39:26.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11211',
  'incident_address': '148 FROST STREET',
  'street_name': 'FROST 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': 'FROST STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-17T01:39:29.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027390017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999320',
  'y_coordinate_state_plane': '200866',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71799466463538',
  'longitude': '-73.94563609100835',
  'location': {'latitude': '40.71799466463538',
   'longitude': '-73.94563609100835',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60598769',
  'created_date': '2024-03-16T23:21:50.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Rodent',
  'descriptor': 'Rat Sighting',
  'location_type': '3+ Family Mixed Use Building',
  'incident_zip': '11208',
  'incident_address': '438 CHESTNUT STREET',
  'street_name': 'CHESTNUT STREET',
  'cross_street_1': 'GLENMORE AVENUE',
  'cross_street_2': 'PITKIN AVENUE',
  'intersection_street_1': 'GLENMORE AVENUE',
  'intersection_street_2': 'PITKIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CHESTNUT STREET',
  'status': 'In Progress',
  'community_board': '05 BROOKLYN',
  'bbl': '3042110022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1019287',
  'y_coordinate_state_plane': '185654',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.676184763151475',
  'longitude': '-73.87368581933681',
  'location': {'latitude': '40.676184763151475',
   'longitude': '-73.87368581933681',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '60601113',
  'created_date': '2024-03-16T23:21:42.000',
  'closed_date': '2024-03-16T23:35:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '86 LOGAN STREET',
  'street_name': 'LOGAN 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': 'LOGAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2024-03-16T23:35:12.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041130041',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1017939',
  'y_coordinate_state_plane': '188733',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68464114394409',
  'longitude': '-73.87853018334106',
  'location': {'latitude': '40.68464114394409',
   'longitude': '-73.87853018334106',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}}]

Like the FEC, Socrata uses their own API to populate the tables when browsing data on sites powered by them.

At-home exercise: Try filtering a table on the NYC Open Data Portal, and find the API calls that makes.

pd.DataFrame(data)
unique_key created_date agency agency_name complaint_type descriptor location_type incident_zip incident_address street_name ... intersection_street_1 intersection_street_2 landmark vehicle_type closed_date bridge_highway_name bridge_highway_direction bridge_highway_segment taxi_pick_up_location road_ramp
0 60603651 2024-03-17T12:00:00.000 DSNY Department of Sanitation Derelict Vehicles Derelict Vehicles Street 11421 76-49 85 DRIVE 85 DRIVE ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
1 60605465 2024-03-17T12:00:00.000 DSNY Department of Sanitation Derelict Vehicles Derelict Vehicles Street NaN NaN NaN ... 62 AVENUE 62 AVENUE NaN NaN NaN NaN NaN NaN NaN NaN
2 60605461 2024-03-17T12:00:00.000 DSNY Department of Sanitation Derelict Vehicles Derelict Vehicles Street 11421 76-50 85 DRIVE 85 DRIVE ... NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
3 60602644 2024-03-17T01:51:37.000 NYPD New York City Police Department Noise - Commercial Loud Talking Club/Bar/Restaurant 11222 579 MEEKER AVENUE MEEKER AVENUE ... NORTH HENRY STREET MONITOR STREET MEEKER AVENUE NaN NaN NaN NaN NaN NaN NaN
4 60600772 2024-03-17T01:51:25.000 NYPD New York City Police Department Noise - Street/Sidewalk Loud Music/Party Street/Sidewalk 11372 82-20 37 AVENUE 37 AVENUE ... 82 STREET 83 STREET 37 AVENUE NaN NaN NaN NaN NaN NaN NaN
... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ... ...
995 60598811 2024-03-16T23:22:22.000 NYPD New York City Police Department Noise - Commercial Loud Music/Party Club/Bar/Restaurant 11103 37-18 28 AVENUE 28 AVENUE ... 37 STREET 38 STREET 28 AVENUE NaN NaN NaN NaN NaN NaN NaN
996 60598535 2024-03-16T23:22:21.000 NYPD New York City Police Department Noise - Street/Sidewalk Loud Music/Party Street/Sidewalk 11368 127-27 34 AVENUE 34 AVENUE ... 127 PLACE WILLETS POINT BOULEVARD 34 AVENUE NaN 2024-03-16T23:55:37.000 NaN NaN NaN NaN NaN
997 60604754 2024-03-16T23:22:09.000 NYPD New York City Police Department Illegal Parking Commercial Overnight Parking Street/Sidewalk 11211 148 FROST STREET FROST STREET ... MANHATTAN AVENUE GRAHAM AVENUE FROST STREET NaN 2024-03-17T01:39:26.000 NaN NaN NaN NaN NaN
998 60598769 2024-03-16T23:21:50.000 DOHMH Department of Health and Mental Hygiene Rodent Rat Sighting 3+ Family Mixed Use Building 11208 438 CHESTNUT STREET CHESTNUT STREET ... GLENMORE AVENUE PITKIN AVENUE CHESTNUT STREET NaN NaN NaN NaN NaN NaN NaN
999 60601113 2024-03-16T23:21:42.000 NYPD New York City Police Department Blocked Driveway No Access Street/Sidewalk 11208 86 LOGAN STREET LOGAN STREET ... ETNA STREET RIDGEWOOD AVENUE LOGAN STREET NaN 2024-03-16T23:35:07.000 NaN NaN NaN NaN NaN

1000 rows × 39 columns

Coincidence there were exactly 1,000 results?

Pagination#

Things are going to differ by API#

  • Endpoints

  • Supported parameters

  • Response structure

  • Quality of documentation

  • Helpfulness of errors

  • Size/helpfulness of community

Gotta read and experiment.

Final Project#

  • You should have received feedback on your proposal.

  • Reminder that it’s peer-graded.

    • You should see the notebooks you need to review come through Brightspace.

    • This is an opportunity to see how different people solve different problems.

    • You will lose points if you don’t complete your peer grading.

  • Submission

Schedule#