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

Scraping

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

You can turn anything into data

Tedious; fragile

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#

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,378,410 (6,323,737) 719,836 (277,930) 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 or 4 [e] China 9,596,961 (3,705,406) 9,326,410 (3,600,950) 270,550 (104,460) 2.8 [f][1]
... ... ... ... ... ... ... ...
260 NaN Ashmore and Cartier Islands (Australia) 5.0 (1.9) 5.0 (1.9) 0 0.0 NaN
261 NaN Spratly Islands (disputed) 2.0 (0.77) 2.0 (0.77) 0 0.0 NaN
262 NaN Coral Sea Islands (Australia) 2.0 (0.77) 2.0 (0.77) 0 0.0 NaN
263 194 Monaco 2.0 (0.77) 2.0 (0.77) 0 0.0 [dp]
264 195 Vatican City 0.49 (0.19) 0.49 (0.19) 0 0.0 [dq]

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, right-click the API call.

  5. Click Open in New Tab.

  6. Replace the api_key value with DEMO_KEY.

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)

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, '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#

Geocode an address from Python using the Nominatim API. Print out the latitude and longitude. Any address is fine:

  • Your own

  • This building

  • etc.

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 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
9 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
10 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
11 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
12 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
13 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
14 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
15 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
16 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
17 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
18 2004 H2TX18082 False P [2002, 2004] 18 18 [18, 18] [2002, 2004] False ... Challenger 2002-03-12 2002-03-12 2005-03-02T00:00:00 ABBOTT, PHILLIP J. H House REP REPUBLICAN PARTY TX
19 2000 H4KY03095 False P [1994, 1996, 2000] 03 3 [03, 03, 03] [1994, 1996, 2000] False ... Challenger 2000-05-25 2000-05-25 2002-04-07T00:00:00 ABBOTT, RAYMOND H H House DEM DEMOCRATIC PARTY KY

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#

from datetime import datetime, timedelta

now = datetime.utcnow()
now
datetime.datetime(2023, 9, 5, 1, 54, 36, 763661)
start = now - timedelta(weeks=1)
start
datetime.datetime(2023, 8, 29, 1, 54, 36, 763661)
start.isoformat()
'2023-08-29T01:54:36.763661'

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': '58699207',
  'created_date': '2023-09-03T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11235',
  'incident_address': '2752 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'KENMORE COURT',
  'cross_street_2': 'SHORE PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  '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': '2023-09-03T12:00:00.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3087760027',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998788',
  'y_coordinate_state_plane': '152438',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58507128548269',
  'longitude': '-73.94765962668647',
  'location': {'latitude': '40.58507128548269',
   'longitude': '-73.94765962668647',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692761',
  'created_date': '2023-09-03T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11105',
  'incident_address': '21-11 27 STREET',
  'street_name': '27 STREET',
  'cross_street_1': '21 AVENUE',
  'cross_street_2': 'DITMARS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  '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': '2023-09-03T12:00:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4008570029',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008790',
  'y_coordinate_state_plane': '223161',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.779167592495284',
  'longitude': '-73.91139243092027',
  'location': {'latitude': '40.779167592495284',
   'longitude': '-73.91139243092027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695403',
  'created_date': '2023-09-03T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11238',
  'incident_address': '627 CLASSON AVENUE',
  'street_name': 'CLASSON AVENUE',
  'cross_street_1': 'ATLANTIC AVENUE',
  'cross_street_2': 'PACIFIC STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  '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': '2023-09-03T12:00:00.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260002',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995761',
  'y_coordinate_state_plane': '186733',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679208226911285',
  'longitude': '-73.95849907229008',
  'location': {'latitude': '40.679208226911285',
   'longitude': '-73.95849907229008',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694087',
  'created_date': '2023-09-03T12:00:00.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Derelict Vehicles',
  'descriptor': 'Derelict Vehicles',
  'location_type': 'Street',
  'incident_zip': '11238',
  'incident_address': '1049 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'GRAND AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  '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': '2023-09-03T12:00:00.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011250040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995582',
  'y_coordinate_state_plane': '186722',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67917826536648',
  'longitude': '-73.95914444435957',
  'location': {'latitude': '40.67917826536648',
   'longitude': '-73.95914444435957',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691423',
  'created_date': '2023-09-03T02:01:35.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': '517 WEST  134 STREET',
  'street_name': 'WEST  134 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  134 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:26:04.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880018',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996949',
  'y_coordinate_state_plane': '237602',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81882913812659',
  'longitude': '-73.95411988600522',
  'location': {'latitude': '40.81882913812659',
   'longitude': '-73.95411988600522',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696511',
  'created_date': '2023-09-03T02:01:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11379',
  'incident_address': '69-13 76 STREET',
  'street_name': '76 STREET',
  'cross_street_1': '69 ROAD',
  'cross_street_2': 'COOPER AVENUE',
  'intersection_street_1': '69 ROAD',
  'intersection_street_2': 'COOPER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'MIDDLE VILLAGE',
  'landmark': '76 STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018859',
  'y_coordinate_state_plane': '197367',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70833589338235',
  'longitude': '-73.87516865161568',
  'location': {'latitude': '40.70833589338235',
   'longitude': '-73.87516865161568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699138',
  'created_date': '2023-09-03T02:01:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Fireworks',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '45 AVENUE U',
  'street_name': 'AVENUE U',
  'cross_street_1': 'WEST   12 STREET',
  'cross_street_2': 'WEST   11 STREET',
  'intersection_street_1': 'WEST   12 STREET',
  'intersection_street_2': 'WEST   11 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AVENUE U',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:03:13.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3070940048',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989036',
  'y_coordinate_state_plane': '156392',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59593485353654',
  'longitude': '-73.98276642119609',
  'location': {'latitude': '40.59593485353654',
   'longitude': '-73.98276642119609',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696505',
  'created_date': '2023-09-03T02:01:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11239',
  'incident_address': '560 SCHROEDERS AVENUE',
  'street_name': 'SCHROEDERS AVENUE',
  'cross_street_1': 'ESSEX STREET',
  'cross_street_2': 'BERRIMAN STREET',
  'intersection_street_1': 'ESSEX STREET',
  'intersection_street_2': 'BERRIMAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHROEDERS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:43.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3044520927',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020041',
  'y_coordinate_state_plane': '178204',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.655733174190274',
  'longitude': '-73.87100707942905',
  'location': {'latitude': '40.655733174190274',
   'longitude': '-73.87100707942905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697878',
  'created_date': '2023-09-03T02:01: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': '10470',
  'incident_address': 'BRONX BOULEVARD',
  'street_name': 'BRONX BOULEVARD',
  'cross_street_1': 'BRONX BOULEVARD',
  'cross_street_2': 'EAST  241 STREET',
  'intersection_street_1': 'BRONX BOULEVARD',
  'intersection_street_2': 'EAST  241 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024692',
  'y_coordinate_state_plane': '269012',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.90495653910183',
  'longitude': '-73.85369801695018',
  'location': {'latitude': '40.90495653910183',
   'longitude': '-73.85369801695018',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694047',
  'created_date': '2023-09-03T02:01:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10027',
  'incident_address': '2215 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST  130 STREET',
  'cross_street_2': 'WEST  131 STREET',
  'intersection_street_1': 'WEST  130 STREET',
  'intersection_street_2': 'WEST  131 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:16:54.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019150061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999291',
  'y_coordinate_state_plane': '235335',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81260318181825',
  'longitude': '-73.94566357572963',
  'location': {'latitude': '40.81260318181825',
   'longitude': '-73.94566357572963',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691424',
  'created_date': '2023-09-03T02:00:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11001',
  'incident_address': '86-48 260 STREET',
  'street_name': '260 STREET',
  'cross_street_1': '86 AVENUE',
  'cross_street_2': '87 AVENUE',
  'intersection_street_1': '86 AVENUE',
  'intersection_street_2': '87 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLORAL PARK',
  'landmark': '260 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:37:35.000',
  'community_board': '13 QUEENS',
  'bbl': '4088180059',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1065570',
  'y_coordinate_state_plane': '206323',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73261181142275',
  'longitude': '-73.70657924121093',
  'location': {'latitude': '40.73261181142275',
   'longitude': '-73.70657924121093',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695347',
  'created_date': '2023-09-03T02: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': '11103',
  'incident_address': '48-18 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': '48 STREET',
  'cross_street_2': 'NEWTOWN ROAD',
  'intersection_street_1': '48 STREET',
  'intersection_street_2': 'NEWTOWN ROAD',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': 'BROADWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:33:25.000',
  'community_board': '01 QUEENS',
  'bbl': '4007340038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008494',
  'y_coordinate_state_plane': '214686',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75590674415684',
  'longitude': '-73.91249177927916',
  'location': {'latitude': '40.75590674415684',
   'longitude': '-73.91249177927916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700469',
  'created_date': '2023-09-03T02:00: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': '10019',
  'incident_address': '311 WEST   57 STREET',
  'street_name': 'WEST   57 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   57 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:24:04.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010480026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988820',
  'y_coordinate_state_plane': '218712',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76698913667887',
  'longitude': '-73.98350193653141',
  'location': {'latitude': '40.76698913667887',
   'longitude': '-73.98350193653141',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691311',
  'created_date': '2023-09-03T02:00:45.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': '1120 EAST   92 STREET',
  'street_name': 'EAST   92 STREET',
  'cross_street_1': 'GLENWOOD ROAD',
  'cross_street_2': 'CONKLIN AVENUE',
  'intersection_street_1': 'GLENWOOD ROAD',
  'intersection_street_2': 'CONKLIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   92 STREET',
  'status': 'In Progress',
  'community_board': '18 BROOKLYN',
  'bbl': '3081790082',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010385',
  'y_coordinate_state_plane': '173234',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64212537317165',
  'longitude': '-73.90582711025789',
  'location': {'latitude': '40.64212537317165',
   'longitude': '-73.90582711025789',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694023',
  'created_date': '2023-09-03T02:00: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': '10031',
  'incident_address': '514 WEST  136 STREET',
  'street_name': 'WEST  136 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  136 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:49.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880118',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997300',
  'y_coordinate_state_plane': '238040',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82003081301524',
  'longitude': '-73.952850909447',
  'location': {'latitude': '40.82003081301524',
   'longitude': '-73.952850909447',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699172',
  'created_date': '2023-09-03T02:00: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': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:08:28.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699094',
  'created_date': '2023-09-03T02:00:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Store/Commercial',
  'incident_zip': '11208',
  'incident_address': '576 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'GRANT AVENUE',
  'cross_street_2': 'ELDERT LANE',
  'intersection_street_1': 'GRANT AVENUE',
  'intersection_street_2': 'ELDERT LANE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:40:34.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041360023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020903',
  'y_coordinate_state_plane': '189459',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.686622067987564',
  'longitude': '-73.86783918441043',
  'location': {'latitude': '40.686622067987564',
   'longitude': '-73.86783918441043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696569',
  'created_date': '2023-09-03T02:00:24.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '619 CLASSON AVENUE',
  'street_name': 'CLASSON 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': 'CLASSON AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:06:28.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995783',
  'y_coordinate_state_plane': '186815',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67943326967142',
  'longitude': '-73.95841961475953',
  'location': {'latitude': '40.67943326967142',
   'longitude': '-73.95841961475953',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691418',
  'created_date': '2023-09-03T02:00: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': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:15.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699137',
  'created_date': '2023-09-03T02:00:17.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Highway Condition',
  'descriptor': 'Pothole - Highway',
  'location_type': 'Highway',
  'status': 'In Progress',
  'community_board': 'Unspecified BRONX',
  'borough': 'BRONX',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'bridge_highway_name': 'Bruckner Expwy',
  'bridge_highway_direction': 'North/Eastbound',
  'road_ramp': 'Roadway',
  'bridge_highway_segment': 'Merge onto I-95 - Country Club Road Pelham Bay Park (Exit 7C)'},
 {'unique_key': '58699147',
  'created_date': '2023-09-03T02:00:16.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': '11239',
  'incident_address': '516 SCHROEDERS AVENUE',
  'street_name': 'SCHROEDERS AVENUE',
  'cross_street_1': 'ASHFORD STREET',
  'cross_street_2': 'ELTON STREET',
  'intersection_street_1': 'ASHFORD STREET',
  'intersection_street_2': 'ELTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SCHROEDERS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:49.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3044520423',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1019422',
  'y_coordinate_state_plane': '177846',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65475302381683',
  'longitude': '-73.87323985668276',
  'location': {'latitude': '40.65475302381683',
   'longitude': '-73.87323985668276',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700491',
  'created_date': '2023-09-03T02:00:07.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': '2420 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': '2023-09-03T02:54:50.000',
  'community_board': '05 BRONX',
  'bbl': '2031730013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011838',
  'y_coordinate_state_plane': '252971',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.860978589282496',
  'longitude': '-73.90026435184974',
  'location': {'latitude': '40.860978589282496',
   'longitude': '-73.90026435184974',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700480',
  'created_date': '2023-09-03T01:59: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': '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': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:35:54.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074051001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000704',
  'y_coordinate_state_plane': '155913',
  'open_data_channel_type': 'PHONE',
  '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': '58695384',
  'created_date': '2023-09-03T01:59:55.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Street',
  'incident_zip': '11226',
  'incident_address': '210 CLARKSON AVENUE',
  'street_name': 'CLARKSON AVENUE',
  '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': 'CLARKSON AVENUE',
  'status': 'In Progress',
  'community_board': '17 BROOKLYN',
  'bbl': '3050660011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997436',
  'y_coordinate_state_plane': '178013',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65527143489774',
  'longitude': '-73.95247720524927',
  'location': {'latitude': '40.65527143489774',
   'longitude': '-73.95247720524927',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700481',
  'created_date': '2023-09-03T01:59: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': '11235',
  'incident_address': '115 BRIGHTWATER COURT',
  'street_name': 'BRIGHTWATER COURT',
  'cross_street_1': 'BRIGHTON    1 ROAD',
  'cross_street_2': 'BRIGHTON    1 PLACE',
  'intersection_street_1': 'BRIGHTON    1 ROAD',
  'intersection_street_2': 'BRIGHTON    1 PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRIGHTWATER COURT',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:25:49.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3086820036',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '993674',
  'y_coordinate_state_plane': '148957',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.575523540715544',
  'longitude': '-73.96607613477843',
  'location': {'latitude': '40.575523540715544',
   'longitude': '-73.96607613477843',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695364',
  'created_date': '2023-09-03T01:59: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': '10469',
  'incident_address': '2925 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'cross_street_1': 'ARNOW AVENUE',
  'cross_street_2': 'ADEE AVENUE',
  'intersection_street_1': 'ARNOW AVENUE',
  'intersection_street_2': 'ADEE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLDEN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:49:19.000',
  'community_board': '11 BRONX',
  'bbl': '2045530043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023099',
  'y_coordinate_state_plane': '255665',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86833042042862',
  'longitude': '-73.85953822718548',
  'location': {'latitude': '40.86833042042862',
   'longitude': '-73.85953822718548',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697866',
  'created_date': '2023-09-03T01:59: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': '11208',
  'incident_address': '821 PINE STREET',
  'street_name': 'PINE STREET',
  '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': 'PINE STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:26:34.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3045280055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020779',
  'y_coordinate_state_plane': '181532',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66486477688671',
  'longitude': '-73.86832925783091',
  'location': {'latitude': '40.66486477688671',
   'longitude': '-73.86832925783091',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696580',
  'created_date': '2023-09-03T01: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': '11103',
  'incident_address': '25-89 STEINWAY STREET',
  'street_name': 'STEINWAY 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': 'STEINWAY STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:12:16.000',
  'community_board': '01 QUEENS',
  'bbl': '4006840009',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1008616',
  'y_coordinate_state_plane': '218915',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7675139211184',
  'longitude': '-73.91203609469726',
  'location': {'latitude': '40.7675139211184',
   'longitude': '-73.91203609469726',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694030',
  'created_date': '2023-09-03T01:59: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': '11433',
  'incident_address': '112-25 167 STREET',
  'street_name': '167 STREET',
  'cross_street_1': 'SAYRES AVENUE',
  'cross_street_2': 'LINDEN BOULEVARD',
  'intersection_street_1': 'SAYRES AVENUE',
  'intersection_street_2': 'LINDEN BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '167 STREET',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4123230036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044484',
  'y_coordinate_state_plane': '191060',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69088736737928',
  'longitude': '-73.7827984356324',
  'location': {'latitude': '40.69088736737928',
   'longitude': '-73.7827984356324',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697881',
  'created_date': '2023-09-03T01:59: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': '11225',
  'incident_address': '317 LEFFERTS AVENUE',
  'street_name': 'LEFFERTS AVENUE',
  'cross_street_1': 'NOSTRAND AVENUE',
  'cross_street_2': 'NEW YORK AVENUE',
  'intersection_street_1': 'NOSTRAND AVENUE',
  'intersection_street_2': 'NEW YORK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LEFFERTS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:02:34.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013210001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997926',
  'y_coordinate_state_plane': '180598',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66236594717979',
  'longitude': '-73.95070598618686',
  'location': {'latitude': '40.66236594717979',
   'longitude': '-73.95070598618686',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692730',
  'created_date': '2023-09-03T01:59: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': '11212',
  'incident_address': '849 MOTHER GASTON BOULEVARD',
  'street_name': 'MOTHER GASTON BOULEVARD',
  'cross_street_1': 'LOTT AVENUE',
  'cross_street_2': 'NEW LOTS AVENUE',
  'intersection_street_1': 'LOTT AVENUE',
  'intersection_street_2': 'NEW LOTS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MOTHER GASTON BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:18:44.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3038550104',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010945',
  'y_coordinate_state_plane': '178923',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.657738763541445',
  'longitude': '-73.90378673444826',
  'location': {'latitude': '40.657738763541445',
   'longitude': '-73.90378673444826',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696578',
  'created_date': '2023-09-03T01:59:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Store/Commercial',
  'incident_zip': '11417',
  'incident_address': '106-47 95 STREET',
  'street_name': '95 STREET',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': '108 AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': '108 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '95 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4091640178',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027656',
  'y_coordinate_state_plane': '186844',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.679413958998815',
  'longitude': '-73.84350658359385',
  'location': {'latitude': '40.679413958998815',
   'longitude': '-73.84350658359385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697883',
  'created_date': '2023-09-03T01:58: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': '10033',
  'incident_address': '601 WEST  182 STREET',
  'street_name': 'WEST  182 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  182 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:12:15.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021650043',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002650',
  'y_coordinate_state_plane': '248955',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84997980279166',
  'longitude': '-73.933491653735',
  'location': {'latitude': '40.84997980279166',
   'longitude': '-73.933491653735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692740',
  'created_date': '2023-09-03T01:58: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': '11434',
  'incident_address': '114-15 AUGUSTA COURT',
  'street_name': 'AUGUSTA COURT',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'AUGUSTA COURT',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4121840025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041638',
  'y_coordinate_state_plane': '189446',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.686476232213664',
  'longitude': '-73.7930747149264',
  'location': {'latitude': '40.686476232213664',
   'longitude': '-73.7930747149264',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691396',
  'created_date': '2023-09-03T01:58: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': '10024',
  'incident_address': '2350 BROADWAY',
  'street_name': 'BROADWAY',
  'cross_street_1': 'WEST   85 STREET',
  'cross_street_2': 'WEST   86 STREET',
  'intersection_street_1': 'WEST   85 STREET',
  'intersection_street_2': 'WEST   86 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'BROADWAY',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:22:09.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012330016',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990689',
  'y_coordinate_state_plane': '226370',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.788007164471',
  'longitude': '-73.97674735954031',
  'location': {'latitude': '40.788007164471',
   'longitude': '-73.97674735954031',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696606',
  'created_date': '2023-09-03T01:58:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '576 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'GRANT AVENUE',
  'cross_street_2': 'ELDERT LANE',
  'intersection_street_1': 'GRANT AVENUE',
  'intersection_street_2': 'ELDERT LANE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:40:15.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041360023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020903',
  'y_coordinate_state_plane': '189459',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.686622067987564',
  'longitude': '-73.86783918441043',
  'location': {'latitude': '40.686622067987564',
   'longitude': '-73.86783918441043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692727',
  'created_date': '2023-09-03T01:58: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': '10455',
  'incident_address': 'JACKSON AVENUE',
  'street_name': 'JACKSON AVENUE',
  'cross_street_1': 'JACKSON AVENUE',
  'cross_street_2': 'PONTIAC PLACE',
  'intersection_street_1': 'JACKSON AVENUE',
  'intersection_street_2': 'PONTIAC PLACE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:24:34.000',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009556',
  'y_coordinate_state_plane': '236079',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81462181283366',
  'longitude': '-73.90857792559163',
  'location': {'latitude': '40.81462181283366',
   'longitude': '-73.90857792559163',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697879',
  'created_date': '2023-09-03T01:58:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11237',
  'incident_address': '345 GROVE STREET',
  'street_name': 'GROVE STREET',
  'cross_street_1': 'IRVING AVENUE',
  'cross_street_2': 'WYCKOFF AVENUE',
  'intersection_street_1': 'IRVING AVENUE',
  'intersection_street_2': 'WYCKOFF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GROVE STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3033190053',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008007',
  'y_coordinate_state_plane': '194236',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69977783087758',
  'longitude': '-73.9143217914244',
  'location': {'latitude': '40.69977783087758',
   'longitude': '-73.9143217914244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700455',
  'created_date': '2023-09-03T01:58:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11226',
  'incident_address': '135 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  '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': 'LINDEN BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:23:44.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050840082',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997044',
  'y_coordinate_state_plane': '176979',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65243390606725',
  'longitude': '-73.95389194791827',
  'location': {'latitude': '40.65243390606725',
   'longitude': '-73.95389194791827',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691397',
  'created_date': '2023-09-03T01:57: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': '11106',
  'incident_address': '35-22 29 STREET',
  'street_name': '29 STREET',
  'cross_street_1': '35 AVENUE',
  'cross_street_2': '36 AVENUE',
  'intersection_street_1': '35 AVENUE',
  'intersection_street_2': '36 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '29 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:36:00.000',
  'community_board': '01 QUEENS',
  'bbl': '4003400034',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1003506',
  'y_coordinate_state_plane': '215594',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7584112416095',
  'longitude': '-73.93049325387238',
  'location': {'latitude': '40.7584112416095',
   'longitude': '-73.93049325387238',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695373',
  'created_date': '2023-09-03T01:57: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': '10469',
  'incident_address': '2491 BOUCK AVENUE',
  'street_name': 'BOUCK AVENUE',
  'cross_street_1': 'WARING AVENUE',
  'cross_street_2': 'MACE AVENUE',
  'intersection_street_1': 'WARING AVENUE',
  'intersection_street_2': 'MACE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BOUCK AVENUE',
  'status': 'In Progress',
  'community_board': '11 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1025693',
  'y_coordinate_state_plane': '253547',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86250536377688',
  'longitude': '-73.85017252134746',
  'location': {'latitude': '40.86250536377688',
   'longitude': '-73.85017252134746',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700493',
  'created_date': '2023-09-03T01:57: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': '10458',
  'incident_address': '2454 TIEBOUT AVENUE',
  'street_name': 'TIEBOUT 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': 'TIEBOUT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:11:08.000',
  'community_board': '05 BRONX',
  'bbl': '2030220058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013173',
  'y_coordinate_state_plane': '252823',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86056810126927',
  'longitude': '-73.89543872667674',
  'location': {'latitude': '40.86056810126927',
   'longitude': '-73.89543872667674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692716',
  'created_date': '2023-09-03T01:57: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': '10461',
  'incident_address': '1130 CROSBY AVENUE',
  'street_name': 'CROSBY AVENUE',
  'cross_street_1': 'BRUCKNER BOULEVARD',
  'cross_street_2': 'BAISLEY AVENUE',
  'intersection_street_1': 'BRUCKNER BOULEVARD',
  'intersection_street_2': 'BAISLEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROSBY AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1032189',
  'y_coordinate_state_plane': '243561',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8350639104624',
  'longitude': '-73.82675920781016',
  'location': {'latitude': '40.8350639104624',
   'longitude': '-73.82675920781016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695379',
  'created_date': '2023-09-03T01:57: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': '11238',
  'incident_address': '455 ST JOHNS PLACE',
  'street_name': 'ST JOHNS PLACE',
  'cross_street_1': 'WASHINGTON AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'WASHINGTON AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST JOHNS PLACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:38.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011740066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994633',
  'y_coordinate_state_plane': '184659',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67351696025931',
  'longitude': '-73.96256907663572',
  'location': {'latitude': '40.67351696025931',
   'longitude': '-73.96256907663572',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699187',
  'created_date': '2023-09-03T01:57: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': '11213',
  'incident_address': '309 UTICA AVENUE',
  'street_name': 'UTICA AVENUE',
  'cross_street_1': 'UNION STREET',
  'cross_street_2': 'PRESIDENT STREET',
  'intersection_street_1': 'UNION STREET',
  'intersection_street_2': 'PRESIDENT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UTICA AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:28.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3014030007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003325',
  'y_coordinate_state_plane': '182454',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66745026862671',
  'longitude': '-73.93124049177202',
  'location': {'latitude': '40.66745026862671',
   'longitude': '-73.93124049177202',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697886',
  'created_date': '2023-09-03T01:56: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': '10457',
  'incident_address': '1841 CARTER AVENUE',
  'street_name': 'CARTER AVENUE',
  'cross_street_1': 'EAST  175 STREET',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'EAST  175 STREET',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CARTER AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:30:35.000',
  'community_board': '05 BRONX',
  'bbl': '2028920049',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011282',
  'y_coordinate_state_plane': '247748',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84664473813887',
  'longitude': '-73.9022954522807',
  'location': {'latitude': '40.84664473813887',
   'longitude': '-73.9022954522807',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695370',
  'created_date': '2023-09-03T01:56: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': '10031',
  'incident_address': '519 WEST  134 STREET',
  'street_name': 'WEST  134 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  134 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:25:34.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880016',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996940',
  'y_coordinate_state_plane': '237607',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8188428746513',
  'longitude': '-73.95415239257143',
  'location': {'latitude': '40.8188428746513',
   'longitude': '-73.95415239257143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691405',
  'created_date': '2023-09-03T01:56: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': '10474',
  'incident_address': '621 MANIDA STREET',
  'street_name': 'MANIDA 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': 'MANIDA STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:31:40.000',
  'community_board': '02 BRONX',
  'bbl': '2027650226',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015279',
  'y_coordinate_state_plane': '235344',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81258619692701',
  'longitude': '-73.887906068052',
  'location': {'latitude': '40.81258619692701',
   'longitude': '-73.887906068052',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700499',
  'created_date': '2023-09-03T01:56: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': '10033',
  'incident_address': '601 WEST  182 STREET',
  'street_name': 'WEST  182 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  182 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:13:13.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021650043',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002650',
  'y_coordinate_state_plane': '248955',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84997980279166',
  'longitude': '-73.933491653735',
  'location': {'latitude': '40.84997980279166',
   'longitude': '-73.933491653735',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699181',
  'created_date': '2023-09-03T01:56: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': '11237',
  'incident_address': '1223 HALSEY STREET',
  'street_name': 'HALSEY 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': 'HALSEY STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3034060059',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009817',
  'y_coordinate_state_plane': '191877',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69329788353647',
  'longitude': '-73.9078030929653',
  'location': {'latitude': '40.69329788353647',
   'longitude': '-73.9078030929653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700492',
  'created_date': '2023-09-03T01:55: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': '10468',
  'incident_address': '2710 WEBB AVENUE',
  'street_name': 'WEBB AVENUE',
  'cross_street_1': 'EAMES PLACE',
  'cross_street_2': 'WEST  195 STREET',
  'intersection_street_1': 'EAMES PLACE',
  'intersection_street_2': 'WEST  195 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBB AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:55:30.000',
  'community_board': '08 BRONX',
  'bbl': '2032480105',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011329',
  'y_coordinate_state_plane': '256070',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86948597518266',
  'longitude': '-73.90209195590266',
  'location': {'latitude': '40.86948597518266',
   'longitude': '-73.90209195590266',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695378',
  'created_date': '2023-09-03T01:55: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': '10451',
  'incident_address': 'EAST  163 STREET',
  'street_name': 'EAST  163 STREET',
  'cross_street_1': 'EAST  163 STREET',
  'cross_street_2': 'MELROSE AVENUE',
  'intersection_street_1': 'EAST  163 STREET',
  'intersection_street_2': 'MELROSE AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:44:10.000',
  'community_board': '03 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008282',
  'y_coordinate_state_plane': '240025',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82545602251382',
  'longitude': '-73.91316632508766',
  'location': {'latitude': '40.82545602251382',
   'longitude': '-73.91316632508766',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696579',
  'created_date': '2023-09-03T01:55:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Store/Commercial',
  'incident_zip': '10458',
  'incident_address': '314 EAST  188 STREET',
  'street_name': 'EAST  188 STREET',
  'cross_street_1': 'TIEBOUT AVENUE',
  'cross_street_2': 'ELM PLACE',
  'intersection_street_1': 'TIEBOUT AVENUE',
  'intersection_street_2': 'ELM PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  188 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:30:49.000',
  'community_board': '05 BRONX',
  'bbl': '2030220058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013292',
  'y_coordinate_state_plane': '252850',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.860641817415434',
  'longitude': '-73.89500840605352',
  'location': {'latitude': '40.860641817415434',
   'longitude': '-73.89500840605352',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700483',
  'created_date': '2023-09-03T01:55: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': '10455',
  'incident_address': '626 BERGEN AVENUE',
  'street_name': 'BERGEN AVENUE',
  'cross_street_1': 'EAST  152 STREET',
  'cross_street_2': 'EAST  153 STREET',
  'intersection_street_1': 'EAST  152 STREET',
  'intersection_street_2': 'EAST  153 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BERGEN AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2023610025',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007900',
  'y_coordinate_state_plane': '237079',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81737111990692',
  'longitude': '-73.9145569693777',
  'location': {'latitude': '40.81737111990692',
   'longitude': '-73.9145569693777',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693978',
  'created_date': '2023-09-03T01:54:58.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Outside',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11432',
  'incident_address': '82-68 164 STREET',
  'street_name': '164 STREET',
  'cross_street_1': '82 ROAD',
  'cross_street_2': 'GRAND CENTRAL PARKWAY',
  'intersection_street_1': '82 ROAD',
  'intersection_street_2': 'GRAND CENTRAL PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '164 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:54:04.000',
  'community_board': '08 QUEENS',
  'bbl': '4068580001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038740',
  'y_coordinate_state_plane': '200651',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71724956934783',
  'longitude': '-73.80343340538089',
  'location': {'latitude': '40.71724956934783',
   'longitude': '-73.80343340538089',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699844',
  'created_date': '2023-09-03T01:54:52.000',
  'closed_date': '2023-09-03T01: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': '11436',
  'incident_address': '147-11 NORTH CONDUIT AVENUE',
  'street_name': 'NORTH CONDUIT AVENUE',
  'cross_street_1': '147 STREET',
  'cross_street_2': '148 STREET',
  'intersection_street_1': '147 STREET',
  'intersection_street_2': '148 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'NORTH CONDUIT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:56:49.000',
  'community_board': '12 QUEENS',
  'bbl': '4121140004',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041957',
  'y_coordinate_state_plane': '182363',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66703297677092',
  'longitude': '-73.79198514080234',
  'location': {'latitude': '40.66703297677092',
   'longitude': '-73.79198514080234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699154',
  'created_date': '2023-09-03T01:54: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': '11208',
  'incident_address': '576 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'GRANT AVENUE',
  'cross_street_2': 'ELDERT LANE',
  'intersection_street_1': 'GRANT AVENUE',
  'intersection_street_2': 'ELDERT LANE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:39:55.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041360023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020903',
  'y_coordinate_state_plane': '189459',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.686622067987564',
  'longitude': '-73.86783918441043',
  'location': {'latitude': '40.686622067987564',
   'longitude': '-73.86783918441043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697865',
  'created_date': '2023-09-03T01:54: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': '11208',
  'incident_address': '381 ETNA STREET',
  'street_name': 'ETNA STREET',
  'cross_street_1': 'LINCOLN AVENUE',
  'cross_street_2': 'NICHOLS AVENUE',
  'intersection_street_1': 'LINCOLN AVENUE',
  'intersection_street_2': 'NICHOLS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ETNA STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:18:59.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041090065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020340',
  'y_coordinate_state_plane': '189881',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68778267351999',
  'longitude': '-73.86986694680685',
  'location': {'latitude': '40.68778267351999',
   'longitude': '-73.86986694680685',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692707',
  'created_date': '2023-09-03T01:54:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - House of Worship',
  'descriptor': 'Loud Music/Party',
  'location_type': 'House of Worship',
  'incident_zip': '11237',
  'incident_address': '176 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'STANHOPE STREET',
  'cross_street_2': 'HIMROD STREET',
  'intersection_street_1': 'STANHOPE STREET',
  'intersection_street_2': 'HIMROD STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3032710030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007512',
  'y_coordinate_state_plane': '195862',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.704242132775896',
  'longitude': '-73.91610136192867',
  'location': {'latitude': '40.704242132775896',
   'longitude': '-73.91610136192867',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696586',
  'created_date': '2023-09-03T01:54: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': '11412',
  'incident_address': '116 AVENUE',
  'street_name': '116 AVENUE',
  'cross_street_1': '116 AVENUE',
  'cross_street_2': '198 STREET',
  'intersection_street_1': '116 AVENUE',
  'intersection_street_2': '198 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052287',
  'y_coordinate_state_plane': '192757',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69548867636072',
  'longitude': '-73.7546441065894',
  'location': {'latitude': '40.69548867636072',
   'longitude': '-73.7546441065894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696600',
  'created_date': '2023-09-03T01:54: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': '10455',
  'incident_address': 'JACKSON AVENUE',
  'street_name': 'JACKSON AVENUE',
  'cross_street_1': 'JACKSON AVENUE',
  'cross_street_2': 'PONTIAC PLACE',
  'intersection_street_1': 'JACKSON AVENUE',
  'intersection_street_2': 'PONTIAC PLACE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009556',
  'y_coordinate_state_plane': '236079',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81462181283366',
  'longitude': '-73.90857792559163',
  'location': {'latitude': '40.81462181283366',
   'longitude': '-73.90857792559163',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700482',
  'created_date': '2023-09-03T01:54: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': '11433',
  'incident_address': '169-02 107 AVENUE',
  'street_name': '107 AVENUE',
  'cross_street_1': '169 STREET',
  'cross_street_2': '170 STREET',
  'intersection_street_1': '169 STREET',
  'intersection_street_2': '170 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '107 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:23:05.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043186',
  'y_coordinate_state_plane': '194335',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69988519464676',
  'longitude': '-73.78745030170607',
  'location': {'latitude': '40.69988519464676',
   'longitude': '-73.78745030170607',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699160',
  'created_date': '2023-09-03T01:53: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': '10031',
  'incident_address': '518 WEST  134 STREET',
  'street_name': 'WEST  134 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  134 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:16:00.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019870048',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996937',
  'y_coordinate_state_plane': '237602',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.818829155369386',
  'longitude': '-73.95416324069988',
  'location': {'latitude': '40.818829155369386',
   'longitude': '-73.95416324069988',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700501',
  'created_date': '2023-09-03T01:53:40.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '360 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  140 STREET',
  'cross_street_2': 'EAST  142 STREET',
  'intersection_street_1': 'EAST  140 STREET',
  'intersection_street_2': 'EAST  142 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:11:59.000',
  'community_board': '01 BRONX',
  'bbl': '2023250001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005074',
  'y_coordinate_state_plane': '235973',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81434257457615',
  'longitude': '-73.92477020556018',
  'location': {'latitude': '40.81434257457615',
   'longitude': '-73.92477020556018',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699178',
  'created_date': '2023-09-03T01:53: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': '11207',
  'incident_address': '47 MOFFAT STREET',
  'street_name': 'MOFFAT STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'BUSHWICK AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'BUSHWICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'MOFFAT STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3034380044',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009292',
  'y_coordinate_state_plane': '188558',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68418949706014',
  'longitude': '-73.90970862565835',
  'location': {'latitude': '40.68418949706014',
   'longitude': '-73.90970862565835',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694044',
  'created_date': '2023-09-03T01:53: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': '11101',
  'incident_address': '41-07 12 STREET',
  'street_name': '12 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': '12 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': '2023-09-03T02:12:25.000',
  'community_board': '01 QUEENS',
  'bbl': '4004650001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '999736',
  'y_coordinate_state_plane': '214242',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75470775395675',
  'longitude': '-73.94410461224979',
  'location': {'latitude': '40.75470775395675',
   'longitude': '-73.94410461224979',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692739',
  'created_date': '2023-09-03T01:53: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': '10030',
  'incident_address': '212 WEST  133 STREET',
  'street_name': 'WEST  133 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  133 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:19:04.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019380046',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999381',
  'y_coordinate_state_plane': '235950',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81429103122533',
  'longitude': '-73.94533705954535',
  'location': {'latitude': '40.81429103122533',
   'longitude': '-73.94533705954535',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699185',
  'created_date': '2023-09-03T01:52: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': '10453',
  'incident_address': '2065 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EAST BURNSIDE AVENUE',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST BURNSIDE AVENUE',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:58.000',
  'community_board': '05 BRONX',
  'bbl': '2031600024',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011036',
  'y_coordinate_state_plane': '250052',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85296928246686',
  'longitude': '-73.90317538994582',
  'location': {'latitude': '40.85296928246686',
   'longitude': '-73.90317538994582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692735',
  'created_date': '2023-09-03T01:52: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': '10459',
  'incident_address': 'EAST  167 STREET',
  'street_name': 'EAST  167 STREET',
  'cross_street_1': 'EAST  167 STREET',
  'cross_street_2': 'JAMES A POLITE AVENUE',
  'intersection_street_1': 'EAST  167 STREET',
  'intersection_street_2': 'JAMES A POLITE AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:33.000',
  'community_board': '02 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012357',
  'y_coordinate_state_plane': '240355',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82634975075743',
  'longitude': '-73.89844095252168',
  'location': {'latitude': '40.82634975075743',
   'longitude': '-73.89844095252168',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699158',
  'created_date': '2023-09-03T01:52:44.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10038',
  'incident_address': '185 SOUTH STREET',
  'street_name': 'SOUTH STREET',
  'cross_street_1': 'PEDESTRIAN PATH',
  'intersection_street_1': 'PEDESTRIAN PATH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'SOUTH STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:03:38.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002400006',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984773',
  'y_coordinate_state_plane': '197556',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.70892232394095',
  'longitude': '-73.99811357313203',
  'location': {'latitude': '40.70892232394095',
   'longitude': '-73.99811357313203',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695361',
  'created_date': '2023-09-03T01:52: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': '11412',
  'incident_address': 'HOLLIS AVENUE',
  'street_name': 'HOLLIS AVENUE',
  'cross_street_1': '203 STREET',
  'cross_street_2': '204 STREET',
  'intersection_street_1': '203 STREET',
  'intersection_street_2': '204 STREET',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:50.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '58699163',
  'created_date': '2023-09-03T01:52: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': '11412',
  'incident_address': '194-38 113 AVENUE',
  'street_name': '113 AVENUE',
  'cross_street_1': '194 STREET',
  'cross_street_2': '196 STREET',
  'intersection_street_1': '194 STREET',
  'intersection_street_2': '196 STREET',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': '113 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:30:29.000',
  'community_board': '12 QUEENS',
  'bbl': '4109890023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1050602',
  'y_coordinate_state_plane': '194373',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69993699729579',
  'longitude': '-73.76070462465056',
  'location': {'latitude': '40.69993699729579',
   'longitude': '-73.76070462465056',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695354',
  'created_date': '2023-09-03T01:52: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': '10453',
  'incident_address': '2245 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'cross_street_1': 'EAST  182 STREET',
  'cross_street_2': 'EAST  183 STREET',
  'intersection_street_1': 'EAST  182 STREET',
  'intersection_street_2': 'EAST  183 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRESTON AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:10:24.000',
  'community_board': '05 BRONX',
  'bbl': '2031710036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011492',
  'y_coordinate_state_plane': '251453',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.856813212031426',
  'longitude': '-73.90152137339916',
  'location': {'latitude': '40.856813212031426',
   'longitude': '-73.90152137339916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692732',
  'created_date': '2023-09-03T01: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': '11203',
  'incident_address': '610 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'BEVERLEY ROAD',
  'cross_street_2': 'CLARENDON ROAD',
  'intersection_street_1': 'BEVERLEY ROAD',
  'intersection_street_2': 'CLARENDON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   52 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:24.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047620020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004292',
  'y_coordinate_state_plane': '174477',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6455530230782',
  'longitude': '-73.92777846313516',
  'location': {'latitude': '40.6455530230782',
   'longitude': '-73.92777846313516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696589',
  'created_date': '2023-09-03T01:51: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': '11435',
  'incident_address': '144-59 87 ROAD',
  'street_name': '87 ROAD',
  'cross_street_1': '144 STREET',
  'cross_street_2': '148 STREET',
  'intersection_street_1': '144 STREET',
  'intersection_street_2': '148 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '87 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:49:54.000',
  'community_board': '08 QUEENS',
  'bbl': '4097030049',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036490',
  'y_coordinate_state_plane': '196574',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70607277197382',
  'longitude': '-73.8115816385826',
  'location': {'latitude': '40.70607277197382',
   'longitude': '-73.8115816385826',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693983',
  'created_date': '2023-09-03T01:51:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11213',
  'incident_address': '1533 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'KINGSTON AVENUE',
  'cross_street_2': 'ALBANY AVENUE',
  'intersection_street_1': 'KINGSTON AVENUE',
  'intersection_street_2': 'ALBANY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:08:03.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3012040064',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000817',
  'y_coordinate_state_plane': '185984',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.677144373098855',
  'longitude': '-73.94027238122675',
  'location': {'latitude': '40.677144373098855',
   'longitude': '-73.94027238122675',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692744',
  'created_date': '2023-09-03T01:50: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': '11211',
  'incident_address': 'DEVOE STREET',
  'street_name': 'DEVOE STREET',
  'cross_street_1': 'DEVOE STREET',
  'cross_street_2': 'MANHATTAN AVENUE',
  'intersection_street_1': 'DEVOE STREET',
  'intersection_street_2': 'MANHATTAN AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:50.000',
  'community_board': '01 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999234',
  'y_coordinate_state_plane': '199278',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71363613162296',
  'longitude': '-73.94594986427468',
  'location': {'latitude': '40.71363613162296',
   'longitude': '-73.94594986427468',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695412',
  'created_date': '2023-09-03T01:49:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '10002',
  'incident_address': '144 SUFFOLK STREET',
  'street_name': 'SUFFOLK 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': 'SUFFOLK STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:09:18.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003497501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988262',
  'y_coordinate_state_plane': '201617',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72006790461747',
  'longitude': '-73.98552655775242',
  'location': {'latitude': '40.72006790461747',
   'longitude': '-73.98552655775242',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697877',
  'created_date': '2023-09-03T01:49: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': '11232',
  'incident_address': '874 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '42 STREET',
  'status': 'In Progress',
  'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
  'resolution_action_updated_date': '2023-09-03T02:26:35.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009250037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984927',
  'y_coordinate_state_plane': '174153',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64468636458384',
  'longitude': '-73.9975604560498',
  'location': {'latitude': '40.64468636458384',
   'longitude': '-73.9975604560498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692743',
  'created_date': '2023-09-03T01:49:16.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': '73-01 41 AVENUE',
  'street_name': '41 AVENUE',
  'cross_street_1': '73 STREET',
  'cross_street_2': '74 STREET',
  'intersection_street_1': '73 STREET',
  'intersection_street_2': '74 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '41 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4013050001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014212',
  'y_coordinate_state_plane': '210766',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74512981484734',
  'longitude': '-73.89187026019995',
  'location': {'latitude': '40.74512981484734',
   'longitude': '-73.89187026019995',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695328',
  'created_date': '2023-09-03T01:49:13.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': '62-12 39 AVENUE',
  'street_name': '39 AVENUE',
  'cross_street_1': '62 STREET',
  'cross_street_2': '63 STREET',
  'intersection_street_1': '62 STREET',
  'intersection_street_2': '63 STREET',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '39 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:41:59.000',
  'community_board': '02 QUEENS',
  'bbl': '4012320072',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1011572',
  'y_coordinate_state_plane': '211389',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74684834309431',
  'longitude': '-73.90139520614323',
  'location': {'latitude': '40.74684834309431',
   'longitude': '-73.90139520614323',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695355',
  'created_date': '2023-09-03T01:48: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': '11412',
  'incident_address': '112-22 201 STREET',
  'street_name': '201 STREET',
  'cross_street_1': '112 AVENUE',
  'cross_street_2': '113 AVENUE',
  'intersection_street_1': '112 AVENUE',
  'intersection_street_2': '113 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': '201 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:23:25.000',
  'community_board': '12 QUEENS',
  'bbl': '4109760032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052230',
  'y_coordinate_state_plane': '195318',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70251843432061',
  'longitude': '-73.75482381040409',
  'location': {'latitude': '40.70251843432061',
   'longitude': '-73.75482381040409',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693928',
  'created_date': '2023-09-03T01:48:50.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': '85-27 54 AVENUE',
  'street_name': '54 AVENUE',
  'cross_street_1': 'HASPEL STREET',
  'cross_street_2': 'VAN HORN STREET',
  'intersection_street_1': 'HASPEL STREET',
  'intersection_street_2': 'VAN HORN STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '54 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4028770044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017553',
  'y_coordinate_state_plane': '206622',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73374362334073',
  'longitude': '-73.87983346900471',
  'location': {'latitude': '40.73374362334073',
   'longitude': '-73.87983346900471',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697824',
  'created_date': '2023-09-03T01:48:50.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': '10469',
  'incident_address': '3246 HONE AVENUE',
  'street_name': 'HONE AVENUE',
  'cross_street_1': 'BURKE AVENUE',
  'cross_street_2': 'DUNCAN STREET',
  'intersection_street_1': 'BURKE AVENUE',
  'intersection_street_2': 'DUNCAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'HONE AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2046120027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023658',
  'y_coordinate_state_plane': '257047',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87212110501668',
  'longitude': '-73.85750899200089',
  'location': {'latitude': '40.87212110501668',
   'longitude': '-73.85750899200089',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691392',
  'created_date': '2023-09-03T01:48: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': '10458',
  'incident_address': '314 EAST  188 STREET',
  'street_name': 'EAST  188 STREET',
  'cross_street_1': 'TIEBOUT AVENUE',
  'cross_street_2': 'ELM PLACE',
  'intersection_street_1': 'TIEBOUT AVENUE',
  'intersection_street_2': 'ELM PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  188 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:33.000',
  'community_board': '05 BRONX',
  'bbl': '2030220058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013292',
  'y_coordinate_state_plane': '252850',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.860641817415434',
  'longitude': '-73.89500840605352',
  'location': {'latitude': '40.860641817415434',
   'longitude': '-73.89500840605352',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694050',
  'created_date': '2023-09-03T01:48: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': '10458',
  'incident_address': 'ARTHUR AVENUE',
  'street_name': 'ARTHUR AVENUE',
  'cross_street_1': 'ARTHUR AVENUE',
  'cross_street_2': 'EAST FORDHAM ROAD',
  'intersection_street_1': 'ARTHUR AVENUE',
  'intersection_street_2': 'EAST FORDHAM ROAD',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016024',
  'y_coordinate_state_plane': '252043',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85841743654858',
  'longitude': '-73.88513561431257',
  'location': {'latitude': '40.85841743654858',
   'longitude': '-73.88513561431257',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692728',
  'created_date': '2023-09-03T01:48: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': '11691',
  'incident_address': '331 BEACH   31 STREET',
  'street_name': 'BEACH   31 STREET',
  'cross_street_1': 'SEAGIRT BOULEVARD',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'SEAGIRT BOULEVARD',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   31 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:42:04.000',
  'community_board': '14 QUEENS',
  'bbl': '4159450001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049800',
  'y_coordinate_state_plane': '156654',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.5964128776213',
  'longitude': '-73.76396353162814',
  'location': {'latitude': '40.5964128776213',
   'longitude': '-73.76396353162814',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698174',
  'created_date': '2023-09-03T01:48:27.000',
  'closed_date': '2023-09-03T01:50:30.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': '1078 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:50:34.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011340081',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996133',
  'y_coordinate_state_plane': '186564',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67874386867522',
  'longitude': '-73.95715818857319',
  'location': {'latitude': '40.67874386867522',
   'longitude': '-73.95715818857319',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700560',
  'created_date': '2023-09-03T01:48:26.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Other',
  'incident_zip': '10451',
  'incident_address': '851 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'EAST 158 STREET',
  'cross_street_2': 'EAST 159 STREET',
  'intersection_street_1': 'EAST  158 STREET',
  'intersection_street_2': 'EAST  159 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2023-09-03T02:50:14.000',
  'community_board': '04 BRONX',
  'bbl': '2024680001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005532',
  'y_coordinate_state_plane': '240238',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.826047700758245',
  'longitude': '-73.92310208735978',
  'location': {'latitude': '40.826047700758245',
   'longitude': '-73.92310208735978',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691400',
  'created_date': '2023-09-03T01:48: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': '11207',
  'incident_address': '2714 FULTON STREET',
  'street_name': 'FULTON STREET',
  'cross_street_1': 'VERMONT STREET',
  'cross_street_2': 'WYONA STREET',
  'intersection_street_1': 'VERMONT STREET',
  'intersection_street_2': 'WYONA STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FULTON STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:17:34.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013490',
  'y_coordinate_state_plane': '186160',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67759466394738',
  'longitude': '-73.89458274575777',
  'location': {'latitude': '40.67759466394738',
   'longitude': '-73.89458274575777',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697867',
  'created_date': '2023-09-03T01:48: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': '11219',
  'incident_address': '1362 OVINGTON AVENUE',
  'street_name': 'OVINGTON AVENUE',
  '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': 'OVINGTON AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:17:59.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3057750029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '983660',
  'y_coordinate_state_plane': '166382',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.623356625346936',
  'longitude': '-74.00212536331156',
  'location': {'latitude': '40.623356625346936',
   'longitude': '-74.00212536331156',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692266',
  'created_date': '2023-09-03T01:47:40.000',
  'closed_date': '2023-09-03T01:56:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11225',
  'incident_address': '2121 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': '2023-09-03T01:56:29.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050260070',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995080',
  'y_coordinate_state_plane': '179741',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66001760998396',
  'longitude': '-73.96096553336491',
  'location': {'latitude': '40.66001760998396',
   'longitude': '-73.96096553336491',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691393',
  'created_date': '2023-09-03T01:47:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '11208',
  'incident_address': '576 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'GRANT AVENUE',
  'cross_street_2': 'ELDERT LANE',
  'intersection_street_1': 'GRANT AVENUE',
  'intersection_street_2': 'ELDERT LANE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:17:20.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041360023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020903',
  'y_coordinate_state_plane': '189459',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.686622067987564',
  'longitude': '-73.86783918441043',
  'location': {'latitude': '40.686622067987564',
   'longitude': '-73.86783918441043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695368',
  'created_date': '2023-09-03T01:47:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10457',
  'incident_address': '2050 ANTHONY AVENUE',
  'street_name': 'ANTHONY AVENUE',
  'cross_street_1': 'EAST BURNSIDE AVENUE',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST BURNSIDE AVENUE',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANTHONY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:10:08.000',
  'community_board': '05 BRONX',
  'bbl': '2031560039',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011247',
  'y_coordinate_state_plane': '249782',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.852227570490044',
  'longitude': '-73.90241376625738',
  'location': {'latitude': '40.852227570490044',
   'longitude': '-73.90241376625738',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691411',
  'created_date': '2023-09-03T01:47: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': '11203',
  'incident_address': '610 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'BEVERLEY ROAD',
  'cross_street_2': 'CLARENDON ROAD',
  'intersection_street_1': 'BEVERLEY ROAD',
  'intersection_street_2': 'CLARENDON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   52 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:24.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047620020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004292',
  'y_coordinate_state_plane': '174477',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6455530230782',
  'longitude': '-73.92777846313516',
  'location': {'latitude': '40.6455530230782',
   'longitude': '-73.92777846313516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700396',
  'created_date': '2023-09-03T01:47:27.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': '510 CALHOUN AVENUE',
  'street_name': 'CALHOUN AVENUE',
  'cross_street_1': 'DEWEY AVENUE',
  'cross_street_2': 'CROSS BRONX EXPRESSWAY',
  'intersection_street_1': 'DEWEY AVENUE',
  'intersection_street_2': 'CROSS BRONX EXPRESSWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CALHOUN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:20:54.000',
  'community_board': '10 BRONX',
  'bbl': '2055610037',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1033757',
  'y_coordinate_state_plane': '238774',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82191634039176',
  'longitude': '-73.8211281475225',
  'location': {'latitude': '40.82191634039176',
   'longitude': '-73.8211281475225',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697874',
  'created_date': '2023-09-03T01:47: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': '10457',
  'incident_address': '1551 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'MOUNT EDEN PARKWAY',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'MOUNT EDEN PARKWAY',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SHERIDAN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:52:54.000',
  'community_board': '04 BRONX',
  'bbl': '2028210061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008853',
  'y_coordinate_state_plane': '246060',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84201877747143',
  'longitude': '-73.91108102453146',
  'location': {'latitude': '40.84201877747143',
   'longitude': '-73.91108102453146',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700451',
  'created_date': '2023-09-03T01:47:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11356',
  'incident_address': '121-11 SIXTH AVENUE',
  'street_name': 'SIXTH AVENUE',
  'cross_street_1': 'COLLEGE PLACE',
  'cross_street_2': 'COLLEGE POINT BOULEVARD',
  'intersection_street_1': 'COLLEGE PLACE',
  'intersection_street_2': 'COLLEGE POINT BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'COLLEGE POINT',
  'landmark': '6 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:21:00.000',
  'community_board': '07 QUEENS',
  'bbl': '4039400088',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1026904',
  'y_coordinate_state_plane': '227745',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.791680577395695',
  'longitude': '-73.84595847939349',
  'location': {'latitude': '40.791680577395695',
   'longitude': '-73.84595847939349',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698356',
  'created_date': '2023-09-03T01:47:07.000',
  'closed_date': '2023-09-03T01:49: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': '11385',
  'incident_address': '74-17 62 STREET',
  'street_name': '62 STREET',
  'cross_street_1': '74 AVENUE',
  'cross_street_2': '75 AVENUE',
  'intersection_street_1': '74 AVENUE',
  'intersection_street_2': '75 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '62 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': '2023-09-03T01:49:38.000',
  'community_board': '05 QUEENS',
  'bbl': '4035950055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013868',
  'y_coordinate_state_plane': '194251',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69980132677897',
  'longitude': '-73.89318439616977',
  'location': {'latitude': '40.69980132677897',
   'longitude': '-73.89318439616977',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691367',
  'created_date': '2023-09-03T01:47:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '43-14 FORLEY STREET',
  'street_name': 'FORLEY STREET',
  'cross_street_1': 'LAMONT AVENUE',
  'cross_street_2': '43 AVENUE',
  'intersection_street_1': 'LAMONT AVENUE',
  'intersection_street_2': '43 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'FORLEY STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015770014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019320',
  'y_coordinate_state_plane': '210503',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74438916473561',
  'longitude': '-73.87343741492408',
  'location': {'latitude': '40.74438916473561',
   'longitude': '-73.87343741492408',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695348',
  'created_date': '2023-09-03T01:46: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': '11249',
  'incident_address': '113 NORTH THIRD STREET',
  'street_name': 'NORTH THIRD STREET',
  'cross_street_1': 'WYTHE AVENUE',
  'cross_street_2': 'BERRY STREET',
  'intersection_street_1': 'WYTHE AVENUE',
  'intersection_street_2': 'BERRY STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NORTH    3 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:21:49.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3023500026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994840',
  'y_coordinate_state_plane': '200365',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71662603700051',
  'longitude': '-73.96179814494636',
  'location': {'latitude': '40.71662603700051',
   'longitude': '-73.96179814494636',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690474',
  'created_date': '2023-09-03T01:46:54.000',
  'closed_date': '2023-09-03T02:00:39.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': '10039',
  'incident_address': '205 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:00:43.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020340025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001345',
  'y_coordinate_state_plane': '239420',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.823811619823985',
  'longitude': '-73.93823298645538',
  'location': {'latitude': '40.823811619823985',
   'longitude': '-73.93823298645538',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698505',
  'created_date': '2023-09-03T01:46:52.000',
  'closed_date': '2023-09-03T02:01: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': '11004',
  'incident_address': '79 AVENUE',
  'street_name': '79 AVENUE',
  'cross_street_1': '79 AVENUE',
  'cross_street_2': '266 STREET',
  'intersection_street_1': '79 AVENUE',
  'intersection_street_2': '266 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': '2023-09-03T02:01:38.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1065631',
  'y_coordinate_state_plane': '211865',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74782257762287',
  'longitude': '-73.70629209354847',
  'location': {'latitude': '40.74782257762287',
   'longitude': '-73.70629209354847',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696885',
  'created_date': '2023-09-03T01:46:51.000',
  'closed_date': '2023-09-03T01:48:09.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': '1058 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:48:13.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011340017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995985',
  'y_coordinate_state_plane': '186605',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67885660181886',
  'longitude': '-73.95769170188852',
  'location': {'latitude': '40.67885660181886',
   'longitude': '-73.95769170188852',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691391',
  'created_date': '2023-09-03T01:46: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': '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': '2023-09-03T02:20:35.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': '58699183',
  'created_date': '2023-09-03T01:46: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': '10470',
  'incident_address': '4706 BRONX BOULEVARD',
  'street_name': 'BRONX BOULEVARD',
  'cross_street_1': 'EAST  241 STREET',
  'cross_street_2': 'EAST  242 STREET',
  'intersection_street_1': 'EAST  241 STREET',
  'intersection_street_2': 'EAST  242 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRONX BOULEVARD',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2051030010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024783',
  'y_coordinate_state_plane': '269156',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.905351354349136',
  'longitude': '-73.85336794620244',
  'location': {'latitude': '40.905351354349136',
   'longitude': '-73.85336794620244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697887',
  'created_date': '2023-09-03T01:46: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': '10457',
  'incident_address': '1841 CARTER AVENUE',
  'street_name': 'CARTER AVENUE',
  'cross_street_1': 'EAST  175 STREET',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'EAST  175 STREET',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CARTER AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:30:29.000',
  'community_board': '05 BRONX',
  'bbl': '2028920049',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011282',
  'y_coordinate_state_plane': '247748',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84664473813887',
  'longitude': '-73.9022954522807',
  'location': {'latitude': '40.84664473813887',
   'longitude': '-73.9022954522807',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700498',
  'created_date': '2023-09-03T01:46: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': '11420',
  'incident_address': '115 STREET',
  'street_name': '115 STREET',
  'cross_street_1': 'ROCKAWAY BOULEVARD',
  'cross_street_2': 'SUTTER AVENUE',
  'intersection_street_1': 'ROCKAWAY BOULEVARD',
  'intersection_street_2': 'SUTTER AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:24.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '58699733',
  'created_date': '2023-09-03T01:46:24.000',
  'closed_date': '2023-09-03T01:54: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': '11433',
  'incident_address': '92-12 170 STREET',
  'street_name': '170 STREET',
  'cross_street_1': 'JAMAICA AVENUE',
  'cross_street_2': '92 ROAD',
  'intersection_street_1': 'JAMAICA AVENUE',
  'intersection_street_2': '92 ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '170 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:54:23.000',
  'community_board': '12 QUEENS',
  'bbl': '4102100042',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042652',
  'y_coordinate_state_plane': '196805',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70666828534695',
  'longitude': '-73.78935471731579',
  'location': {'latitude': '40.70666828534695',
   'longitude': '-73.78935471731579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696603',
  'created_date': '2023-09-03T01:46: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': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:09.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692235',
  'created_date': '2023-09-03T01:46:14.000',
  'closed_date': '2023-09-03T01:54: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': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:54:33.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697841',
  'created_date': '2023-09-03T01:46:04.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': '71-32 68 STREET',
  'street_name': '68 STREET',
  'cross_street_1': 'CENTRAL AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'CENTRAL AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '68 STREET',
  'status': 'In Progress',
  'community_board': '05 QUEENS',
  'bbl': '4036810022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016090',
  'y_coordinate_state_plane': '195362',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.702843043137364',
  'longitude': '-73.88516563795615',
  'location': {'latitude': '40.702843043137364',
   'longitude': '-73.88516563795615',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697885',
  'created_date': '2023-09-03T01:45: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': '11420',
  'incident_address': '121 STREET',
  'street_name': '121 STREET',
  'cross_street_1': '121 STREET',
  'cross_street_2': '135 AVENUE',
  'intersection_street_1': '121 STREET',
  'intersection_street_2': '135 AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034455',
  'y_coordinate_state_plane': '183503',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67020773508567',
  'longitude': '-73.81901882411154',
  'location': {'latitude': '40.67020773508567',
   'longitude': '-73.81901882411154',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696598',
  'created_date': '2023-09-03T01:45: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': '11203',
  'incident_address': '610 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'BEVERLEY ROAD',
  'cross_street_2': 'CLARENDON ROAD',
  'intersection_street_1': 'BEVERLEY ROAD',
  'intersection_street_2': 'CLARENDON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   52 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:24.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047620020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004292',
  'y_coordinate_state_plane': '174477',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6455530230782',
  'longitude': '-73.92777846313516',
  'location': {'latitude': '40.6455530230782',
   'longitude': '-73.92777846313516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694686',
  'created_date': '2023-09-03T01:45:32.000',
  'closed_date': '2023-09-03T02:01: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': '11208',
  'incident_address': '193 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': 'GLENMORE AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': 'GLENMORE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHERIDAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:01:34.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042030005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1021196',
  'y_coordinate_state_plane': '186291',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67792542076185',
  'longitude': '-73.86680007686364',
  'location': {'latitude': '40.67792542076185',
   'longitude': '-73.86680007686364',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693425',
  'created_date': '2023-09-03T01:45:29.000',
  'closed_date': '2023-09-03T01:51: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': '10457',
  'incident_address': '2055 ANTHONY AVENUE',
  'street_name': 'ANTHONY AVENUE',
  'cross_street_1': 'EAST BURNSIDE AVENUE',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST BURNSIDE AVENUE',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANTHONY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:51:58.000',
  'community_board': '05 BRONX',
  'bbl': '2031560027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011266',
  'y_coordinate_state_plane': '249826',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.852348279231805',
  'longitude': '-73.9023449095804',
  'location': {'latitude': '40.852348279231805',
   'longitude': '-73.9023449095804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691421',
  'created_date': '2023-09-03T01:45: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': '10453',
  'incident_address': '1501 UNDERCLIFF AVENUE',
  'street_name': 'UNDERCLIFF AVENUE',
  'cross_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'cross_street_2': 'WEST  174 STREET',
  'intersection_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'intersection_street_2': 'WEST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNDERCLIFF AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:09:48.000',
  'community_board': '05 BRONX',
  'bbl': '2028800061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005240',
  'y_coordinate_state_plane': '247416',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.845749925937085',
  'longitude': '-73.92413470328373',
  'location': {'latitude': '40.845749925937085',
   'longitude': '-73.92413470328373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696891',
  'created_date': '2023-09-03T01:45:08.000',
  'closed_date': '2023-09-03T01:47:54.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': '1082 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:47:58.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011340029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996163',
  'y_coordinate_state_plane': '186556',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678721870165795',
  'longitude': '-73.9570500436527',
  'location': {'latitude': '40.678721870165795',
   'longitude': '-73.9570500436527',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691436',
  'created_date': '2023-09-03T01:44:44.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Street',
  'incident_zip': '10457',
  'incident_address': '2072 ANTHONY AVENUE',
  'street_name': 'ANTHONY AVENUE',
  'cross_street_1': 'EAST BURNSIDE AVENUE',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST BURNSIDE AVENUE',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANTHONY AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2031560049',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011361',
  'y_coordinate_state_plane': '249971',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85274596970766',
  'longitude': '-73.90200092574528',
  'location': {'latitude': '40.85274596970766',
   'longitude': '-73.90200092574528',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694045',
  'created_date': '2023-09-03T01:44: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': '11419',
  'incident_address': '130-15 LIBERTY AVENUE',
  'street_name': 'LIBERTY 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': 'SOUTH RICHMOND HILL',
  'landmark': 'LIBERTY AVENUE',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4095670044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035453',
  'y_coordinate_state_plane': '190613',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68971731345495',
  'longitude': '-73.81536717828209',
  'location': {'latitude': '40.68971731345495',
   'longitude': '-73.81536717828209',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698500',
  'created_date': '2023-09-03T01:44:03.000',
  'closed_date': '2023-09-03T01:54: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': '11236',
  'incident_address': '8816 AVENUE M',
  'street_name': 'AVENUE M',
  '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': 'BROOKLYN',
  'landmark': 'AVENUE M',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:54:28.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080790043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1012015',
  'y_coordinate_state_plane': '169853',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.632840295509794',
  'longitude': '-73.89996760832551',
  'location': {'latitude': '40.632840295509794',
   'longitude': '-73.89996760832551',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694795',
  'created_date': '2023-09-03T01:44:03.000',
  'closed_date': '2023-09-03T01: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': '10457',
  'incident_address': '2055 ANTHONY AVENUE',
  'street_name': 'ANTHONY AVENUE',
  'cross_street_1': 'EAST BURNSIDE AVENUE',
  'cross_street_2': 'EAST  180 STREET',
  'intersection_street_1': 'EAST BURNSIDE AVENUE',
  'intersection_street_2': 'EAST  180 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ANTHONY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:51:29.000',
  'community_board': '05 BRONX',
  'bbl': '2031560027',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011266',
  'y_coordinate_state_plane': '249826',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.852348279231805',
  'longitude': '-73.9023449095804',
  'location': {'latitude': '40.852348279231805',
   'longitude': '-73.9023449095804',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699140',
  'created_date': '2023-09-03T01:44:00.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': '3425 KNOX PLACE',
  'street_name': 'KNOX PLACE',
  'cross_street_1': 'WEST MOSHOLU PARKWAY NORTH',
  'cross_street_2': 'WEST GUN HILL ROAD',
  'intersection_street_1': 'WEST MOSHOLU PARKWAY NORTH',
  'intersection_street_2': 'WEST GUN HILL ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KNOX PLACE',
  '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': '2023-09-03T02:20:29.000',
  'community_board': '07 BRONX',
  'bbl': '2033240082',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016441',
  'y_coordinate_state_plane': '260586',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.881863828801755',
  'longitude': '-73.8835871004662',
  'location': {'latitude': '40.881863828801755',
   'longitude': '-73.8835871004662',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700485',
  'created_date': '2023-09-03T01:43: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': '10472',
  'incident_address': 'EAST  172 STREET',
  'street_name': 'EAST  172 STREET',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'FTELEY AVENUE',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'FTELEY AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1019609',
  'y_coordinate_state_plane': '242482',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.832161696586816',
  'longitude': '-73.87222611753623',
  'location': {'latitude': '40.832161696586816',
   'longitude': '-73.87222611753623',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698440',
  'created_date': '2023-09-03T01:43:55.000',
  'closed_date': '2023-09-03T01:53: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': '10453',
  'incident_address': '1571 UNDERCLIFF AVENUE',
  'street_name': 'UNDERCLIFF AVENUE',
  'cross_street_1': 'WEST  174 STREET',
  'cross_street_2': 'WEST  175 STREET',
  'intersection_street_1': 'WEST  174 STREET',
  'intersection_street_2': 'WEST  175 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNDERCLIFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:53:54.000',
  'community_board': '05 BRONX',
  'bbl': '2028800135',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005560',
  'y_coordinate_state_plane': '248190',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.847873560810946',
  'longitude': '-73.92297565064655',
  'location': {'latitude': '40.847873560810946',
   'longitude': '-73.92297565064655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691404',
  'created_date': '2023-09-03T01:43: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': '10463',
  'incident_address': '434 WEST  238 STREET',
  'street_name': 'WEST  238 STREET',
  'cross_street_1': 'WALDO AVENUE',
  'cross_street_2': 'GREYSTONE AVENUE',
  'intersection_street_1': 'WALDO AVENUE',
  'intersection_street_2': 'GREYSTONE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST  238 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:48:29.000',
  'community_board': '08 BRONX',
  'bbl': '2057702002',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010682',
  'y_coordinate_state_plane': '262499',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.887133539537054',
  'longitude': '-73.90440590914098',
  'location': {'latitude': '40.887133539537054',
   'longitude': '-73.90440590914098',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692683',
  'created_date': '2023-09-03T01:43:53.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': '950 SUMMIT AVENUE',
  'street_name': 'SUMMIT AVENUE',
  'cross_street_1': 'WEST  162 STREET',
  'cross_street_2': 'WEST  164 STREET',
  'intersection_street_1': 'WEST  162 STREET',
  'intersection_street_2': 'WEST  164 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SUMMIT AVENUE',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2025240033',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003411',
  'y_coordinate_state_plane': '242478',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83220071380918',
  'longitude': '-73.93075946196511',
  'location': {'latitude': '40.83220071380918',
   'longitude': '-73.93075946196511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699235',
  'created_date': '2023-09-03T01:43:45.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Other',
  'incident_zip': '10013',
  'incident_address': '60 LAFAYETTE STREET',
  'street_name': 'LAFAYETTE STREET',
  'cross_street_1': 'LEONARD STREET',
  'cross_street_2': 'FRANKLIN STREET',
  'intersection_street_1': 'LEONARD STREET',
  'intersection_street_2': 'FRANKLIN STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'LAFAYETTE STREET',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2023-09-03T02:50:00.000',
  'community_board': '01 MANHATTAN',
  'bbl': '1001710031',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983605',
  'y_coordinate_state_plane': '200302',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.716459431762694',
  'longitude': '-74.0023267359905',
  'location': {'latitude': '40.716459431762694',
   'longitude': '-74.0023267359905',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692745',
  'created_date': '2023-09-03T01:43:38.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': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:10:54.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050650040',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996969',
  'y_coordinate_state_plane': '177975',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6551678163122',
  'longitude': '-73.95416036056795',
  'location': {'latitude': '40.6551678163122',
   'longitude': '-73.95416036056795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691409',
  'created_date': '2023-09-03T01:43: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': '11223',
  'incident_address': '14 AVENUE S',
  'street_name': 'AVENUE S',
  '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': 'AVENUE S',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:02:43.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3070750006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988301',
  'y_coordinate_state_plane': '158008',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.600370813258536',
  'longitude': '-73.98541206312603',
  'location': {'latitude': '40.600370813258536',
   'longitude': '-73.98541206312603',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699845',
  'created_date': '2023-09-03T01:43:05.000',
  'closed_date': '2023-09-03T01:49: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': '10469',
  'incident_address': '2925 COLDEN AVENUE',
  'street_name': 'COLDEN AVENUE',
  'cross_street_1': 'ARNOW AVENUE',
  'cross_street_2': 'ADEE AVENUE',
  'intersection_street_1': 'ARNOW AVENUE',
  'intersection_street_2': 'ADEE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLDEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:49:08.000',
  'community_board': '11 BRONX',
  'bbl': '2045530043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023099',
  'y_coordinate_state_plane': '255665',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86833042042862',
  'longitude': '-73.85953822718548',
  'location': {'latitude': '40.86833042042862',
   'longitude': '-73.85953822718548',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699165',
  'created_date': '2023-09-03T01:43: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': '11369',
  'incident_address': '24 AVENUE',
  'street_name': '24 AVENUE',
  'cross_street_1': '24 AVENUE',
  'cross_street_2': '92 STREET',
  'intersection_street_1': '24 AVENUE',
  'intersection_street_2': '92 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:26:45.000',
  'community_board': '03 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018111',
  'y_coordinate_state_plane': '218321',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76585227708937',
  'longitude': '-73.87776114457056',
  'location': {'latitude': '40.76585227708937',
   'longitude': '-73.87776114457056',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692290',
  'created_date': '2023-09-03T01:42:37.000',
  'closed_date': '2023-09-03T01:56:09.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': '666 WEST  207 STREET',
  'street_name': 'WEST  207 STREET',
  'cross_street_1': 'SEAMAN AVENUE',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'SEAMAN AVENUE',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  207 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:56:13.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022480092',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1005767',
  'y_coordinate_state_plane': '255969',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86922407167794',
  'longitude': '-73.92220248436887',
  'location': {'latitude': '40.86922407167794',
   'longitude': '-73.92220248436887',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699799',
  'created_date': '2023-09-03T01:42:32.000',
  'closed_date': '2023-09-03T01:56: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': '10302',
  'incident_address': '148 CLINTON PLACE',
  'street_name': 'CLINTON PLACE',
  'cross_street_1': 'TREADWELL AVENUE',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'TREADWELL AVENUE',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'CLINTON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:56:24.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5011000041',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '945398',
  'y_coordinate_state_plane': '170020',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.633256984679264',
  'longitude': '-74.13997779785583',
  'location': {'latitude': '40.633256984679264',
   'longitude': '-74.13997779785583',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692704',
  'created_date': '2023-09-03T01:42: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': '10039',
  'incident_address': '2515 7 AVENUE',
  'street_name': '7 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': '7 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:14:13.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020140063',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001209',
  'y_coordinate_state_plane': '238797',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82210192388447',
  'longitude': '-73.9387259509682',
  'location': {'latitude': '40.82210192388447',
   'longitude': '-73.9387259509682',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698392',
  'created_date': '2023-09-03T01:42:11.000',
  'closed_date': '2023-09-03T01:59: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': '11355',
  'incident_address': '142-12 41 AVENUE',
  'street_name': '41 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': '41 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': '2023-09-03T01:59:18.000',
  'community_board': '07 QUEENS',
  'bbl': '4050460006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032597',
  'y_coordinate_state_plane': '216015',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.759455560769595',
  'longitude': '-73.8254831111012',
  'location': {'latitude': '40.759455560769595',
   'longitude': '-73.8254831111012',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697226',
  'created_date': '2023-09-03T01:41:55.000',
  'closed_date': '2023-09-03T01:51: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': '11210',
  'incident_address': '37 KENILWORTH PLACE',
  'street_name': 'KENILWORTH PLACE',
  'cross_street_1': 'FARRAGUT ROAD',
  'cross_street_2': 'GLENWOOD ROAD',
  'intersection_street_1': 'FARRAGUT ROAD',
  'intersection_street_2': 'GLENWOOD ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'KENILWORTH PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:51:13.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052490022',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997761',
  'y_coordinate_state_plane': '170654',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63507207993249',
  'longitude': '-73.9513206331805',
  'location': {'latitude': '40.63507207993249',
   'longitude': '-73.9513206331805',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699404',
  'created_date': '2023-09-03T01:41:53.000',
  'closed_date': '2023-09-03T01:47:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '1103 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:47:23.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996182',
  'y_coordinate_state_plane': '186557',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678724589348626',
  'longitude': '-73.95698154116535',
  'location': {'latitude': '40.678724589348626',
   'longitude': '-73.95698154116535',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699077',
  'created_date': '2023-09-03T01:41:47.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10473',
  'incident_address': '626 SAINT LAWRENCE AVENUE',
  'street_name': 'SAINT LAWRENCE AVENUE',
  'cross_street_1': 'RANDALL AVENUE',
  'cross_street_2': 'SEWARD AVENUE',
  'intersection_street_1': 'RANDALL AVENUE',
  'intersection_street_2': 'SEWARD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'ST LAWRENCE AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2035570020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021900',
  'y_coordinate_state_plane': '237180',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81759976137729',
  'longitude': '-73.86397708507411',
  'location': {'latitude': '40.81759976137729',
   'longitude': '-73.86397708507411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700488',
  'created_date': '2023-09-03T01:41: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': '11203',
  'incident_address': '610 EAST   52 STREET',
  'street_name': 'EAST   52 STREET',
  'cross_street_1': 'BEVERLEY ROAD',
  'cross_street_2': 'CLARENDON ROAD',
  'intersection_street_1': 'BEVERLEY ROAD',
  'intersection_street_2': 'CLARENDON ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   52 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:15.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3047620020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004292',
  'y_coordinate_state_plane': '174477',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6455530230782',
  'longitude': '-73.92777846313516',
  'location': {'latitude': '40.6455530230782',
   'longitude': '-73.92777846313516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697488',
  'created_date': '2023-09-03T01:41:39.000',
  'closed_date': '2023-09-03T01:52: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': '10468',
  'incident_address': '2414 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'cross_street_1': 'EAST  184 STREET',
  'cross_street_2': 'EAST  188 STREET',
  'intersection_street_1': 'EAST  184 STREET',
  'intersection_street_2': 'EAST  188 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRESTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:52:58.000',
  'community_board': '05 BRONX',
  'bbl': '2031650022',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012152',
  'y_coordinate_state_plane': '252944',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86090349561791',
  'longitude': '-73.89912929801893',
  'location': {'latitude': '40.86090349561791',
   'longitude': '-73.89912929801893',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695377',
  'created_date': '2023-09-03T01:41: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': '10030',
  'incident_address': '111 WEST  143 STREET',
  'street_name': 'WEST  143 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  143 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:01:54.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020120023',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001447',
  'y_coordinate_state_plane': '237828',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81944183293622',
  'longitude': '-73.93786852392131',
  'location': {'latitude': '40.81944183293622',
   'longitude': '-73.93786852392131',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696601',
  'created_date': '2023-09-03T01:41:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10030',
  'incident_address': '210 WEST  133 STREET',
  'street_name': 'WEST  133 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  133 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:12:28.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019380044',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999393',
  'y_coordinate_state_plane': '235943',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81427179762314',
  'longitude': '-73.9452937236027',
  'location': {'latitude': '40.81427179762314',
   'longitude': '-73.9452937236027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699173',
  'created_date': '2023-09-03T01:41: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': '11413',
  'incident_address': '226 STREET',
  'street_name': '226 STREET',
  'cross_street_1': '226 STREET',
  'cross_street_2': 'MERRICK BOULEVARD',
  'intersection_street_1': '226 STREET',
  'intersection_street_2': 'MERRICK BOULEVARD',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:15:36.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055278',
  'y_coordinate_state_plane': '186136',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.677292124874846',
  'longitude': '-73.74392778302824',
  'location': {'latitude': '40.677292124874846',
   'longitude': '-73.74392778302824',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699075',
  'created_date': '2023-09-03T01:40:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11203',
  'incident_address': '1099 NEW YORK AVENUE',
  'street_name': 'NEW YORK AVENUE',
  'cross_street_1': 'TILDEN AVENUE',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'TILDEN AVENUE',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW YORK AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:21:49.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3049180052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999187',
  'y_coordinate_state_plane': '174748',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.646306940744225',
  'longitude': '-73.94617377350953',
  'location': {'latitude': '40.646306940744225',
   'longitude': '-73.94617377350953',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692729',
  'created_date': '2023-09-03T01:39: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': '11416',
  'incident_address': '90 STREET',
  'street_name': '90 STREET',
  'cross_street_1': '97 AVENUE',
  'cross_street_2': '101 AVENUE',
  'intersection_street_1': '97 AVENUE',
  'intersection_street_2': '101 AVENUE',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:55:24.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '58694040',
  'created_date': '2023-09-03T01:39:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10456',
  'incident_address': '1447 PROSPECT AVENUE',
  'street_name': 'PROSPECT AVENUE',
  'cross_street_1': 'LAFAYETTE STREET',
  'cross_street_2': 'CROTONA AVENUE',
  'intersection_street_1': 'LAFAYETTE STREET',
  'intersection_street_2': 'CROTONA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'PROSPECT AVENUE',
  'status': 'In Progress',
  'community_board': '03 BRONX',
  'bbl': '2029370047',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012784',
  'y_coordinate_state_plane': '243226',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83422844826637',
  'longitude': '-73.89688586307992',
  'location': {'latitude': '40.83422844826637',
   'longitude': '-73.89688586307992',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697154',
  'created_date': '2023-09-03T01:39:18.000',
  'closed_date': '2023-09-03T01:46: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': '11213',
  'incident_address': '227 UTICA AVENUE',
  'street_name': 'UTICA AVENUE',
  'cross_street_1': 'STERLING PLACE',
  'cross_street_2': 'ST JOHNS PLACE',
  'intersection_street_1': 'STERLING PLACE',
  'intersection_street_2': 'ST JOHNS PLACE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'UTICA AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:46:43.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013790005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003417',
  'y_coordinate_state_plane': '183735',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67096612788934',
  'longitude': '-73.9309052179351',
  'location': {'latitude': '40.67096612788934',
   'longitude': '-73.9309052179351',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690391',
  'created_date': '2023-09-03T01:38:55.000',
  'closed_date': '2023-09-03T01:46:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '1102 ATLANTIC AVENUE',
  'street_name': 'ATLANTIC AVENUE',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ATLANTIC 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': '2023-09-03T01:46:18.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996227',
  'y_coordinate_state_plane': '186846',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67951776802169',
  'longitude': '-73.95681878899674',
  'location': {'latitude': '40.67951776802169',
   'longitude': '-73.95681878899674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694038',
  'created_date': '2023-09-03T01:38:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11216',
  'incident_address': '46 HERKIMER PLACE',
  'street_name': 'HERKIMER PLACE',
  'cross_street_1': 'PERRY PLACE',
  'cross_street_2': 'NOSTRAND AVENUE',
  'intersection_street_1': 'PERRY PLACE',
  'intersection_street_2': 'NOSTRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HERKIMER PLACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:03:08.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3018660017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997946',
  'y_coordinate_state_plane': '186659',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679002002679454',
  'longitude': '-73.95062158308734',
  'location': {'latitude': '40.679002002679454',
   'longitude': '-73.95062158308734',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696587',
  'created_date': '2023-09-03T01:38: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': '11212',
  'incident_address': 'DUMONT AVENUE',
  'street_name': 'DUMONT AVENUE',
  'cross_street_1': 'DUMONT AVENUE',
  'cross_street_2': 'SARATOGA AVENUE',
  'intersection_street_1': 'DUMONT AVENUE',
  'intersection_street_2': 'SARATOGA AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:10:18.000',
  'community_board': '16 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007589',
  'y_coordinate_state_plane': '180879',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66311703153037',
  'longitude': '-73.91587554412013',
  'location': {'latitude': '40.66311703153037',
   'longitude': '-73.91587554412013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697872',
  'created_date': '2023-09-03T01:38: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': '11423',
  'incident_address': '100 AVENUE',
  'street_name': '100 AVENUE',
  'cross_street_1': '100 AVENUE',
  'cross_street_2': '196 STREET',
  'intersection_street_1': '100 AVENUE',
  'intersection_street_2': '196 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:54.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049949',
  'y_coordinate_state_plane': '197925',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70969123769241',
  'longitude': '-73.7630249720924',
  'location': {'latitude': '40.70969123769241',
   'longitude': '-73.7630249720924',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697858',
  'created_date': '2023-09-03T01:38: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': '11237',
  'incident_address': '152 GRATTAN STREET',
  'street_name': 'GRATTAN STREET',
  'cross_street_1': 'PORTER AVENUE',
  'cross_street_2': 'VARICK AVENUE',
  'intersection_street_1': 'PORTER AVENUE',
  'intersection_street_2': 'VARICK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRATTAN STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:21:14.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3030100019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004425',
  'y_coordinate_state_plane': '196635',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70637141181718',
  'longitude': '-73.92723286796726',
  'location': {'latitude': '40.70637141181718',
   'longitude': '-73.92723286796726',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696929',
  'created_date': '2023-09-03T01:38:08.000',
  'closed_date': '2023-09-03T01:52:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY 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': '2023-09-03T01:52:39.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696140',
  'created_date': '2023-09-03T01:38:04.000',
  'closed_date': '2023-09-03T01:54: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': '10463',
  'incident_address': '3114 BAILEY AVENUE',
  'street_name': 'BAILEY AVENUE',
  'cross_street_1': 'WEST  231 STREET',
  'cross_street_2': 'SUMMIT PLACE',
  'intersection_street_1': 'WEST  231 STREET',
  'intersection_street_2': 'SUMMIT PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BAILEY 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': '2023-09-03T01:54:18.000',
  'community_board': '08 BRONX',
  'bbl': '2032610031',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011327',
  'y_coordinate_state_plane': '259315',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87839250277802',
  'longitude': '-73.90208607260666',
  'location': {'latitude': '40.87839250277802',
   'longitude': '-73.90208607260666',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700494',
  'created_date': '2023-09-03T01:37: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': '11216',
  'incident_address': 'MACON STREET',
  'street_name': 'MACON STREET',
  'cross_street_1': 'MACON STREET',
  'cross_street_2': 'TOMPKINS AVENUE',
  'intersection_street_1': 'MACON STREET',
  'intersection_street_2': 'TOMPKINS AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:03.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999893',
  'y_coordinate_state_plane': '187670',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68177374111487',
  'longitude': '-73.94359968652668',
  'location': {'latitude': '40.68177374111487',
   'longitude': '-73.94359968652668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692738',
  'created_date': '2023-09-03T01:37: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': '10473',
  'incident_address': 'CROES AVENUE',
  'street_name': 'CROES AVENUE',
  'cross_street_1': 'BANYER PLACE',
  'cross_street_2': 'CROES AVENUE',
  'intersection_street_1': 'BANYER PLACE',
  'intersection_street_2': 'CROES AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020393',
  'y_coordinate_state_plane': '239578',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.824187881393186',
  'longitude': '-73.86940869050639',
  'location': {'latitude': '40.824187881393186',
   'longitude': '-73.86940869050639',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694035',
  'created_date': '2023-09-03T01:37: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': '11416',
  'incident_address': '97-14 102 STREET',
  'street_name': '102 STREET',
  'cross_street_1': '97 AVENUE',
  'cross_street_2': '101 AVENUE',
  'intersection_street_1': '97 AVENUE',
  'intersection_street_2': '101 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '102 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:04.000',
  'community_board': '09 QUEENS',
  'bbl': '4094030010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028214',
  'y_coordinate_state_plane': '189671',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68717066322681',
  'longitude': '-73.8414763630161',
  'location': {'latitude': '40.68717066322681',
   'longitude': '-73.8414763630161',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696031',
  'created_date': '2023-09-03T01:36:59.000',
  'closed_date': '2023-09-03T01:45: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': '10035',
  'incident_address': '225 EAST  118 STREET',
  'street_name': 'EAST  118 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  118 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:45:39.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017830012',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001325',
  'y_coordinate_state_plane': '230365',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.798958207760386',
  'longitude': '-73.93832828379776',
  'location': {'latitude': '40.798958207760386',
   'longitude': '-73.93832828379776',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697884',
  'created_date': '2023-09-03T01:36:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11203',
  'incident_address': 'EAST   54 STREET',
  'street_name': 'EAST   54 STREET',
  'cross_street_1': 'CLARKSON AVENUE',
  'cross_street_2': 'LENOX ROAD',
  'intersection_street_1': 'CLARKSON AVENUE',
  'intersection_street_2': 'LENOX ROAD',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:43.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '58693008',
  'created_date': '2023-09-03T01:36:33.000',
  'closed_date': '2023-09-03T01:45:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '1083 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:46:00.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260081',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996039',
  'y_coordinate_state_plane': '186596',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678831827107516',
  'longitude': '-73.95749703099078',
  'location': {'latitude': '40.678831827107516',
   'longitude': '-73.95749703099078',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699166',
  'created_date': '2023-09-03T01:36: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': '11413',
  'incident_address': '187-19 WILLIAMSON AVENUE',
  'street_name': 'WILLIAMSON AVENUE',
  'cross_street_1': 'MILBURN STREET',
  'cross_street_2': 'GRAYSON STREET',
  'intersection_street_1': 'MILBURN STREET',
  'intersection_street_2': 'GRAYSON STREET',
  'address_type': 'ADDRESS',
  'city': 'SPRINGFIELD GARDENS',
  'landmark': 'WILLIAMSON AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:06:23.000',
  'community_board': '12 QUEENS',
  'bbl': '4127140001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1051937',
  'y_coordinate_state_plane': '187568',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.681248802110346',
  'longitude': '-73.75595840684213',
  'location': {'latitude': '40.681248802110346',
   'longitude': '-73.75595840684213',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692221',
  'created_date': '2023-09-03T01:36:15.000',
  'closed_date': '2023-09-03T01:53: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': '10035',
  'incident_address': 'EAST  117 STREET',
  'street_name': 'EAST  117 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': '2023-09-03T01:53:19.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN'},
 {'unique_key': '58694755',
  'created_date': '2023-09-03T01:36:10.000',
  'closed_date': '2023-09-03T01:52: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': '11213',
  'incident_address': '1392 STERLING PLACE',
  'street_name': 'STERLING PLACE',
  'cross_street_1': 'SCHENECTADY AVENUE',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'SCHENECTADY AVENUE',
  'intersection_street_2': 'UTICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STERLING 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': '2023-09-03T01:52:58.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013780023',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002985',
  'y_coordinate_state_plane': '183949',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.671554434549314',
  'longitude': '-73.93246193174335',
  'location': {'latitude': '40.671554434549314',
   'longitude': '-73.93246193174335',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697861',
  'created_date': '2023-09-03T01:36: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': '11373',
  'incident_address': '43-14 FORLEY STREET',
  'street_name': 'FORLEY STREET',
  'cross_street_1': 'LAMONT AVENUE',
  'cross_street_2': '43 AVENUE',
  'intersection_street_1': 'LAMONT AVENUE',
  'intersection_street_2': '43 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'FORLEY STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015770014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019320',
  'y_coordinate_state_plane': '210503',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74438916473561',
  'longitude': '-73.87343741492408',
  'location': {'latitude': '40.74438916473561',
   'longitude': '-73.87343741492408',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697442',
  'created_date': '2023-09-03T01:36:07.000',
  'closed_date': '2023-09-03T01:39:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10453',
  'incident_address': '1805 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST TREMONT AVENUE',
  'cross_street_2': 'MORTON PLACE',
  'intersection_street_1': 'WEST TREMONT AVENUE',
  'intersection_street_2': 'MORTON PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:39:54.000',
  'community_board': '05 BRONX',
  'bbl': '2028790123',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007694',
  'y_coordinate_state_plane': '249209',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8506650052446',
  'longitude': '-73.91525881383795',
  'location': {'latitude': '40.8506650052446',
   'longitude': '-73.91525881383795',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695356',
  'created_date': '2023-09-03T01:35: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': '11206',
  'incident_address': '188 JEFFERSON STREET',
  'street_name': 'JEFFERSON 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': 'JEFFERSON STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3031730019',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003916',
  'y_coordinate_state_plane': '194835',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70143198245194',
  'longitude': '-73.9290739835451',
  'location': {'latitude': '40.70143198245194',
   'longitude': '-73.9290739835451',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694046',
  'created_date': '2023-09-03T01:35: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': '11419',
  'incident_address': '130-15 LIBERTY AVENUE',
  'street_name': 'LIBERTY 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': 'SOUTH RICHMOND HILL',
  'landmark': 'LIBERTY AVENUE',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4095670044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035453',
  'y_coordinate_state_plane': '190613',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68971731345495',
  'longitude': '-73.81536717828209',
  'location': {'latitude': '40.68971731345495',
   'longitude': '-73.81536717828209',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699141',
  'created_date': '2023-09-03T01:35:15.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': '2556 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',
  'resolution_action_updated_date': '2023-09-03T02:57:04.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074310029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995808',
  'y_coordinate_state_plane': '153684',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.588495693409605',
  'longitude': '-73.95838622625635',
  'location': {'latitude': '40.588495693409605',
   'longitude': '-73.95838622625635',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694648',
  'created_date': '2023-09-03T01:34:32.000',
  'closed_date': '2023-09-03T01: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': '10303',
  'incident_address': '348 VAN PELT AVENUE',
  'street_name': 'VAN PELT AVENUE',
  'cross_street_1': 'NETHERLAND AVENUE',
  'cross_street_2': 'FOREST AVENUE',
  'intersection_street_1': 'NETHERLAND AVENUE',
  'intersection_street_2': 'FOREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VAN PELT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:38:34.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5012220087',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941039',
  'y_coordinate_state_plane': '167770',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62706102794385',
  'longitude': '-74.15566816918563',
  'location': {'latitude': '40.62706102794385',
   'longitude': '-74.15566816918563',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692717',
  'created_date': '2023-09-03T01:34: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': '11369',
  'incident_address': '29-44 ERICSSON STREET',
  'street_name': 'ERICSSON STREET',
  'cross_street_1': '29 AVENUE',
  'cross_street_2': '31 AVENUE',
  'intersection_street_1': '29 AVENUE',
  'intersection_street_2': '31 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': 'ERICSSON STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:20:54.000',
  'community_board': '03 QUEENS',
  'bbl': '4016690028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021759',
  'y_coordinate_state_plane': '217170',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76267835765589',
  'longitude': '-73.86459823770475',
  'location': {'latitude': '40.76267835765589',
   'longitude': '-73.86459823770475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699188',
  'created_date': '2023-09-03T01:34: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': '11418',
  'incident_address': '86-75 107 STREET',
  'street_name': '107 STREET',
  'cross_street_1': '86 AVENUE',
  'cross_street_2': 'JAMAICA AVENUE',
  'intersection_street_1': '86 AVENUE',
  'intersection_street_2': 'JAMAICA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RICHMOND HILL',
  'landmark': '107 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028421',
  'y_coordinate_state_plane': '192933',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69612305505443',
  'longitude': '-73.84070858371959',
  'location': {'latitude': '40.69612305505443',
   'longitude': '-73.84070858371959',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700470',
  'created_date': '2023-09-03T01:33: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': '11211',
  'incident_address': '511 GRAND STREET',
  'street_name': 'GRAND STREET',
  'cross_street_1': 'UNION AVENUE',
  'cross_street_2': 'LORIMER STREET',
  'intersection_street_1': 'UNION AVENUE',
  'intersection_street_2': 'LORIMER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAND STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:06:38.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027790048',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997964',
  'y_coordinate_state_plane': '198324',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.711019688887404',
  'longitude': '-73.95053293793498',
  'location': {'latitude': '40.711019688887404',
   'longitude': '-73.95053293793498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694014',
  'created_date': '2023-09-03T01:33: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': '10455',
  'incident_address': 'EAST  149 STREET',
  'street_name': 'EAST  149 STREET',
  'cross_street_1': 'EAST  149 STREET',
  'cross_street_2': 'JACKSON AVENUE',
  'intersection_street_1': 'EAST  149 STREET',
  'intersection_street_2': 'JACKSON AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009419',
  'y_coordinate_state_plane': '235573',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81323337624087',
  'longitude': '-73.90907475765628',
  'location': {'latitude': '40.81323337624087',
   'longitude': '-73.90907475765628',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699573',
  'created_date': '2023-09-03T01:33:20.000',
  'closed_date': '2023-09-03T01:50:19.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': '1641 EAST   53 STREET',
  'street_name': 'EAST   53 STREET',
  'cross_street_1': 'AVENUE N',
  'cross_street_2': 'AVENUE O',
  'intersection_street_1': 'AVENUE N',
  'intersection_street_2': 'AVENUE O',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   53 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:50:24.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3078980032',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005384',
  'y_coordinate_state_plane': '164543',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.618283767435535',
  'longitude': '-73.92387454195091',
  'location': {'latitude': '40.618283767435535',
   'longitude': '-73.92387454195091',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694049',
  'created_date': '2023-09-03T01:33:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11419',
  'incident_address': '131 STREET',
  'street_name': '131 STREET',
  'cross_street_1': '131 STREET',
  'cross_street_2': 'LIBERTY AVENUE',
  'intersection_street_1': '131 STREET',
  'intersection_street_2': 'LIBERTY AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035609',
  'y_coordinate_state_plane': '190733',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6900457812227',
  'longitude': '-73.81480374496667',
  'location': {'latitude': '40.6900457812227',
   'longitude': '-73.81480374496667',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695357',
  'created_date': '2023-09-03T01: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': '11434',
  'incident_address': '174-22 140 AVENUE',
  'street_name': '140 AVENUE',
  'cross_street_1': '174 STREET',
  'cross_street_2': '175 STREET',
  'intersection_street_1': '174 STREET',
  'intersection_street_2': '175 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '140 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:52:59.000',
  'community_board': '12 QUEENS',
  'bbl': '4125920048',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049167',
  'y_coordinate_state_plane': '183909',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67122645643329',
  'longitude': '-73.76598067798383',
  'location': {'latitude': '40.67122645643329',
   'longitude': '-73.76598067798383',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694455',
  'created_date': '2023-09-03T01:32:53.000',
  'closed_date': '2023-09-03T01:46:16.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': '859 THOMAS S BOYLAND STREET',
  'street_name': 'THOMAS S BOYLAND STREET',
  'cross_street_1': 'RIVERDALE AVENUE',
  'cross_street_2': 'NEWPORT STREET',
  'intersection_street_1': 'RIVERDALE AVENUE',
  'intersection_street_2': 'NEWPORT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'THOMAS S BOYLAND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:46:24.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3036000011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008934',
  'y_coordinate_state_plane': '179545',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65945185025664',
  'longitude': '-73.91103243430723',
  'location': {'latitude': '40.65945185025664',
   'longitude': '-73.91103243430723',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698535',
  'created_date': '2023-09-03T01:32:43.000',
  'closed_date': '2023-09-03T01:48: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': '11236',
  'incident_address': 'EAST   93 STREET',
  'street_name': 'EAST   93 STREET',
  'cross_street_1': 'SKIDMORE AVENUE',
  'cross_street_2': 'SCHENCK STREET',
  'intersection_street_1': 'SKIDMORE AVENUE',
  'intersection_street_2': 'SCHENCK STREET',
  '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': '2023-09-03T01:49:03.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '58691410',
  'created_date': '2023-09-03T01:32: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': '11418',
  'incident_address': '86-12 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': '4092790063',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1032747',
  'y_coordinate_state_plane': '195289',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70256706280122',
  'longitude': '-73.82509104565027',
  'location': {'latitude': '40.70256706280122',
   'longitude': '-73.82509104565027',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692721',
  'created_date': '2023-09-03T01:32: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': '10455',
  'incident_address': '626 BERGEN AVENUE',
  'street_name': 'BERGEN AVENUE',
  'cross_street_1': 'EAST  152 STREET',
  'cross_street_2': 'EAST  153 STREET',
  'intersection_street_1': 'EAST  152 STREET',
  'intersection_street_2': 'EAST  153 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BERGEN AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2023610025',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007900',
  'y_coordinate_state_plane': '237079',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81737111990692',
  'longitude': '-73.9145569693777',
  'location': {'latitude': '40.81737111990692',
   'longitude': '-73.9145569693777',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698441',
  'created_date': '2023-09-03T01:32:09.000',
  'closed_date': '2023-09-03T01:32: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': '11378',
  'incident_address': '51-63 72 PLACE',
  'street_name': '72 PLACE',
  'cross_street_1': 'CALAMUS AVENUE',
  'cross_street_2': '53 ROAD',
  'intersection_street_1': 'CALAMUS AVENUE',
  'intersection_street_2': '53 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '72 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': '2023-09-03T01:32:58.000',
  'community_board': '05 QUEENS',
  'bbl': '4024850007',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014413',
  'y_coordinate_state_plane': '206745',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73409249339904',
  'longitude': '-73.89116290282341',
  'location': {'latitude': '40.73409249339904',
   'longitude': '-73.89116290282341',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693298',
  'created_date': '2023-09-03T01:31:44.000',
  'closed_date': '2023-09-03T02:00: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': '10002',
  'incident_address': '106 RIDGE STREET',
  'street_name': 'RIDGE 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': 'RIDGE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:00:08.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003440076',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988893',
  'y_coordinate_state_plane': '201166',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71882970951803',
  'longitude': '-73.98325051245791',
  'location': {'latitude': '40.71882970951803',
   'longitude': '-73.98325051245791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700496',
  'created_date': '2023-09-03T01: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': '10473',
  'incident_address': 'BANYER PLACE',
  'street_name': 'BANYER PLACE',
  'cross_street_1': 'BANYER PLACE',
  'cross_street_2': 'SOUNDVIEW AVENUE',
  'intersection_street_1': 'BANYER PLACE',
  'intersection_street_2': 'SOUNDVIEW AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:41:44.000',
  'community_board': '09 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020475',
  'y_coordinate_state_plane': '239594',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.824231460889216',
  'longitude': '-73.86911232347748',
  'location': {'latitude': '40.824231460889216',
   'longitude': '-73.86911232347748',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697122',
  'created_date': '2023-09-03T01:31:40.000',
  'closed_date': '2023-09-03T01:42:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Store/Commercial',
  'incident_zip': '11207',
  'incident_address': '112 MOFFAT STREET',
  'street_name': 'MOFFAT 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': 'MOFFAT 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': '2023-09-03T01:42:08.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034450033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009726',
  'y_coordinate_state_plane': '189132',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68576375654079',
  'longitude': '-73.90814162716252',
  'location': {'latitude': '40.68576375654079',
   'longitude': '-73.90814162716252',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692722',
  'created_date': '2023-09-03T01:31: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': '11237',
  'incident_address': '449 HARMAN STREET',
  'street_name': 'HARMAN 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': 'HARMAN STREET',
  'status': 'In Progress',
  'community_board': '04 BROOKLYN',
  'bbl': '3032810045',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007654',
  'y_coordinate_state_plane': '195494',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.703231685282994',
  'longitude': '-73.91559049235101',
  'location': {'latitude': '40.703231685282994',
   'longitude': '-73.91559049235101',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697376',
  'created_date': '2023-09-03T01:31:11.000',
  'closed_date': '2023-09-03T01:36: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': '10014',
  'incident_address': '123 WASHINGTON PLACE',
  'street_name': 'WASHINGTON PLACE',
  'cross_street_1': 'AVENUE OF THE AMERICAS',
  'cross_street_2': 'BARROW STREET',
  'intersection_street_1': 'AVENUE OF THE AMERICAS',
  'intersection_street_2': 'BARROW STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WASHINGTON PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T01:36:18.000',
  'community_board': '02 MANHATTAN',
  'bbl': '1005920079',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983843',
  'y_coordinate_state_plane': '206253',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.73279349716652',
  'longitude': '-74.00146854834142',
  'location': {'latitude': '40.73279349716652',
   'longitude': '-74.00146854834142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693387',
  'created_date': '2023-09-03T01:31:01.000',
  'closed_date': '2023-09-03T01:48: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': '2315 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': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:48:48.000',
  'community_board': '11 BRONX',
  'bbl': '2043520010',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1021952',
  'y_coordinate_state_plane': '252643',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86004092887636',
  'longitude': '-73.86370229460901',
  'location': {'latitude': '40.86004092887636',
   'longitude': '-73.86370229460901',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697271',
  'created_date': '2023-09-03T01:30:48.000',
  'closed_date': '2023-09-03T01:41: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': '10457',
  'incident_address': '2168 CROTONA AVENUE',
  'street_name': 'CROTONA AVENUE',
  'cross_street_1': 'EAST  181 STREET',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'EAST  181 STREET',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROTONA 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': '2023-09-03T01:42:03.000',
  'community_board': '06 BRONX',
  'bbl': '2030980023',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015588',
  'y_coordinate_state_plane': '248998',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85006138409518',
  'longitude': '-73.88672600586052',
  'location': {'latitude': '40.85006138409518',
   'longitude': '-73.88672600586052',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695927',
  'created_date': '2023-09-03T01:30:44.000',
  'closed_date': '2023-09-03T01:54: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': '11385',
  'incident_address': '71-11 66 PLACE',
  'street_name': '66 PLACE',
  'cross_street_1': 'CENTRAL AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'CENTRAL AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '66 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:54:28.000',
  'community_board': '05 QUEENS',
  'bbl': '4036790059',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1015334',
  'y_coordinate_state_plane': '195282',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70262615004112',
  'longitude': '-73.88789259898002',
  'location': {'latitude': '40.70262615004112',
   'longitude': '-73.88789259898002',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692715',
  'created_date': '2023-09-03T01: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': '11212',
  'incident_address': '28 TAPSCOTT STREET',
  'street_name': 'TAPSCOTT STREET',
  'cross_street_1': 'EAST NEW YORK AVENUE',
  'cross_street_2': 'SUTTER AVENUE',
  'intersection_street_1': 'EAST NEW YORK AVENUE',
  'intersection_street_2': 'SUTTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'TAPSCOTT 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': '2023-09-03T02:27:29.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3035100042',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006205',
  'y_coordinate_state_plane': '182361',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.667188331006535',
  'longitude': '-73.92085928570641',
  'location': {'latitude': '40.667188331006535',
   'longitude': '-73.92085928570641',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697146',
  'created_date': '2023-09-03T01:30:40.000',
  'closed_date': '2023-09-03T01:45: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': '10002',
  'incident_address': '134 ELDRIDGE STREET',
  'street_name': 'ELDRIDGE STREET',
  'cross_street_1': 'BROOME STREET',
  'cross_street_2': 'DELANCEY STREET',
  'intersection_street_1': 'BROOME STREET',
  'intersection_street_2': 'DELANCEY 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': '2023-09-03T01:45:08.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1004140001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986588',
  'y_coordinate_state_plane': '201196',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7189129617464',
  'longitude': '-73.99156572246149',
  'location': {'latitude': '40.7189129617464',
   'longitude': '-73.99156572246149',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696582',
  'created_date': '2023-09-03T01:30: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': '11417',
  'incident_address': '137-09 CROSS BAY BOULEVARD',
  'street_name': 'CROSS BAY BOULEVARD',
  'cross_street_1': 'PITKIN AVENUE',
  'cross_street_2': 'VAN WICKLEN ROAD',
  'intersection_street_1': 'PITKIN AVENUE',
  'intersection_street_2': 'VAN WICKLEN ROAD',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': 'CROSS BAY BOULEVARD',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4115290051',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027776',
  'y_coordinate_state_plane': '184076',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67181584567338',
  'longitude': '-73.84309181950769',
  'location': {'latitude': '40.67181584567338',
   'longitude': '-73.84309181950769',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690629',
  'created_date': '2023-09-03T01:30:24.000',
  'closed_date': '2023-09-03T01:45:05.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': '10009',
  'incident_address': '104 AVENUE C',
  'street_name': 'AVENUE C',
  'cross_street_1': 'EAST    6 STREET',
  'cross_street_2': 'EAST    7 STREET',
  'intersection_street_1': 'EAST    6 STREET',
  'intersection_street_2': 'EAST    7 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE C',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:45:09.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003760007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990103',
  'y_coordinate_state_plane': '203061',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72403030910753',
  'longitude': '-73.97888382485749',
  'location': {'latitude': '40.72403030910753',
   'longitude': '-73.97888382485749',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699072',
  'created_date': '2023-09-03T01:30:19.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': '40-04 98 STREET',
  'street_name': '98 STREET',
  'cross_street_1': '39 AVENUE',
  'cross_street_2': '40 ROAD',
  'intersection_street_1': '39 AVENUE',
  'intersection_street_2': '40 ROAD',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '98 STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4016060003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020979',
  'y_coordinate_state_plane': '212267',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.749224161637024',
  'longitude': '-73.86744069793068',
  'location': {'latitude': '40.749224161637024',
   'longitude': '-73.86744069793068',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692736',
  'created_date': '2023-09-03T01:29: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': '10456',
  'incident_address': '1011 WASHINGTON AVENUE',
  'street_name': 'WASHINGTON AVENUE',
  'cross_street_1': 'EAST  164 STREET',
  'cross_street_2': 'WEIHER COURT',
  'intersection_street_1': 'EAST  164 STREET',
  'intersection_street_2': 'WEIHER COURT',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WASHINGTON AVENUE',
  'status': 'In Progress',
  'community_board': '03 BRONX',
  'bbl': '2023860144',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009228',
  'y_coordinate_state_plane': '240291',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82618349190198',
  'longitude': '-73.90974720069485',
  'location': {'latitude': '40.82618349190198',
   'longitude': '-73.90974720069485',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699182',
  'created_date': '2023-09-03T01: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': '10453',
  'incident_address': '2244 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'EAST  182 STREET',
  'cross_street_2': 'EAST  183 STREET',
  'intersection_street_1': 'EAST  182 STREET',
  'intersection_street_2': 'EAST  183 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:08.000',
  'community_board': '05 BRONX',
  'bbl': '2031710005',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011220',
  'y_coordinate_state_plane': '251575',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85714890042485',
  'longitude': '-73.90250414970676',
  'location': {'latitude': '40.85714890042485',
   'longitude': '-73.90250414970676',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698570',
  'created_date': '2023-09-03T01:29:46.000',
  'closed_date': '2023-09-03T01:38: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': '11236',
  'incident_address': '762 EAST   84 STREET',
  'street_name': 'EAST   84 STREET',
  'cross_street_1': 'GLENWOOD ROAD',
  'cross_street_2': 'FLATLANDS AVENUE',
  'intersection_street_1': 'GLENWOOD ROAD',
  'intersection_street_2': 'FLATLANDS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:38:34.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080040065',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008875',
  'y_coordinate_state_plane': '171801',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63819642401515',
  'longitude': '-73.91127335678195',
  'location': {'latitude': '40.63819642401515',
   'longitude': '-73.91127335678195',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699930',
  'created_date': '2023-09-03T01:29:07.000',
  'closed_date': '2023-09-03T01:32: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': '11225',
  'incident_address': '317 LEFFERTS AVENUE',
  'street_name': 'LEFFERTS AVENUE',
  'cross_street_1': 'NOSTRAND AVENUE',
  'cross_street_2': 'NEW YORK AVENUE',
  'intersection_street_1': 'NOSTRAND AVENUE',
  'intersection_street_2': 'NEW YORK 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': '2023-09-03T01:32:53.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013210001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997926',
  'y_coordinate_state_plane': '180598',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66236594717979',
  'longitude': '-73.95070598618686',
  'location': {'latitude': '40.66236594717979',
   'longitude': '-73.95070598618686',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696886',
  'created_date': '2023-09-03T01:29:01.000',
  'closed_date': '2023-09-03T01:45:32.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': '1038 PACIFIC STREET',
  'street_name': 'PACIFIC STREET',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE SHUTTLE LINE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PACIFIC STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:45:38.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011340009',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995837',
  'y_coordinate_state_plane': '186646',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67896933248712',
  'longitude': '-73.95822521700755',
  'location': {'latitude': '40.67896933248712',
   'longitude': '-73.95822521700755',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699929',
  'created_date': '2023-09-03T01:29:01.000',
  'closed_date': '2023-09-03T02:00: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': '11207',
  'incident_address': 'PITKINS AVENUE',
  'street_name': 'PITKINS AVENUE',
  'cross_street_1': 'PITKINS AVENUE',
  'cross_street_2': 'WARWICK STREET',
  'intersection_street_1': 'PITKINS AVENUE',
  'intersection_street_2': 'WARWICK 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': '2023-09-03T02:00:08.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1015917',
  'y_coordinate_state_plane': '184627',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67337857844811',
  'longitude': '-73.88584003753698',
  'location': {'latitude': '40.67337857844811',
   'longitude': '-73.88584003753698',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699747',
  'created_date': '2023-09-03T01:28:53.000',
  'closed_date': '2023-09-03T01:44: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': 'CLAY AVENUE',
  'street_name': 'CLAY AVENUE',
  'cross_street_1': 'CLAY AVENUE',
  'cross_street_2': 'EAST MOUNT EDEN AVENUE',
  'intersection_street_1': 'CLAY AVENUE',
  'intersection_street_2': 'EAST MOUNT EDEN 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': '2023-09-03T01:44:48.000',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010531',
  'y_coordinate_state_plane': '246202',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.842403691211395',
  'longitude': '-73.9050159260124',
  'location': {'latitude': '40.842403691211395',
   'longitude': '-73.9050159260124',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695318',
  'created_date': '2023-09-03T01:28:52.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Kitchen/Food Prep Area',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '11355',
  'incident_address': '46-20 KISSENA BOULEVARD',
  'street_name': 'KISSENA BOULEVARD',
  'cross_street_1': 'JUNIPER AVENUE',
  'cross_street_2': 'KALMIA AVENUE',
  'intersection_street_1': 'JUNIPER AVENUE',
  'intersection_street_2': 'KALMIA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': 'KISSENA BOULEVARD',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4051490037',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034500',
  'y_coordinate_state_plane': '212631',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.750156750087896',
  'longitude': '-73.81863921163476',
  'location': {'latitude': '40.750156750087896',
   'longitude': '-73.81863921163476',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690462',
  'created_date': '2023-09-03T01:28:44.000',
  'closed_date': '2023-09-03T02:01:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11231',
  'incident_address': '90 SECOND PLACE',
  'street_name': 'SECOND PLACE',
  'cross_street_1': 'CLINTON STREET',
  'cross_street_2': 'COURT STREET',
  'intersection_street_1': 'CLINTON STREET',
  'intersection_street_2': 'COURT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '2 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T02:01:23.000',
  'community_board': '06 BROOKLYN',
  'bbl': '3003660021',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984802',
  'y_coordinate_state_plane': '186907',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67969328466967',
  'longitude': '-73.99800984468193',
  'location': {'latitude': '40.67969328466967',
   'longitude': '-73.99800984468193',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690478',
  'created_date': '2023-09-03T01:28:28.000',
  'closed_date': '2023-09-03T01:50:02.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': '10039',
  'incident_address': '233 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:50:04.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020347501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001191',
  'y_coordinate_state_plane': '239504',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82404247263996',
  'longitude': '-73.93878920122161',
  'location': {'latitude': '40.82404247263996',
   'longitude': '-73.93878920122161',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698408',
  'created_date': '2023-09-03T01:28:05.000',
  'closed_date': '2023-09-03T02:00: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': '11203',
  'incident_address': '282 EAST   35 STREET',
  'street_name': 'EAST   35 STREET',
  'cross_street_1': 'SNYDER AVENUE',
  'cross_street_2': 'TILDEN AVENUE',
  'intersection_street_1': 'SNYDER AVENUE',
  'intersection_street_2': 'TILDEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   35 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T02:00:55.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3049050017',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999655',
  'y_coordinate_state_plane': '175471',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6482906172882',
  'longitude': '-73.944485661411',
  'location': {'latitude': '40.6482906172882',
   'longitude': '-73.944485661411',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694898',
  'created_date': '2023-09-03T01:28:01.000',
  'closed_date': '2023-09-03T01:49: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': '11216',
  'incident_address': '186 KOSCIUSKO STREET',
  'street_name': 'KOSCIUSKO STREET',
  'cross_street_1': 'MARCY AVENUE',
  'cross_street_2': 'TOMPKINS AVENUE',
  'intersection_street_1': 'MARCY AVENUE',
  'intersection_street_2': 'TOMPKINS 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': '2023-09-03T01:49:23.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3017850014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998881',
  'y_coordinate_state_plane': '191064',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69109122289197',
  'longitude': '-73.94724104758131',
  'location': {'latitude': '40.69109122289197',
   'longitude': '-73.94724104758131',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692062',
  'created_date': '2023-09-03T01:27:38.000',
  'closed_date': '2023-09-03T01:30: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': '10031',
  'incident_address': '622 WEST  137 STREET',
  'street_name': 'WEST  137 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  137 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': '2023-09-03T01:30:53.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020020061',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996757',
  'y_coordinate_state_plane': '238636',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.821667450043606',
  'longitude': '-73.95481163398917',
  'location': {'latitude': '40.821667450043606',
   'longitude': '-73.95481163398917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691406',
  'created_date': '2023-09-03T01:27: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': '11427',
  'incident_address': '89-56 212 STREET',
  'street_name': '212 STREET',
  'cross_street_1': '89 ROAD',
  'cross_street_2': '90 AVENUE',
  'intersection_street_1': '89 ROAD',
  'intersection_street_2': '90 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '212 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:26:54.000',
  'community_board': '13 QUEENS',
  'bbl': '4105780023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053222',
  'y_coordinate_state_plane': '202535',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.722319624437056',
  'longitude': '-73.75117215238014',
  'location': {'latitude': '40.722319624437056',
   'longitude': '-73.75117215238014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694051',
  'created_date': '2023-09-03T01:27: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': '11373',
  'incident_address': '43-14 FORLEY STREET',
  'street_name': 'FORLEY STREET',
  'cross_street_1': 'LAMONT AVENUE',
  'cross_street_2': '43 AVENUE',
  'intersection_street_1': 'LAMONT AVENUE',
  'intersection_street_2': '43 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'FORLEY STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015770014',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019320',
  'y_coordinate_state_plane': '210503',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74438916473561',
  'longitude': '-73.87343741492408',
  'location': {'latitude': '40.74438916473561',
   'longitude': '-73.87343741492408',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690900',
  'created_date': '2023-09-03T01:27:17.000',
  'closed_date': '2023-09-03T01:47: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': '10463',
  'incident_address': '2775 KINGSBRIDGE TERRACE',
  'street_name': 'KINGSBRIDGE TERRACE',
  'cross_street_1': 'WEST KINGSBRIDGE ROAD',
  'cross_street_2': 'WEST  229 STREET',
  'intersection_street_1': 'WEST KINGSBRIDGE ROAD',
  'intersection_street_2': 'WEST  229 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KINGSBRIDGE TERRACE',
  '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': '2023-09-03T01:47:33.000',
  'community_board': '08 BRONX',
  'bbl': '2032560084',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011028',
  'y_coordinate_state_plane': '257256',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8727420983781',
  'longitude': '-73.90317552422518',
  'location': {'latitude': '40.8727420983781',
   'longitude': '-73.90317552422518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691993',
  'created_date': '2023-09-03T01:27:12.000',
  'closed_date': '2023-09-03T01:43: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': '10453',
  'incident_address': '2245 CRESTON AVENUE',
  'street_name': 'CRESTON AVENUE',
  'cross_street_1': 'EAST  182 STREET',
  'cross_street_2': 'EAST  183 STREET',
  'intersection_street_1': 'EAST  182 STREET',
  'intersection_street_2': 'EAST  183 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CRESTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:43:23.000',
  'community_board': '05 BRONX',
  'bbl': '2031710036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011492',
  'y_coordinate_state_plane': '251453',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.856813212031426',
  'longitude': '-73.90152137339916',
  'location': {'latitude': '40.856813212031426',
   'longitude': '-73.90152137339916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696616',
  'created_date': '2023-09-03T01:27:11.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Defective Hardware',
  'location_type': 'Street',
  'incident_zip': '10024',
  'incident_address': 'WEST   82 STREET',
  'street_name': 'WEST   82 STREET',
  'cross_street_1': 'WEST   82 STREET',
  'cross_street_2': 'WEST END AVENUE',
  'intersection_street_1': 'WEST   82 STREET',
  'intersection_street_2': 'WEST END AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '07 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989859',
  'y_coordinate_state_plane': '225747',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78629776193894',
  'longitude': '-73.97974519157671',
  'location': {'latitude': '40.78629776193894',
   'longitude': '-73.97974519157671',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692182',
  'created_date': '2023-09-03T01:27:07.000',
  'closed_date': '2023-09-03T01:32: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': '11224',
  'incident_address': '2850 WEST   16 STREET',
  'street_name': 'WEST   16 STREET',
  'cross_street_1': 'NEPTUNE AVENUE',
  'cross_street_2': 'MERMAID AVENUE',
  'intersection_street_1': 'NEPTUNE AVENUE',
  'intersection_street_2': 'MERMAID AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   16 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:32:28.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070210030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988712',
  'y_coordinate_state_plane': '149814',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57787972313015',
  'longitude': '-73.98393743383761',
  'location': {'latitude': '40.57787972313015',
   'longitude': '-73.98393743383761',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693573',
  'created_date': '2023-09-03T01:26:54.000',
  'closed_date': '2023-09-03T01:40:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11207',
  'incident_address': '816 KNICKERBOCKER AVENUE',
  'street_name': 'KNICKERBOCKER AVENUE',
  'cross_street_1': 'ELDERT STREET',
  'cross_street_2': 'COVERT STREET',
  'intersection_street_1': 'ELDERT STREET',
  'intersection_street_2': 'COVERT STREET',
  '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': '2023-09-03T01:40:59.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034180031',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1010046',
  'y_coordinate_state_plane': '191523',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69232557139607',
  'longitude': '-73.90697865453863',
  'location': {'latitude': '40.69232557139607',
   'longitude': '-73.90697865453863',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697386',
  'created_date': '2023-09-03T01:26:44.000',
  'closed_date': '2023-09-03T01:33: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': '10013',
  'incident_address': 'CANAL STREET',
  'street_name': 'CANAL STREET',
  'cross_street_1': 'CANAL STREET',
  'cross_street_2': 'CHURCH STREET',
  'intersection_street_1': 'CANAL STREET',
  'intersection_street_2': 'CHURCH 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': '2023-09-03T01:33:24.000',
  'community_board': '01 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '983277',
  'y_coordinate_state_plane': '201795',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72055732795014',
  'longitude': '-74.00351016018516',
  'location': {'latitude': '40.72055732795014',
   'longitude': '-74.00351016018516',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699171',
  'created_date': '2023-09-03T01:26: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': '10466',
  'incident_address': '4305 FURMAN AVENUE',
  'street_name': 'FURMAN AVENUE',
  'cross_street_1': 'EAST  236 STREET',
  'cross_street_2': 'EAST  237 STREET',
  'intersection_street_1': 'EAST  236 STREET',
  'intersection_street_2': 'EAST  237 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FURMAN AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2050430001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024312',
  'y_coordinate_state_plane': '265628',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.89567029166734',
  'longitude': '-73.85509294408084',
  'location': {'latitude': '40.89567029166734',
   'longitude': '-73.85509294408084',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697231',
  'created_date': '2023-09-03T01:26:42.000',
  'closed_date': '2023-09-03T01: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': '11236',
  'incident_address': 'EAST   93 STREET',
  'street_name': 'EAST   93 STREET',
  'cross_street_1': 'EAST   93 STREET',
  'cross_street_2': 'SCHENK AVENUE',
  'intersection_street_1': 'EAST   93 STREET',
  'intersection_street_2': 'SCHENK 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': '2023-09-03T01:48:49.000',
  'community_board': '18 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1015087',
  'y_coordinate_state_plane': '168791',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62991517076664',
  'longitude': '-73.8889045987041',
  'location': {'latitude': '40.62991517076664',
   'longitude': '-73.8889045987041',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692051',
  'created_date': '2023-09-03T01:26:16.000',
  'closed_date': '2023-09-03T01:48: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': '11412',
  'incident_address': '203-04 HOLLIS AVENUE',
  'street_name': 'HOLLIS AVENUE',
  'cross_street_1': '203 STREET',
  'cross_street_2': '204 STREET',
  'intersection_street_1': '203 STREET',
  'intersection_street_2': '204 STREET',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': 'HOLLIS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:48:24.000',
  'community_board': '12 QUEENS',
  'bbl': '4109430201',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052335',
  'y_coordinate_state_plane': '196807',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70660456565278',
  'longitude': '-73.7544300653074',
  'location': {'latitude': '40.70660456565278',
   'longitude': '-73.7544300653074',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692613',
  'created_date': '2023-09-03T01:26:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11436',
  'incident_address': '146-07 FOCH BOULEVARD',
  'street_name': 'FOCH BOULEVARD',
  'cross_street_1': '146 STREET',
  'cross_street_2': '147 STREET',
  'intersection_street_1': '146 STREET',
  'intersection_street_2': '147 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'FOCH BOULEVARD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:46:04.000',
  'community_board': '12 QUEENS',
  'bbl': '4120060063',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041265',
  'y_coordinate_state_plane': '187109',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68006412807082',
  'longitude': '-73.79443941924153',
  'location': {'latitude': '40.68006412807082',
   'longitude': '-73.79443941924153',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694080',
  'created_date': '2023-09-03T01:26:00.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Day Care',
  'descriptor': 'Day Care Facility',
  'location_type': 'Commercial Building',
  'incident_zip': '11224',
  'incident_address': '311 SEA BREEZE AVENUE',
  'street_name': 'SEA BREEZE AVENUE',
  'cross_street_1': 'WEST    2 STREET',
  'cross_street_2': 'WEST    5 STREET',
  'intersection_street_1': 'WEST    2 STREET',
  'intersection_street_2': 'WEST    5 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SEA BREEZE AVENUE',
  'status': 'In Progress',
  'community_board': '13 BROOKLYN',
  'bbl': '3072800092',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991921',
  'y_coordinate_state_plane': '149124',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57598361300063',
  'longitude': '-73.97238627330205',
  'location': {'latitude': '40.57598361300063',
   'longitude': '-73.97238627330205',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699184',
  'created_date': '2023-09-03T01:25: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': '11421',
  'incident_address': '93-20 75 STREET',
  'street_name': '75 STREET',
  'cross_street_1': '93 AVENUE',
  'cross_street_2': 'ATLANTIC AVENUE',
  'intersection_street_1': '93 AVENUE',
  'intersection_street_2': 'ATLANTIC AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODHAVEN',
  'landmark': '75 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4089410152',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021728',
  'y_coordinate_state_plane': '188578',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68420047240476',
  'longitude': '-73.86486936237287',
  'location': {'latitude': '40.68420047240476',
   'longitude': '-73.86486936237287',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694174',
  'created_date': '2023-09-03T01:25:23.000',
  'closed_date': '2023-09-03T01:27:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11238',
  'incident_address': '634 CLASSON AVENUE',
  'street_name': 'CLASSON 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': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:27:49.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011410043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995651',
  'y_coordinate_state_plane': '186354',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678168100174375',
  'longitude': '-73.95889629945579',
  'location': {'latitude': '40.678168100174375',
   'longitude': '-73.95889629945579',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695376',
  'created_date': '2023-09-03T01:25: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': '10460',
  'incident_address': '1829 BOONE AVENUE',
  'street_name': 'BOONE AVENUE',
  'cross_street_1': 'EAST  174 STREET',
  'cross_street_2': 'EAST  176 STREET',
  'intersection_street_1': 'EAST  174 STREET',
  'intersection_street_2': 'EAST  176 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BOONE AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:02:29.000',
  'community_board': '03 BRONX',
  'bbl': '2029980097',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016755',
  'y_coordinate_state_plane': '244366',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.837343693113304',
  'longitude': '-73.88253023772276',
  'location': {'latitude': '40.837343693113304',
   'longitude': '-73.88253023772276',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694526',
  'created_date': '2023-09-03T01:25:04.000',
  'closed_date': '2023-09-03T01:51:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Fireworks',
  'descriptor': 'N/A',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11223',
  'incident_address': '2079 WEST   12 STREET',
  'street_name': 'WEST   12 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': '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': '2023-09-03T01:51:19.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3070940051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988900',
  'y_coordinate_state_plane': '156615',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59654701596111',
  'longitude': '-73.98325598075763',
  'location': {'latitude': '40.59654701596111',
   'longitude': '-73.98325598075763',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694811',
  'created_date': '2023-09-03T01:25:03.000',
  'closed_date': '2023-09-03T01:45: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': '10304',
  'incident_address': '80 WARREN STREET',
  'street_name': 'WARREN STREET',
  'cross_street_1': 'FULTON STREET',
  'cross_street_2': 'HILL STREET',
  'intersection_street_1': 'FULTON STREET',
  'intersection_street_2': 'HILL STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WARREN 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': '2023-09-03T01:45:29.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005610024',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '961497',
  'y_coordinate_state_plane': '165509',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62093122551881',
  'longitude': '-74.08196040894897',
  'location': {'latitude': '40.62093122551881',
   'longitude': '-74.08196040894897',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695262',
  'created_date': '2023-09-03T01:24:40.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': '11 AVENUE',
  'street_name': '11 AVENUE',
  'cross_street_1': '11 AVENUE',
  'cross_street_2': 'WEST   48 STREET',
  'intersection_street_1': '11 AVENUE',
  'intersection_street_2': 'WEST   48 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:23:44.000',
  'community_board': '04 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '985484',
  'y_coordinate_state_plane': '217851',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.764627009473415',
  'longitude': '-73.99554531987546',
  'location': {'latitude': '40.764627009473415',
   'longitude': '-73.99554531987546',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694033',
  'created_date': '2023-09-03T01:24: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': '11373',
  'incident_address': '51-03 VAN LOON STREET',
  'street_name': 'VAN LOON STREET',
  'cross_street_1': '51 AVENUE',
  'cross_street_2': 'QUEENS BOULEVARD',
  'intersection_street_1': '51 AVENUE',
  'intersection_street_2': 'QUEENS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'VAN LOON STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015480002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017705',
  'y_coordinate_state_plane': '208212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73810720306083',
  'longitude': '-73.87927710450035',
  'location': {'latitude': '40.73810720306083',
   'longitude': '-73.87927710450035',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694012',
  'created_date': '2023-09-03T01:24: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': '11421',
  'incident_address': '79 STREET',
  'street_name': '79 STREET',
  'cross_street_1': '79 STREET',
  'cross_street_2': '85 DRIVE',
  'intersection_street_1': '79 STREET',
  'intersection_street_2': '85 DRIVE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021938',
  'y_coordinate_state_plane': '192212',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.694174063217055',
  'longitude': '-73.86409185875351',
  'location': {'latitude': '40.694174063217055',
   'longitude': '-73.86409185875351',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694034',
  'created_date': '2023-09-03T01:24: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': '11411',
  'incident_address': '208 STREET',
  'street_name': '208 STREET',
  'cross_street_1': 'MURDOCK AVENUE',
  'cross_street_2': '115 AVENUE',
  'intersection_street_1': 'MURDOCK AVENUE',
  'intersection_street_2': '115 AVENUE',
  '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': '58694805',
  'created_date': '2023-09-03T01:24:27.000',
  'closed_date': '2023-09-03T01:28: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': '10456',
  'incident_address': '1460 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': '2023-09-03T01:28:53.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010863',
  'y_coordinate_state_plane': '244145',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83675683376762',
  'longitude': '-73.90382418403077',
  'location': {'latitude': '40.83675683376762',
   'longitude': '-73.90382418403077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694494',
  'created_date': '2023-09-03T01:24:26.000',
  'closed_date': '2023-09-03T01:45:01.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11229',
  'incident_address': '1972 EAST   16 STREET',
  'street_name': 'EAST   16 STREET',
  'cross_street_1': 'AVENUE S',
  'cross_street_2': 'AVENUE T',
  'intersection_street_1': 'AVENUE S',
  'intersection_street_2': 'AVENUE T',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   16 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:45:04.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3072940039',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996450',
  'y_coordinate_state_plane': '158602',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60199375103858',
  'longitude': '-73.9560658695119',
  'location': {'latitude': '40.60199375103858',
   'longitude': '-73.9560658695119',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694945',
  'created_date': '2023-09-03T01:24:04.000',
  'closed_date': '2023-09-03T01:41:10.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10034',
  'incident_address': '302 DYCKMAN STREET',
  'street_name': 'DYCKMAN STREET',
  'cross_street_1': 'HENSHAW STREET',
  'cross_street_2': 'STAFF STREET',
  'intersection_street_1': 'HENSHAW STREET',
  'intersection_street_2': 'STAFF STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DYCKMAN 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': '2023-09-03T01:41:13.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1022460020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1003680',
  'y_coordinate_state_plane': '255369',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.86758209572162',
  'longitude': '-73.92975004101304',
  'location': {'latitude': '40.86758209572162',
   'longitude': '-73.92975004101304',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691434',
  'created_date': '2023-09-03T01:24:01.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Street',
  'incident_zip': '10453',
  'incident_address': '2183 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'CAMERON PLACE',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'CAMERON PLACE',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2031810042',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011008',
  'y_coordinate_state_plane': '251157',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85600226120347',
  'longitude': '-73.90327219214285',
  'location': {'latitude': '40.85600226120347',
   'longitude': '-73.90327219214285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692741',
  'created_date': '2023-09-03T01:23:45.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10458',
  'incident_address': '161 EAST  206 STREET',
  'street_name': 'EAST  206 STREET',
  'cross_street_1': 'GRAND CONCOURSE',
  'cross_street_2': 'ST GEORGES CRESCENT',
  'intersection_street_1': 'GRAND CONCOURSE',
  'intersection_street_2': 'ST GEORGES CRESCENT',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  206 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': '2023-09-03T02:11:24.000',
  'community_board': '07 BRONX',
  'bbl': '2033130084',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1015988',
  'y_coordinate_state_plane': '258433',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87595615707859',
  'longitude': '-73.88523549137301',
  'location': {'latitude': '40.87595615707859',
   'longitude': '-73.88523549137301',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692294',
  'created_date': '2023-09-03T01:23:42.000',
  'closed_date': '2023-09-03T01:50:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Non-Emergency Police Matter',
  'descriptor': 'Other (complaint details)',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': 'AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'AUTUMN AVENUE',
  'cross_street_2': 'DANFORTH STREET',
  'intersection_street_1': 'AUTUMN AVENUE',
  'intersection_street_2': 'DANFORTH 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': '2023-09-03T01:50:54.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020032',
  'y_coordinate_state_plane': '189625',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687081263523524',
  'longitude': '-73.87097888889852',
  'location': {'latitude': '40.687081263523524',
   'longitude': '-73.87097888889852',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692016',
  'created_date': '2023-09-03T01:23:23.000',
  'closed_date': '2023-09-03T01: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': '11691',
  'incident_address': '14-30 REDFERN AVENUE',
  'street_name': 'REDFERN AVENUE',
  'cross_street_1': 'BEACH   12 STREET',
  'cross_street_2': 'HASSOCK STREET',
  'intersection_street_1': 'BEACH   12 STREET',
  'intersection_street_2': 'HASSOCK STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'REDFERN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:37:59.000',
  'community_board': '14 QUEENS',
  'bbl': '4155010002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053246',
  'y_coordinate_state_plane': '161224',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.60893039122458',
  'longitude': '-73.75150834665568',
  'location': {'latitude': '40.60893039122458',
   'longitude': '-73.75150834665568',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698558',
  'created_date': '2023-09-03T01:23:18.000',
  'closed_date': '2023-09-03T01: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': '10025',
  'incident_address': '323 WEST   96 STREET',
  'street_name': 'WEST   96 STREET',
  'cross_street_1': 'WEST END AVENUE',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'WEST END AVENUE',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   96 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:49:09.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018870003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991516',
  'y_coordinate_state_plane': '229098',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7954941477263',
  'longitude': '-73.973757930177',
  'location': {'latitude': '40.7954941477263',
   'longitude': '-73.973757930177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690871',
  'created_date': '2023-09-03T01:23:16.000',
  'closed_date': '2023-09-03T01:37: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': '10031',
  'incident_address': '515 WEST  134 STREET',
  'street_name': 'WEST  134 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  134 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:37:28.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997024',
  'y_coordinate_state_plane': '237561',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81871649654184',
  'longitude': '-73.95384899720636',
  'location': {'latitude': '40.81871649654184',
   'longitude': '-73.95384899720636',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693019',
  'created_date': '2023-09-03T01:23:14.000',
  'closed_date': '2023-09-03T01:26:19.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': '623 CLASSON AVENUE',
  'street_name': 'CLASSON 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': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:26:23.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011260004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995772',
  'y_coordinate_state_plane': '186774',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679320748298984',
  'longitude': '-73.95845934359184',
  'location': {'latitude': '40.679320748298984',
   'longitude': '-73.95845934359184',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700475',
  'created_date': '2023-09-03T01:23:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11223',
  'incident_address': '2048 WEST SEVENTH STREET',
  'street_name': 'WEST SEVENTH 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': 'WEST    7 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:02:28.000',
  'community_board': '11 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990158',
  'y_coordinate_state_plane': '156968',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59751518038086',
  'longitude': '-73.9787257848548',
  'location': {'latitude': '40.59751518038086',
   'longitude': '-73.9787257848548',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698648',
  'created_date': '2023-09-03T01:23:09.000',
  'closed_date': '2023-09-03T01:39: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': '11207',
  'incident_address': '112 MOFFAT STREET',
  'street_name': 'MOFFAT 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': 'MOFFAT 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': '2023-09-03T01:39:44.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034450033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009726',
  'y_coordinate_state_plane': '189132',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68576375654079',
  'longitude': '-73.90814162716252',
  'location': {'latitude': '40.68576375654079',
   'longitude': '-73.90814162716252',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694788',
  'created_date': '2023-09-03T01:23:08.000',
  'closed_date': '2023-09-03T01:38: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': '11226',
  'incident_address': '219 EAST   17 STREET',
  'street_name': 'EAST   17 STREET',
  'cross_street_1': 'ALBEMARLE ROAD',
  'cross_street_2': 'BEVERLEY ROAD',
  'intersection_street_1': 'ALBEMARLE ROAD',
  'intersection_street_2': 'BEVERLEY ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   17 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:38:53.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051210052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994433',
  'y_coordinate_state_plane': '174469',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64554788816432',
  'longitude': '-73.96330546894092',
  'location': {'latitude': '40.64554788816432',
   'longitude': '-73.96330546894092',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694575',
  'created_date': '2023-09-03T01:23:05.000',
  'closed_date': '2023-09-03T01:40:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '11374',
  'incident_address': '67 AVENUE',
  'street_name': '67 AVENUE',
  'cross_street_1': '67 AVENUE',
  'cross_street_2': 'AUSTIN STREET',
  'intersection_street_1': '67 AVENUE',
  'intersection_street_2': 'AUSTIN 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': '2023-09-03T01:40:38.000',
  'community_board': '06 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024270',
  'y_coordinate_state_plane': '203126',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.72412012824127',
  'longitude': '-73.85561748802189',
  'location': {'latitude': '40.72412012824127',
   'longitude': '-73.85561748802189',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691412',
  'created_date': '2023-09-03T01:23: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': '11414',
  'incident_address': '153-34 81 STREET',
  'street_name': '81 STREET',
  'cross_street_1': '153 AVENUE',
  'cross_street_2': '155 AVENUE',
  'intersection_street_1': '153 AVENUE',
  'intersection_street_2': '155 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'HOWARD BEACH',
  'landmark': '81 STREET',
  'status': 'In Progress',
  'community_board': '10 QUEENS',
  'bbl': '4114420023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024992',
  'y_coordinate_state_plane': '181814',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66562041895393',
  'longitude': '-73.85314159591655',
  'location': {'latitude': '40.66562041895393',
   'longitude': '-73.85314159591655',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692708',
  'created_date': '2023-09-03T01:22:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11238',
  'incident_address': '1007 ATLANTIC AVENUE',
  'street_name': 'ATLANTIC 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': 'ATLANTIC 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': '2023-09-03T02:02:28.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3020197505',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995586',
  'y_coordinate_state_plane': '187026',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68001267124945',
  'longitude': '-73.95912951168442',
  'location': {'latitude': '40.68001267124945',
   'longitude': '-73.95912951168442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697396',
  'created_date': '2023-09-03T01:22:30.000',
  'closed_date': '2023-09-03T01:37: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': '11214',
  'incident_address': '2735 HARWAY AVENUE',
  'street_name': 'HARWAY AVENUE',
  'cross_street_1': 'BAY   46 STREET',
  'cross_street_2': 'BAY   47 STREET',
  'intersection_street_1': 'BAY   46 STREET',
  'intersection_street_2': 'BAY   47 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HARWAY 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': '2023-09-03T01:37:43.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3069010005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987838',
  'y_coordinate_state_plane': '154031',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.58945494837769',
  'longitude': '-73.98708147085144',
  'location': {'latitude': '40.58945494837769',
   'longitude': '-73.98708147085144',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698384',
  'created_date': '2023-09-03T01:22:25.000',
  'closed_date': '2023-09-03T01:44:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '11368',
  'incident_address': 'FLUSHING MEADOWS CORONA PARK',
  'street_name': 'FLUSHING MEADOWS CORONA PARK',
  'cross_street_1': '52 AVENUE',
  'cross_street_2': '53 AVENUE',
  'intersection_street_1': '52 AVENUE',
  'intersection_street_2': '53 AVENUE',
  'address_type': 'UNRECOGNIZED',
  'city': 'CORONA',
  'landmark': 'FLUSHING MEADOWS CORONA PARK',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:44:58.000',
  'community_board': '81 QUEENS',
  'bbl': '4020180001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027989',
  'y_coordinate_state_plane': '209784',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Flushing Meadows Corona Park',
  'park_borough': 'QUEENS',
  'latitude': '40.742377064999275',
  'longitude': '-73.84215697754966',
  'location': {'latitude': '40.742377064999275',
   'longitude': '-73.84215697754966',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698689',
  'created_date': '2023-09-03T01:22:14.000',
  'closed_date': '2023-09-03T01:50: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': '10453',
  'incident_address': '1501 UNDERCLIFF AVENUE',
  'street_name': 'UNDERCLIFF AVENUE',
  'cross_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'cross_street_2': 'WEST  174 STREET',
  'intersection_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'intersection_street_2': 'WEST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNDERCLIFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:50:49.000',
  'community_board': '05 BRONX',
  'bbl': '2028800061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005240',
  'y_coordinate_state_plane': '247416',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.845749925937085',
  'longitude': '-73.92413470328373',
  'location': {'latitude': '40.845749925937085',
   'longitude': '-73.92413470328373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690763',
  'created_date': '2023-09-03T01:22:11.000',
  'closed_date': '2023-09-03T01:47: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': '11385',
  'incident_address': '74-12 62 STREET',
  'street_name': '62 STREET',
  'cross_street_1': '74 AVENUE',
  'cross_street_2': '75 AVENUE',
  'intersection_street_1': '74 AVENUE',
  'intersection_street_2': '75 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': '62 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': '2023-09-03T01:47:24.000',
  'community_board': '05 QUEENS',
  'bbl': '4035920027',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013861',
  'y_coordinate_state_plane': '194266',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69984252167015',
  'longitude': '-73.89320957529029',
  'location': {'latitude': '40.69984252167015',
   'longitude': '-73.89320957529029',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690447',
  'created_date': '2023-09-03T01:22:09.000',
  'closed_date': '2023-09-03T01:26:57.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': '630 CLASSON AVENUE',
  'street_name': 'CLASSON AVENUE',
  'cross_street_1': 'PACIFIC STREET',
  'cross_street_2': 'DEAN STREET',
  'intersection_street_1': 'PACIFIC STREET',
  'intersection_street_2': 'DEAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:27:03.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011330057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995680',
  'y_coordinate_state_plane': '186460',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67845900876381',
  'longitude': '-73.95879156681802',
  'location': {'latitude': '40.67845900876381',
   'longitude': '-73.95879156681802',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690804',
  'created_date': '2023-09-03T01:22:04.000',
  'closed_date': '2023-09-03T01:48: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': '11432',
  'incident_address': '88-07 178 STREET',
  'street_name': '178 STREET',
  'cross_street_1': '88 AVENUE',
  'cross_street_2': '89 AVENUE',
  'intersection_street_1': '88 AVENUE',
  'intersection_street_2': '89 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '178 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:48:39.000',
  'community_board': '12 QUEENS',
  'bbl': '4099130017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1043881',
  'y_coordinate_state_plane': '198510',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71133989520523',
  'longitude': '-73.78490685754105',
  'location': {'latitude': '40.71133989520523',
   'longitude': '-73.78490685754105',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691419',
  'created_date': '2023-09-03T01:22: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': '11369',
  'incident_address': '31-44 103 STREET',
  'street_name': '103 STREET',
  'cross_street_1': '31 AVENUE',
  'cross_street_2': '32 AVENUE',
  'intersection_street_1': '31 AVENUE',
  'intersection_street_2': '32 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '103 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:03.000',
  'community_board': '03 QUEENS',
  'bbl': '4016890030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1021316',
  'y_coordinate_state_plane': '216354',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76044051830988',
  'longitude': '-73.86620189678592',
  'location': {'latitude': '40.76044051830988',
   'longitude': '-73.86620189678592',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697340',
  'created_date': '2023-09-03T01:21:58.000',
  'closed_date': '2023-09-03T01:24: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': '10457',
  'incident_address': '1639 FULTON AVENUE',
  'street_name': 'FULTON AVENUE',
  'cross_street_1': 'EAST  172 STREET',
  'cross_street_2': 'EAST  173 STREET',
  'intersection_street_1': 'EAST  172 STREET',
  'intersection_street_2': 'EAST  173 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'FULTON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:43.000',
  'community_board': '03 BRONX',
  'bbl': '2029290078',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1012248',
  'y_coordinate_state_plane': '245231',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.839733304181145',
  'longitude': '-73.89881445049689',
  'location': {'latitude': '40.839733304181145',
   'longitude': '-73.89881445049689',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696024',
  'created_date': '2023-09-03T01:21:57.000',
  'closed_date': '2023-09-03T01:37: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': '11207',
  'incident_address': '93 VERMONT STREET',
  'street_name': 'VERMONT STREET',
  'cross_street_1': 'JAMAICA AVENUE',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'JAMAICA AVENUE',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'VERMONT 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': '2023-09-03T01:37:58.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3036620003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1013257',
  'y_coordinate_state_plane': '186285',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.677938527013495',
  'longitude': '-73.89542222815491',
  'location': {'latitude': '40.677938527013495',
   'longitude': '-73.89542222815491',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699814',
  'created_date': '2023-09-03T01:21:49.000',
  'closed_date': '2023-09-03T01:56: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': '11212',
  'incident_address': 'EAST   92 STREET',
  'street_name': 'EAST   92 STREET',
  'cross_street_1': 'WINTHROP STREET',
  'cross_street_2': 'CLARKSON AVENUE',
  'intersection_street_1': 'WINTHROP STREET',
  'intersection_street_2': 'CLARKSON 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': '2023-09-03T01:56:53.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '58698364',
  'created_date': '2023-09-03T01:21:43.000',
  'closed_date': '2023-09-03T01:31: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': '11226',
  'incident_address': '2257 CHURCH AVENUE',
  'street_name': 'CHURCH AVENUE',
  'cross_street_1': 'FLATBUSH AVENUE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'FLATBUSH AVENUE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CHURCH 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': '2023-09-03T01:31:18.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3050890058',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995986',
  'y_coordinate_state_plane': '176254',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.650445404375674',
  'longitude': '-73.9577061148028',
  'location': {'latitude': '40.650445404375674',
   'longitude': '-73.9577061148028',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695891',
  'created_date': '2023-09-03T01:21:42.000',
  'closed_date': '2023-09-03T01:33: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': '10303',
  'incident_address': '348 VAN PELT AVENUE',
  'street_name': 'VAN PELT AVENUE',
  'cross_street_1': 'NETHERLAND AVENUE',
  'cross_street_2': 'FOREST AVENUE',
  'intersection_street_1': 'NETHERLAND AVENUE',
  'intersection_street_2': 'FOREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'VAN PELT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:33:59.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5012220087',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '941039',
  'y_coordinate_state_plane': '167770',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62706102794385',
  'longitude': '-74.15566816918563',
  'location': {'latitude': '40.62706102794385',
   'longitude': '-74.15566816918563',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700477',
  'created_date': '2023-09-03T01:21: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': '10453',
  'incident_address': '1770 MONTGOMERY AVENUE',
  'street_name': 'MONTGOMERY AVENUE',
  'cross_street_1': 'WEST  176 STREET',
  'cross_street_2': 'POPHAM AVENUE',
  'intersection_street_1': 'WEST  176 STREET',
  'intersection_street_2': 'POPHAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MONTGOMERY AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:50.000',
  'community_board': '05 BRONX',
  'bbl': '2028780138',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006948',
  'y_coordinate_state_plane': '249269',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.850831636673455',
  'longitude': '-73.91795511673453',
  'location': {'latitude': '40.850831636673455',
   'longitude': '-73.91795511673453',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696590',
  'created_date': '2023-09-03T01:21: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': '11422',
  'incident_address': '146-18 243 STREET',
  'street_name': '243 STREET',
  'cross_street_1': 'NEWHALL AVENUE',
  'cross_street_2': '147 AVENUE',
  'intersection_street_1': 'NEWHALL AVENUE',
  'intersection_street_2': '147 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ROSEDALE',
  'landmark': '243 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:35:24.000',
  'community_board': '13 QUEENS',
  'bbl': '4135440044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1056117',
  'y_coordinate_state_plane': '179171',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.65816806326092',
  'longitude': '-73.74097726394166',
  'location': {'latitude': '40.65816806326092',
   'longitude': '-73.74097726394166',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690875',
  'created_date': '2023-09-03T01:21:33.000',
  'closed_date': '2023-09-03T01:22: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': '10456',
  'incident_address': '1460 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': '2023-09-03T01:23:03.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010863',
  'y_coordinate_state_plane': '244145',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83675683376762',
  'longitude': '-73.90382418403077',
  'location': {'latitude': '40.83675683376762',
   'longitude': '-73.90382418403077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694572',
  'created_date': '2023-09-03T01:21:17.000',
  'closed_date': '2023-09-03T01:38:05.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - House of Worship',
  'descriptor': 'Loud Music/Party',
  'location_type': 'House of Worship',
  'incident_zip': '11237',
  'incident_address': '176 ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'STANHOPE STREET',
  'cross_street_2': 'HIMROD STREET',
  'intersection_street_1': 'STANHOPE STREET',
  'intersection_street_2': 'HIMROD STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST NICHOLAS AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:38:08.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032710030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007512',
  'y_coordinate_state_plane': '195862',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.704242132775896',
  'longitude': '-73.91610136192867',
  'location': {'latitude': '40.704242132775896',
   'longitude': '-73.91610136192867',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694027',
  'created_date': '2023-09-03T01:21: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': '10472',
  'incident_address': '1136 CROES AVENUE',
  'street_name': 'CROES AVENUE',
  'cross_street_1': 'WATSON AVENUE',
  'cross_street_2': 'GLEASON AVENUE',
  'intersection_street_1': 'WATSON AVENUE',
  'intersection_street_2': 'GLEASON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CROES AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037490108',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020143',
  'y_coordinate_state_plane': '240981',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82803973214817',
  'longitude': '-73.87030447964145',
  'location': {'latitude': '40.82803973214817',
   'longitude': '-73.87030447964145',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694632',
  'created_date': '2023-09-03T01:21:02.000',
  'closed_date': '2023-09-03T01:23: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': '11209',
  'incident_address': '364 93 STREET',
  'street_name': '93 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': '93 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:23:59.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3061070029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '975515',
  'y_coordinate_state_plane': '164454',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61806038085539',
  'longitude': '-74.03146368795856',
  'location': {'latitude': '40.61806038085539',
   'longitude': '-74.03146368795856',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699607',
  'created_date': '2023-09-03T01:21:00.000',
  'closed_date': '2023-09-03T01:51:27.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11221',
  'incident_address': '281 WEIRFIELD STREET',
  'street_name': 'WEIRFIELD STREET',
  'cross_street_1': 'WILSON AVENUE',
  'cross_street_2': 'KNICKERBOCKER AVENUE',
  'intersection_street_1': 'WILSON AVENUE',
  'intersection_street_2': 'KNICKERBOCKER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEIRFIELD STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:51:29.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3033980047',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009405',
  'y_coordinate_state_plane': '191759',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.692975181635006',
  'longitude': '-73.90928924168198',
  'location': {'latitude': '40.692975181635006',
   'longitude': '-73.90928924168198',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694015',
  'created_date': '2023-09-03T01:20: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': '10301',
  'incident_address': '253 HAMILTON AVENUE',
  'street_name': 'HAMILTON AVENUE',
  'cross_street_1': 'PHELPS PLACE',
  'cross_street_2': 'WESTERVELT AVENUE',
  'intersection_street_1': 'PHELPS PLACE',
  'intersection_street_2': 'WESTERVELT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'HAMILTON 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': '2023-09-03T02:10:24.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5000220101',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '960506',
  'y_coordinate_state_plane': '174554',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.645755220014465',
  'longitude': '-74.08556199213507',
  'location': {'latitude': '40.645755220014465',
   'longitude': '-74.08556199213507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694899',
  'created_date': '2023-09-03T01:20:46.000',
  'closed_date': '2023-09-03T01:27: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': '11223',
  'incident_address': '185 AVENUE V',
  'street_name': 'AVENUE V',
  '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 V',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:27:43.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3071210046',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '990649',
  'y_coordinate_state_plane': '155838',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59441321732762',
  'longitude': '-73.97695880519467',
  'location': {'latitude': '40.59441321732762',
   'longitude': '-73.97695880519467',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695892',
  'created_date': '2023-09-03T01:20:46.000',
  'closed_date': '2023-09-03T01:30: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': '11210',
  'incident_address': '2760 BEDFORD AVENUE',
  'street_name': 'BEDFORD AVENUE',
  'cross_street_1': 'FARRAGUT ROAD',
  'cross_street_2': 'GLENWOOD ROAD',
  'intersection_street_1': 'FARRAGUT ROAD',
  'intersection_street_2': 'GLENWOOD ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BEDFORD 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': '2023-09-03T01:30:19.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052450052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997208',
  'y_coordinate_state_plane': '170690',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6351717185098',
  'longitude': '-73.95331299130584',
  'location': {'latitude': '40.6351717185098',
   'longitude': '-73.95331299130584',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694341',
  'created_date': '2023-09-03T01:20:40.000',
  'closed_date': '2023-09-03T01:27:21.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': '616 CLASSON AVENUE',
  'street_name': 'CLASSON AVENUE',
  'cross_street_1': 'PACIFIC STREET',
  'cross_street_2': 'DEAN STREET',
  'intersection_street_1': 'PACIFIC STREET',
  'intersection_street_2': 'DEAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CLASSON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:27:28.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011330049',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995722',
  'y_coordinate_state_plane': '186612',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.678876159981066',
  'longitude': '-73.95863988602963',
  'location': {'latitude': '40.678876159981066',
   'longitude': '-73.95863988602963',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693517',
  'created_date': '2023-09-03T01:20:10.000',
  'closed_date': '2023-09-03T01:29: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': '11206',
  'incident_address': '55 NOSTRAND AVENUE',
  'street_name': 'NOSTRAND AVENUE',
  'cross_street_1': 'FLUSHING AVENUE',
  'cross_street_2': 'PARK AVENUE',
  'intersection_street_1': 'FLUSHING AVENUE',
  'intersection_street_2': 'PARK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NOSTRAND AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:29:34.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3017190001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997256',
  'y_coordinate_state_plane': '193615',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.698095662796',
  'longitude': '-73.953095822697',
  'location': {'latitude': '40.698095662796',
   'longitude': '-73.953095822697',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696930',
  'created_date': '2023-09-03T01:19:41.000',
  'closed_date': '2023-09-03T01:48:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Double Parked Blocking Traffic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10039',
  'incident_address': '203 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:48:43.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020340027',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001356',
  'y_coordinate_state_plane': '239414',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82379513023412',
  'longitude': '-73.93819325697689',
  'location': {'latitude': '40.82379513023412',
   'longitude': '-73.93819325697689',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690779',
  'created_date': '2023-09-03T01:19:41.000',
  'closed_date': '2023-09-03T01:57: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': '11361',
  'incident_address': '47-10 211 STREET',
  'street_name': '211 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': 'BAYSIDE',
  'landmark': '211 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:57:33.000',
  'community_board': '11 QUEENS',
  'bbl': '4073270031',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1047819',
  'y_coordinate_state_plane': '214746',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.755876150409705',
  'longitude': '-73.7705488795547',
  'location': {'latitude': '40.755876150409705',
   'longitude': '-73.7705488795547',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700585',
  'created_date': '2023-09-03T01:19:33.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Illegal Dumping',
  'descriptor': 'Removal Request',
  'location_type': 'Sidewalk',
  'incident_zip': '11102',
  'incident_address': '9-29 27 AVENUE',
  'street_name': '27 AVENUE',
  'cross_street_1': 'BLACKWELLS LANE',
  'cross_street_2': '12 STREET',
  'intersection_street_1': 'BLACKWELLS LANE',
  'intersection_street_2': '12 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '27 AVENUE',
  'status': 'In Progress',
  'community_board': '01 QUEENS',
  'bbl': '4009030001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1003493',
  'y_coordinate_state_plane': '221209',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77382298699386',
  'longitude': '-73.9305241037234',
  'location': {'latitude': '40.77382298699386',
   'longitude': '-73.9305241037234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696591',
  'created_date': '2023-09-03T01:19: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': '11416',
  'incident_address': '95 AVENUE',
  'street_name': '95 AVENUE',
  'cross_street_1': '95 AVENUE',
  'cross_street_2': '105 STREET',
  'intersection_street_1': '95 AVENUE',
  'intersection_street_2': '105 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:44.000',
  'community_board': '09 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1028744',
  'y_coordinate_state_plane': '190467',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6893528483331',
  'longitude': '-73.83956005749005',
  'location': {'latitude': '40.6893528483331',
   'longitude': '-73.83956005749005',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697362',
  'created_date': '2023-09-03T01:19:14.000',
  'closed_date': '2023-09-03T01:38: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': '11213',
  'incident_address': '1647 UNION STREET',
  'street_name': 'UNION STREET',
  'cross_street_1': 'TROY AVENUE',
  'cross_street_2': 'SCHENECTADY AVENUE',
  'intersection_street_1': 'TROY AVENUE',
  'intersection_street_2': 'SCHENECTADY 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': '2023-09-03T01:38:33.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3013950063',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002102',
  'y_coordinate_state_plane': '182681',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.668075883394074',
  'longitude': '-73.93564842785928',
  'location': {'latitude': '40.668075883394074',
   'longitude': '-73.93564842785928',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696848',
  'created_date': '2023-09-03T01:19:05.000',
  'closed_date': '2023-09-03T01:50:20.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': '1773 WEST    8 STREET',
  'street_name': 'WEST    8 STREET',
  'cross_street_1': 'KINGS HIGHWAY',
  'cross_street_2': 'HIGHLAWN AVENUE',
  'intersection_street_1': 'KINGS HIGHWAY',
  'intersection_street_2': 'HIGHLAWN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST    8 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:50:24.000',
  'community_board': '11 BROOKLYN',
  'bbl': '3066490061',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '989557',
  'y_coordinate_state_plane': '159345',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.60403994334374',
  'longitude': '-73.98088806816374',
  'location': {'latitude': '40.60403994334374',
   'longitude': '-73.98088806816374',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692236',
  'created_date': '2023-09-03T01:19:03.000',
  'closed_date': '2023-09-03T01:37: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': '10031',
  'incident_address': '507 WEST  134 STREET',
  'street_name': 'WEST  134 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  134 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:37:43.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1019880025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997179',
  'y_coordinate_state_plane': '237476',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81848296998511',
  'longitude': '-73.95328916377511',
  'location': {'latitude': '40.81848296998511',
   'longitude': '-73.95328916377511',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691922',
  'created_date': '2023-09-03T01:19:01.000',
  'closed_date': '2023-09-03T02:01:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '10036',
  'incident_address': '783 8 AVENUE',
  'street_name': '8 AVENUE',
  'cross_street_1': 'WEST   47 STREET',
  'cross_street_2': 'WEST   48 STREET',
  'intersection_street_1': 'WEST   47 STREET',
  'intersection_street_2': 'WEST   48 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '8 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': '2023-09-03T02:01:13.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010380034',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987799',
  'y_coordinate_state_plane': '216462',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76081393580952',
  'longitude': '-73.98718901560663',
  'location': {'latitude': '40.76081393580952',
   'longitude': '-73.98718901560663',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691420',
  'created_date': '2023-09-03T01:18: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': '10472',
  'incident_address': '1972 CHATTERTON AVENUE',
  'street_name': 'CHATTERTON AVENUE',
  'cross_street_1': 'VIRGINIA AVENUE',
  'cross_street_2': 'PUGSLEY AVENUE',
  'intersection_street_1': 'VIRGINIA AVENUE',
  'intersection_street_2': 'PUGSLEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CHATTERTON AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037870031',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1023730',
  'y_coordinate_state_plane': '240739',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.827360206905404',
  'longitude': '-73.85734468434396',
  'location': {'latitude': '40.827360206905404',
   'longitude': '-73.85734468434396',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694806',
  'created_date': '2023-09-03T01:18:39.000',
  'closed_date': '2023-09-03T01:22: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': '10456',
  'incident_address': '1460 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': '2023-09-03T01:22:58.000',
  'community_board': '03 BRONX',
  'bbl': '2029110001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010863',
  'y_coordinate_state_plane': '244145',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83675683376762',
  'longitude': '-73.90382418403077',
  'location': {'latitude': '40.83675683376762',
   'longitude': '-73.90382418403077',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697898',
  'created_date': '2023-09-03T01:18:36.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Cave-in',
  'location_type': 'Street',
  'incident_zip': '11219',
  'incident_address': '12 AVENUE',
  'street_name': '12 AVENUE',
  'cross_street_1': '12 AVENUE',
  'cross_street_2': '57 STREET',
  'intersection_street_1': '12 AVENUE',
  'intersection_street_2': '57 STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984533',
  'y_coordinate_state_plane': '169485',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63187372270042',
  'longitude': '-73.99898041596697',
  'location': {'latitude': '40.63187372270042',
   'longitude': '-73.99898041596697',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698559',
  'created_date': '2023-09-03T01:18:29.000',
  'closed_date': '2023-09-03T01:50: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': '10037',
  'incident_address': '2155 MADISON AVENUE',
  'street_name': 'MADISON AVENUE',
  'cross_street_1': 'EAST  132 STREET',
  'cross_street_2': 'EAST  135 STREET',
  'intersection_street_1': 'EAST  132 STREET',
  'intersection_street_2': 'EAST  135 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'MADISON AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:50:38.000',
  'community_board': '11 MANHATTAN',
  'bbl': '1017570020',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001931',
  'y_coordinate_state_plane': '235089',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81192309131884',
  'longitude': '-73.93612708437672',
  'location': {'latitude': '40.81192309131884',
   'longitude': '-73.93612708437672',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695358',
  'created_date': '2023-09-03T01:18: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': '11419',
  'incident_address': '101-18 127 STREET',
  'street_name': '127 STREET',
  'cross_street_1': '101 AVENUE',
  'cross_street_2': '102 AVENUE',
  'intersection_street_1': '101 AVENUE',
  'intersection_street_2': '102 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '127 STREET',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4094930018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034421',
  'y_coordinate_state_plane': '191337',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69171043261825',
  'longitude': '-73.81908306297885',
  'location': {'latitude': '40.69171043261825',
   'longitude': '-73.81908306297885',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696717',
  'created_date': '2023-09-03T01:18:19.000',
  'closed_date': '2023-09-03T01:51:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': 'AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'AUTUMN AVENUE',
  'cross_street_2': 'DANFORTH STREET',
  'intersection_street_1': 'AUTUMN AVENUE',
  'intersection_street_2': 'DANFORTH 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': '2023-09-03T01:51:18.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020032',
  'y_coordinate_state_plane': '189625',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687081263523524',
  'longitude': '-73.87097888889852',
  'location': {'latitude': '40.687081263523524',
   'longitude': '-73.87097888889852',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694025',
  'created_date': '2023-09-03T01:18: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': '10456',
  'incident_address': 'EAST  164 STREET',
  'street_name': 'EAST  164 STREET',
  'cross_street_1': 'EAST  164 STREET',
  'cross_street_2': 'MORRIS AVENUE',
  'intersection_street_1': 'EAST  164 STREET',
  'intersection_street_2': 'MORRIS AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:29:14.000',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007246',
  'y_coordinate_state_plane': '241093',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.828390134707725',
  'longitude': '-73.91690599141633',
  'location': {'latitude': '40.828390134707725',
   'longitude': '-73.91690599141633',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694789',
  'created_date': '2023-09-03T01:18:05.000',
  'closed_date': '2023-09-03T01:49:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11224',
  'incident_address': '2950 WEST   33 STREET',
  'street_name': 'WEST   33 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   33 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': '2023-09-03T01:49:29.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070470014',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984426',
  'y_coordinate_state_plane': '148318',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.57377461803691',
  'longitude': '-73.99936646394328',
  'location': {'latitude': '40.57377461803691',
   'longitude': '-73.99936646394328',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699635',
  'created_date': '2023-09-03T01:17:19.000',
  'closed_date': '2023-09-03T01:50: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': '11237',
  'incident_address': '91 WYCKOFF AVENUE',
  'street_name': 'WYCKOFF AVENUE',
  'cross_street_1': 'SUYDAM STREET',
  'cross_street_2': 'HART STREET',
  'intersection_street_1': 'SUYDAM STREET',
  'intersection_street_2': 'HART 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': '2023-09-03T01:50:33.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032220005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006351',
  'y_coordinate_state_plane': '196130',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70498070536605',
  'longitude': '-73.92028783784475',
  'location': {'latitude': '40.70498070536605',
   'longitude': '-73.92028783784475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693417',
  'created_date': '2023-09-03T01:17:15.000',
  'closed_date': '2023-09-03T01:26:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '11225',
  'incident_address': '2121 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': '2023-09-03T01:26:28.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3050260070',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995080',
  'y_coordinate_state_plane': '179741',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66001760998396',
  'longitude': '-73.96096553336491',
  'location': {'latitude': '40.66001760998396',
   'longitude': '-73.96096553336491',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694693',
  'created_date': '2023-09-03T01:17:03.000',
  'closed_date': '2023-09-03T01:44: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': '11106',
  'incident_address': '12-35 35 AVENUE',
  'street_name': '35 AVENUE',
  'cross_street_1': '12 STREET',
  'cross_street_2': '21 STREET',
  'intersection_street_1': '12 STREET',
  'intersection_street_2': '21 STREET',
  'address_type': 'ADDRESS',
  'city': 'ASTORIA',
  'landmark': '35 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': '2023-09-03T01:44:44.000',
  'community_board': '01 QUEENS',
  'bbl': '4005230002',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1001512',
  'y_coordinate_state_plane': '217039',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76238151290782',
  'longitude': '-73.93768711322095',
  'location': {'latitude': '40.76238151290782',
   'longitude': '-73.93768711322095',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694726',
  'created_date': '2023-09-03T01:16:53.000',
  'closed_date': '2023-09-03T01:43: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': '11212',
  'incident_address': '222 EAST   92 STREET',
  'street_name': 'EAST   92 STREET',
  'cross_street_1': 'WINTHROP STREET',
  'cross_street_2': 'CLARKSON AVENUE',
  'intersection_street_1': 'WINTHROP STREET',
  'intersection_street_2': 'CLARKSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   92 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:43:48.000',
  'community_board': '17 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1005037',
  'y_coordinate_state_plane': '179619',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.65966497007128',
  'longitude': '-73.9250780017846',
  'location': {'latitude': '40.65966497007128',
   'longitude': '-73.9250780017846',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694069',
  'created_date': '2023-09-03T01:16:25.000',
  'agency': 'TLC',
  'agency_name': 'Taxi and Limousine Commission',
  'complaint_type': 'Taxi Complaint',
  'descriptor': 'Driver Complaint - Non Passenger',
  'location_type': 'Street',
  'incident_zip': '10013',
  'incident_address': '9 DOYERS STREET',
  'street_name': 'DOYERS STREET',
  'cross_street_1': 'BOWERY',
  'cross_street_2': 'PELL STREET',
  'intersection_street_1': 'BOWERY',
  'intersection_street_2': 'PELL STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'DOYERS STREET',
  'status': 'In Progress',
  'community_board': '03 MANHATTAN',
  'bbl': '1001620030',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '984768',
  'y_coordinate_state_plane': '199569',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'taxi_pick_up_location': '9 DOYERS STREET, MANHATTAN (NEW YORK), NY, 10013',
  'latitude': '40.71444753045363',
  'longitude': '-73.99813145292558',
  'location': {'latitude': '40.71444753045363',
   'longitude': '-73.99813145292558',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693386',
  'created_date': '2023-09-03T01:16:25.000',
  'closed_date': '2023-09-03T01:38: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': '1403 WARING AVENUE',
  'street_name': 'WARING AVENUE',
  'cross_street_1': 'SEYMOUR AVENUE',
  'cross_street_2': 'MORGAN AVENUE',
  'intersection_street_1': 'SEYMOUR AVENUE',
  'intersection_street_2': 'MORGAN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WARING AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:38:43.000',
  'community_board': '11 BRONX',
  'bbl': '2044720008',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026798',
  'y_coordinate_state_plane': '252986',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86096033365693',
  'longitude': '-73.84618122166894',
  'location': {'latitude': '40.86096033365693',
   'longitude': '-73.84618122166894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693344',
  'created_date': '2023-09-03T01:16:18.000',
  'closed_date': '2023-09-03T01:44: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': '10452',
  'incident_address': '1073 SUMMIT AVENUE',
  'street_name': 'SUMMIT AVENUE',
  'cross_street_1': 'WEST  165 STREET',
  'cross_street_2': 'WEST  166 STREET',
  'intersection_street_1': 'WEST  165 STREET',
  'intersection_street_2': 'WEST  166 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SUMMIT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:44:28.000',
  'community_board': '04 BRONX',
  'bbl': '2025260076',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1003861',
  'y_coordinate_state_plane': '243545',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83512833259711',
  'longitude': '-73.92913021503848',
  'location': {'latitude': '40.83512833259711',
   'longitude': '-73.92913021503848',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695374',
  'created_date': '2023-09-03T01:15: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': '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',
  'resolution_action_updated_date': '2023-09-03T02:46:54.000',
  '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': '58700391',
  'created_date': '2023-09-03T01:15:57.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-28 98 STREET',
  'street_name': '98 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': '98 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017380017',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020389',
  'y_coordinate_state_plane': '213659',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75304727647404',
  'longitude': '-73.86956259362604',
  'location': {'latitude': '40.75304727647404',
   'longitude': '-73.86956259362604',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697882',
  'created_date': '2023-09-03T01:15: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': '11416',
  'incident_address': '84-12 97 AVENUE',
  'street_name': '97 AVENUE',
  'cross_street_1': '84 STREET',
  'cross_street_2': 'ROCKAWAY BOULEVARD',
  'intersection_street_1': '84 STREET',
  'intersection_street_2': 'ROCKAWAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'OZONE PARK',
  'landmark': '97 AVENUE',
  'status': 'In Progress',
  'community_board': '09 QUEENS',
  'bbl': '4090550001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1024179',
  'y_coordinate_state_plane': '188261',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.683319663544545',
  'longitude': '-73.85603393323784',
  'location': {'latitude': '40.683319663544545',
   'longitude': '-73.85603393323784',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698650',
  'created_date': '2023-09-03T01:15:44.000',
  'closed_date': '2023-09-03T01:31: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': '11216',
  'incident_address': 'KOSCIUSZKO STREET',
  'street_name': 'KOSCIUSZKO STREET',
  'cross_street_1': 'KOSCIUSZKO STREET',
  'cross_street_2': 'MARCY AVENUE',
  'intersection_street_1': 'KOSCIUSZKO STREET',
  'intersection_street_2': 'MARCY AVENUE',
  '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': '2023-09-03T01:31:23.000',
  'community_board': '03 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998579',
  'y_coordinate_state_plane': '191021',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.690973691924086',
  'longitude': '-73.94833014183779',
  'location': {'latitude': '40.690973691924086',
   'longitude': '-73.94833014183779',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690860',
  'created_date': '2023-09-03T01:15:23.000',
  'closed_date': '2023-09-03T01:51: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': '11208',
  'incident_address': 'AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'AUTUMN AVENUE',
  'cross_street_2': 'ETNA STREET',
  'intersection_street_1': 'AUTUMN AVENUE',
  'intersection_street_2': 'ETNA 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': '2023-09-03T01:51:28.000',
  'community_board': '05 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020007',
  'y_coordinate_state_plane': '189768',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.687473866347624',
  'longitude': '-73.871068273704',
  'location': {'latitude': '40.687473866347624',
   'longitude': '-73.871068273704',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694032',
  'created_date': '2023-09-03T01: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': '11233',
  'incident_address': '227 MARION STREET',
  'street_name': 'MARION 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': 'MARION STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:59.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3015130048',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006249',
  'y_coordinate_state_plane': '187272',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68066780736531',
  'longitude': '-73.92068465106234',
  'location': {'latitude': '40.68066780736531',
   'longitude': '-73.92068465106234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692017',
  'created_date': '2023-09-03T01:15:15.000',
  'closed_date': '2023-09-03T01:57: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': '11208',
  'incident_address': '189 SHERIDAN AVENUE',
  'street_name': 'SHERIDAN AVENUE',
  'cross_street_1': 'LIBERTY AVENUE',
  'cross_street_2': 'GLENMORE AVENUE',
  'intersection_street_1': 'LIBERTY AVENUE',
  'intersection_street_2': 'GLENMORE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'SHERIDAN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:57:08.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042030006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1021191',
  'y_coordinate_state_plane': '186318',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67799955043815',
  'longitude': '-73.86681795513633',
  'location': {'latitude': '40.67799955043815',
   'longitude': '-73.86681795513633',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690639',
  'created_date': '2023-09-03T01:15:03.000',
  'closed_date': '2023-09-03T01:22: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': '10016',
  'incident_address': '443 3 AVENUE',
  'street_name': '3 AVENUE',
  'cross_street_1': 'EAST   30 STREET',
  'cross_street_2': 'EAST   31 STREET',
  'intersection_street_1': 'EAST   30 STREET',
  'intersection_street_2': 'EAST   31 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '3 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T01:22:48.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009110064',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '989883',
  'y_coordinate_state_plane': '210185',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.74358407843602',
  'longitude': '-73.97967156586743',
  'location': {'latitude': '40.74358407843602',
   'longitude': '-73.97967156586743',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696588',
  'created_date': '2023-09-03T01:15: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': '10469',
  'incident_address': '1866 TILLOTSON AVENUE',
  'street_name': 'TILLOTSON AVENUE',
  'cross_street_1': 'ELY AVENUE',
  'cross_street_2': 'GRACE AVENUE',
  'intersection_street_1': 'ELY AVENUE',
  'intersection_street_2': 'GRACE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'TILLOTSON AVENUE',
  'status': 'In Progress',
  'community_board': '12 BRONX',
  'bbl': '2048820018',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028679',
  'y_coordinate_state_plane': '259331',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87836612531141',
  'longitude': '-73.83933900774223',
  'location': {'latitude': '40.87836612531141',
   'longitude': '-73.83933900774223',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696841',
  'created_date': '2023-09-03T01:15:00.000',
  'closed_date': '2023-09-03T01:46:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  '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 issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:46:28.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',
  'latitude': '40.73182689956645',
  'longitude': '-73.98978164967104',
  'location': {'latitude': '40.73182689956645',
   'longitude': '-73.98978164967104',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694026',
  'created_date': '2023-09-03T01:14: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': '11412',
  'incident_address': 'HOLLIS AVENUE',
  'street_name': 'HOLLIS AVENUE',
  'cross_street_1': '203 STREET',
  'cross_street_2': '204 STREET',
  'intersection_street_1': '203 STREET',
  'intersection_street_2': '204 STREET',
  'address_type': 'BLOCKFACE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:07:33.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '58694694',
  'created_date': '2023-09-03T01:14:47.000',
  'closed_date': '2023-09-03T01:40: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': '10473',
  'incident_address': '2280 RANDALL AVENUE',
  'street_name': 'RANDALL AVENUE',
  'cross_street_1': 'CASTLE HILL AVENUE',
  'cross_street_2': 'HAVEMEYER AVENUE',
  'intersection_street_1': 'CASTLE HILL AVENUE',
  'intersection_street_2': 'HAVEMEYER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'RANDALL AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:40:38.000',
  'community_board': '09 BRONX',
  'bbl': '2035370001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1026993',
  'y_coordinate_state_plane': '237822',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.819338693269565',
  'longitude': '-73.84557290696154',
  'location': {'latitude': '40.819338693269565',
   'longitude': '-73.84557290696154',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690876',
  'created_date': '2023-09-03T01:14:46.000',
  'closed_date': '2023-09-03T01:31: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': '11232',
  'incident_address': '750 40 STREET',
  'street_name': '40 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': '40 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:31:49.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3009190024',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984535',
  'y_coordinate_state_plane': '175129',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64736529517485',
  'longitude': '-73.99897297202102',
  'location': {'latitude': '40.64736529517485',
   'longitude': '-73.99897297202102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700353',
  'created_date': '2023-09-03T01:14:40.000',
  'closed_date': '2023-09-03T01:23:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Bike Lane',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11233',
  'incident_address': '1932 BERGEN STREET',
  'street_name': 'BERGEN STREET',
  'cross_street_1': 'HOWARD AVENUE',
  'cross_street_2': 'SARATOGA AVENUE',
  'intersection_street_1': 'HOWARD AVENUE',
  'intersection_street_2': 'SARATOGA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BERGEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:23:04.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3014520041',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007167',
  'y_coordinate_state_plane': '184957',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67431132920421',
  'longitude': '-73.91738276135248',
  'location': {'latitude': '40.67431132920421',
   'longitude': '-73.91738276135248',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696508',
  'created_date': '2023-09-03T01:14:38.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11429',
  'incident_address': '99-08 216 STREET',
  'street_name': '216 STREET',
  'cross_street_1': '99 AVENUE',
  'cross_street_2': '102 AVENUE',
  'intersection_street_1': '99 AVENUE',
  'intersection_street_2': '102 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '216 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:19:14.000',
  'community_board': '13 QUEENS',
  'bbl': '4110890030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055523',
  'y_coordinate_state_plane': '199677',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71445689545297',
  'longitude': '-73.74290122482373',
  'location': {'latitude': '40.71445689545297',
   'longitude': '-73.74290122482373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699169',
  'created_date': '2023-09-03T01:14: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': '11436',
  'incident_address': '133 AVENUE',
  'street_name': '133 AVENUE',
  'cross_street_1': '133 AVENUE',
  'cross_street_2': 'INWOOD STREET',
  'intersection_street_1': '133 AVENUE',
  'intersection_street_2': 'INWOOD STREET',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041494',
  'y_coordinate_state_plane': '183018',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66883380654531',
  'longitude': '-73.79364853625252',
  'location': {'latitude': '40.66883380654531',
   'longitude': '-73.79364853625252',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694687',
  'created_date': '2023-09-03T01:14:03.000',
  'closed_date': '2023-09-03T01:29: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': '11419',
  'incident_address': '101-18 127 STREET',
  'street_name': '127 STREET',
  'cross_street_1': '101 AVENUE',
  'cross_street_2': '102 AVENUE',
  'intersection_street_1': '101 AVENUE',
  'intersection_street_2': '102 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '127 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:29:08.000',
  'community_board': '09 QUEENS',
  'bbl': '4094930018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034421',
  'y_coordinate_state_plane': '191337',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69171043261825',
  'longitude': '-73.81908306297885',
  'location': {'latitude': '40.69171043261825',
   'longitude': '-73.81908306297885',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691378',
  'created_date': '2023-09-03T01:14:02.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': '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',
  'resolution_action_updated_date': '2023-09-03T02:47:14.000',
  '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': '58699698',
  'created_date': '2023-09-03T01:13:58.000',
  'closed_date': '2023-09-03T01:35:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11212',
  'incident_address': '214 ROCKAWAY PARKWAY',
  'street_name': 'ROCKAWAY PARKWAY',
  'cross_street_1': 'WINTHROP STREET',
  'cross_street_2': 'CLARKSON AVENUE',
  'intersection_street_1': 'WINTHROP STREET',
  'intersection_street_2': 'CLARKSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ROCKAWAY 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': '2023-09-03T01:35:39.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3046320025',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006187',
  'y_coordinate_state_plane': '180410',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66183331534403',
  'longitude': '-73.9209305179595',
  'location': {'latitude': '40.66183331534403',
   'longitude': '-73.9209305179595',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699640',
  'created_date': '2023-09-03T01:13:37.000',
  'closed_date': '2023-09-03T01:44: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': '10009',
  'incident_address': '104 AVENUE C',
  'street_name': 'AVENUE C',
  'cross_street_1': 'EAST    6 STREET',
  'cross_street_2': 'EAST    7 STREET',
  'intersection_street_1': 'EAST    6 STREET',
  'intersection_street_2': 'EAST    7 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'AVENUE C',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:44:53.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1003760007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990103',
  'y_coordinate_state_plane': '203061',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.72403030910753',
  'longitude': '-73.97888382485749',
  'location': {'latitude': '40.72403030910753',
   'longitude': '-73.97888382485749',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694042',
  'created_date': '2023-09-03T01:12: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': '10455',
  'incident_address': '600 CONCORD AVENUE',
  'street_name': 'CONCORD AVENUE',
  'cross_street_1': 'EAST  150 STREET',
  'cross_street_2': 'EAST  151 STREET',
  'intersection_street_1': 'EAST  150 STREET',
  'intersection_street_2': 'EAST  151 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CONCORD AVENUE',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'bbl': '2026420070',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009811',
  'y_coordinate_state_plane': '235999',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.814401501168156',
  'longitude': '-73.90765700162945',
  'location': {'latitude': '40.814401501168156',
   'longitude': '-73.90765700162945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694454',
  'created_date': '2023-09-03T01:12:49.000',
  'closed_date': '2023-09-03T01:35:16.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': '1522 REMSEN AVENUE',
  'street_name': 'REMSEN AVENUE',
  'cross_street_1': 'AVENUE L',
  'cross_street_2': 'AVENUE M',
  'intersection_street_1': 'AVENUE L',
  'intersection_street_2': 'AVENUE M',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'REMSEN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:35:28.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080680062',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1012218',
  'y_coordinate_state_plane': '170338',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63417087814508',
  'longitude': '-73.8992342257668',
  'location': {'latitude': '40.63417087814508',
   'longitude': '-73.8992342257668',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699130',
  'created_date': '2023-09-03T01:12:44.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Toilet Facility',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '10018',
  'incident_address': '556 7 AVENUE',
  'street_name': '7 AVENUE',
  'cross_street_1': 'WEST   39 STREET',
  'cross_street_2': 'WEST   40 STREET',
  'intersection_street_1': 'WEST   39 STREET',
  'intersection_street_2': 'WEST   40 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': '7 AVENUE',
  'status': 'In Progress',
  'community_board': '05 MANHATTAN',
  'bbl': '1007890042',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '987575',
  'y_coordinate_state_plane': '214203',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.75461364486008',
  'longitude': '-73.9879987156354',
  'location': {'latitude': '40.75461364486008',
   'longitude': '-73.9879987156354',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699846',
  'created_date': '2023-09-03T01:12:42.000',
  'closed_date': '2023-09-03T01:31: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': '11225',
  'incident_address': '1042 UNION STREET',
  'street_name': 'UNION STREET',
  'cross_street_1': 'FRANKLIN AVENUE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'FRANKLIN AVENUE',
  'intersection_street_2': 'BEDFORD 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': '2023-09-03T01:31:28.000',
  'community_board': '09 BROOKLYN',
  'bbl': '3012730020',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996086',
  'y_coordinate_state_plane': '183224',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.669576383742395',
  'longitude': '-73.95733350299736',
  'location': {'latitude': '40.669576383742395',
   'longitude': '-73.95733350299736',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699177',
  'created_date': '2023-09-03T01:12:13.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10304',
  'incident_address': '76 SANDS STREET',
  'street_name': 'SANDS STREET',
  'cross_street_1': 'BAY STREET',
  'cross_street_2': 'WAVE STREET',
  'intersection_street_1': 'BAY STREET',
  'intersection_street_2': 'WAVE STREET',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'SANDS 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': '2023-09-03T02:04:24.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5005120064',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '962666',
  'y_coordinate_state_plane': '168664',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62959396061638',
  'longitude': '-74.07775955095426',
  'location': {'latitude': '40.62959396061638',
   'longitude': '-74.07775955095426',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700471',
  'created_date': '2023-09-03T01:12: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': '11222',
  'incident_address': '142 FRANKLIN STREET',
  'street_name': 'FRANKLIN STREET',
  'cross_street_1': 'MILTON STREET',
  'cross_street_2': 'GREENPOINT AVENUE',
  'intersection_street_1': 'MILTON STREET',
  'intersection_street_2': 'GREENPOINT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'FRANKLIN STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:22:39.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3025630008',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996011',
  'y_coordinate_state_plane': '205156',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.72977469149663',
  'longitude': '-73.95756556441302',
  'location': {'latitude': '40.72977469149663',
   'longitude': '-73.95756556441302',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696849',
  'created_date': '2023-09-03T01:12:02.000',
  'closed_date': '2023-09-03T01:19:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10463',
  'incident_address': '2649 KINGSBRIDGE TERRACE',
  'street_name': 'KINGSBRIDGE TERRACE',
  'cross_street_1': 'HEATH AVENUE',
  'cross_street_2': 'WEST KINGSBRIDGE ROAD',
  'intersection_street_1': 'HEATH AVENUE',
  'intersection_street_2': 'WEST KINGSBRIDGE ROAD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KINGSBRIDGE TERRACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:19:18.000',
  'community_board': '07 BRONX',
  'bbl': '2032400001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1010282',
  'y_coordinate_state_plane': '256245',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8699694463055',
  'longitude': '-73.9058768531042',
  'location': {'latitude': '40.8699694463055',
   'longitude': '-73.9058768531042',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692025',
  'created_date': '2023-09-03T01:11:56.000',
  'closed_date': '2023-09-03T01:25: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': '11212',
  'incident_address': 'DUMONT AVENUE',
  'street_name': 'DUMONT AVENUE',
  'cross_street_1': 'DUMONT AVENUE',
  'cross_street_2': 'SARATOGA AVENUE',
  'intersection_street_1': 'DUMONT AVENUE',
  'intersection_street_2': 'SARATOGA 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': '2023-09-03T01:25:53.000',
  'community_board': '16 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1007589',
  'y_coordinate_state_plane': '180879',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66311703153037',
  'longitude': '-73.91587554412013',
  'location': {'latitude': '40.66311703153037',
   'longitude': '-73.91587554412013',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692124',
  'created_date': '2023-09-03T01:11:50.000',
  'closed_date': '2023-09-03T01:37: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': '10027',
  'incident_address': '133 WEST  123 STREET',
  'street_name': 'WEST  123 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  123 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:37:48.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019080017',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998780',
  'y_coordinate_state_plane': '233270',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.8069361857868',
  'longitude': '-73.9475140601472',
  'location': {'latitude': '40.8069361857868',
   'longitude': '-73.9475140601472',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694653',
  'created_date': '2023-09-03T01:11:48.000',
  'closed_date': '2023-09-03T01:31: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': '11378',
  'incident_address': '51-65 72 PLACE',
  'street_name': '72 PLACE',
  'cross_street_1': 'CALAMUS AVENUE',
  'cross_street_2': '53 ROAD',
  'intersection_street_1': 'CALAMUS AVENUE',
  'intersection_street_2': '53 ROAD',
  'address_type': 'ADDRESS',
  'city': 'MASPETH',
  'landmark': '72 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': '2023-09-03T01:31:43.000',
  'community_board': '05 QUEENS',
  'bbl': '4024850006',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1014412',
  'y_coordinate_state_plane': '206734',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73406230454027',
  'longitude': '-73.89116656043147',
  'location': {'latitude': '40.73406230454027',
   'longitude': '-73.89116656043147',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697273',
  'created_date': '2023-09-03T01:11:38.000',
  'closed_date': '2023-09-03T02:00: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': '11427',
  'incident_address': '89-56 212 STREET',
  'street_name': '212 STREET',
  'cross_street_1': '89 ROAD',
  'cross_street_2': '90 AVENUE',
  'intersection_street_1': '89 ROAD',
  'intersection_street_2': '90 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '212 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:00:28.000',
  'community_board': '13 QUEENS',
  'bbl': '4105780023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053222',
  'y_coordinate_state_plane': '202535',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.722319624437056',
  'longitude': '-73.75117215238014',
  'location': {'latitude': '40.722319624437056',
   'longitude': '-73.75117215238014',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695265',
  'created_date': '2023-09-03T01:11:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11416',
  'incident_address': '101-45 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': '4091040050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1027618',
  'y_coordinate_state_plane': '188375',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.6836163855534',
  'longitude': '-73.84363373312851',
  'location': {'latitude': '40.6836163855534',
   'longitude': '-73.84363373312851',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699900',
  'created_date': '2023-09-03T01:11:23.000',
  'closed_date': '2023-09-03T01:50: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': '10032',
  'incident_address': '2224 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'cross_street_1': 'WEST  170 STREET',
  'cross_street_2': 'EDGECOMBE AVENUE',
  'intersection_street_1': 'WEST  170 STREET',
  'intersection_street_2': 'EDGECOMBE AVENUE',
  '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': '2023-09-03T01:50:23.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021270048',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001998',
  'y_coordinate_state_plane': '245806',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84133805997194',
  'longitude': '-73.93585669640473',
  'location': {'latitude': '40.84133805997194',
   'longitude': '-73.93585669640473',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691004',
  'created_date': '2023-09-03T01:11:06.000',
  'closed_date': '2023-09-03T01:22:50.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '41-66 72 STREET',
  'street_name': '72 STREET',
  'cross_street_1': '41 AVENUE',
  'cross_street_2': 'WOODSIDE AVENUE',
  'intersection_street_1': '41 AVENUE',
  'intersection_street_2': 'WOODSIDE 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': '2023-09-03T01:22:58.000',
  'community_board': '02 QUEENS',
  'bbl': '4013110074',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013912',
  'y_coordinate_state_plane': '210085',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74326165287034',
  'longitude': '-73.89295593115894',
  'location': {'latitude': '40.74326165287034',
   'longitude': '-73.89295593115894',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695852',
  'created_date': '2023-09-03T01:10:56.000',
  'closed_date': '2023-09-03T01:25:12.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '10025',
  'incident_address': '323 WEST   96 STREET',
  'street_name': 'WEST   96 STREET',
  'cross_street_1': 'WEST END AVENUE',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'WEST END AVENUE',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   96 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:25:18.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018870003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991516',
  'y_coordinate_state_plane': '229098',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7954941477263',
  'longitude': '-73.973757930177',
  'location': {'latitude': '40.7954941477263',
   'longitude': '-73.973757930177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693413',
  'created_date': '2023-09-03T01:10:52.000',
  'closed_date': '2023-09-03T01:49:54.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10310',
  'incident_address': '725 POST AVENUE',
  'street_name': 'POST AVENUE',
  'cross_street_1': 'CARY AVENUE',
  'cross_street_2': 'GREENLEAF AVENUE',
  'intersection_street_1': 'CARY AVENUE',
  'intersection_street_2': 'GREENLEAF AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'POST 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': '2023-09-03T01:49:58.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5002150083',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '949386',
  'y_coordinate_state_plane': '169391',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63154710865669',
  'longitude': '-74.12560641674918',
  'location': {'latitude': '40.63154710865669',
   'longitude': '-74.12560641674918',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699816',
  'created_date': '2023-09-03T01:10:49.000',
  'closed_date': '2023-09-03T01:39: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': '10455',
  'incident_address': '690 EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'cross_street_1': 'TRINITY AVENUE',
  'cross_street_2': 'JACKSON AVENUE',
  'intersection_street_1': 'TRINITY AVENUE',
  'intersection_street_2': 'JACKSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T01:39:28.000',
  'community_board': '01 BRONX',
  'bbl': '2025570040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009123',
  'y_coordinate_state_plane': '235087',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81190028068394',
  'longitude': '-73.91014588407816',
  'location': {'latitude': '40.81190028068394',
   'longitude': '-73.91014588407816',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696095',
  'created_date': '2023-09-03T01:10:14.000',
  'closed_date': '2023-09-03T01:56: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': '10456',
  'incident_address': '1450 CLAY AVENUE',
  'street_name': 'CLAY AVENUE',
  'cross_street_1': 'EAST  170 STREET',
  'cross_street_2': 'EAST  171 STREET',
  'intersection_street_1': 'EAST  170 STREET',
  'intersection_street_2': 'EAST  171 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'CLAY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:56:03.000',
  'community_board': '04 BRONX',
  'bbl': '2028870100',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009951',
  'y_coordinate_state_plane': '244590',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83798093029536',
  'longitude': '-73.9071183221272',
  'location': {'latitude': '40.83798093029536',
   'longitude': '-73.9071183221272',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692718',
  'created_date': '2023-09-03T01:10: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': '11419',
  'incident_address': '110-02 103 AVENUE',
  'street_name': '103 AVENUE',
  'cross_street_1': '110 STREET',
  'cross_street_2': '111 STREET',
  'intersection_street_1': '110 STREET',
  'intersection_street_2': '111 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '103 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:04:03.000',
  'community_board': '10 QUEENS',
  'bbl': '4095150001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1030723',
  'y_coordinate_state_plane': '189191',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.685840357294424',
  'longitude': '-73.83243284322666',
  'location': {'latitude': '40.685840357294424',
   'longitude': '-73.83243284322666',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699175',
  'created_date': '2023-09-03T01:09: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': '10453',
  'incident_address': '1690 JEROME AVENUE',
  'street_name': 'JEROME AVENUE',
  'cross_street_1': 'CROSS BRONX EXPWY WB ET    2 A',
  'cross_street_2': 'CLIFFORD PLACE',
  'intersection_street_1': 'CROSS BRONX EXPWY WB ET    2 A',
  'intersection_street_2': 'CLIFFORD PLACE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'JEROME AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:09:28.000',
  'community_board': '05 BRONX',
  'bbl': '2028480016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008258',
  'y_coordinate_state_plane': '247676',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84645585927942',
  'longitude': '-73.91322565779569',
  'location': {'latitude': '40.84645585927942',
   'longitude': '-73.91322565779569',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698306',
  'created_date': '2023-09-03T01:09:26.000',
  'closed_date': '2023-09-03T01:56:41.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': '23 EAST   92 STREET',
  'street_name': 'EAST   92 STREET',
  'cross_street_1': 'EAST NEW YORK AVENUE',
  'cross_street_2': 'RUTLAND ROAD',
  'intersection_street_1': 'EAST NEW YORK AVENUE',
  'intersection_street_2': 'RUTLAND ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   92 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2023-09-03T01:56:44.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3045950118',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003854',
  'y_coordinate_state_plane': '181023',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66352133706554',
  'longitude': '-73.9293377713562',
  'location': {'latitude': '40.66352133706554',
   'longitude': '-73.9293377713562',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695938',
  'created_date': '2023-09-03T01:09:22.000',
  'closed_date': '2023-09-03T01:34: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': '10460',
  'incident_address': '975 EAST  181 STREET',
  'street_name': 'EAST  181 STREET',
  'cross_street_1': 'VYSE AVENUE',
  'cross_street_2': 'BRYANT AVENUE',
  'intersection_street_1': 'VYSE AVENUE',
  'intersection_street_2': 'BRYANT AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  181 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:34:23.000',
  'community_board': '06 BRONX',
  'bbl': '2031340035',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1017597',
  'y_coordinate_state_plane': '246988',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84453717246229',
  'longitude': '-73.87947430159765',
  'location': {'latitude': '40.84453717246229',
   'longitude': '-73.87947430159765',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696085',
  'created_date': '2023-09-03T01:09:18.000',
  'closed_date': '2023-09-03T01:42: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': '10453',
  'incident_address': '2185 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'ANTHONY AVENUE',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'ANTHONY AVENUE',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'Your request can not be processed at this time because of insufficient contact information. Please create a new Service Request on NYC.gov and provide more detailed contact information.',
  'resolution_action_updated_date': '2023-09-03T01:43:03.000',
  'community_board': '05 BRONX',
  'bbl': '2031620034',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011574',
  'y_coordinate_state_plane': '250947',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8554241407086',
  'longitude': '-73.90122700980653',
  'location': {'latitude': '40.8554241407086',
   'longitude': '-73.90122700980653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699139',
  'created_date': '2023-09-03T01:09:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '43-17 FORLEY STREET',
  'street_name': 'FORLEY STREET',
  'cross_street_1': 'LAMONT AVENUE',
  'cross_street_2': '43 AVENUE',
  'intersection_street_1': 'LAMONT AVENUE',
  'intersection_street_2': '43 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'FORLEY STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4015760056',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019328',
  'y_coordinate_state_plane': '210505',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.744394622500586',
  'longitude': '-73.8734085336844',
  'location': {'latitude': '40.744394622500586',
   'longitude': '-73.8734085336844',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692183',
  'created_date': '2023-09-03T01:09:15.000',
  'closed_date': '2023-09-03T01:19: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': '11226',
  'incident_address': 'AVENUE D',
  'street_name': 'AVENUE D',
  'cross_street_1': 'AVENUE D',
  'cross_street_2': 'EAST   26 STREET',
  'intersection_street_1': 'AVENUE D',
  'intersection_street_2': 'EAST   26 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': '2023-09-03T01:19:49.000',
  'community_board': '17 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997467',
  'y_coordinate_state_plane': '172707',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64070756953839',
  'longitude': '-73.95237587684477',
  'location': {'latitude': '40.64070756953839',
   'longitude': '-73.95237587684477',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695383',
  'created_date': '2023-09-03T01:09:13.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Street Condition',
  'descriptor': 'Blocked - Construction',
  'location_type': 'Street',
  'incident_zip': '10453',
  'incident_address': '2183 MORRIS AVENUE',
  'street_name': 'MORRIS AVENUE',
  'cross_street_1': 'CAMERON PLACE',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'CAMERON PLACE',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'MORRIS AVENUE',
  'status': 'In Progress',
  'community_board': '05 BRONX',
  'bbl': '2031810042',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011008',
  'y_coordinate_state_plane': '251157',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85600226120347',
  'longitude': '-73.90327219214285',
  'location': {'latitude': '40.85600226120347',
   'longitude': '-73.90327219214285',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694247',
  'created_date': '2023-09-03T01:08:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '83-18 54 AVENUE',
  'street_name': '54 AVENUE',
  'cross_street_1': '83 STREET',
  'cross_street_2': '84 STREET',
  'intersection_street_1': '83 STREET',
  'intersection_street_2': '84 STREET',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '54 AVENUE',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4029050003',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1016975',
  'y_coordinate_state_plane': '205970',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73195620259775',
  'longitude': '-73.88192222319837',
  'location': {'latitude': '40.73195620259775',
   'longitude': '-73.88192222319837',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694851',
  'created_date': '2023-09-03T01:08:31.000',
  'closed_date': '2023-09-03T01:29: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': '10452',
  'incident_address': '1084 GERARD AVENUE',
  'street_name': 'GERARD AVENUE',
  'cross_street_1': 'EAST  165 STREET',
  'cross_street_2': 'MCCLELLAN STREET',
  'intersection_street_1': 'EAST  165 STREET',
  'intersection_street_2': 'MCCLELLAN STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GERARD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:29:33.000',
  'community_board': '04 BRONX',
  'bbl': '2024780012',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005818',
  'y_coordinate_state_plane': '242549',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83239003824487',
  'longitude': '-73.92206125905138',
  'location': {'latitude': '40.83239003824487',
   'longitude': '-73.92206125905138',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695939',
  'created_date': '2023-09-03T01:08:13.000',
  'closed_date': '2023-09-03T01:43:43.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '10310',
  'incident_address': '24 WAYNE STREET',
  'street_name': 'WAYNE STREET',
  'cross_street_1': 'NORTH BURGHER AVENUE',
  'cross_street_2': 'CAMPBELL AVENUE',
  'intersection_street_1': 'NORTH BURGHER AVENUE',
  'intersection_street_2': 'CAMPBELL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WAYNE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:43:48.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001730005',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952015',
  'y_coordinate_state_plane': '171821',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.638226893414675',
  'longitude': '-74.11614639590076',
  'location': {'latitude': '40.638226893414675',
   'longitude': '-74.11614639590076',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694016',
  'created_date': '2023-09-03T01:08: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': '10451',
  'incident_address': 'EAST  142 STREET',
  'street_name': 'EAST  142 STREET',
  'cross_street_1': 'EAST  142 STREET',
  'cross_street_2': 'MORRIS AVENUE',
  'intersection_street_1': 'EAST  142 STREET',
  'intersection_street_2': 'MORRIS AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:59:14.000',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005078',
  'y_coordinate_state_plane': '235987',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8143809912207',
  'longitude': '-73.92475571152818',
  'location': {'latitude': '40.8143809912207',
   'longitude': '-73.92475571152818',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692737',
  'created_date': '2023-09-03T01:07: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': '10455',
  'incident_address': 'EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'cross_street_1': 'EAST  147 STREET',
  'cross_street_2': 'JACKSON AVENUE',
  'intersection_street_1': 'EAST  147 STREET',
  'intersection_street_2': 'JACKSON AVENUE',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009275',
  'y_coordinate_state_plane': '235042',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.811776339017754',
  'longitude': '-73.90959694977177',
  'location': {'latitude': '40.811776339017754',
   'longitude': '-73.90959694977177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699926',
  'created_date': '2023-09-03T01:07:55.000',
  'closed_date': '2023-09-03T01:30: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': '11223',
  'incident_address': '1 AVENUE W',
  'street_name': 'AVENUE W',
  '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': 'AVENUE W',
  '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': '2023-09-03T01:30:43.000',
  'community_board': '13 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988661',
  'y_coordinate_state_plane': '154661',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59118380095846',
  'longitude': '-73.98411786302258',
  'location': {'latitude': '40.59118380095846',
   'longitude': '-73.98411786302258',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697275',
  'created_date': '2023-09-03T01:07:51.000',
  'closed_date': '2023-09-03T01:43: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': '10310',
  'incident_address': '24 WAYNE STREET',
  'street_name': 'WAYNE STREET',
  'cross_street_1': 'NORTH BURGHER AVENUE',
  'cross_street_2': 'CAMPBELL AVENUE',
  'intersection_street_1': 'NORTH BURGHER AVENUE',
  'intersection_street_2': 'CAMPBELL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WAYNE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:43:33.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001730005',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952015',
  'y_coordinate_state_plane': '171821',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.638226893414675',
  'longitude': '-74.11614639590076',
  'location': {'latitude': '40.638226893414675',
   'longitude': '-74.11614639590076',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695269',
  'created_date': '2023-09-03T01:07:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'Partial Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11369',
  'incident_address': '87-01 32 AVENUE',
  'street_name': '32 AVENUE',
  'cross_street_1': '87 STREET',
  'cross_street_2': '88 STREET',
  'intersection_street_1': '87 STREET',
  'intersection_street_2': '88 STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '32 AVENUE',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4013990038',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017206',
  'y_coordinate_state_plane': '215526',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.75818414780282',
  'longitude': '-73.88104191008564',
  'location': {'latitude': '40.75818414780282',
   'longitude': '-73.88104191008564',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699975',
  'created_date': '2023-09-03T01:07:16.000',
  'closed_date': '2023-09-03T01:44: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': '10453',
  'incident_address': '1501 UNDERCLIFF AVENUE',
  'street_name': 'UNDERCLIFF AVENUE',
  'cross_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'cross_street_2': 'WEST  174 STREET',
  'intersection_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'intersection_street_2': 'WEST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNDERCLIFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:44:08.000',
  'community_board': '05 BRONX',
  'bbl': '2028800061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005240',
  'y_coordinate_state_plane': '247416',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.845749925937085',
  'longitude': '-73.92413470328373',
  'location': {'latitude': '40.845749925937085',
   'longitude': '-73.92413470328373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693576',
  'created_date': '2023-09-03T01:07:13.000',
  'closed_date': '2023-09-03T01:46:07.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': '641 WEST  172 STREET',
  'street_name': 'WEST  172 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  172 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:46:13.000',
  'community_board': '12 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000955',
  'y_coordinate_state_plane': '246849',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84420282391682',
  'longitude': '-73.93962361842303',
  'location': {'latitude': '40.84420282391682',
   'longitude': '-73.93962361842303',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695366',
  'created_date': '2023-09-03T01:07: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': '10453',
  'incident_address': '89 WEST TREMONT AVENUE',
  'street_name': 'WEST TREMONT AVENUE',
  'cross_street_1': 'WEST  177 STREET',
  'cross_street_2': 'GRAND AVENUE',
  'intersection_street_1': 'WEST  177 STREET',
  'intersection_street_2': 'GRAND AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEST TREMONT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:06:45.000',
  'community_board': '05 BRONX',
  'bbl': '2028690047',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1008490',
  'y_coordinate_state_plane': '249150',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.850500918367125',
  'longitude': '-73.91238179033485',
  'location': {'latitude': '40.850500918367125',
   'longitude': '-73.91238179033485',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700453',
  'created_date': '2023-09-03T01:07:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11373',
  'incident_address': '55-03 84 STREET',
  'street_name': '84 STREET',
  'cross_street_1': '55 AVENUE',
  'cross_street_2': '55 ROAD',
  'intersection_street_1': '55 AVENUE',
  'intersection_street_2': '55 ROAD',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '84 STREET',
  'status': 'In Progress',
  'community_board': '04 QUEENS',
  'bbl': '4028920008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1017187',
  'y_coordinate_state_plane': '205858',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.73164800344976',
  'longitude': '-73.88115783767476',
  'location': {'latitude': '40.73164800344976',
   'longitude': '-73.88115783767476',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700500',
  'created_date': '2023-09-03T01:07: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': '11429',
  'incident_address': '102-01 216 STREET',
  'street_name': '216 STREET',
  'cross_street_1': '102 AVENUE',
  'cross_street_2': '104 AVENUE',
  'intersection_street_1': '102 AVENUE',
  'intersection_street_2': '104 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '216 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:17:13.000',
  'community_board': '13 QUEENS',
  'bbl': '4110920021',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055594',
  'y_coordinate_state_plane': '199239',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71325412290825',
  'longitude': '-73.74264975405106',
  'location': {'latitude': '40.71325412290825',
   'longitude': '-73.74264975405106',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693987',
  'created_date': '2023-09-03T01:07:02.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Sidewalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '158 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': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:02:18.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3006570018',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984293',
  'y_coordinate_state_plane': '179970',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66065278755549',
  'longitude': '-73.99984501403583',
  'location': {'latitude': '40.66065278755549',
   'longitude': '-73.99984501403583',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696179',
  'created_date': '2023-09-03T01:06:52.000',
  'closed_date': '2023-09-03T01:23:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10036',
  'incident_address': '402 WEST   45 STREET',
  'street_name': 'WEST   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': 'NEW YORK',
  'landmark': 'WEST   45 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2023-09-03T01:23:28.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010540036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986587',
  'y_coordinate_state_plane': '216342',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76048497004012',
  'longitude': '-73.99156406801949',
  'location': {'latitude': '40.76048497004012',
   'longitude': '-73.99156406801949',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692620',
  'created_date': '2023-09-03T01:06:48.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Damaged Tree',
  'descriptor': 'Branch or Limb Has Fallen Down',
  'location_type': 'Street',
  'incident_zip': '11354',
  'incident_address': '151-16 25 DRIVE',
  'street_name': '25 DRIVE',
  'cross_street_1': 'MURRAY STREET',
  'cross_street_2': '154 STREET',
  'intersection_street_1': 'MURRAY STREET',
  'intersection_street_2': '154 STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '25 DRIVE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4048310013',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036216',
  'y_coordinate_state_plane': '221630',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.774846714731005',
  'longitude': '-73.8123763284957',
  'location': {'latitude': '40.774846714731005',
   'longitude': '-73.8123763284957',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692742',
  'created_date': '2023-09-03T01:06: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': '11377',
  'incident_address': '40-40 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': 'In Progress',
  'community_board': '04 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1013774',
  'y_coordinate_state_plane': '211048',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74590530676078',
  'longitude': '-73.89344971714031',
  'location': {'latitude': '40.74590530676078',
   'longitude': '-73.89344971714031',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699795',
  'created_date': '2023-09-03T01:06:38.000',
  'closed_date': '2023-09-03T01:21: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': '11420',
  'incident_address': '134-06 135 AVENUE',
  'street_name': '135 AVENUE',
  'cross_street_1': '134 STREET',
  'cross_street_2': '134 PLACE',
  'intersection_street_1': '134 STREET',
  'intersection_street_2': '134 PLACE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '135 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:21:04.000',
  'community_board': '10 QUEENS',
  'bbl': '4118760032',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1038399',
  'y_coordinate_state_plane': '182565',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66760989634921',
  'longitude': '-73.80480890063637',
  'location': {'latitude': '40.66760989634921',
   'longitude': '-73.80480890063637',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694029',
  'created_date': '2023-09-03T01:06: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': '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',
  'resolution_action_updated_date': '2023-09-03T02:06:30.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',
  'latitude': '40.85914793650589',
  'longitude': '-73.89720873576061',
  'location': {'latitude': '40.85914793650589',
   'longitude': '-73.89720873576061',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694168',
  'created_date': '2023-09-03T01:06:18.000',
  'closed_date': '2023-09-03T01:31:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11230',
  'incident_address': '1202 ELM AVENUE',
  'street_name': 'ELM AVENUE',
  'cross_street_1': 'EAST   12 STREET',
  'cross_street_2': 'EAST   13 STREET',
  'intersection_street_1': 'EAST   12 STREET',
  'intersection_street_2': 'EAST   13 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ELM AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:32:03.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3067410030',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994658',
  'y_coordinate_state_plane': '164051',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.616952422214226',
  'longitude': '-73.96251074622542',
  'location': {'latitude': '40.616952422214226',
   'longitude': '-73.96251074622542',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696012',
  'created_date': '2023-09-03T01:06:16.000',
  'closed_date': '2023-09-03T01:56:59.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11428',
  'incident_address': '92-59 218 STREET',
  'street_name': '218 STREET',
  'cross_street_1': '92 AVENUE',
  'cross_street_2': '93 AVENUE',
  'intersection_street_1': '92 AVENUE',
  'intersection_street_2': '93 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '218 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': '2023-09-03T01:57:03.000',
  'community_board': '13 QUEENS',
  'bbl': '4107010055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1056241',
  'y_coordinate_state_plane': '202530',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.722281847250294',
  'longitude': '-73.74028072871513',
  'location': {'latitude': '40.722281847250294',
   'longitude': '-73.74028072871513',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695703',
  'created_date': '2023-09-03T01:05:51.000',
  'closed_date': '2023-09-03T01:51:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11238',
  'incident_address': '301 CUMBERLAND STREET',
  'street_name': 'CUMBERLAND STREET',
  'cross_street_1': 'LAFAYETTE AVENUE',
  'cross_street_2': 'GREENE AVENUE',
  'intersection_street_1': 'LAFAYETTE AVENUE',
  'intersection_street_2': 'GREENE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'CUMBERLAND 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': '2023-09-03T01:51:54.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3021190010',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '991875',
  'y_coordinate_state_plane': '189411',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68656292692603',
  'longitude': '-73.97250634438295',
  'location': {'latitude': '40.68656292692603',
   'longitude': '-73.97250634438295',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699157',
  'created_date': '2023-09-03T01:05:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '10460',
  'incident_address': '1086 EAST  180 STREET',
  'street_name': 'EAST  180 STREET',
  'cross_street_1': 'BRONX RIVER SHORELINE',
  'cross_street_2': 'DEVOE AVENUE',
  'intersection_street_1': 'BRONX RIVER SHORELINE',
  'intersection_street_2': 'DEVOE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  180 STREET',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2040030001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1018413',
  'y_coordinate_state_plane': '246139',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'River Garden',
  'park_borough': 'BRONX',
  'latitude': '40.84220379900767',
  'longitude': '-73.87652937073106',
  'location': {'latitude': '40.84220379900767',
   'longitude': '-73.87652937073106',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699734',
  'created_date': '2023-09-03T01:05:33.000',
  'closed_date': '2023-09-03T01:19: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': '11209',
  'incident_address': '364 93 STREET',
  'street_name': '93 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': '93 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:19:24.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3061070029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '975515',
  'y_coordinate_state_plane': '164454',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61806038085539',
  'longitude': '-74.03146368795856',
  'location': {'latitude': '40.61806038085539',
   'longitude': '-74.03146368795856',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690630',
  'created_date': '2023-09-03T01:05:21.000',
  'closed_date': '2023-09-03T02:00: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': '11412',
  'incident_address': 'LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'LINDEN BOULEVARD',
  'cross_street_2': 'MEXICO STREET',
  'intersection_street_1': 'LINDEN BOULEVARD',
  'intersection_street_2': 'MEXICO 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': '2023-09-03T02:00:33.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049664',
  'y_coordinate_state_plane': '191436',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69188262708624',
  'longitude': '-73.76411598392052',
  'location': {'latitude': '40.69188262708624',
   'longitude': '-73.76411598392052',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700037',
  'created_date': '2023-09-03T01:05:19.000',
  'closed_date': '2023-09-03T01:25: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': '10468',
  'incident_address': '124 EAMES PLACE',
  'street_name': 'EAMES PLACE',
  'cross_street_1': 'CLAFLIN AVENUE',
  'cross_street_2': 'WEBB AVENUE',
  'intersection_street_1': 'CLAFLIN AVENUE',
  'intersection_street_2': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAMES PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:25:18.000',
  'community_board': '08 BRONX',
  'bbl': '2032480062',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011486',
  'y_coordinate_state_plane': '256001',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86929610833195',
  'longitude': '-73.90152458061507',
  'location': {'latitude': '40.86929610833195',
   'longitude': '-73.90152458061507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695942',
  'created_date': '2023-09-03T01:05:07.000',
  'closed_date': '2023-09-03T01:28: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': '10027',
  'incident_address': '44 WEST  126 STREET',
  'street_name': 'WEST  126 STREET',
  'cross_street_1': '5 AVENUE',
  'cross_street_2': 'LENOX AVENUE',
  'intersection_street_1': '5 AVENUE',
  'intersection_street_2': 'LENOX AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  126 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:28:44.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1017230055',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999971',
  'y_coordinate_state_plane': '233544',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80768620098084',
  'longitude': '-73.9432112342198',
  'location': {'latitude': '40.80768620098084',
   'longitude': '-73.9432112342198',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696595',
  'created_date': '2023-09-03T01:05: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': '10305',
  'incident_address': '200 MC CLEAN AVENUE',
  'street_name': 'MC CLEAN AVENUE',
  'cross_street_1': 'WALLACE AVENUE',
  'cross_street_2': 'MILLS AVENUE',
  'intersection_street_1': 'WALLACE AVENUE',
  'intersection_street_2': 'MILLS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'MC CLEAN AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:06:15.000',
  'community_board': '02 STATEN ISLAND',
  'bbl': '5031120015',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '965134',
  'y_coordinate_state_plane': '156878',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.59724950215201',
  'longitude': '-74.06883485383008',
  'location': {'latitude': '40.59724950215201',
   'longitude': '-74.06883485383008',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698605',
  'created_date': '2023-09-03T01:04:57.000',
  'closed_date': '2023-09-03T01:37: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': '10459',
  'incident_address': '1323 WILKINS AVENUE',
  'street_name': 'WILKINS AVENUE',
  'cross_street_1': 'SOUTHERN BOULEVARD',
  'cross_street_2': 'INTERVALE AVENUE',
  'intersection_street_1': 'SOUTHERN BOULEVARD',
  'intersection_street_2': 'INTERVALE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WILKINS 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': '2023-09-03T01:37:53.000',
  'community_board': '03 BRONX',
  'bbl': '2029760020',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014066',
  'y_coordinate_state_plane': '242154',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83128188390817',
  'longitude': '-73.89225783216867',
  'location': {'latitude': '40.83128188390817',
   'longitude': '-73.89225783216867',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695851',
  'created_date': '2023-09-03T01:04:52.000',
  'closed_date': '2023-09-03T01:13:54.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': '204 LIVINGSTON STREET',
  'street_name': 'LIVINGSTON STREET',
  'cross_street_1': 'GALLATIN PLACE',
  'cross_street_2': 'HOYT STREET',
  'intersection_street_1': 'GALLATIN PLACE',
  'intersection_street_2': 'HOYT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'LIVINGSTON 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': '2023-09-03T01:13:59.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001640034',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988111',
  'y_coordinate_state_plane': '190573',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68975479242343',
  'longitude': '-73.98607762825385',
  'location': {'latitude': '40.68975479242343',
   'longitude': '-73.98607762825385',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695288',
  'created_date': '2023-09-03T01:04:39.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'New Tree Request',
  'descriptor': 'For One Address',
  'location_type': 'Street',
  'incident_zip': '11225',
  'incident_address': '250 EASTERN PARKWAY',
  'street_name': 'EASTERN PARKWAY',
  'cross_street_1': 'CLASSON AVENUE',
  'cross_street_2': 'FRANKLIN AVENUE',
  'intersection_street_1': 'CLASSON AVENUE',
  'intersection_street_2': 'FRANKLIN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EASTERN PARKWAY',
  'status': 'In Progress',
  'community_board': '09 BROOKLYN',
  'bbl': '3011850001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995192',
  'y_coordinate_state_plane': '183810',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.671185972608576',
  'longitude': '-73.96055524888945',
  'location': {'latitude': '40.671185972608576',
   'longitude': '-73.96055524888945',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699931',
  'created_date': '2023-09-03T01:04:39.000',
  'closed_date': '2023-09-03T01:09: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': '10025',
  'incident_address': '323 WEST   96 STREET',
  'street_name': 'WEST   96 STREET',
  'cross_street_1': 'WEST END AVENUE',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'WEST END AVENUE',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   96 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:09:58.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018870003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991516',
  'y_coordinate_state_plane': '229098',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7954941477263',
  'longitude': '-73.973757930177',
  'location': {'latitude': '40.7954941477263',
   'longitude': '-73.973757930177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698725',
  'created_date': '2023-09-03T01:04:35.000',
  'closed_date': '2023-09-03T01:23: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': '10030',
  'incident_address': '194 EDGECOMBE AVENUE',
  'street_name': 'EDGECOMBE AVENUE',
  'cross_street_1': 'WEST  142 STREET',
  'cross_street_2': 'WEST  145 STREET',
  'intersection_street_1': 'WEST  142 STREET',
  'intersection_street_2': 'WEST  145 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EDGECOMBE 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': '2023-09-03T01:23:43.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020510106',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '999635',
  'y_coordinate_state_plane': '238917',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82243417158428',
  'longitude': '-73.94441264593692',
  'location': {'latitude': '40.82243417158428',
   'longitude': '-73.94441264593692',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696000',
  'created_date': '2023-09-03T01:04:30.000',
  'closed_date': '2023-09-03T01:40: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': '11436',
  'incident_address': '147-11 NORTH CONDUIT AVENUE',
  'street_name': 'NORTH CONDUIT AVENUE',
  'cross_street_1': '147 STREET',
  'cross_street_2': '148 STREET',
  'intersection_street_1': '147 STREET',
  'intersection_street_2': '148 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'NORTH CONDUIT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:41:03.000',
  'community_board': '12 QUEENS',
  'bbl': '4121140004',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041957',
  'y_coordinate_state_plane': '182363',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.66703297677092',
  'longitude': '-73.79198514080234',
  'location': {'latitude': '40.66703297677092',
   'longitude': '-73.79198514080234',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692813',
  'created_date': '2023-09-03T01:04:27.000',
  'agency': 'DHS',
  'agency_name': 'Department of Homeless Services',
  'complaint_type': 'Homeless Person Assistance',
  'descriptor': 'Non-Chronic',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11212',
  'incident_address': '1100 EAST NEW YORK AVENUE',
  'street_name': 'EAST NEW YORK AVENUE',
  'cross_street_1': 'EAST 96 STREET',
  'cross_street_2': 'BUFFALO AVENUE',
  'intersection_street_1': 'EAST   96 STREET',
  'intersection_street_2': 'BUFFALO AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST NEW YORK AVENUE',
  'status': 'Assigned',
  'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
  'resolution_action_updated_date': '2023-09-03T02:49:01.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3045990001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004711',
  'y_coordinate_state_plane': '181768',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66556425717738',
  'longitude': '-73.92624647235498',
  'location': {'latitude': '40.66556425717738',
   'longitude': '-73.92624647235498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697859',
  'created_date': '2023-09-03T01:04: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': '11434',
  'incident_address': '125-60 SUTPHIN BOULEVARD',
  'street_name': 'SUTPHIN BOULEVARD',
  'cross_street_1': '125 AVENUE',
  'cross_street_2': '150 STREET',
  'intersection_street_1': '125 AVENUE',
  'intersection_street_2': '150 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'SUTPHIN BOULEVARD',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4120510020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042861',
  'y_coordinate_state_plane': '184841',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.673828574471',
  'longitude': '-73.78870498311142',
  'location': {'latitude': '40.673828574471',
   'longitude': '-73.78870498311142',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694698',
  'created_date': '2023-09-03T01:04:07.000',
  'closed_date': '2023-09-03T01:12: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': '11236',
  'incident_address': '1229 EAST   94 STREET',
  'street_name': 'EAST   94 STREET',
  'cross_street_1': 'SKIDMORE LANE',
  'cross_street_2': 'AVENUE J',
  'intersection_street_1': 'SKIDMORE LANE',
  'intersection_street_2': 'AVENUE J',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   94 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:12:08.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3082020013',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011582',
  'y_coordinate_state_plane': '172731',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64074113389857',
  'longitude': '-73.90151597193619',
  'location': {'latitude': '40.64074113389857',
   'longitude': '-73.90151597193619',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690847',
  'created_date': '2023-09-03T01:03:59.000',
  'closed_date': '2023-09-03T01:24:51.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10024',
  'incident_address': '270 WEST   84 STREET',
  'street_name': 'WEST   84 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'WEST END AVENUE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'WEST END AVENUE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:58.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012310060',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '990263',
  'y_coordinate_state_plane': '226125',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.78733500520106',
  'longitude': '-73.97828595817225',
  'location': {'latitude': '40.78733500520106',
   'longitude': '-73.97828595817225',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698512',
  'created_date': '2023-09-03T01:03:47.000',
  'closed_date': '2023-09-03T01:44: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': '10310',
  'incident_address': '24 WAYNE STREET',
  'street_name': 'WAYNE STREET',
  'cross_street_1': 'NORTH BURGHER AVENUE',
  'cross_street_2': 'CAMPBELL AVENUE',
  'intersection_street_1': 'NORTH BURGHER AVENUE',
  'intersection_street_2': 'CAMPBELL AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'WAYNE STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:44:04.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5001730005',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '952015',
  'y_coordinate_state_plane': '171821',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.638226893414675',
  'longitude': '-74.11614639590076',
  'location': {'latitude': '40.638226893414675',
   'longitude': '-74.11614639590076',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699748',
  'created_date': '2023-09-03T01:03:38.000',
  'closed_date': '2023-09-03T01: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': '11226',
  'incident_address': '520 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:09:23.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051840006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995824',
  'y_coordinate_state_plane': '172912',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64127254993023',
  'longitude': '-73.95829565997418',
  'location': {'latitude': '40.64127254993023',
   'longitude': '-73.95829565997418',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698511',
  'created_date': '2023-09-03T01:03:31.000',
  'closed_date': '2023-09-03T01:08: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': '11691',
  'incident_address': '331 BEACH   32 STREET',
  'street_name': 'BEACH   32 STREET',
  'cross_street_1': 'SEAGIRT BOULEVARD',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'SEAGIRT BOULEVARD',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   32 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:08:12.000',
  'community_board': '14 QUEENS',
  'bbl': '4159450001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049589',
  'y_coordinate_state_plane': '156628',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59634307117241',
  'longitude': '-73.76472356119396',
  'location': {'latitude': '40.59634307117241',
   'longitude': '-73.76472356119396',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690913',
  'created_date': '2023-09-03T01:03:30.000',
  'closed_date': '2023-09-03T01:38: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': '11413',
  'incident_address': '227 STREET',
  'street_name': '227 STREET',
  'cross_street_1': '227 STREET',
  'cross_street_2': 'MERRICK BOULEVARD',
  'intersection_street_1': '227 STREET',
  'intersection_street_2': 'MERRICK 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': '2023-09-03T01:38:23.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055515',
  'y_coordinate_state_plane': '186027',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.676991040973924',
  'longitude': '-73.74307450119915',
  'location': {'latitude': '40.676991040973924',
   'longitude': '-73.74307450119915',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693347',
  'created_date': '2023-09-03T01:03:28.000',
  'closed_date': '2023-09-03T01:32: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': '11229',
  'incident_address': '2242 BRAGG STREET',
  'street_name': 'BRAGG STREET',
  'cross_street_1': 'AVENUE V',
  'cross_street_2': 'AVENUE W',
  'intersection_street_1': 'AVENUE V',
  'intersection_street_2': 'AVENUE W',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BRAGG STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:32:34.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3073890001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002127',
  'y_coordinate_state_plane': '157111',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.597891625703355',
  'longitude': '-73.93562604623519',
  'location': {'latitude': '40.597891625703355',
   'longitude': '-73.93562604623519',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695701',
  'created_date': '2023-09-03T01:03:26.000',
  'closed_date': '2023-09-03T01:37:28.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': '10030',
  'incident_address': '100 WEST  142 STREET',
  'street_name': 'WEST  142 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  142 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': '2023-09-03T01:37:33.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020100036',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001378',
  'y_coordinate_state_plane': '237561',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.81870912734237',
  'longitude': '-73.93811849714311',
  'location': {'latitude': '40.81870912734237',
   'longitude': '-73.93811849714311',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699821',
  'created_date': '2023-09-03T01:03:24.000',
  'closed_date': '2023-09-03T01:30: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': '11419',
  'incident_address': '101-24 123 STREET',
  'street_name': '123 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': 'SOUTH RICHMOND HILL',
  'landmark': '123 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': '2023-09-03T01:30:43.000',
  'community_board': '09 QUEENS',
  'bbl': '4094890018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033413',
  'y_coordinate_state_plane': '190897',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69050839333503',
  'longitude': '-73.82272111823683',
  'location': {'latitude': '40.69050839333503',
   'longitude': '-73.82272111823683',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694037',
  'created_date': '2023-09-03T01:03:21.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10457',
  'incident_address': '701 OAKLAND PLACE',
  'street_name': 'OAKLAND PLACE',
  'cross_street_1': 'CROTONA AVENUE',
  'cross_street_2': 'CLINTON AVENUE',
  'intersection_street_1': 'CROTONA AVENUE',
  'intersection_street_2': 'CLINTON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'OAKLAND PLACE',
  'status': 'In Progress',
  'community_board': '06 BRONX',
  'bbl': '2030950016',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014875',
  'y_coordinate_state_plane': '247996',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.847313693950845',
  'longitude': '-73.88930778184162',
  'location': {'latitude': '40.847313693950845',
   'longitude': '-73.88930778184162',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690729',
  'created_date': '2023-09-03T01:03:02.000',
  'closed_date': '2023-09-03T01:22: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': '11419',
  'incident_address': '129-11 97 AVENUE',
  'street_name': '97 AVENUE',
  'cross_street_1': '129 STREET',
  'cross_street_2': '130 STREET',
  'intersection_street_1': '129 STREET',
  'intersection_street_2': '130 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '97 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:22:33.000',
  'community_board': '09 QUEENS',
  'bbl': '4094710028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034548',
  'y_coordinate_state_plane': '191973',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69345538105341',
  'longitude': '-73.81862035272876',
  'location': {'latitude': '40.69345538105341',
   'longitude': '-73.81862035272876',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693954',
  'created_date': '2023-09-03T01:02:56.000',
  'agency': 'DPR',
  'agency_name': 'Department of Parks and Recreation',
  'complaint_type': 'Overgrown Tree/Branches',
  'descriptor': 'Traffic Sign or Signal Blocked',
  'location_type': 'Street',
  'incident_zip': '11354',
  'incident_address': '150-48 25 DRIVE',
  'street_name': '25 DRIVE',
  'cross_street_1': 'MURRAY LANE',
  'cross_street_2': 'MURRAY STREET',
  'intersection_street_1': 'MURRAY LANE',
  'intersection_street_2': 'MURRAY STREET',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '25 DRIVE',
  'status': 'In Progress',
  'community_board': '07 QUEENS',
  'bbl': '4048190030',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035926',
  'y_coordinate_state_plane': '221659',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77492801207197',
  'longitude': '-73.81342314969692',
  'location': {'latitude': '40.77492801207197',
   'longitude': '-73.81342314969692',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697384',
  'created_date': '2023-09-03T01:02:50.000',
  'closed_date': '2023-09-03T01:44: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': '10453',
  'incident_address': '105 EAST  177 STREET',
  'street_name': 'EAST  177 STREET',
  'cross_street_1': 'MORRIS AVENUE',
  'cross_street_2': 'GRAND CONCOURSE',
  'intersection_street_1': 'MORRIS AVENUE',
  'intersection_street_2': 'GRAND CONCOURSE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  177 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': '2023-09-03T01:44:34.000',
  'community_board': '05 BRONX',
  'bbl': '2028060001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009783',
  'y_coordinate_state_plane': '248829',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84961622441457',
  'longitude': '-73.90770932205969',
  'location': {'latitude': '40.84961622441457',
   'longitude': '-73.90770932205969',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697407',
  'created_date': '2023-09-03T01:02:49.000',
  'closed_date': '2023-09-03T01:12: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': '10039',
  'incident_address': '231 WEST  148 STREET',
  'street_name': 'WEST  148 STREET',
  'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'cross_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
  'intersection_street_2': 'FREDERICK DOUGLASS BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  148 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:13:02.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1020347501',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1001202',
  'y_coordinate_state_plane': '239498',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82402598324237',
  'longitude': '-73.93874947146747',
  'location': {'latitude': '40.82402598324237',
   'longitude': '-73.93874947146747',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696055',
  'created_date': '2023-09-03T01:02:39.000',
  'closed_date': '2023-09-03T01: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': '11226',
  'incident_address': '525 EAST   21 STREET',
  'street_name': 'EAST   21 STREET',
  'cross_street_1': 'DORCHESTER ROAD',
  'cross_street_2': 'DITMAS AVENUE',
  'intersection_street_1': 'DORCHESTER ROAD',
  'intersection_street_2': 'DITMAS AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   21 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:09:43.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3051850073',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '995836',
  'y_coordinate_state_plane': '172872',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.641162742829806',
  'longitude': '-73.95825248933495',
  'location': {'latitude': '40.641162742829806',
   'longitude': '-73.95825248933495',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697329',
  'created_date': '2023-09-03T01:02:36.000',
  'closed_date': '2023-09-03T01:47: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': '11420',
  'incident_address': '135-24 121 STREET',
  'street_name': '121 STREET',
  'cross_street_1': '135 AVENUE',
  'cross_street_2': '149 AVENUE',
  'intersection_street_1': '135 AVENUE',
  'intersection_street_2': '149 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SOUTH OZONE PARK',
  'landmark': '121 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:47:38.000',
  'community_board': '10 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034429',
  'y_coordinate_state_plane': '183404',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.669936150196584',
  'longitude': '-73.81911328672895',
  'location': {'latitude': '40.669936150196584',
   'longitude': '-73.81911328672895',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698362',
  'created_date': '2023-09-03T01:02:32.000',
  'closed_date': '2023-09-03T02:00: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': '10002',
  'incident_address': '20 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': '2023-09-03T02:00:33.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002980004',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986570',
  'y_coordinate_state_plane': '199908',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.715377715404685',
  'longitude': '-73.99163110093102',
  'location': {'latitude': '40.715377715404685',
   'longitude': '-73.99163110093102',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699236',
  'created_date': '2023-09-03T01:02:27.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': '2023-09-03T01:57:35.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986727',
  'y_coordinate_state_plane': '212657',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'bridge_highway_direction': '1 Local Uptown & The Bronx',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.75037054471354',
  'longitude': '-73.9910600637942',
  'location': {'latitude': '40.75037054471354',
   'longitude': '-73.9910600637942',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699754',
  'created_date': '2023-09-03T01:01:55.000',
  'closed_date': '2023-09-03T01:36: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': '10469',
  'incident_address': '2719 KINGSLAND AVENUE',
  'street_name': 'KINGSLAND AVENUE',
  'cross_street_1': 'ALLERTON AVENUE',
  'cross_street_2': 'BARTOW AVENUE',
  'intersection_street_1': 'ALLERTON AVENUE',
  'intersection_street_2': 'BARTOW AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'KINGSLAND 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': '2023-09-03T01:36:28.000',
  'community_board': '11 BRONX',
  'bbl': '2045370043',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1028824',
  'y_coordinate_state_plane': '254655',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8655312293763',
  'longitude': '-73.83884577802402',
  'location': {'latitude': '40.8655312293763',
   'longitude': '-73.83884577802402',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699626',
  'created_date': '2023-09-03T01:01:50.000',
  'closed_date': '2023-09-03T01:49: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': '11237',
  'incident_address': '91 WYCKOFF AVENUE',
  'street_name': 'WYCKOFF AVENUE',
  'cross_street_1': 'SUYDAM STREET',
  'cross_street_2': 'HART STREET',
  'intersection_street_1': 'SUYDAM STREET',
  'intersection_street_2': 'HART 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': '2023-09-03T01:49:58.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032220005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006351',
  'y_coordinate_state_plane': '196130',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70498070536605',
  'longitude': '-73.92028783784475',
  'location': {'latitude': '40.70498070536605',
   'longitude': '-73.92028783784475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696660',
  'created_date': '2023-09-03T01:01:47.000',
  'closed_date': '2023-09-03T01:32:48.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Encampment',
  'descriptor': 'N/A',
  'location_type': 'Subway',
  'status': 'Closed',
  'resolution_description': 'The Police Department visited the location and no Encampment was found.',
  'resolution_action_updated_date': '2023-09-03T01:32:53.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988759',
  'y_coordinate_state_plane': '153807',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'bridge_highway_name': 'D',
  'bridge_highway_segment': 'Stairway',
  'latitude': '40.58883969247004',
  'longitude': '-73.98376557653664',
  'location': {'latitude': '40.58883969247004',
   'longitude': '-73.98376557653664',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690962',
  'created_date': '2023-09-03T01:01:43.000',
  'closed_date': '2023-09-03T01:40: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': '11208',
  'incident_address': '503 RIDGEWOOD AVENUE',
  'street_name': 'RIDGEWOOD AVENUE',
  'cross_street_1': 'AUTUMN AVENUE',
  'cross_street_2': 'LINCOLN AVENUE',
  'intersection_street_1': 'AUTUMN AVENUE',
  'intersection_street_2': 'LINCOLN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RIDGEWOOD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:40:59.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3041210007',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1020225',
  'y_coordinate_state_plane': '189243',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68603197980204',
  'longitude': '-73.87028501894093',
  'location': {'latitude': '40.68603197980204',
   'longitude': '-73.87028501894093',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694415',
  'created_date': '2023-09-03T01:01:35.000',
  'closed_date': '2023-09-03T01:24:52.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Horn',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '124 EAMES PLACE',
  'street_name': 'EAMES PLACE',
  'cross_street_1': 'CLAFLIN AVENUE',
  'cross_street_2': 'WEBB AVENUE',
  'intersection_street_1': 'CLAFLIN AVENUE',
  'intersection_street_2': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAMES PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:58.000',
  'community_board': '08 BRONX',
  'bbl': '2032480062',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011486',
  'y_coordinate_state_plane': '256001',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86929610833195',
  'longitude': '-73.90152458061507',
  'location': {'latitude': '40.86929610833195',
   'longitude': '-73.90152458061507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692723',
  'created_date': '2023-09-03T01:01: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': '10472',
  'incident_address': '1750 EAST  172 STREET',
  'street_name': 'EAST  172 STREET',
  'cross_street_1': 'ROSEDALE AVENUE',
  'cross_street_2': 'COMMONWEALTH AVENUE',
  'intersection_street_1': 'ROSEDALE AVENUE',
  'intersection_street_2': 'COMMONWEALTH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  172 STREET',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037840021',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020529',
  'y_coordinate_state_plane': '242652',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83262456596203',
  'longitude': '-73.86890067543244',
  'location': {'latitude': '40.83262456596203',
   'longitude': '-73.86890067543244',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694695',
  'created_date': '2023-09-03T01:01:10.000',
  'closed_date': '2023-09-03T01:26: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': '11210',
  'incident_address': '1411 NEW YORK AVENUE',
  'street_name': 'NEW YORK AVENUE',
  'cross_street_1': 'FOSTER AVENUE',
  'cross_street_2': 'FARRAGUT ROAD',
  'intersection_street_1': 'FOSTER AVENUE',
  'intersection_street_2': 'FARRAGUT ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEW YORK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:26:23.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3049810001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '999430',
  'y_coordinate_state_plane': '171813',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63825058438901',
  'longitude': '-73.945304714947',
  'location': {'latitude': '40.63825058438901',
   'longitude': '-73.945304714947',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700484',
  'created_date': '2023-09-03T01:01: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': '10472',
  'incident_address': '1161 COLGATE AVENUE',
  'street_name': 'COLGATE 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': 'COLGATE AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2037360055',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016982',
  'y_coordinate_state_plane': '240676',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82721487497143',
  'longitude': '-73.88172788885218',
  'location': {'latitude': '40.82721487497143',
   'longitude': '-73.88172788885218',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690861',
  'created_date': '2023-09-03T01:01:06.000',
  'closed_date': '2023-09-03T01:24: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': '10468',
  'incident_address': '124 EAMES PLACE',
  'street_name': 'EAMES PLACE',
  'cross_street_1': 'CLAFLIN AVENUE',
  'cross_street_2': 'WEBB AVENUE',
  'intersection_street_1': 'CLAFLIN AVENUE',
  'intersection_street_2': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAMES PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:43.000',
  'community_board': '08 BRONX',
  'bbl': '2032480062',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011486',
  'y_coordinate_state_plane': '256001',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86929610833195',
  'longitude': '-73.90152458061507',
  'location': {'latitude': '40.86929610833195',
   'longitude': '-73.90152458061507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697293',
  'created_date': '2023-09-03T01:01:03.000',
  'closed_date': '2023-09-03T01:24: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': '10025',
  'incident_address': '243 RIVERSIDE DRIVE',
  'street_name': 'RIVERSIDE DRIVE',
  'cross_street_1': 'WEST   96 STREET',
  'cross_street_2': 'WEST   97 STREET',
  'intersection_street_1': 'WEST   96 STREET',
  'intersection_street_2': 'WEST   97 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'RIVERSIDE DRIVE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:43.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018870001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991313',
  'y_coordinate_state_plane': '229412',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.796356157092156',
  'longitude': '-73.9744907598344',
  'location': {'latitude': '40.796356157092156',
   'longitude': '-73.9744907598344',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690948',
  'created_date': '2023-09-03T01:00:57.000',
  'closed_date': '2023-09-03T01:40: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': '10453',
  'incident_address': '1501 UNDERCLIFF AVENUE',
  'street_name': 'UNDERCLIFF AVENUE',
  'cross_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'cross_street_2': 'WEST  174 STREET',
  'intersection_street_1': 'CROSS BRONX EP ET    1 D-1 C WB',
  'intersection_street_2': 'WEST  174 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNDERCLIFF AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:40:18.000',
  'community_board': '05 BRONX',
  'bbl': '2028800061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005240',
  'y_coordinate_state_plane': '247416',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.845749925937085',
  'longitude': '-73.92413470328373',
  'location': {'latitude': '40.845749925937085',
   'longitude': '-73.92413470328373',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693299',
  'created_date': '2023-09-03T01:00:38.000',
  'closed_date': '2023-09-03T01:30: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': '10032',
  'incident_address': '562 WEST  164 STREET',
  'street_name': 'WEST  164 STREET',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'BROADWAY',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'BROADWAY',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  164 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': '2023-09-03T01:30:58.000',
  'community_board': '12 MANHATTAN',
  'bbl': '1021220062',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1000633',
  'y_coordinate_state_plane': '244603',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.83803881370371',
  'longitude': '-73.94079289976015',
  'location': {'latitude': '40.83803881370371',
   'longitude': '-73.94079289976015',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700563',
  'created_date': '2023-09-03T01:00:36.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': '2023-09-03T01:57:59.000',
  'community_board': 'Unspecified MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986727',
  'y_coordinate_state_plane': '212657',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'bridge_highway_name': '1',
  'bridge_highway_direction': '1 Local Downtown & Brooklyn',
  'bridge_highway_segment': 'Platform',
  'latitude': '40.75037054471354',
  'longitude': '-73.9910600637942',
  'location': {'latitude': '40.75037054471354',
   'longitude': '-73.9910600637942',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690683',
  'created_date': '2023-09-03T01:00:29.000',
  'closed_date': '2023-09-03T01:10: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': '11373',
  'incident_address': '40-26 BENHAM STREET',
  'street_name': 'BENHAM STREET',
  'cross_street_1': 'ROOSEVELT AVENUE',
  'cross_street_2': 'WHITNEY AVENUE',
  'intersection_street_1': 'ROOSEVELT AVENUE',
  'intersection_street_2': 'WHITNEY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': 'BENHAM 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': '2023-09-03T01:10:18.000',
  'community_board': '04 QUEENS',
  'bbl': '4015510024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1018899',
  'y_coordinate_state_plane': '211926',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74829659827454',
  'longitude': '-73.87494941017859',
  'location': {'latitude': '40.74829659827454',
   'longitude': '-73.87494941017859',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694768',
  'created_date': '2023-09-03T01:00:26.000',
  'closed_date': '2023-09-03T01:39: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': '10455',
  'incident_address': '690 EAST  147 STREET',
  'street_name': 'EAST  147 STREET',
  'cross_street_1': 'TRINITY AVENUE',
  'cross_street_2': 'JACKSON AVENUE',
  'intersection_street_1': 'TRINITY AVENUE',
  'intersection_street_2': 'JACKSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  147 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T01:39:23.000',
  'community_board': '01 BRONX',
  'bbl': '2025570040',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1009123',
  'y_coordinate_state_plane': '235087',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81190028068394',
  'longitude': '-73.91014588407816',
  'location': {'latitude': '40.81190028068394',
   'longitude': '-73.91014588407816',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699871',
  'created_date': '2023-09-03T01:00:23.000',
  'closed_date': '2023-09-03T01:33: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': '11373',
  'incident_address': '51-14 94 STREET',
  'street_name': '94 STREET',
  'cross_street_1': '51 AVENUE',
  'cross_street_2': '52 AVENUE',
  'intersection_street_1': '51 AVENUE',
  'intersection_street_2': '52 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'ELMHURST',
  'landmark': '94 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': '2023-09-03T01:33:58.000',
  'community_board': '04 QUEENS',
  'bbl': '4018670036',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020498',
  'y_coordinate_state_plane': '209050',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.740396296456105',
  'longitude': '-73.86919401878653',
  'location': {'latitude': '40.740396296456105',
   'longitude': '-73.86919401878653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700033',
  'created_date': '2023-09-03T01:00:19.000',
  'closed_date': '2023-09-03T01:01:29.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11429',
  'incident_address': '102-03 216 STREET',
  'street_name': '216 STREET',
  'cross_street_1': '102 AVENUE',
  'cross_street_2': '104 AVENUE',
  'intersection_street_1': '102 AVENUE',
  'intersection_street_2': '104 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '216 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': '2023-09-03T01:01:38.000',
  'community_board': '13 QUEENS',
  'bbl': '4110920020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055595',
  'y_coordinate_state_plane': '199239',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71325411484442',
  'longitude': '-73.7426461468975',
  'location': {'latitude': '40.71325411484442',
   'longitude': '-73.7426461468975',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690688',
  'created_date': '2023-09-03T01:00:17.000',
  'closed_date': '2023-09-03T01:06:57.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11249',
  'incident_address': '75 WILSON STREET',
  'street_name': 'WILSON STREET',
  'cross_street_1': 'WYTHE PLACE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'WYTHE PLACE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WILSON STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:07:03.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3021760001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994234',
  'y_coordinate_state_plane': '195909',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.704396080630595',
  'longitude': '-73.96399080765072',
  'location': {'latitude': '40.704396080630595',
   'longitude': '-73.96399080765072',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696935',
  'created_date': '2023-09-03T01:00:12.000',
  'closed_date': '2023-09-03T01:36: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': '10461',
  'incident_address': '1374 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': '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': '2023-09-03T01:36:28.000',
  'community_board': '10 BRONX',
  'bbl': '2053500031',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1029604',
  'y_coordinate_state_plane': '244586',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83789088738911',
  'longitude': '-73.83609386461508',
  'location': {'latitude': '40.83789088738911',
   'longitude': '-73.83609386461508',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694808',
  'created_date': '2023-09-03T01:00:09.000',
  'closed_date': '2023-09-03T01:08: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': '10031',
  'incident_address': '135 HAMILTON PLACE',
  'street_name': 'HAMILTON PLACE',
  'cross_street_1': 'WEST  142 STREET',
  'cross_street_2': 'WEST  143 STREET',
  'intersection_street_1': 'WEST  142 STREET',
  'intersection_street_2': 'WEST  143 STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'HAMILTON 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': '2023-09-03T01:09:02.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020740033',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998347',
  'y_coordinate_state_plane': '239484',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82399257509468',
  'longitude': '-73.94906511057583',
  'location': {'latitude': '40.82399257509468',
   'longitude': '-73.94906511057583',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696977',
  'created_date': '2023-09-03T01:00:04.000',
  'closed_date': '2023-09-03T01:10:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Television',
  'location_type': 'Residential Building/House',
  'incident_zip': '11385',
  'incident_address': '2047 PALMETTO STREET',
  'street_name': 'PALMETTO STREET',
  'cross_street_1': 'FAIRVIEW AVENUE',
  'cross_street_2': 'FOREST AVENUE',
  'intersection_street_1': 'FAIRVIEW AVENUE',
  'intersection_street_2': 'FOREST AVENUE',
  'address_type': 'ADDRESS',
  'city': 'RIDGEWOOD',
  'landmark': 'PALMETTO STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:10:32.000',
  'community_board': '05 QUEENS',
  'bbl': '4034860039',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1010888',
  'y_coordinate_state_plane': '196691',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.706508022023954',
  'longitude': '-73.90392193302866',
  'location': {'latitude': '40.706508022023954',
   'longitude': '-73.90392193302866',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698612',
  'created_date': '2023-09-03T00:59:58.000',
  'closed_date': '2023-09-03T01:22: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': '10031',
  'incident_address': '669 WEST  136 STREET',
  'street_name': 'WEST  136 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  136 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': '2023-09-03T01:22:23.000',
  'community_board': '09 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '996432',
  'y_coordinate_state_plane': '238529',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82137421951112',
  'longitude': '-73.955986067979',
  'location': {'latitude': '40.82137421951112',
   'longitude': '-73.955986067979',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694757',
  'created_date': '2023-09-03T00:59:47.000',
  'closed_date': '2023-09-03T01:26: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': '11413',
  'incident_address': '220-19 135 AVENUE',
  'street_name': '135 AVENUE',
  'cross_street_1': '220 STREET',
  'cross_street_2': '220 PLACE',
  'intersection_street_1': '220 STREET',
  'intersection_street_2': '220 PLACE',
  'address_type': 'ADDRESS',
  'city': 'SPRINGFIELD GARDENS',
  'landmark': '135 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:26:48.000',
  'community_board': '13 QUEENS',
  'bbl': '4130990025',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1053641',
  'y_coordinate_state_plane': '186170',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.677398430352504',
  'longitude': '-73.74982916062663',
  'location': {'latitude': '40.677398430352504',
   'longitude': '-73.74982916062663',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699475',
  'created_date': '2023-09-03T00:59:42.000',
  'closed_date': '2023-09-03T01:58:56.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '315 BATTERY AVENUE',
  'street_name': 'BATTERY AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'HAMILTON CIRCLE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'HAMILTON CIRCLE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATTERY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:58:59.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976870',
  'y_coordinate_state_plane': '162172',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.611797995174754',
  'longitude': '-74.02658045025791',
  'location': {'latitude': '40.611797995174754',
   'longitude': '-74.02658045025791',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691413',
  'created_date': '2023-09-03T00:59: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': '11435',
  'incident_address': '144-59 87 ROAD',
  'street_name': '87 ROAD',
  'cross_street_1': '144 STREET',
  'cross_street_2': '148 STREET',
  'intersection_street_1': '144 STREET',
  'intersection_street_2': '148 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '87 ROAD',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:44:09.000',
  'community_board': '08 QUEENS',
  'bbl': '4097030049',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1036490',
  'y_coordinate_state_plane': '196574',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70607277197382',
  'longitude': '-73.8115816385826',
  'location': {'latitude': '40.70607277197382',
   'longitude': '-73.8115816385826',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694036',
  'created_date': '2023-09-03T00:59: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': '11433',
  'incident_address': '179-04 112 AVENUE',
  'street_name': '112 AVENUE',
  'cross_street_1': '179 STREET',
  'cross_street_2': '180 STREET',
  'intersection_street_1': '179 STREET',
  'intersection_street_2': '180 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '112 AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:45:19.000',
  'community_board': '12 QUEENS',
  'bbl': '4103030023',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1047371',
  'y_coordinate_state_plane': '193359',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69717744950883',
  'longitude': '-73.77236652382723',
  'location': {'latitude': '40.69717744950883',
   'longitude': '-73.77236652382723',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690765',
  'created_date': '2023-09-03T00:59:20.000',
  'closed_date': '2023-09-03T01:25: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': '11210',
  'incident_address': '3401 AVENUE J',
  'street_name': 'AVENUE J',
  '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 J',
  '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': '2023-09-03T01:25:04.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3075980006',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1000084',
  'y_coordinate_state_plane': '167792',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62721264868268',
  'longitude': '-73.94295771291299',
  'location': {'latitude': '40.62721264868268',
   'longitude': '-73.94295771291299',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694756',
  'created_date': '2023-09-03T00:59:16.000',
  'closed_date': '2023-09-03T01:24: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': '11233',
  'incident_address': '391 HOWARD AVENUE',
  'street_name': 'HOWARD 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': 'HOWARD 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': '2023-09-03T01:24:43.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3014520011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006589',
  'y_coordinate_state_plane': '184915',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67419752611552',
  'longitude': '-73.91946662602895',
  'location': {'latitude': '40.67419752611552',
   'longitude': '-73.91946662602895',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692575',
  'created_date': '2023-09-03T00:59:06.000',
  'closed_date': '2023-09-03T01:29:49.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Outside',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '701 EAST  220 STREET',
  'street_name': 'EAST  220 STREET',
  'cross_street_1': 'WHITE PLAINS ROAD',
  'cross_street_2': 'BARNES AVENUE',
  'intersection_street_1': 'WHITE PLAINS ROAD',
  'intersection_street_2': 'BARNES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  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': '2023-09-03T01:29:53.000',
  'community_board': '12 BRONX',
  'bbl': '2046680048',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022414',
  'y_coordinate_state_plane': '261428',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88415104496098',
  'longitude': '-73.8619820671469',
  'location': {'latitude': '40.88415104496098',
   'longitude': '-73.8619820671469',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696786',
  'created_date': '2023-09-03T00:59:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Crosswalk',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10452',
  'incident_address': '1425 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'WEST  171 STREET',
  'cross_street_2': 'MERRIAM AVENUE',
  'intersection_street_1': 'WEST  171 STREET',
  'intersection_street_2': 'MERRIAM AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'bbl': '2025370047',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005083',
  'y_coordinate_state_plane': '246580',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84345572380287',
  'longitude': '-73.92470475387987',
  'location': {'latitude': '40.84345572380287',
   'longitude': '-73.92470475387987',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693308',
  'created_date': '2023-09-03T00:59:04.000',
  'closed_date': '2023-09-03T01:22: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': '11419',
  'incident_address': '129-11 97 AVENUE',
  'street_name': '97 AVENUE',
  'cross_street_1': '129 STREET',
  'cross_street_2': '130 STREET',
  'intersection_street_1': '129 STREET',
  'intersection_street_2': '130 STREET',
  'address_type': 'ADDRESS',
  'city': 'SOUTH RICHMOND HILL',
  'landmark': '97 AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:22:58.000',
  'community_board': '09 QUEENS',
  'bbl': '4094710028',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1034548',
  'y_coordinate_state_plane': '191973',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69345538105341',
  'longitude': '-73.81862035272876',
  'location': {'latitude': '40.69345538105341',
   'longitude': '-73.81862035272876',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697862',
  'created_date': '2023-09-03T00:58: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': '1009 BRINSMADE AVENUE',
  'street_name': 'BRINSMADE AVENUE',
  'cross_street_1': 'BARKLEY AVENUE',
  'cross_street_2': 'BRUCKNER BOULEVARD',
  'intersection_street_1': 'BARKLEY AVENUE',
  'intersection_street_2': 'BRUCKNER BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BRINSMADE AVENUE',
  'status': 'In Progress',
  'community_board': '10 BRONX',
  'bbl': '2055360026',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031068',
  'y_coordinate_state_plane': '241482',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82936367773085',
  'longitude': '-73.83082474995518',
  'location': {'latitude': '40.82936367773085',
   'longitude': '-73.83082474995518',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699671',
  'created_date': '2023-09-03T00:58:55.000',
  'closed_date': '2023-09-03T01:07:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Commercial',
  'descriptor': 'Loud Talking',
  'location_type': 'Store/Commercial',
  'incident_zip': '11229',
  'incident_address': '2749 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 took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:07:47.000',
  'community_board': '15 BROOKLYN',
  'bbl': '3074050064',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '998021',
  'y_coordinate_state_plane': '155761',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.59419347954119',
  'longitude': '-73.95041424241387',
  'location': {'latitude': '40.59419347954119',
   'longitude': '-73.95041424241387',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700038',
  'created_date': '2023-09-03T00:58:53.000',
  'closed_date': '2023-09-03T01:24:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Car/Truck Music',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10468',
  'incident_address': '124 EAMES PLACE',
  'street_name': 'EAMES PLACE',
  'cross_street_1': 'CLAFLIN AVENUE',
  'cross_street_2': 'WEBB AVENUE',
  'intersection_street_1': 'CLAFLIN AVENUE',
  'intersection_street_2': 'WEBB AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAMES PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:33.000',
  'community_board': '08 BRONX',
  'bbl': '2032480062',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011486',
  'y_coordinate_state_plane': '256001',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86929610833195',
  'longitude': '-73.90152458061507',
  'location': {'latitude': '40.86929610833195',
   'longitude': '-73.90152458061507',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695662',
  'created_date': '2023-09-03T00:58:44.000',
  'closed_date': '2023-09-03T01:58:32.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '313 BATTERY AVENUE',
  'street_name': 'BATTERY AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'HAMILTON CIRCLE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'HAMILTON CIRCLE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATTERY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:58:34.000',
  'community_board': '10 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976873',
  'y_coordinate_state_plane': '162183',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61182819040704',
  'longitude': '-74.02656965721444',
  'location': {'latitude': '40.61182819040704',
   'longitude': '-74.02656965721444',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693050',
  'created_date': '2023-09-03T00:58:33.000',
  'closed_date': '2023-09-03T01:23:43.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': '11233',
  'incident_address': '1822 STERLING PLACE',
  'street_name': 'STERLING PLACE',
  'cross_street_1': 'HOWARD AVENUE',
  'cross_street_2': 'SARATOGA AVENUE',
  'intersection_street_1': 'HOWARD AVENUE',
  'intersection_street_2': 'SARATOGA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STERLING PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:23:48.000',
  'community_board': '16 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006860',
  'y_coordinate_state_plane': '183674',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6707905729491',
  'longitude': '-73.91849381885909',
  'location': {'latitude': '40.6707905729491',
   'longitude': '-73.91849381885909',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692880',
  'created_date': '2023-09-03T00:58:23.000',
  'agency': 'DSNY',
  'agency_name': 'Department of Sanitation',
  'complaint_type': 'Dirty Condition',
  'descriptor': 'Dog Waste',
  'location_type': 'Sidewalk',
  'incident_zip': '11216',
  'incident_address': '31 BREVOORT PLACE',
  'street_name': 'BREVOORT PLACE',
  'cross_street_1': 'BEDFORD PLACE',
  'cross_street_2': 'BEDFORD AVENUE',
  'intersection_street_1': 'BEDFORD PLACE',
  'intersection_street_2': 'BEDFORD AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BREVOORT PLACE',
  'status': 'In Progress',
  'community_board': '03 BROOKLYN',
  'bbl': '3020170052',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996971',
  'y_coordinate_state_plane': '187062',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68010960103725',
  'longitude': '-73.95413600543043',
  'location': {'latitude': '40.68010960103725',
   'longitude': '-73.95413600543043',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697246',
  'created_date': '2023-09-03T00:58:17.000',
  'closed_date': '2023-09-03T01:08: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': '11691',
  'incident_address': '331 BEACH   31 STREET',
  'street_name': 'BEACH   31 STREET',
  'cross_street_1': 'SEAGIRT BOULEVARD',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'SEAGIRT BOULEVARD',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   31 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:08:38.000',
  'community_board': '14 QUEENS',
  'bbl': '4159450001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049800',
  'y_coordinate_state_plane': '156654',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.5964128776213',
  'longitude': '-73.76396353162814',
  'location': {'latitude': '40.5964128776213',
   'longitude': '-73.76396353162814',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694052',
  'created_date': '2023-09-03T00:58:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  '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',
  'resolution_action_updated_date': '2023-09-03T02:47:34.000',
  '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': '58699469',
  'created_date': '2023-09-03T00:58:01.000',
  'closed_date': '2023-09-03T01:58:19.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '311 BATTERY AVENUE',
  'street_name': 'BATTERY AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'HAMILTON CIRCLE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'HAMILTON CIRCLE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATTERY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:58:23.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3061430051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976875',
  'y_coordinate_state_plane': '162193',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61185564001197',
  'longitude': '-74.02656246475912',
  'location': {'latitude': '40.61185564001197',
   'longitude': '-74.02656246475912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691019',
  'created_date': '2023-09-03T00:57:39.000',
  'closed_date': '2023-09-03T01:01: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': '11429',
  'incident_address': '102-03 216 STREET',
  'street_name': '216 STREET',
  'cross_street_1': '102 AVENUE',
  'cross_street_2': '104 AVENUE',
  'intersection_street_1': '102 AVENUE',
  'intersection_street_2': '104 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '216 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': '2023-09-03T01:01:28.000',
  'community_board': '13 QUEENS',
  'bbl': '4110920020',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055595',
  'y_coordinate_state_plane': '199239',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71325411484442',
  'longitude': '-73.7426461468975',
  'location': {'latitude': '40.71325411484442',
   'longitude': '-73.7426461468975',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697880',
  'created_date': '2023-09-03T00:57: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': '10458',
  'incident_address': '2454 TIEBOUT AVENUE',
  'street_name': 'TIEBOUT 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': 'TIEBOUT AVENUE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:05:43.000',
  'community_board': '05 BRONX',
  'bbl': '2030220058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013173',
  'y_coordinate_state_plane': '252823',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86056810126927',
  'longitude': '-73.89543872667674',
  'location': {'latitude': '40.86056810126927',
   'longitude': '-73.89543872667674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693300',
  'created_date': '2023-09-03T00:57:28.000',
  'closed_date': '2023-09-03T01:24: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': '11236',
  'incident_address': '8815 GLENWOOD ROAD',
  'street_name': 'GLENWOOD ROAD',
  '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': 'BROOKLYN',
  'landmark': 'GLENWOOD ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:24:58.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3079930004',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009519',
  'y_coordinate_state_plane': '172783',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64088998865906',
  'longitude': '-73.90894927628696',
  'location': {'latitude': '40.64088998865906',
   'longitude': '-73.90894927628696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694835',
  'created_date': '2023-09-03T00:57:24.000',
  'closed_date': '2023-09-03T01:42: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': '10453',
  'incident_address': '2185 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'ANTHONY AVENUE',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'ANTHONY AVENUE',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'Your request can not be processed at this time because of insufficient contact information. Please create a new Service Request on NYC.gov and provide more detailed contact information.',
  'resolution_action_updated_date': '2023-09-03T01:42:59.000',
  'community_board': '05 BRONX',
  'bbl': '2031620034',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011574',
  'y_coordinate_state_plane': '250947',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8554241407086',
  'longitude': '-73.90122700980653',
  'location': {'latitude': '40.8554241407086',
   'longitude': '-73.90122700980653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698197',
  'created_date': '2023-09-03T00:57:14.000',
  'closed_date': '2023-09-03T01:58:15.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11209',
  'incident_address': '311 BATTERY AVENUE',
  'street_name': 'BATTERY AVENUE',
  'cross_street_1': 'BEND',
  'cross_street_2': 'HAMILTON CIRCLE',
  'intersection_street_1': 'BEND',
  'intersection_street_2': 'HAMILTON CIRCLE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'BATTERY AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:58:18.000',
  'community_board': '10 BROOKLYN',
  'bbl': '3061430051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '976875',
  'y_coordinate_state_plane': '162193',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.61185564001197',
  'longitude': '-74.02656246475912',
  'location': {'latitude': '40.61185564001197',
   'longitude': '-74.02656246475912',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692685',
  'created_date': '2023-09-03T00:57: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': '10304',
  'incident_address': '15 MOSEL AVENUE',
  'street_name': 'MOSEL AVENUE',
  'cross_street_1': 'OSGOOD AVENUE',
  'cross_street_2': 'CIRCLE LOOP',
  'intersection_street_1': 'OSGOOD AVENUE',
  'intersection_street_2': 'CIRCLE LOOP',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'MOSEL 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': '2023-09-03T02:26:39.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5029227501',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '962761',
  'y_coordinate_state_plane': '162981',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.61399554865044',
  'longitude': '-74.07739920929916',
  'location': {'latitude': '40.61399554865044',
   'longitude': '-74.07739920929916',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695363',
  'created_date': '2023-09-03T00:56: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': '10460',
  'incident_address': '1479 BEACH AVENUE',
  'street_name': 'BEACH AVENUE',
  'cross_street_1': 'MERRILL STREET',
  'cross_street_2': 'ARCHER STREET',
  'intersection_street_1': 'MERRILL STREET',
  'intersection_street_2': 'ARCHER STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BEACH AVENUE',
  'status': 'In Progress',
  'community_board': '09 BRONX',
  'bbl': '2039160030',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1020985',
  'y_coordinate_state_plane': '244369',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83733534476214',
  'longitude': '-73.86724345379831',
  'location': {'latitude': '40.83733534476214',
   'longitude': '-73.86724345379831',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696916',
  'created_date': '2023-09-03T00:56:39.000',
  'closed_date': '2023-09-03T01:20:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11205',
  'incident_address': '81 STEUBEN STREET',
  'street_name': 'STEUBEN STREET',
  'cross_street_1': 'PARK AVENUE',
  'cross_street_2': 'MYRTLE AVENUE',
  'intersection_street_1': 'PARK AVENUE',
  'intersection_street_2': 'MYRTLE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'STEUBEN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:20:43.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3018940011',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994405',
  'y_coordinate_state_plane': '192493',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.6950197647379',
  'longitude': '-73.96337921441484',
  'location': {'latitude': '40.6950197647379',
   'longitude': '-73.96337921441484',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690642',
  'created_date': '2023-09-03T00:56:38.000',
  'closed_date': '2023-09-03T01:16: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': '10453',
  'incident_address': '2185 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  'cross_street_1': 'ANTHONY AVENUE',
  'cross_street_2': 'EAST  182 STREET',
  'intersection_street_1': 'ANTHONY AVENUE',
  'intersection_street_2': 'EAST  182 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GRAND CONCOURSE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:16:13.000',
  'community_board': '05 BRONX',
  'bbl': '2031620034',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011574',
  'y_coordinate_state_plane': '250947',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.8554241407086',
  'longitude': '-73.90122700980653',
  'location': {'latitude': '40.8554241407086',
   'longitude': '-73.90122700980653',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692611',
  'created_date': '2023-09-03T00: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': '11368',
  'incident_address': '34-07 109 STREET',
  'street_name': '109 STREET',
  'cross_street_1': '34 AVENUE',
  'cross_street_2': '35 AVENUE',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '35 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'CORONA',
  'landmark': '109 STREET',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4017530126',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1023145',
  'y_coordinate_state_plane': '214814',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.756205760347406',
  'longitude': '-73.85960862832853',
  'location': {'latitude': '40.756205760347406',
   'longitude': '-73.85960862832853',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699400',
  'created_date': '2023-09-03T00:56:29.000',
  'closed_date': '2023-09-03T01:41:09.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': '681 AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'SUTTER AVENUE',
  'cross_street_2': 'BLAKE AVENUE',
  'intersection_street_1': 'SUTTER AVENUE',
  'intersection_street_2': 'BLAKE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AUTUMN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:41:13.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042700003',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1021073',
  'y_coordinate_state_plane': '184151',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67205212178616',
  'longitude': '-73.86725521480527',
  'location': {'latitude': '40.67205212178616',
   'longitude': '-73.86725521480527',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697476',
  'created_date': '2023-09-03T00:56:29.000',
  'closed_date': '2023-09-03T01:08: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': '11233',
  'incident_address': '141 HULL STREET',
  'street_name': 'HULL STREET',
  'cross_street_1': 'THOMAS S BOYLAND STREET',
  'cross_street_2': 'ROCKAWAY AVENUE',
  'intersection_street_1': 'THOMAS S BOYLAND STREET',
  'intersection_street_2': 'ROCKAWAY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'HULL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:08:52.000',
  'community_board': '16 BROOKLYN',
  'bbl': '3015330051',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1008728',
  'y_coordinate_state_plane': '186830',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.679448110122664',
  'longitude': '-73.91174845830498',
  'location': {'latitude': '40.679448110122664',
   'longitude': '-73.91174845830498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695944',
  'created_date': '2023-09-03T00:56:28.000',
  'closed_date': '2023-09-03T01:30: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': '11419',
  'incident_address': '101-24 123 STREET',
  'street_name': '123 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': 'SOUTH RICHMOND HILL',
  'landmark': '123 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': '2023-09-03T01:30:33.000',
  'community_board': '09 QUEENS',
  'bbl': '4094890018',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033413',
  'y_coordinate_state_plane': '190897',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69050839333503',
  'longitude': '-73.82272111823683',
  'location': {'latitude': '40.69050839333503',
   'longitude': '-73.82272111823683',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695859',
  'created_date': '2023-09-03T00:56:02.000',
  'closed_date': '2023-09-03T01: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': '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': '2023-09-03T01:07:23.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': '58692052',
  'created_date': '2023-09-03T00:55:49.000',
  'closed_date': '2023-09-03T01: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': '11692',
  'incident_address': '605 BEACH   63 STREET',
  'street_name': 'BEACH   63 STREET',
  'cross_street_1': 'ALMEDA AVENUE',
  'cross_street_2': 'HILLMEYER ROAD',
  'intersection_street_1': 'ALMEDA AVENUE',
  'intersection_street_2': 'HILLMEYER ROAD',
  'address_type': 'ADDRESS',
  'city': 'ARVERNE',
  'landmark': 'BEACH   63 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:13.000',
  'community_board': '14 QUEENS',
  'bbl': '4160230050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041798',
  'y_coordinate_state_plane': '156996',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59740716665367',
  'longitude': '-73.79277459672169',
  'location': {'latitude': '40.59740716665367',
   'longitude': '-73.79277459672169',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696465',
  'created_date': '2023-09-03T00:55:47.000',
  'closed_date': '2023-09-03T01:30:04.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drug Activity',
  'descriptor': 'Use Outside',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10467',
  'incident_address': '701 EAST  220 STREET',
  'street_name': 'EAST  220 STREET',
  'cross_street_1': 'WHITE PLAINS ROAD',
  'cross_street_2': 'BARNES AVENUE',
  'intersection_street_1': 'WHITE PLAINS ROAD',
  'intersection_street_2': 'BARNES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  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': '2023-09-03T01:30:09.000',
  'community_board': '12 BRONX',
  'bbl': '2046680048',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1022414',
  'y_coordinate_state_plane': '261428',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.88415104496098',
  'longitude': '-73.8619820671469',
  'location': {'latitude': '40.88415104496098',
   'longitude': '-73.8619820671469',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695940',
  'created_date': '2023-09-03T00:55:45.000',
  'closed_date': '2023-09-03T01:21: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': '10302',
  'incident_address': '35 TREADWELL AVENUE',
  'street_name': 'TREADWELL AVENUE',
  'cross_street_1': 'RICHMOND TERRACE',
  'cross_street_2': 'STATEN ISLAND RAILWAY LINE',
  'intersection_street_1': 'RICHMOND TERRACE',
  'intersection_street_2': 'STATEN ISLAND RAILWAY LINE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'TREADWELL AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:21:23.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5010840053',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '946030',
  'y_coordinate_state_plane': '172166',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.63915003997071',
  'longitude': '-74.1377129576875',
  'location': {'latitude': '40.63915003997071',
   'longitude': '-74.1377129576875',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699918',
  'created_date': '2023-09-03T00:55:43.000',
  'closed_date': '2023-09-03T01:22: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': '10027',
  'incident_address': 'ADAM CLAYTON POWELL BOULEVARD',
  'street_name': 'ADAM CLAYTON POWELL BOULEVARD',
  'cross_street_1': 'ADAM CLAYTON POWELL BOULEVARD',
  'cross_street_2': 'WEST  121 STREET',
  'intersection_street_1': 'ADAM CLAYTON POWELL BOULEVARD',
  'intersection_street_2': 'WEST  121 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': '2023-09-03T01:22:58.000',
  'community_board': '10 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998038',
  'y_coordinate_state_plane': '233079',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80641313269397',
  'longitude': '-73.95019473864491',
  'location': {'latitude': '40.80641313269397',
   'longitude': '-73.95019473864491',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693461',
  'created_date': '2023-09-03T00:55:42.000',
  'closed_date': '2023-09-03T02:01:35.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10002',
  'incident_address': '50 CANAL STREET',
  'street_name': 'CANAL STREET',
  'cross_street_1': 'LUDLOW STREET',
  'cross_street_2': 'ORCHARD STREET',
  'intersection_street_1': 'LUDLOW STREET',
  'intersection_street_2': 'ORCHARD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CANAL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:01:38.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002940022',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986549',
  'y_coordinate_state_plane': '199710',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71483425822805',
  'longitude': '-73.99170692151563',
  'location': {'latitude': '40.71483425822805',
   'longitude': '-73.99170692151563',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699735',
  'created_date': '2023-09-03T00:55:34.000',
  'closed_date': '2023-09-03T01:14: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': '11224',
  'incident_address': '2848 WEST   16 STREET',
  'street_name': 'WEST   16 STREET',
  'cross_street_1': 'NEPTUNE AVENUE',
  'cross_street_2': 'MERMAID AVENUE',
  'intersection_street_1': 'NEPTUNE AVENUE',
  'intersection_street_2': 'MERMAID AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'WEST   16 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': '2023-09-03T01:14:23.000',
  'community_board': '13 BROOKLYN',
  'bbl': '3070210029',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988710',
  'y_coordinate_state_plane': '149826',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.577912661773354',
  'longitude': '-73.98394462563567',
  'location': {'latitude': '40.577912661773354',
   'longitude': '-73.98394462563567',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692099',
  'created_date': '2023-09-03T00:55:33.000',
  'closed_date': '2023-09-03T01:02: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': '11691',
  'incident_address': '45-19 ROCKAWAY BEACH BOULEVARD',
  'street_name': 'ROCKAWAY BEACH BOULEVARD',
  'cross_street_1': 'BEACH   45 STREET',
  'cross_street_2': 'BEACH   46 STREET',
  'intersection_street_1': 'BEACH   45 STREET',
  'intersection_street_2': 'BEACH   46 STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'ROCKAWAY BEACH 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': '2023-09-03T01:02:12.000',
  'community_board': '14 QUEENS',
  'bbl': '4158537502',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1046308',
  'y_coordinate_state_plane': '155618',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59359441442539',
  'longitude': '-73.7765471998799',
  'location': {'latitude': '40.59359441442539',
   'longitude': '-73.7765471998799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696630',
  'created_date': '2023-09-03T00:55:21.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': '11369',
  'incident_address': '96-01 24 AVENUE',
  'street_name': '24 AVENUE',
  'cross_street_1': '96 STREET',
  'cross_street_2': '97 STREET',
  'intersection_street_1': '96 STREET',
  'intersection_street_2': '97 STREET',
  'address_type': 'ADDRESS',
  'city': 'EAST ELMHURST',
  'landmark': '24 AVENUE',
  'status': 'In Progress',
  'community_board': '03 QUEENS',
  'bbl': '4010900044',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1019215',
  'y_coordinate_state_plane': '218478',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.766278903556106',
  'longitude': '-73.87377487225358',
  'location': {'latitude': '40.766278903556106',
   'longitude': '-73.87377487225358',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697843',
  'created_date': '2023-09-03T00:55:17.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': 'HORACE HARDING EXPRESSWAY',
  'street_name': 'HORACE HARDING EXPRESSWAY',
  'cross_street_1': '198 STREET',
  'cross_street_2': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_1': '198 STREET',
  'intersection_street_2': 'HORACE HARDING EXPRESSWAY',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045818',
  'y_coordinate_state_plane': '210166',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.743319405651874',
  'longitude': '-73.77781335143',
  'location': {'latitude': '40.743319405651874',
   'longitude': '-73.77781335143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700489',
  'created_date': '2023-09-03T00:55: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': '11433',
  'incident_address': '111-20 169 STREET',
  'street_name': '169 STREET',
  'cross_street_1': '111 AVENUE',
  'cross_street_2': 'SAYRES AVENUE',
  'intersection_street_1': '111 AVENUE',
  'intersection_street_2': 'SAYRES AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '169 STREET',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4102060040',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1044562',
  'y_coordinate_state_plane': '191986',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69342848450424',
  'longitude': '-73.78250888115399',
  'location': {'latitude': '40.69342848450424',
   'longitude': '-73.78250888115399',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699142',
  'created_date': '2023-09-03T00:55:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11434',
  'incident_address': '150-21 118 AVENUE',
  'street_name': '118 AVENUE',
  'cross_street_1': 'SUTPHIN BOULEVARD',
  'cross_street_2': '152 STREET',
  'intersection_street_1': 'SUTPHIN BOULEVARD',
  'intersection_street_2': '152 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '118 AVENUE',
  'status': 'In Progress',
  'community_board': '12 QUEENS',
  'bbl': '4122040334',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1042043',
  'y_coordinate_state_plane': '187035',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.679855970114026',
  'longitude': '-73.7916350809164',
  'location': {'latitude': '40.679855970114026',
   'longitude': '-73.7916350809164',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693984',
  'created_date': '2023-09-03T00:55:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': 'HORACE HARDING EXPRESSWAY',
  'street_name': 'HORACE HARDING EXPRESSWAY',
  'cross_street_1': '198 STREET',
  'cross_street_2': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_1': '198 STREET',
  'intersection_street_2': 'HORACE HARDING EXPRESSWAY',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045818',
  'y_coordinate_state_plane': '210166',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.743319405651874',
  'longitude': '-73.77781335143',
  'location': {'latitude': '40.743319405651874',
   'longitude': '-73.77781335143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696049',
  'created_date': '2023-09-03T00:54:50.000',
  'closed_date': '2023-09-03T01:25: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': '10468',
  'incident_address': '2723 WEBB AVENUE',
  'street_name': 'WEBB AVENUE',
  'cross_street_1': 'EAMES PLACE',
  'cross_street_2': 'WEST  195 STREET',
  'intersection_street_1': 'EAMES PLACE',
  'intersection_street_2': 'WEST  195 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'WEBB AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:25:59.000',
  'community_board': '08 BRONX',
  'bbl': '2032480169',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011391',
  'y_coordinate_state_plane': '256195',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86982887137098',
  'longitude': '-73.90186727980274',
  'location': {'latitude': '40.86982887137098',
   'longitude': '-73.90186727980274',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695860',
  'created_date': '2023-09-03T00:54:40.000',
  'closed_date': '2023-09-03T01:07: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': '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': '2023-09-03T01:07:43.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': '58692119',
  'created_date': '2023-09-03T00:54:40.000',
  'closed_date': '2023-09-03T01:10:00.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10031',
  'incident_address': '620 WEST  141 STREET',
  'street_name': 'WEST  141 STREET',
  'cross_street_1': 'BROADWAY',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'BROADWAY',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST  141 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T01:10:08.000',
  'community_board': '09 MANHATTAN',
  'bbl': '1020880043',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '997264',
  'y_coordinate_state_plane': '239545',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.82416166479311',
  'longitude': '-73.95297805704422',
  'location': {'latitude': '40.82416166479311',
   'longitude': '-73.95297805704422',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692682',
  'created_date': '2023-09-03T00:54:36.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': '1457 UNIVERSITY AVENUE',
  'street_name': 'UNIVERSITY AVENUE',
  'cross_street_1': 'BOSCOBEL PLACE',
  'cross_street_2': 'OGDEN AVENUE',
  'intersection_street_1': 'BOSCOBEL PLACE',
  'intersection_street_2': 'OGDEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'UNIVERSITY AVENUE',
  'status': 'In Progress',
  'community_board': '04 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005307',
  'y_coordinate_state_plane': '246804',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.844070006645985',
  'longitude': '-73.92389446346618',
  'location': {'latitude': '40.844070006645985',
   'longitude': '-73.92389446346618',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694809',
  'created_date': '2023-09-03T00:54:35.000',
  'closed_date': '2023-09-03T01:16: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': '11238',
  'incident_address': '455 ST JOHNS PLACE',
  'street_name': 'ST JOHNS PLACE',
  'cross_street_1': 'WASHINGTON AVENUE',
  'cross_street_2': 'CLASSON AVENUE',
  'intersection_street_1': 'WASHINGTON AVENUE',
  'intersection_street_2': 'CLASSON AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ST JOHNS PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:16:33.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3011740066',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '994633',
  'y_coordinate_state_plane': '184659',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67351696025931',
  'longitude': '-73.96256907663572',
  'location': {'latitude': '40.67351696025931',
   'longitude': '-73.96256907663572',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694907',
  'created_date': '2023-09-03T00:54:31.000',
  'closed_date': '2023-09-03T01:30: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': '10458',
  'incident_address': '707 EAST  187 STREET',
  'street_name': 'EAST  187 STREET',
  'cross_street_1': 'BEAUMONT AVENUE',
  'cross_street_2': 'CROTONA AVENUE',
  'intersection_street_1': 'BEAUMONT AVENUE',
  'intersection_street_2': 'CROTONA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  187 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:30:53.000',
  'community_board': '06 BRONX',
  'bbl': '2031050061',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1016283',
  'y_coordinate_state_plane': '250465',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85408536600084',
  'longitude': '-73.8842068599034',
  'location': {'latitude': '40.85408536600084',
   'longitude': '-73.8842068599034',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700016',
  'created_date': '2023-09-03T00:54:29.000',
  'closed_date': '2023-09-03T01:15:42.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Talking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10025',
  'incident_address': '710 AMSTERDAM AVENUE',
  'street_name': 'AMSTERDAM AVENUE',
  'cross_street_1': 'WEST   94 STREET',
  'cross_street_2': 'WEST   95 STREET',
  'intersection_street_1': 'WEST   94 STREET',
  'intersection_street_2': 'WEST   95 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': '2023-09-03T01:15:48.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1012420033',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '992247',
  'y_coordinate_state_plane': '228204',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.79303972844535',
  'longitude': '-73.97111889676971',
  'location': {'latitude': '40.79303972844535',
   'longitude': '-73.97111889676971',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698443',
  'created_date': '2023-09-03T00:54:18.000',
  'closed_date': '2023-09-03T01:43: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': '11412',
  'incident_address': '113-57 201 STREET',
  'street_name': '201 STREET',
  'cross_street_1': '113 AVENUE',
  'cross_street_2': 'MURDOCK AVENUE',
  'intersection_street_1': '113 AVENUE',
  'intersection_street_2': 'MURDOCK AVENUE',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  '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': '2023-09-03T01:43:44.000',
  'community_board': '12 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1052446',
  'y_coordinate_state_plane': '194710',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.70084796131383',
  'longitude': '-73.7540509472021',
  'location': {'latitude': '40.70084796131383',
   'longitude': '-73.7540509472021',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695688',
  'created_date': '2023-09-03T00:54:07.000',
  'closed_date': '2023-09-03T01:41:22.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Posted Parking Sign Violation',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11208',
  'incident_address': '685 AUTUMN AVENUE',
  'street_name': 'AUTUMN AVENUE',
  'cross_street_1': 'SUTTER AVENUE',
  'cross_street_2': 'BLAKE AVENUE',
  'intersection_street_1': 'SUTTER AVENUE',
  'intersection_street_2': 'BLAKE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'AUTUMN AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:41:28.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3042700001',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1021079',
  'y_coordinate_state_plane': '184122',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.671972498419095',
  'longitude': '-73.86723374363582',
  'location': {'latitude': '40.671972498419095',
   'longitude': '-73.86723374363582',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693993',
  'created_date': '2023-09-03T00:54:03.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Commercial Overnight Parking',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11365',
  'incident_address': 'HORACE HARDING EXPRESSWAY',
  'street_name': 'HORACE HARDING EXPRESSWAY',
  'cross_street_1': '198 STREET',
  'cross_street_2': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_1': '198 STREET',
  'intersection_street_2': 'HORACE HARDING EXPRESSWAY',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045818',
  'y_coordinate_state_plane': '210166',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.743319405651874',
  'longitude': '-73.77781335143',
  'location': {'latitude': '40.743319405651874',
   'longitude': '-73.77781335143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692719',
  'created_date': '2023-09-03T00:53: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': '11436',
  'incident_address': '123-26 146 STREET',
  'street_name': '146 STREET',
  'cross_street_1': '123 AVENUE',
  'cross_street_2': 'ROCKAWAY BOULEVARD',
  'intersection_street_1': '123 AVENUE',
  'intersection_street_2': 'ROCKAWAY BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '146 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:10:58.000',
  'community_board': '12 QUEENS',
  'bbl': '4120490101',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1041858',
  'y_coordinate_state_plane': '185334',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.675188328522474',
  'longitude': '-73.79231661112338',
  'location': {'latitude': '40.675188328522474',
   'longitude': '-73.79231661112338',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693318',
  'created_date': '2023-09-03T00:53:50.000',
  'closed_date': '2023-09-03T01:37: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': '10461',
  'incident_address': '2018 COLONIAL AVENUE',
  'street_name': 'COLONIAL AVENUE',
  'cross_street_1': 'WESTCHESTER AVENUE',
  'cross_street_2': 'EAST  196 STREET',
  'intersection_street_1': 'WESTCHESTER AVENUE',
  'intersection_street_2': 'EAST  196 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'COLONIAL 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': '2023-09-03T01:37:18.000',
  'community_board': '10 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1031804',
  'y_coordinate_state_plane': '250137',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.85311514989109',
  'longitude': '-73.8281038743456',
  'location': {'latitude': '40.85311514989109',
   'longitude': '-73.8281038743456',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692690',
  'created_date': '2023-09-03T00:53: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': '11365',
  'incident_address': 'HORACE HARDING EXPRESSWAY',
  'street_name': 'HORACE HARDING EXPRESSWAY',
  'cross_street_1': '198 STREET',
  'cross_street_2': 'HORACE HARDING EXPRESSWAY',
  'intersection_street_1': '198 STREET',
  'intersection_street_2': 'HORACE HARDING EXPRESSWAY',
  'address_type': 'INTERSECTION',
  'status': 'In Progress',
  'community_board': '11 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045818',
  'y_coordinate_state_plane': '210166',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.743319405651874',
  'longitude': '-73.77781335143',
  'location': {'latitude': '40.743319405651874',
   'longitude': '-73.77781335143',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698313',
  'created_date': '2023-09-03T00:53:37.000',
  'closed_date': '2023-09-03T01:20:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'Underage - Licensed Est',
  'location_type': 'Club/Bar/Restaurant',
  'incident_zip': '11208',
  'incident_address': '3014 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': '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': '2023-09-03T01:20:09.000',
  'community_board': '05 BROOKLYN',
  'bbl': '3039560043',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1016566',
  'y_coordinate_state_plane': '187152',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.680306781997956',
  'longitude': '-73.88348827920888',
  'location': {'latitude': '40.680306781997956',
   'longitude': '-73.88348827920888',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693119',
  'created_date': '2023-09-03T00:53:21.000',
  'closed_date': '2023-09-03T01:02:09.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Vehicle',
  'descriptor': 'Engine Idling',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11360',
  'incident_address': '210-35 26 AVENUE',
  'street_name': '26 AVENUE',
  'cross_street_1': '210 PLACE',
  'cross_street_2': '211 STREET',
  'intersection_street_1': '210 PLACE',
  'intersection_street_2': '211 STREET',
  'address_type': 'ADDRESS',
  'city': 'BAYSIDE',
  'landmark': '26 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': '2023-09-03T01:02:12.000',
  'community_board': '07 QUEENS',
  'bbl': '4059000024',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1045393',
  'y_coordinate_state_plane': '222706',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.77774132780579',
  'longitude': '-73.77923303317307',
  'location': {'latitude': '40.77774132780579',
   'longitude': '-73.77923303317307',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697387',
  'created_date': '2023-09-03T00:53:16.000',
  'closed_date': '2023-09-03T01:16: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': '10458',
  'incident_address': '2454 TIEBOUT AVENUE',
  'street_name': 'TIEBOUT 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': 'TIEBOUT AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resolution_action_updated_date': '2023-09-03T01:16:28.000',
  'community_board': '05 BRONX',
  'bbl': '2030220058',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1013173',
  'y_coordinate_state_plane': '252823',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.86056810126927',
  'longitude': '-73.89543872667674',
  'location': {'latitude': '40.86056810126927',
   'longitude': '-73.89543872667674',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693301',
  'created_date': '2023-09-03T00:53:12.000',
  'closed_date': '2023-09-03T01:05:36.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11368',
  'incident_address': '104 STREET',
  'street_name': '104 STREET',
  'cross_street_1': '47 AVENUE',
  'cross_street_2': 'NICHOLAS PENNETTI WAY',
  'intersection_street_1': '47 AVENUE',
  'intersection_street_2': 'NICHOLAS PENNETTI WAY',
  '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': '2023-09-03T01:05:42.000',
  'community_board': 'Unspecified QUEENS',
  'borough': 'QUEENS',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS'},
 {'unique_key': '58692134',
  'created_date': '2023-09-03T00:53:07.000',
  'closed_date': '2023-09-03T01:14: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': '10027',
  'incident_address': '167 WEST  122 STREET',
  'street_name': 'WEST  122 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  122 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': '2023-09-03T01:14:13.000',
  'community_board': '10 MANHATTAN',
  'bbl': '1019070001',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '998474',
  'y_coordinate_state_plane': '233138',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.80657438022123',
  'longitude': '-73.94861968695976',
  'location': {'latitude': '40.80657438022123',
   'longitude': '-73.94861968695976',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699798',
  'created_date': '2023-09-03T00:52:26.000',
  'closed_date': '2023-09-03T01:24: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': '1039 RUTLAND ROAD',
  'street_name': 'RUTLAND ROAD',
  'cross_street_1': 'EAST   95 STREET',
  'cross_street_2': 'EAST   96 STREET',
  'intersection_street_1': 'EAST   95 STREET',
  'intersection_street_2': 'EAST   96 STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'RUTLAND ROAD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:03.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3045980055',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1004997',
  'y_coordinate_state_plane': '180994',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66343913397999',
  'longitude': '-73.92521794174155',
  'location': {'latitude': '40.66343913397999',
   'longitude': '-73.92521794174155',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699858',
  'created_date': '2023-09-03T00:52:24.000',
  'closed_date': '2023-09-03T00:58: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': '11691',
  'incident_address': '45-19 ROCKAWAY BEACH BOULEVARD',
  'street_name': 'ROCKAWAY BEACH BOULEVARD',
  'cross_street_1': 'BEACH   45 STREET',
  'cross_street_2': 'BEACH   46 STREET',
  'intersection_street_1': 'BEACH   45 STREET',
  'intersection_street_2': 'BEACH   46 STREET',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'ROCKAWAY BEACH BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T00:58:53.000',
  'community_board': '14 QUEENS',
  'bbl': '4158537502',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1046308',
  'y_coordinate_state_plane': '155618',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59359441442539',
  'longitude': '-73.7765471998799',
  'location': {'latitude': '40.59359441442539',
   'longitude': '-73.7765471998799',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696563',
  'created_date': '2023-09-03T00:52:06.000',
  'agency': 'DOHMH',
  'agency_name': 'Department of Health and Mental Hygiene',
  'complaint_type': 'Food Establishment',
  'descriptor': 'Food Temperature',
  'location_type': 'Restaurant/Bar/Deli/Bakery',
  'incident_zip': '11201',
  'incident_address': '445 ALBEE SQUARE WEST',
  'street_name': 'ALBEE SQUARE WEST',
  'cross_street_1': 'GOLD STREET',
  'cross_street_2': 'FULTON STREET',
  'intersection_street_1': 'GOLD STREET',
  'intersection_street_2': 'FULTON STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ALBEE SQUARE',
  'status': 'In Progress',
  'community_board': '02 BROOKLYN',
  'bbl': '3001497501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '988839',
  'y_coordinate_state_plane': '190966',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69083313937321',
  'longitude': '-73.98345226694525',
  'location': {'latitude': '40.69083313937321',
   'longitude': '-73.98345226694525',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694838',
  'created_date': '2023-09-03T00:51:59.000',
  'closed_date': '2023-09-03T01:24: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': '10468',
  'incident_address': '2890 SEDGWICK AVENUE',
  'street_name': 'SEDGWICK AVENUE',
  'cross_street_1': 'WEST  229 STREET',
  'cross_street_2': 'RESERVOIR AVENUE',
  'intersection_street_1': 'WEST  229 STREET',
  'intersection_street_2': 'RESERVOIR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SEDGWICK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:24:08.000',
  'community_board': '08 BRONX',
  'bbl': '2032500200',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011704',
  'y_coordinate_state_plane': '258302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875610967981835',
  'longitude': '-73.90072694449508',
  'location': {'latitude': '40.875610967981835',
   'longitude': '-73.90072694449508',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699176',
  'created_date': '2023-09-03T00:51: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': '10452',
  'incident_address': '1441 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': '2023-09-03T02:12:29.000',
  'community_board': '04 BRONX',
  'bbl': '2025220098',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005565',
  'y_coordinate_state_plane': '246483',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.84318833698711',
  'longitude': '-73.92296300439696',
  'location': {'latitude': '40.84318833698711',
   'longitude': '-73.92296300439696',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697873',
  'created_date': '2023-09-03T00:51: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': '11106',
  'incident_address': '31-18 35 STREET',
  'street_name': '35 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': '35 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:29:10.000',
  'community_board': '01 QUEENS',
  'bbl': '4006240050',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006183',
  'y_coordinate_state_plane': '216967',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.76217353750001',
  'longitude': '-73.92082584005514',
  'location': {'latitude': '40.76217353750001',
   'longitude': '-73.92082584005514',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693285',
  'created_date': '2023-09-03T00:51:35.000',
  'closed_date': '2023-09-03T01:21: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': '11210',
  'incident_address': '1520 ALBANY AVENUE',
  'street_name': 'ALBANY AVENUE',
  'cross_street_1': 'FARRAGUT ROAD',
  'cross_street_2': 'GLENWOOD ROAD',
  'intersection_street_1': 'FARRAGUT ROAD',
  'intersection_street_2': 'GLENWOOD ROAD',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'ALBANY 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': '2023-09-03T01:21:18.000',
  'community_board': '17 BROOKLYN',
  'bbl': '3050150054',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1001615',
  'y_coordinate_state_plane': '171035',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.636111126571606',
  'longitude': '-73.93743391346878',
  'location': {'latitude': '40.636111126571606',
   'longitude': '-73.93743391346878',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691904',
  'created_date': '2023-09-03T00:51:16.000',
  'closed_date': '2023-09-03T01:00:37.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Fireworks',
  'descriptor': 'N/A',
  'location_type': 'Residential Building/House',
  'incident_zip': '11226',
  'incident_address': '2313 NEWKIRK AVENUE',
  'street_name': 'NEWKIRK AVENUE',
  'cross_street_1': 'EAST   23 STREET',
  'cross_street_2': 'FLATBUSH AVENUE',
  'intersection_street_1': 'EAST   23 STREET',
  'intersection_street_2': 'FLATBUSH AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'NEWKIRK 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': '2023-09-03T01:00:43.000',
  'community_board': '14 BROOKLYN',
  'bbl': '3052090026',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '996601',
  'y_coordinate_state_plane': '172192',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63929525491562',
  'longitude': '-73.95549723143917',
  'location': {'latitude': '40.63929525491562',
   'longitude': '-73.95549723143917',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693898',
  'created_date': '2023-09-03T00:51:14.000',
  'closed_date': '2023-09-03T01:13:26.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': '501 GRAND STREET',
  'street_name': 'GRAND STREET',
  'cross_street_1': 'UNION AVENUE',
  'cross_street_2': 'LORIMER STREET',
  'intersection_street_1': 'UNION AVENUE',
  'intersection_street_2': 'LORIMER STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'GRAND STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:13:29.000',
  'community_board': '01 BROOKLYN',
  'bbl': '3027790050',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '997894',
  'y_coordinate_state_plane': '198316',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.71099783901443',
  'longitude': '-73.9507854474836',
  'location': {'latitude': '40.71099783901443',
   'longitude': '-73.9507854474836',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693221',
  'created_date': '2023-09-03T00:51:13.000',
  'closed_date': '2023-09-03T01:59: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': '11412',
  'incident_address': '187-12 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'NEWBURG STREET',
  'cross_street_2': 'MEXICO STREET',
  'intersection_street_1': 'NEWBURG STREET',
  'intersection_street_2': 'MEXICO STREET',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': 'LINDEN 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': '2023-09-03T01:59:59.000',
  'community_board': '12 QUEENS',
  'bbl': '4124390015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049440',
  'y_coordinate_state_plane': '191475',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69199132548559',
  'longitude': '-73.76492335050487',
  'location': {'latitude': '40.69199132548559',
   'longitude': '-73.76492335050487',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697188',
  'created_date': '2023-09-03T00:51:10.000',
  'closed_date': '2023-09-03T01:07: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': '11221',
  'incident_address': '750 GATES AVENUE',
  'street_name': 'GATES AVENUE',
  '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': 'GATES 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': '2023-09-03T01:08:02.000',
  'community_board': '03 BROOKLYN',
  'bbl': '3016350126',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002497',
  'y_coordinate_state_plane': '189975',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.688095452785824',
  'longitude': '-73.93420481269388',
  'location': {'latitude': '40.688095452785824',
   'longitude': '-73.93420481269388',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693985',
  'created_date': '2023-09-03T00:50:59.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': '711 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': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:40:34.000',
  'community_board': '07 BROOKLYN',
  'bbl': '3008660077',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '981123',
  'y_coordinate_state_plane': '171184',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.63653656954628',
  'longitude': '-74.01126665037738',
  'location': {'latitude': '40.63653656954628',
   'longitude': '-74.01126665037738',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693349',
  'created_date': '2023-09-03T00:50:53.000',
  'closed_date': '2023-09-03T01:03: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': '11691',
  'incident_address': '241 BEACH   13 STREET',
  'street_name': 'BEACH   13 STREET',
  'cross_street_1': 'HEYSON ROAD',
  'cross_street_2': 'NEW HAVEN AVENUE',
  'intersection_street_1': 'HEYSON ROAD',
  'intersection_street_2': 'NEW HAVEN AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FAR ROCKAWAY',
  'landmark': 'BEACH   13 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:03:47.000',
  'community_board': '14 QUEENS',
  'bbl': '4156240001',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1054474',
  'y_coordinate_state_plane': '156735',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.59659940386337',
  'longitude': '-73.74713235361206',
  'location': {'latitude': '40.59659940386337',
   'longitude': '-73.74713235361206',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697116',
  'created_date': '2023-09-03T00:50:43.000',
  'closed_date': '2023-09-03T02:01:14.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': '44 CANAL STREET',
  'street_name': 'CANAL STREET',
  'cross_street_1': 'LUDLOW STREET',
  'cross_street_2': 'ORCHARD STREET',
  'intersection_street_1': 'LUDLOW STREET',
  'intersection_street_2': 'ORCHARD STREET',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'CANAL STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T02:01:19.000',
  'community_board': '03 MANHATTAN',
  'bbl': '1002940025',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '986612',
  'y_coordinate_state_plane': '199685',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.71476562260759',
  'longitude': '-73.99147967324454',
  'location': {'latitude': '40.71476562260759',
   'longitude': '-73.99147967324454',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690805',
  'created_date': '2023-09-03T00:50:41.000',
  'closed_date': '2023-09-03T00:59:07.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Residential Building/House',
  'incident_zip': '11435',
  'incident_address': '107-46 139 STREET',
  'street_name': '139 STREET',
  'cross_street_1': '107 ROAD',
  'cross_street_2': '109 AVENUE',
  'intersection_street_1': '107 ROAD',
  'intersection_street_2': '109 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': '139 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T00:59:12.000',
  'community_board': '12 QUEENS',
  'bbl': '4100640113',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037778',
  'y_coordinate_state_plane': '190024',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.68808689158875',
  'longitude': '-73.80698817051783',
  'location': {'latitude': '40.68808689158875',
   'longitude': '-73.80698817051783',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697276',
  'created_date': '2023-09-03T00:50:35.000',
  'closed_date': '2023-09-03T01:59: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': '11412',
  'incident_address': '187-12 LINDEN BOULEVARD',
  'street_name': 'LINDEN BOULEVARD',
  'cross_street_1': 'NEWBURG STREET',
  'cross_street_2': 'MEXICO STREET',
  'intersection_street_1': 'NEWBURG STREET',
  'intersection_street_2': 'MEXICO STREET',
  'address_type': 'ADDRESS',
  'city': 'SAINT ALBANS',
  'landmark': 'LINDEN 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': '2023-09-03T01:59:23.000',
  'community_board': '12 QUEENS',
  'bbl': '4124390015',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1049440',
  'y_coordinate_state_plane': '191475',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.69199132548559',
  'longitude': '-73.76492335050487',
  'location': {'latitude': '40.69199132548559',
   'longitude': '-73.76492335050487',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695258',
  'created_date': '2023-09-03T00:50:23.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Abandoned Vehicle',
  'descriptor': 'With License Plate',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11432',
  'incident_address': '82-20 PARSONS BOULEVARD',
  'street_name': 'PARSONS BOULEVARD',
  'cross_street_1': 'GOETHALS AVENUE',
  'cross_street_2': 'VILLAGE ROAD',
  'intersection_street_1': 'GOETHALS AVENUE',
  'intersection_street_2': 'VILLAGE ROAD',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'PARSONS BOULEVARD',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4067150011',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1037353',
  'y_coordinate_state_plane': '200864',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.71784263590167',
  'longitude': '-73.80843515660857',
  'location': {'latitude': '40.71784263590167',
   'longitude': '-73.80843515660857',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699552',
  'created_date': '2023-09-03T00:50:21.000',
  'closed_date': '2023-09-03T01:21:51.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': '1453 EAST   84 STREET',
  'street_name': 'EAST   84 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   84 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:21:54.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3080810057',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1011921',
  'y_coordinate_state_plane': '168225',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.62837207644476',
  'longitude': '-73.90031294834442',
  'location': {'latitude': '40.62837207644476',
   'longitude': '-73.90031294834442',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693225',
  'created_date': '2023-09-03T00:50:15.000',
  'closed_date': '2023-09-03T01:01: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': '10019',
  'incident_address': '311 WEST   57 STREET',
  'street_name': 'WEST   57 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   57 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': '2023-09-03T01:01:07.000',
  'community_board': '04 MANHATTAN',
  'bbl': '1010480026',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '988820',
  'y_coordinate_state_plane': '218712',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.76698913667887',
  'longitude': '-73.98350193653141',
  'location': {'latitude': '40.76698913667887',
   'longitude': '-73.98350193653141',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692059',
  'created_date': '2023-09-03T00:50:06.000',
  'closed_date': '2023-09-03T01:22: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': '11236',
  'incident_address': 'EAST   83 STREET',
  'street_name': 'EAST   83 STREET',
  'cross_street_1': 'AVENUE L',
  'cross_street_2': 'AVENUE M',
  'intersection_street_1': 'AVENUE L',
  'intersection_street_2': 'AVENUE M',
  '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': '2023-09-03T01:22:13.000',
  'community_board': 'Unspecified BROOKLYN',
  'borough': 'BROOKLYN',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN'},
 {'unique_key': '58690661',
  'created_date': '2023-09-03T00:50:06.000',
  'closed_date': '2023-09-03T01:09:46.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Park',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Park/Playground',
  'incident_zip': '10468',
  'incident_address': '2890 SEDGWICK AVENUE',
  'street_name': 'SEDGWICK AVENUE',
  'cross_street_1': 'WEST  229 STREET',
  'cross_street_2': 'RESERVOIR AVENUE',
  'intersection_street_1': 'WEST  229 STREET',
  'intersection_street_2': 'RESERVOIR AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SEDGWICK AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:09:53.000',
  'community_board': '08 BRONX',
  'bbl': '2032500200',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1011704',
  'y_coordinate_state_plane': '258302',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.875610967981835',
  'longitude': '-73.90072694449508',
  'location': {'latitude': '40.875610967981835',
   'longitude': '-73.90072694449508',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693552',
  'created_date': '2023-09-03T00:49:59.000',
  'closed_date': '2023-09-03T01:01: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': '11429',
  'incident_address': '102-03 215 STREET',
  'street_name': '215 STREET',
  'cross_street_1': '102 AVENUE',
  'cross_street_2': '102 AVENUE',
  'intersection_street_1': '102 AVENUE',
  'intersection_street_2': '102 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'QUEENS VILLAGE',
  'landmark': '215 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': '2023-09-03T01:01:03.000',
  'community_board': '13 QUEENS',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1055229',
  'y_coordinate_state_plane': '199224',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.7132158874079',
  'longitude': '-73.74396652331437',
  'location': {'latitude': '40.7132158874079',
   'longitude': '-73.74396652331437',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691407',
  'created_date': '2023-09-03T00:49: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': '10452',
  'incident_address': '1015 GRAND CONCOURSE',
  'street_name': 'GRAND CONCOURSE',
  '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': 'GRAND CONCOURSE',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:33:05.000',
  'community_board': '04 BRONX',
  'bbl': '2024710036',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006131',
  'y_coordinate_state_plane': '241711',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.830089199827285',
  'longitude': '-73.9209329272536',
  'location': {'latitude': '40.830089199827285',
   'longitude': '-73.9209329272536',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690723',
  'created_date': '2023-09-03T00:49:52.000',
  'closed_date': '2023-09-03T01:22: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': '11377',
  'incident_address': '50-36 48 STREET',
  'street_name': '48 STREET',
  'cross_street_1': '50 AVENUE',
  'cross_street_2': 'LAUREL HILL BOULEVARD',
  'intersection_street_1': '50 AVENUE',
  'intersection_street_2': 'LAUREL HILL BOULEVARD',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '48 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:22:13.000',
  'community_board': '02 QUEENS',
  'bbl': '4022970054',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1006927',
  'y_coordinate_state_plane': '207559',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.736349083046676',
  'longitude': '-73.91817186077168',
  'location': {'latitude': '40.736349083046676',
   'longitude': '-73.91817186077168',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699701',
  'created_date': '2023-09-03T00:49:49.000',
  'closed_date': '2023-09-03T01:23:25.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Banging/Pounding',
  'location_type': 'Residential Building/House',
  'incident_zip': '11368',
  'incident_address': '98-17 35 AVENUE',
  'street_name': '35 AVENUE',
  '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': '35 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': '2023-09-03T01:23:33.000',
  'community_board': '03 QUEENS',
  'bbl': '4017320022',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1020387',
  'y_coordinate_state_plane': '213936',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.753807578537206',
  'longitude': '-73.86956832359681',
  'location': {'latitude': '40.753807578537206',
   'longitude': '-73.86956832359681',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692681',
  'created_date': '2023-09-03T00:49:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Illegal Parking',
  'descriptor': 'Blocked Hydrant',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11377',
  'incident_address': '34-39 62 STREET',
  'street_name': '62 STREET',
  'cross_street_1': '34 AVENUE',
  'cross_street_2': '35 AVENUE',
  'intersection_street_1': '34 AVENUE',
  'intersection_street_2': '35 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'WOODSIDE',
  'landmark': '62 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:41:44.000',
  'community_board': '02 QUEENS',
  'bbl': '4011900065',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1012025',
  'y_coordinate_state_plane': '212982',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.751219312672994',
  'longitude': '-73.89975375631413',
  'location': {'latitude': '40.751219312672994',
   'longitude': '-73.89975375631413',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693231',
  'created_date': '2023-09-03T00:49:26.000',
  'closed_date': '2023-09-03T00:57: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': '11213',
  'incident_address': 'PRESIDENT STREET',
  'street_name': 'PRESIDENT STREET',
  'cross_street_1': 'PRESIDENT STREET',
  'cross_street_2': 'UTICA AVENUE',
  'intersection_street_1': 'PRESIDENT STREET',
  'intersection_street_2': 'UTICA 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': '2023-09-03T00:57:28.000',
  'community_board': '09 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1003311',
  'y_coordinate_state_plane': '182296',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.66701662408001',
  'longitude': '-73.93129140417625',
  'location': {'latitude': '40.66701662408001',
   'longitude': '-73.93129140417625',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696048',
  'created_date': '2023-09-03T00:49:25.000',
  'closed_date': '2023-09-03T01:35: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': '10452',
  'incident_address': '1130 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': '2023-09-03T01:35:08.000',
  'community_board': '04 BRONX',
  'bbl': '2025050046',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1005033',
  'y_coordinate_state_plane': '243586',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.83523818541938',
  'longitude': '-73.92489474312427',
  'location': {'latitude': '40.83523818541938',
   'longitude': '-73.92489474312427',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697465',
  'created_date': '2023-09-03T00:49:21.000',
  'closed_date': '2023-09-03T01:13: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': '11207',
  'incident_address': '112 MOFFAT STREET',
  'street_name': 'MOFFAT 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': 'MOFFAT 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': '2023-09-03T01:13:38.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3034450033',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009726',
  'y_coordinate_state_plane': '189132',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68576375654079',
  'longitude': '-73.90814162716252',
  'location': {'latitude': '40.68576375654079',
   'longitude': '-73.90814162716252',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692280',
  'created_date': '2023-09-03T00:49:15.000',
  'closed_date': '2023-09-03T00:54: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': '10033',
  'incident_address': 'ST NICHOLAS AVENUE',
  'street_name': 'ST NICHOLAS AVENUE',
  'cross_street_1': 'ST NICHOLAS AVENUE',
  'cross_street_2': 'WEST  177 STREET',
  'intersection_street_1': 'ST NICHOLAS AVENUE',
  'intersection_street_2': 'WEST  177 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': '2023-09-03T00:54:18.000',
  'community_board': '12 MANHATTAN',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '1002062',
  'y_coordinate_state_plane': '247769',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.84672578941482',
  'longitude': '-73.93562017903595',
  'location': {'latitude': '40.84672578941482',
   'longitude': '-73.93562017903595',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699125',
  'created_date': '2023-09-03T00:49:11.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Drinking',
  'descriptor': 'In Public',
  'location_type': 'Residential Building/House',
  'incident_zip': '10455',
  'incident_address': '410 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': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:26:54.000',
  'community_board': '01 BRONX',
  'bbl': '2023740078',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007468',
  'y_coordinate_state_plane': '237589',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.81877207191979',
  'longitude': '-73.91611593925789',
  'location': {'latitude': '40.81877207191979',
   'longitude': '-73.91611593925789',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58698507',
  'created_date': '2023-09-03T00:48:41.000',
  'closed_date': '2023-09-03T01:22: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': '10016',
  'incident_address': '309 EAST   37 STREET',
  'street_name': 'EAST   37 STREET',
  'cross_street_1': '2 AVENUE',
  'cross_street_2': 'QUEENS MIDTOWN TUNNEL APPROACH',
  'intersection_street_1': '2 AVENUE',
  'intersection_street_2': 'QUEENS MIDTOWN TUNNEL APPROACH',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'EAST   37 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
  'resolution_action_updated_date': '2023-09-03T01:22:28.000',
  'community_board': '06 MANHATTAN',
  'bbl': '1009430007',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991448',
  'y_coordinate_state_plane': '211246',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.746495122329634',
  'longitude': '-73.97402264096368',
  'location': {'latitude': '40.746495122329634',
   'longitude': '-73.97402264096368',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690833',
  'created_date': '2023-09-03T00:48:34.000',
  'closed_date': '2023-09-03T01:36: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': '10465',
  'incident_address': '1 SCHUYLER TERRACE',
  'street_name': 'SCHUYLER TERRACE',
  'cross_street_1': 'PENNYFIELD AVENUE',
  'cross_street_2': 'DEAD END',
  'intersection_street_1': 'PENNYFIELD AVENUE',
  'intersection_street_2': 'DEAD END',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'SCHUYLER TERRACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:36:48.000',
  'community_board': '10 BRONX',
  'bbl': '2055290415',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1038788',
  'y_coordinate_state_plane': '234314',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.809645290556546',
  'longitude': '-73.8029871340224',
  'location': {'latitude': '40.809645290556546',
   'longitude': '-73.8029871340224',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694697',
  'created_date': '2023-09-03T00:48:32.000',
  'closed_date': '2023-09-03T00:58: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': '11201',
  'incident_address': '89 DEAN STREET',
  'street_name': 'DEAN STREET',
  'cross_street_1': 'SMITH STREET',
  'cross_street_2': 'HOYT STREET',
  'intersection_street_1': 'SMITH STREET',
  'intersection_street_2': 'HOYT STREET',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'DEAN STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
  'resolution_action_updated_date': '2023-09-03T00:58:17.000',
  'community_board': '02 BROOKLYN',
  'bbl': '3001887501',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '987168',
  'y_coordinate_state_plane': '189625',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.68715311130202',
  'longitude': '-73.98947840051892',
  'location': {'latitude': '40.68715311130202',
   'longitude': '-73.98947840051892',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692152',
  'created_date': '2023-09-03T00:48:25.000',
  'closed_date': '2023-09-03T01:36:53.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Street/Sidewalk',
  'descriptor': 'Loud Music/Party',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11232',
  'incident_address': '874 42 STREET',
  'street_name': '42 STREET',
  'cross_street_1': '8 AVENUE',
  'cross_street_2': '9 AVENUE',
  'intersection_street_1': '8 AVENUE',
  'intersection_street_2': '9 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': '42 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department made an arrest in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:36:58.000',
  'community_board': '12 BROOKLYN',
  'bbl': '3009250037',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '984927',
  'y_coordinate_state_plane': '174153',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64468636458384',
  'longitude': '-73.9975604560498',
  'location': {'latitude': '40.64468636458384',
   'longitude': '-73.9975604560498',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699783',
  'created_date': '2023-09-03T00:48:12.000',
  'closed_date': '2023-09-03T01:01: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': '11213',
  'incident_address': '1299 PARK PLACE',
  'street_name': 'PARK PLACE',
  'cross_street_1': 'TROY AVENUE',
  'cross_street_2': 'SCHENECTADY AVENUE',
  'intersection_street_1': 'TROY AVENUE',
  'intersection_street_2': 'SCHENECTADY AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'PARK PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:02:03.000',
  'community_board': '08 BROOKLYN',
  'bbl': '3013650068',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1002417',
  'y_coordinate_state_plane': '184325',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.67258765377958',
  'longitude': '-73.93450850886443',
  'location': {'latitude': '40.67258765377958',
   'longitude': '-73.93450850886443',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693346',
  'created_date': '2023-09-03T00:48:09.000',
  'closed_date': '2023-09-03T01:03: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': '11420',
  'incident_address': '114-25 124 STREET',
  'street_name': '124 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': 'SOUTH OZONE PARK',
  'landmark': '124 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:03:52.000',
  'community_board': '10 QUEENS',
  'bbl': '4116510055',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1035344',
  'y_coordinate_state_plane': '186872',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.67944977532843',
  'longitude': '-73.81578858792996',
  'location': {'latitude': '40.67944977532843',
   'longitude': '-73.81578858792996',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690353',
  'created_date': '2023-09-03T00:48:00.000',
  'agency': 'DOT',
  'agency_name': 'Department of Transportation',
  'complaint_type': 'Traffic Signal Condition',
  'descriptor': 'Pedestrian Signal',
  'incident_zip': '11221',
  'intersection_street_1': 'BUSHWICK AVENUE',
  'intersection_street_2': 'LINDEN STREET',
  'address_type': 'INTERSECTION',
  'city': 'BROOKLYN',
  'facility_type': 'N/A',
  'status': 'Open',
  'community_board': '04 BROOKLYN',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006044',
  'y_coordinate_state_plane': '191165',
  'open_data_channel_type': 'UNKNOWN',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.69135370433244',
  'longitude': '-73.9214111666864',
  'location': {'latitude': '40.69135370433244',
   'longitude': '-73.9214111666864',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58691919',
  'created_date': '2023-09-03T00:47:53.000',
  'closed_date': '2023-09-03T00:51: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': '11237',
  'incident_address': '91 WYCKOFF AVENUE',
  'street_name': 'WYCKOFF AVENUE',
  'cross_street_1': 'SUYDAM STREET',
  'cross_street_2': 'HART STREET',
  'intersection_street_1': 'SUYDAM STREET',
  'intersection_street_2': 'HART 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': '2023-09-03T00:51:17.000',
  'community_board': '04 BROOKLYN',
  'bbl': '3032220005',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1006351',
  'y_coordinate_state_plane': '196130',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.70498070536605',
  'longitude': '-73.92028783784475',
  'location': {'latitude': '40.70498070536605',
   'longitude': '-73.92028783784475',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697280',
  'created_date': '2023-09-03T00:47:47.000',
  'closed_date': '2023-09-03T01:29: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': '10469',
  'incident_address': '1017E EAST  217 STREET',
  'street_name': 'EAST  217 STREET',
  'cross_street_1': 'PAULDING AVENUE',
  'cross_street_2': 'LACONIA AVENUE',
  'intersection_street_1': 'PAULDING AVENUE',
  'intersection_street_2': 'LACONIA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  217 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': '2023-09-03T01:29:19.000',
  'community_board': '12 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1024431',
  'y_coordinate_state_plane': '259681',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.879347127605314',
  'longitude': '-73.8546981943877',
  'location': {'latitude': '40.879347127605314',
   'longitude': '-73.8546981943877',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700011',
  'created_date': '2023-09-03T00:47:46.000',
  'closed_date': '2023-09-03T01:29: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': '10452',
  'incident_address': '1158 GERARD AVENUE',
  'street_name': 'GERARD AVENUE',
  'cross_street_1': 'MCCLELLAN STREET',
  'cross_street_2': 'EAST  167 STREET',
  'intersection_street_1': 'MCCLELLAN STREET',
  'intersection_street_2': 'EAST  167 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'GERARD AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:30:03.000',
  'community_board': '04 BRONX',
  'bbl': '2024790001',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1006131',
  'y_coordinate_state_plane': '243252',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.834318800045416',
  'longitude': '-73.92092790077417',
  'location': {'latitude': '40.834318800045416',
   'longitude': '-73.92092790077417',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58696050',
  'created_date': '2023-09-03T00:47:19.000',
  'closed_date': '2023-09-03T01:18: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': '11101',
  'incident_address': '52-41 CENTER BOULEVARD',
  'street_name': 'CENTER BOULEVARD',
  'cross_street_1': 'BORDEN AVENUE',
  'cross_street_2': '54 AVENUE',
  'intersection_street_1': 'BORDEN AVENUE',
  'intersection_street_2': '54 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'LONG ISLAND CITY',
  'landmark': 'CENTER BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:18:09.000',
  'community_board': '02 QUEENS',
  'bbl': '4000067505',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '995153',
  'y_coordinate_state_plane': '209394',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.74140805386253',
  'longitude': '-73.96065441435366',
  'location': {'latitude': '40.74140805386253',
   'longitude': '-73.96065441435366',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58697791',
  'created_date': '2023-09-03T00:47:18.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '11432',
  'incident_address': '165-01 HILLSIDE AVENUE',
  'street_name': 'HILLSIDE AVENUE',
  'cross_street_1': '165 STREET',
  'cross_street_2': '165 STREET',
  'intersection_street_1': '165 STREET',
  'intersection_street_2': '165 STREET',
  'address_type': 'ADDRESS',
  'city': 'JAMAICA',
  'landmark': 'HILLSIDE AVENUE',
  'status': 'In Progress',
  'community_board': '08 QUEENS',
  'bbl': '4098370010',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1040335',
  'y_coordinate_state_plane': '197711',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.709170024072186',
  'longitude': '-73.79770413369963',
  'location': {'latitude': '40.709170024072186',
   'longitude': '-73.79770413369963',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699073',
  'created_date': '2023-09-03T00:47:06.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Blocked Driveway',
  'descriptor': 'No Access',
  'location_type': 'Street/Sidewalk',
  'incident_zip': '10451',
  'incident_address': '390E EAST  158 STREET',
  'street_name': 'EAST  158 STREET',
  'cross_street_1': 'COURTLANDT AVENUE',
  'cross_street_2': 'MELROSE AVENUE',
  'intersection_street_1': 'COURTLANDT AVENUE',
  'intersection_street_2': 'MELROSE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'EAST  158 STREET',
  'status': 'In Progress',
  'resolution_action_updated_date': '2023-09-03T02:25:14.000',
  'community_board': '01 BRONX',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1007721',
  'y_coordinate_state_plane': '238913',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.82240540798485',
  'longitude': '-73.9151972480016',
  'location': {'latitude': '40.82240540798485',
   'longitude': '-73.9151972480016',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58695941',
  'created_date': '2023-09-03T00:47:03.000',
  'closed_date': '2023-09-03T01:00: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': '10468',
  'incident_address': '20 BEDFORD PARK BOULEVARD',
  'street_name': 'BEDFORD PARK BOULEVARD',
  'cross_street_1': 'BEDFORD PARK BOULEVARD WEST',
  'cross_street_2': 'VILLA AVENUE',
  'intersection_street_1': 'BEDFORD PARK BOULEVARD WEST',
  'intersection_street_2': 'VILLA AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'BEDFORD PARK BOULEVARD',
  'status': 'Closed',
  'resolution_description': 'The Police Department issued a summons in response to the complaint.',
  'resolution_action_updated_date': '2023-09-03T01:00:53.000',
  'community_board': '07 BRONX',
  'bbl': '2033200013',
  'borough': 'BRONX',
  'x_coordinate_state_plane': '1014981',
  'y_coordinate_state_plane': '257340',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BRONX',
  'latitude': '40.87295977456771',
  'longitude': '-73.88888180976976',
  'location': {'latitude': '40.87295977456771',
   'longitude': '-73.88888180976976',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58692114',
  'created_date': '2023-09-03T00:46:57.000',
  'closed_date': '2023-09-03T01:32:34.000',
  'agency': 'NYPD',
  'agency_name': 'New York City Police Department',
  'complaint_type': 'Noise - Residential',
  'descriptor': 'Loud Talking',
  'location_type': 'Residential Building/House',
  'incident_zip': '10314',
  'incident_address': '32 DICKIE AVENUE',
  'street_name': 'DICKIE AVENUE',
  'cross_street_1': 'NORTH AVENUE',
  'cross_street_2': 'COLLEGE AVENUE',
  'intersection_street_1': 'NORTH AVENUE',
  'intersection_street_2': 'COLLEGE AVENUE',
  'address_type': 'ADDRESS',
  'city': 'STATEN ISLAND',
  'landmark': 'DICKIE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:32:38.000',
  'community_board': '01 STATEN ISLAND',
  'bbl': '5003910365',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '946345',
  'y_coordinate_state_plane': '166080',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62244662995479',
  'longitude': '-74.13654378064594',
  'location': {'latitude': '40.62244662995479',
   'longitude': '-74.13654378064594',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58690770',
  'created_date': '2023-09-03T00:46:53.000',
  'closed_date': '2023-09-03T01:04: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': '10025',
  'incident_address': '323 WEST   96 STREET',
  'street_name': 'WEST   96 STREET',
  'cross_street_1': 'WEST END AVENUE',
  'cross_street_2': 'RIVERSIDE DRIVE',
  'intersection_street_1': 'WEST END AVENUE',
  'intersection_street_2': 'RIVERSIDE DRIVE',
  'address_type': 'ADDRESS',
  'city': 'NEW YORK',
  'landmark': 'WEST   96 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:04:58.000',
  'community_board': '07 MANHATTAN',
  'bbl': '1018870003',
  'borough': 'MANHATTAN',
  'x_coordinate_state_plane': '991516',
  'y_coordinate_state_plane': '229098',
  'open_data_channel_type': 'ONLINE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'MANHATTAN',
  'latitude': '40.7954941477263',
  'longitude': '-73.973757930177',
  'location': {'latitude': '40.7954941477263',
   'longitude': '-73.973757930177',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58699864',
  'created_date': '2023-09-03T00:46:46.000',
  'closed_date': '2023-09-03T01:13: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': '11354',
  'incident_address': '33-25 145 PLACE',
  'street_name': '145 PLACE',
  'cross_street_1': '33 AVENUE',
  'cross_street_2': '34 AVENUE',
  'intersection_street_1': '33 AVENUE',
  'intersection_street_2': '34 AVENUE',
  'address_type': 'ADDRESS',
  'city': 'FLUSHING',
  'landmark': '145 PLACE',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
  'resolution_action_updated_date': '2023-09-03T01:13:19.000',
  'community_board': '07 QUEENS',
  'bbl': '4049840008',
  'borough': 'QUEENS',
  'x_coordinate_state_plane': '1033506',
  'y_coordinate_state_plane': '219135',
  'open_data_channel_type': 'MOBILE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'QUEENS',
  'latitude': '40.768014121391566',
  'longitude': '-73.82217906472884',
  'location': {'latitude': '40.768014121391566',
   'longitude': '-73.82217906472884',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58700001',
  'created_date': '2023-09-03T00:46:41.000',
  'closed_date': '2023-09-03T01:19: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': '11236',
  'incident_address': '878 EAST   93 STREET',
  'street_name': 'EAST   93 STREET',
  'cross_street_1': 'AMES LANE',
  'cross_street_2': 'FOSTER AVENUE',
  'intersection_street_1': 'AMES LANE',
  'intersection_street_2': 'FOSTER AVENUE',
  'address_type': 'ADDRESS',
  'city': 'BROOKLYN',
  'landmark': 'EAST   93 STREET',
  'status': 'Closed',
  'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
  'resolution_action_updated_date': '2023-09-03T01:19:28.000',
  'community_board': '18 BROOKLYN',
  'bbl': '3081250079',
  'borough': 'BROOKLYN',
  'x_coordinate_state_plane': '1009210',
  'y_coordinate_state_plane': '175112',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'BROOKLYN',
  'latitude': '40.64728346507241',
  'longitude': '-73.91005406519356',
  'location': {'latitude': '40.64728346507241',
   'longitude': '-73.91005406519356',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58693398',
  'created_date': '2023-09-03T00:46:39.000',
  'closed_date': '2023-09-03T01:16: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': '10310',
  'incident_address': 'FLOYD STREET',
  'street_name': 'FLOYD STREET',
  'cross_street_1': 'FLOYD STREET',
  'cross_street_2': 'RAYMOND PLACE',
  'intersection_street_1': 'FLOYD STREET',
  'intersection_street_2': 'RAYMOND PLACE',
  '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': '2023-09-03T01:16:58.000',
  'community_board': '01 STATEN ISLAND',
  'borough': 'STATEN ISLAND',
  'x_coordinate_state_plane': '949563',
  'y_coordinate_state_plane': '168459',
  'open_data_channel_type': 'PHONE',
  'park_facility_name': 'Unspecified',
  'park_borough': 'STATEN ISLAND',
  'latitude': '40.62898966290883',
  'longitude': '-74.12496394005217',
  'location': {'latitude': '40.62898966290883',
   'longitude': '-74.12496394005217',
   'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
 {'unique_key': '58694841',
  'created_date': '2023-09-03T00:46:36.000',
  'closed_date': '2023-09-03T01: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': '10457',
  'incident_address': '2085 VALENTINE AVENUE',
  'street_name': 'VALENTINE AVENUE',
  'cross_street_1': 'EAST  180 STREET',
  'cross_street_2': 'EAST  181 STREET',
  'intersection_street_1': 'EAST  180 STREET',
  'intersection_street_2': 'EAST  181 STREET',
  'address_type': 'ADDRESS',
  'city': 'BRONX',
  'landmark': 'VALENTINE AVENUE',
  'status': 'Closed',
  'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
  'resol