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#
interactions between systems ↔️
Ways to get data#
Method |
How it happens |
Pros |
Cons |
---|---|---|---|
Bulk |
Download, someone hands you a flash drive, etc. |
Fast, one-time transfer |
Can be large; data gets out of date easily |
APIs |
If organization makes one available |
Usually allows some filtering; can always pull latest-and-greatest |
Requires network connection for every call; higher barrier to entry (reading documentation); subject to availability and performance of API |
Scraping |
Data only available through a web site, PDF, or doc |
You can turn anything into data |
Tedious; fragile |
Scraping#
Common tools:
Please pray to the Demo Gods that these all work and there’s no profanity
Pull table from Wikipedia’s list of countries by area:
import pandas as pd
tables = pd.read_html(
"https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_area",
match="Country / dependency",
)
countries = tables[0]
countries
Unnamed: 0 | Country / dependency | Total in km2 (mi2) | Land in km2 (mi2) | Water in km2 (mi2) | % water | Unnamed: 6 | |
---|---|---|---|---|---|---|---|
0 | – | Earth | 510,072,000 (196,940,000) | 148,940,000 (57,506,000) | 361,132,000 (139,434,000) | 70.8 | NaN |
1 | 1 | Russia | 17,098,246 (6,601,667) | 16,376,870 (6,323,142) | 721,380 (278,530) | 4.2 | [b] |
2 | – | Antarctica | 14,200,000 (5,480,000) | 14,200,000 (5,480,000) | 0 | 0.0 | [c] |
3 | 2 | Canada | 9,984,670 (3,855,100) | 9,093,507 (3,511,021) | 891,163 (344,080) | 8.9 | [d] |
4 | 3/4 [e] | China | 9,596,960 (3,705,410) | 9,326,410 (3,600,950) | 270,550 (104,460) | 2.8 | [f] |
... | ... | ... | ... | ... | ... | ... | ... |
259 | – | Ashmore and Cartier Islands (Australia) | 5.0 (1.9) | 5.0 (1.9) | 0 | 0.0 | [q] |
260 | – | Coral Sea Islands (Australia) | 3.0 (1.2) | 3.0 (1.2) | 0 | 0.0 | [db] |
261 | – | Spratly Islands (disputed) | 2.0 (0.77) | 2.0 (0.77) | 0 | 0.0 | [54] |
262 | 194 | Monaco | 2.0 (0.77) | 2.0 (0.77) | 0 | 0.0 | [dc] |
263 | 195 | Vatican City | 0.49 (0.19) | 0.49 (0.19) | 0 | 0.0 | [dd] |
264 rows × 7 columns
Data is only available if it’s available#
API calls in the wild#
Go to Candidates page on fec.gov.
Right click and
Inspect
.Go to the
Network
tab and reload.Filter to
XHR
.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#
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#
Try it out#
Reload the page.
In the Network tab’s request list:
Filter to Fetch/XHR/AJAX (terminology will differ by browser)
Right-click the API call row.
Click
Open in New Tab
. You will see an error.In the URL bar, replace the
api_key
value withDEMO_KEY
. The URL should therefore containapi_key=DEMO_KEY
.
You should see a big wall of JSON data.
API calls from Python#
Usually one of two ways:
A software development kit (SDK) like sodapy
Abstracts the details away
Not available for all APIs
May have limitations
The
requests
package (nothing to do with 311 requests)
Get Jimmy McMillan’s latest candidacy information:
import requests
jimmy = {
"api_key": "DEMO_KEY",
"q": "Jimmy McMillan",
"sort": "-first_file_date",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=jimmy)
data = response.json()
data
{'api_version': '1.0',
'pagination': {'count': 2,
'is_count_exact': True,
'page': 1,
'pages': 1,
'per_page': 20},
'results': [{'active_through': 2016,
'candidate_id': 'P60016805',
'candidate_inactive': False,
'candidate_status': 'N',
'cycles': [2016, 2018],
'district': '00',
'district_number': 0,
'election_districts': ['00'],
'election_years': [2016],
'federal_funds_flag': False,
'first_file_date': '2015-10-13',
'has_raised_funds': False,
'inactive_election_years': None,
'incumbent_challenge': 'O',
'incumbent_challenge_full': 'Open seat',
'last_f2_date': '2015-10-13',
'last_file_date': '2015-10-13',
'load_date': '2018-02-17T09:16:20',
'name': 'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH',
'office': 'P',
'office_full': 'President',
'party': 'REP',
'party_full': 'REPUBLICAN PARTY',
'state': 'US'},
{'active_through': 2012,
'candidate_id': 'P60003290',
'candidate_inactive': False,
'candidate_status': 'N',
'cycles': [1996, 1998, 2012, 2020, 2022],
'district': '00',
'district_number': 0,
'election_districts': ['00', '00'],
'election_years': [1996, 2012],
'federal_funds_flag': False,
'first_file_date': '1995-03-08',
'has_raised_funds': False,
'inactive_election_years': None,
'incumbent_challenge': 'C',
'incumbent_challenge_full': 'Challenger',
'last_f2_date': '2011-02-07',
'last_file_date': '2011-02-07',
'load_date': '2021-12-08T06:50:50',
'name': 'MCMILLAN, JIMMY (AKA) JAMES ',
'office': 'P',
'office_full': 'President',
'party': 'REP',
'party_full': 'REPUBLICAN PARTY',
'state': 'US'}]}
Retrieving nested data#
data["results"][0]["name"]
'MCMILLAN, JIMMY "RENT IS TOO DAMN HIGH'
In-class exercise#
Let’s do this together.
Open a new notebook in JupyterHub, and geocode an address from Python using the Nominatim API. Print out the latitude and longitude. Any address is fine:
Your own
This building
etc.
Per their policies, we’ll need to specify a custom User Agent. Include the following in the call to requests.get()
:
headers={"user-agent": "Python in-class exercise"}
Hint: Try getting the API call working in your browser URL bar before calling it in Python.
Reading into a DataFrame#
candidates_with_funds = {
"api_key": "DEMO_KEY",
"has_raised_funds": "true",
}
response = requests.get("https://api.open.fec.gov/v1/candidates/", params=candidates_with_funds)
data = response.json()
candidates = data["results"]
pd.DataFrame(candidates)
active_through | candidate_id | candidate_inactive | candidate_status | cycles | district | district_number | election_districts | election_years | federal_funds_flag | ... | incumbent_challenge_full | last_f2_date | last_file_date | load_date | name | office | office_full | party | party_full | state | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | 2022 | H2CO07170 | False | P | [2022, 2024] | 07 | 7 | [07] | [2022] | False | ... | Open seat | 2022-08-10 | 2022-08-10 | 2023-03-09T10:16:03 | AADLAND, ERIK | H | House | REP | REPUBLICAN PARTY | CO |
1 | 2022 | H2UT03280 | False | C | [2022] | 03 | 3 | [03] | [2022] | False | ... | Challenger | 2022-03-21 | 2022-03-21 | 2022-04-13T21:10:09 | AALDERS, TIM | H | House | REP | REPUBLICAN PARTY | UT |
2 | 2018 | S2UT00229 | False | P | [2012, 2014, 2016, 2018, 2020] | 00 | 0 | [00, 00] | [2012, 2018] | False | ... | Open seat | 2018-04-23 | 2018-04-23 | 2019-03-27T16:02:41 | AALDERS, TIMOTHY NOEL | S | Senate | CON | CONSTITUTION PARTY | UT |
3 | 2020 | H0TX22260 | False | C | [2020] | 22 | 22 | [22] | [2020] | False | ... | Open seat | 2019-10-17 | 2019-10-17 | 2020-03-18T21:13:37 | AALOORI, BANGAR REDDY | H | House | REP | REPUBLICAN PARTY | TX |
4 | 1978 | H6PA16106 | False | P | [1976, 1978, 1980] | 16 | 16 | [16, 16] | [1976, 1978] | False | ... | None | 1978-07-05 | 1978-07-05 | 2002-03-30T00:00:00 | AAMODT, NORMAN O. | H | House | REP | REPUBLICAN PARTY | PA |
5 | 2012 | H2CA01110 | False | P | [2012, 2014, 2016] | 01 | 1 | [01] | [2012] | False | ... | Challenger | 2012-02-22 | 2012-02-22 | 2013-04-26T09:04:30 | AANESTAD, SAMUEL | H | House | REP | REPUBLICAN PARTY | CA |
6 | 2018 | H8CO06237 | False | C | [2018] | 06 | 6 | [06] | [2018] | False | ... | Challenger | 2017-04-26 | 2017-04-26 | 2017-08-01T20:57:28 | AARESTAD, DAVID | H | House | DEM | DEMOCRATIC PARTY | CO |
7 | 2008 | P80002926 | False | N | [2006, 2008, 2010, 2012, 2014, 2016] | 00 | 0 | [00] | [2008] | False | ... | Open seat | 2007-03-13 | 2007-03-13 | 2016-11-17T06:10:48 | AARON, LAURA DAVIS | P | President | DEM | DEMOCRATIC PARTY | US |
8 | 2024 | H4OR05312 | False | C | [2024] | 05 | 5 | [05] | [2024] | False | ... | Challenger | 2023-07-24 | 2023-07-24 | 2023-10-16T21:03:02 | AASEN, ANDREW J | H | House | NON | NON-PARTY | OR |
9 | 2024 | H2CA30291 | False | N | [2022, 2024] | 32 | 32 | [32, 32] | [2022, 2024] | False | ... | Challenger | 2022-07-15 | 2022-07-15 | 2023-01-12T22:24:01 | AAZAMI, SHERVIN | H | House | DEM | DEMOCRATIC PARTY | CA |
10 | 2022 | H2MN07162 | False | P | [2022, 2024] | 07 | 7 | [07] | [2022] | False | ... | Challenger | 2022-06-06 | 2022-06-06 | 2023-03-09T10:16:03 | ABAHSAIN, JILL | H | House | DFL | DEMOCRATIC-FARMER-LABOR | MN |
11 | 2000 | H0MA01024 | False | P | [2000, 2002, 2004] | 01 | 1 | [01] | [2000] | False | ... | Challenger | 2000-02-02 | 2000-02-02 | 2002-04-12T00:00:00 | ABAIR, PETER JON | H | House | REP | REPUBLICAN PARTY | MA |
12 | 2008 | H6NJ05155 | False | C | [2006, 2008] | 05 | 5 | [05, 05] | [2006, 2008] | False | ... | Challenger | 2007-06-05 | 2007-06-05 | 2009-04-29T00:00:00 | ABATE, CAMILLE M | H | House | DEM | DEMOCRATIC PARTY | NJ |
13 | 1992 | H2NJ12036 | False | P | [1992, 1994, 1996, 1998] | 12 | 12 | [12] | [1992] | False | ... | Challenger | 1992-04-15 | 1992-04-15 | 2002-04-03T00:00:00 | ABATE, FRANK G | H | House | DEM | DEMOCRATIC PARTY | NJ |
14 | 1990 | H0IA03071 | False | C | [1990] | 03 | 3 | [03] | [1990] | False | ... | Challenger | 1990-05-01 | 1990-05-01 | 2002-03-30T00:00:00 | ABBAS, JEFFREY LYN | H | House | REP | REPUBLICAN PARTY | IA |
15 | 2024 | H4CA32152 | False | N | [2024] | 32 | 32 | [32] | [2024] | False | ... | Challenger | 2024-02-07 | 2024-02-07 | 2024-02-08T21:02:32 | ABBITT, DAVE | H | House | DEM | DEMOCRATIC PARTY | CA |
16 | 1994 | H4TX15043 | False | C | [1994] | 15 | 15 | [15] | [1994] | False | ... | Challenger | 1994-01-14 | 1994-01-14 | 2002-03-30T00:00:00 | ABBOTT, BONNIE | H | House | REP | REPUBLICAN PARTY | TX |
17 | 1996 | H6SD00077 | False | P | [1996, 1998] | 01 | 1 | [00] | [1996] | False | ... | Challenger | 1995-10-02 | 1995-10-02 | 2002-04-03T00:00:00 | ABBOTT, JAMES W | H | House | DEM | DEMOCRATIC PARTY | SD |
18 | 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 |
19 | 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 |
20 rows × 24 columns
Back to 311 data#
From NYC Open Data Portal dataset page, click Export
-> SODA API
-> API Docs
.
Most open data sites have APIs#
Often built on platforms that provide them, e.g.
Example: 311 requests from the last week#
The dates shown are from the last time the code was run.
from datetime import datetime, timedelta
now = datetime.utcnow()
now
datetime.datetime(2024, 9, 21, 2, 2, 27, 134469)
start = now - timedelta(weeks=1)
start
datetime.datetime(2024, 9, 14, 2, 2, 27, 134469)
start.isoformat()
'2024-09-14T02:02:27.134469'
Using the Socrata query language (SoQL):
data_id = "erm2-nwe9"
in_past_week = {
"$where": f"created_date > '{start.isoformat()}'",
}
url = f"https://data.cityofnewyork.us/resource/{data_id}.json"
response = requests.get(url, params=in_past_week)
data = response.json()
data
[{'unique_key': '62488881',
'created_date': '2024-09-19T01:57:46.000',
'closed_date': '2024-09-19T01:57:46.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '11429',
'intersection_street_1': '112 AVENUE',
'intersection_street_2': '212 STREET',
'address_type': 'INTERSECTION',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Closed',
'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
'resolution_action_updated_date': '2024-09-19T01:57:46.000',
'community_board': '13 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1055128',
'y_coordinate_state_plane': '196487',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.705704312883974',
'longitude': '-73.74435965803929',
'location': {'latitude': '40.705704312883974',
'longitude': '-73.74435965803929',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484266',
'created_date': '2024-09-19T01:56:37.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '11413',
'incident_address': 'NORTH CONDUIT AVENUE',
'street_name': 'NORTH CONDUIT AVENUE',
'cross_street_1': 'BELT PARKWAY EXIT 21 WESTBOUND',
'cross_street_2': 'SPRINGFIELD BOULEVARD',
'address_type': 'BLOCKFACE',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
'resolution_action_updated_date': '2024-09-19T01:56:37.000',
'community_board': '12 QUEENS',
'borough': 'QUEENS',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS'},
{'unique_key': '62485981',
'created_date': '2024-09-19T01:55:49.000',
'closed_date': '2024-09-19T01:55:49.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '11433',
'intersection_street_1': 'GUY R BREWER BOULEVARD',
'intersection_street_2': 'SAYRES AVENUE',
'address_type': 'INTERSECTION',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Closed',
'resolution_description': 'The Department of Transportation determined that this complaint is a duplicate of a previously filed complaint. The original complaint is being addressed.',
'resolution_action_updated_date': '2024-09-19T01:55:49.000',
'community_board': '12 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1043571',
'y_coordinate_state_plane': '190553',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68950193985701',
'longitude': '-73.78609513085054',
'location': {'latitude': '40.68950193985701',
'longitude': '-73.78609513085054',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490144',
'created_date': '2024-09-19T01:54:11.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Pothole',
'incident_zip': '11433',
'incident_address': 'GUY R BREWER BOULEVARD',
'street_name': 'GUY R BREWER BOULEVARD',
'cross_street_1': 'LINDEN BOULEVARD',
'cross_street_2': 'SAYRES AVENUE',
'address_type': 'BLOCKFACE',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'resolution_description': 'The Department of Transportation referred this complaint to the appropriate Maintenance Unit for repair.',
'resolution_action_updated_date': '2024-09-19T01:54:11.000',
'community_board': '12 QUEENS',
'borough': 'QUEENS',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS'},
{'unique_key': '62485577',
'created_date': '2024-09-19T01:36:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'status': 'Unspecified',
'community_board': '0 Unspecified',
'borough': 'Unspecified',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'Unspecified'},
{'unique_key': '62489330',
'created_date': '2024-09-19T01:36:36.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11235',
'incident_address': '2727 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'VOORHIES AVENUE',
'cross_street_2': 'HARKNESS AVENUE',
'intersection_street_1': 'VOORHIES AVENUE',
'intersection_street_2': 'HARKNESS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'Unspecified',
'community_board': '15 BROOKLYN',
'bbl': '3088390053',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003233',
'y_coordinate_state_plane': '153325',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58749751872596',
'longitude': '-73.93165404827961',
'location': {'latitude': '40.58749751872596',
'longitude': '-73.93165404827961',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487531',
'created_date': '2024-09-19T01:34:44.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Sign - Missing',
'descriptor': 'Stop',
'location_type': 'Street',
'incident_zip': '10312',
'incident_address': '260 ARDEN AVENUE',
'street_name': 'ARDEN AVENUE',
'cross_street_1': 'NEDRA LANE',
'cross_street_2': 'CORRELL AVENUE',
'intersection_street_1': 'NEDRA LANE',
'intersection_street_2': 'CORRELL AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'ARDEN AVENUE',
'status': 'In Progress',
'community_board': '03 STATEN ISLAND',
'bbl': '5060250035',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '930961',
'y_coordinate_state_plane': '140848',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.55311081421668',
'longitude': '-74.191761868754',
'location': {'latitude': '40.55311081421668',
'longitude': '-74.191761868754',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483676',
'created_date': '2024-09-19T01:34:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10468',
'incident_address': '2871 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'MINERVA PLACE',
'cross_street_2': 'EAST 199 STREET',
'intersection_street_1': 'MINERVA PLACE',
'intersection_street_2': 'EAST 199 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2033190113',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014574',
'y_coordinate_state_plane': '256457',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87053761972336',
'longitude': '-73.89035744889823',
'location': {'latitude': '40.87053761972336',
'longitude': '-73.89035744889823',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484935',
'created_date': '2024-09-19T01:34:26.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Graffiti',
'descriptor': 'Graffiti',
'location_type': 'Comercial',
'incident_zip': '10027',
'incident_address': '635 WEST 125 STREET',
'street_name': 'WEST 125 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'facility_type': 'N/A',
'status': 'Open',
'resolution_description': 'The graffiti has been reported. The property owner will be notified that the City will remove the graffiti after 35 days unless the property owner requests to keep the graffiti or remove it himself or herself.',
'resolution_action_updated_date': '2024-09-19T01:34:26.000',
'community_board': '09 MANHATTAN',
'bbl': '1019960014',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '995429',
'y_coordinate_state_plane': '236992',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.817156914078396',
'longitude': '-73.95961249694449',
'location': {'latitude': '40.817156914078396',
'longitude': '-73.95961249694449',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486627',
'created_date': '2024-09-19T01:32: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': '11212',
'incident_address': '420 WATKINS STREET',
'street_name': 'WATKINS STREET',
'cross_street_1': 'LIVONIA AVENUE',
'cross_street_2': 'RIVERDALE AVENUE',
'intersection_street_1': 'LIVONIA AVENUE',
'intersection_street_2': 'RIVERDALE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WATKINS STREET',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2024-09-19T01:48:18.000',
'community_board': '16 BROOKLYN',
'bbl': '3035900050',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1010339',
'y_coordinate_state_plane': '180567',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66225298505151',
'longitude': '-73.90596449782946',
'location': {'latitude': '40.66225298505151',
'longitude': '-73.90596449782946',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488042',
'created_date': '2024-09-19T01:32:51.000',
'closed_date': '2024-09-19T01:35:32.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': '3675 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 152 STREET',
'cross_street_2': 'WEST 153 STREET',
'intersection_street_1': 'WEST 152 STREET',
'intersection_street_2': 'WEST 153 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:35:35.000',
'community_board': '09 MANHATTAN',
'bbl': '1020990029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998871',
'y_coordinate_state_plane': '242017',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'location': {'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492329',
'created_date': '2024-09-19T01:32:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': '2019 EAST 55 STREET',
'street_name': 'EAST 55 STREET',
'cross_street_1': 'AVENUE T',
'cross_street_2': 'AVENUE U',
'intersection_street_1': 'AVENUE T',
'intersection_street_2': 'AVENUE U',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 55 STREET',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'bbl': '3085470037',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006213',
'y_coordinate_state_plane': '162512',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61270707867921',
'longitude': '-73.92089506105053',
'location': {'latitude': '40.61270707867921',
'longitude': '-73.92089506105053',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492641',
'created_date': '2024-09-19T01:32:12.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10021',
'incident_address': '310 EAST 71 STREET',
'street_name': 'EAST 71 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 71 STREET',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1014450040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '995789',
'y_coordinate_state_plane': '219043',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.76789129628345',
'longitude': '-73.95834272665181',
'location': {'latitude': '40.76789129628345',
'longitude': '-73.95834272665181',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487607',
'created_date': '2024-09-19T01:31:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10453',
'incident_address': '2205 WALTON AVENUE',
'street_name': 'WALTON 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': 'WALTON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:12:35.000',
'community_board': '05 BRONX',
'bbl': '2031860027',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010826',
'y_coordinate_state_plane': '251348',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.856527048529856',
'longitude': '-73.9039293483109',
'location': {'latitude': '40.856527048529856',
'longitude': '-73.9039293483109',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483238',
'created_date': '2024-09-19T01:31:44.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11235',
'incident_address': '2701 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'VOORHIES AVENUE',
'cross_street_2': 'HARKNESS AVENUE',
'intersection_street_1': 'VOORHIES AVENUE',
'intersection_street_2': 'HARKNESS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3088390001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003217',
'y_coordinate_state_plane': '153442',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.587818694552894',
'longitude': '-73.93171132589255',
'location': {'latitude': '40.587818694552894',
'longitude': '-73.93171132589255',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485547',
'created_date': '2024-09-19T01:31:32.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': '7 BRIGHTON 10 TERRACE',
'street_name': 'BRIGHTON 10 TERRACE',
'cross_street_1': 'CONEY ISLAND AVENUE',
'cross_street_2': 'BRIGHTON 10 STREET',
'intersection_street_1': 'CONEY ISLAND AVENUE',
'intersection_street_2': 'BRIGHTON 10 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHTON 10 TERRACE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:48:22.000',
'community_board': '13 BROOKLYN',
'bbl': '3087030081',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995490',
'y_coordinate_state_plane': '150897',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58084634168071',
'longitude': '-73.9595357981729',
'location': {'latitude': '40.58084634168071',
'longitude': '-73.9595357981729',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493338',
'created_date': '2024-09-19T01:31:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '184 ETNA STREET',
'street_name': 'ETNA STREET',
'cross_street_1': 'RICHMOND STREET',
'cross_street_2': 'CHESTNUT STREET',
'intersection_street_1': 'RICHMOND STREET',
'intersection_street_2': 'CHESTNUT STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ETNA STREET',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'bbl': '3041150026',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1018413',
'y_coordinate_state_plane': '189241',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68603366963854',
'longitude': '-73.87681854478991',
'location': {'latitude': '40.68603366963854',
'longitude': '-73.87681854478991',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488521',
'created_date': '2024-09-19T01:29:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:53:22.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489499',
'created_date': '2024-09-19T01:27:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11412',
'incident_address': '198-12 111 AVENUE',
'street_name': '111 AVENUE',
'cross_street_1': '198 STREET',
'cross_street_2': '199 STREET',
'intersection_street_1': '198 STREET',
'intersection_street_2': '199 STREET',
'address_type': 'ADDRESS',
'city': 'SAINT ALBANS',
'landmark': '111 AVENUE',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4109560006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051325',
'y_coordinate_state_plane': '195728',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70365069000104',
'longitude': '-73.75808367661952',
'location': {'latitude': '40.70365069000104',
'longitude': '-73.75808367661952',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486639',
'created_date': '2024-09-19T01:26: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': '11226',
'incident_address': '95 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': '2024-09-19T01:57:15.000',
'community_board': '17 BROOKLYN',
'bbl': '3050840097',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996734',
'y_coordinate_state_plane': '176957',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.652373963316116',
'longitude': '-73.95500919151641',
'location': {'latitude': '40.652373963316116',
'longitude': '-73.95500919151641',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486549',
'created_date': '2024-09-19T01:26: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': '11226',
'incident_address': '95 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': '2024-09-19T01:57:11.000',
'community_board': '17 BROOKLYN',
'bbl': '3050840097',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996734',
'y_coordinate_state_plane': '176957',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.652373963316116',
'longitude': '-73.95500919151641',
'location': {'latitude': '40.652373963316116',
'longitude': '-73.95500919151641',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483766',
'created_date': '2024-09-19T01:25:15.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': '1155 WALTON AVENUE',
'street_name': 'WALTON AVENUE',
'cross_street_1': 'MCCLELLAN STREET',
'cross_street_2': 'TUDOR PLACE',
'intersection_street_1': 'MCCLELLAN STREET',
'intersection_street_2': 'TUDOR PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WALTON AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2024790042',
'borough': 'BRONX',
'x_coordinate_state_plane': '1006332',
'y_coordinate_state_plane': '243079',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.833843464849615',
'longitude': '-73.92020211028505',
'location': {'latitude': '40.833843464849615',
'longitude': '-73.92020211028505',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484654',
'created_date': '2024-09-19T01:24: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': '10312',
'incident_address': '267 ROLLING HILL GREEN',
'street_name': 'ROLLING HILL GREEN',
'cross_street_1': 'TULIP CIRCLE',
'cross_street_2': 'SUTTON PLACE',
'intersection_street_1': 'TULIP CIRCLE',
'intersection_street_2': 'SUTTON PLACE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'ROLLING HILL GREEN',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:58:25.000',
'community_board': '03 STATEN ISLAND',
'bbl': '5060177502',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '930417',
'y_coordinate_state_plane': '140266',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'vehicle_type': 'Car',
'latitude': '40.551510053698074',
'longitude': '-74.1937148292423',
'location': {'latitude': '40.551510053698074',
'longitude': '-74.1937148292423',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490516',
'created_date': '2024-09-19T01:24:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:53:08.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491990',
'created_date': '2024-09-19T01:23:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10467',
'incident_address': '3365 CRUGER AVENUE',
'street_name': 'CRUGER AVENUE',
'cross_street_1': 'BARTHOLDI STREET',
'cross_street_2': 'MAGENTA STREET',
'intersection_street_1': 'BARTHOLDI STREET',
'intersection_street_2': 'MAGENTA STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CRUGER AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2046290020',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021294',
'y_coordinate_state_plane': '257914',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87451098880618',
'longitude': '-73.86605190948474',
'location': {'latitude': '40.87451098880618',
'longitude': '-73.86605190948474',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491640',
'created_date': '2024-09-19T01:23:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:52:39.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Other',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487590',
'created_date': '2024-09-19T01:23:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Detached Trailer',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '22-60 NAMEOKE STREET',
'street_name': 'NAMEOKE STREET',
'cross_street_1': 'CHANDLER STREET',
'cross_street_2': 'MCBRIDE STREET',
'intersection_street_1': 'CHANDLER STREET',
'intersection_street_2': 'MCBRIDE STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NAMEOKE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:06:15.000',
'community_board': '14 QUEENS',
'bbl': '4156540005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051842',
'y_coordinate_state_plane': '161087',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'location': {'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493838',
'created_date': '2024-09-19T01:22:40.000',
'closed_date': '2024-09-19T01:31:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11225',
'incident_address': '27 CHESTER COURT',
'street_name': 'CHESTER COURT',
'cross_street_1': 'FLATBUSH AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'FLATBUSH AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CHESTER COURT',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:31:17.000',
'community_board': '09 BROOKLYN',
'bbl': '3050260171',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995002',
'y_coordinate_state_plane': '179120',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65831319682187',
'longitude': '-73.96124765818176',
'location': {'latitude': '40.65831319682187',
'longitude': '-73.96124765818176',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489980',
'created_date': '2024-09-19T01:22:34.000',
'closed_date': '2024-09-19T01:34: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': '10032',
'incident_address': '540 WEST 159 STREET',
'street_name': 'WEST 159 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 159 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:34:45.000',
'community_board': '12 MANHATTAN',
'bbl': '1021170016',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000220',
'y_coordinate_state_plane': '243348',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.8345949591979',
'longitude': '-73.94228844266573',
'location': {'latitude': '40.8345949591979',
'longitude': '-73.94228844266573',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488489',
'created_date': '2024-09-19T01:22: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': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:52:26.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492682',
'created_date': '2024-09-19T01:22:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '22-60 NAMEOKE AVENUE',
'street_name': 'NAMEOKE AVENUE',
'cross_street_1': 'CHANDLER STREET',
'cross_street_2': 'MCBRIDE STREET',
'intersection_street_1': 'CHANDLER STREET',
'intersection_street_2': 'MCBRIDE STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NAMEOKE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:05:08.000',
'community_board': '14 QUEENS',
'bbl': '4156540005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051842',
'y_coordinate_state_plane': '161087',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'location': {'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491618',
'created_date': '2024-09-19T01:22:09.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Urinating in Public',
'descriptor': 'N/A',
'location_type': 'Residential Building/House',
'incident_zip': '11691',
'incident_address': '13-06 BAYPORT PLACE',
'street_name': 'BAYPORT PLACE',
'cross_street_1': 'CENTRAL AVENUE',
'cross_street_2': 'AUGUSTINA AVENUE',
'intersection_street_1': 'CENTRAL AVENUE',
'intersection_street_2': 'AUGUSTINA AVENUE',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'BAYPORT PLACE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:08:04.000',
'community_board': '14 QUEENS',
'bbl': '4155360001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1053335',
'y_coordinate_state_plane': '160162',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.60601473690103',
'longitude': '-73.75119867517188',
'location': {'latitude': '40.60601473690103',
'longitude': '-73.75119867517188',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489331',
'created_date': '2024-09-19T01:22:05.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11235',
'incident_address': '2472 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'AVENUE X',
'cross_street_2': 'AVENUE Y',
'intersection_street_1': 'AVENUE X',
'intersection_street_2': 'AVENUE Y',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074290036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002925',
'y_coordinate_state_plane': '155412',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59322656874012',
'longitude': '-73.93275719587072',
'location': {'latitude': '40.59322656874012',
'longitude': '-73.93275719587072',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492688',
'created_date': '2024-09-19T01:21:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10301',
'incident_address': '16 PAUW STREET',
'street_name': 'PAUW STREET',
'cross_street_1': 'JERSEY STREET',
'cross_street_2': 'YORK AVENUE',
'intersection_street_1': 'JERSEY STREET',
'intersection_street_2': 'YORK AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'PAUW STREET',
'status': 'In Progress',
'community_board': '01 STATEN ISLAND',
'bbl': '5000470058',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '959913',
'y_coordinate_state_plane': '172609',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.64041500613405',
'longitude': '-74.08769186199888',
'location': {'latitude': '40.64041500613405',
'longitude': '-74.08769186199888',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488013',
'created_date': '2024-09-19T01:21:05.000',
'closed_date': '2024-09-19T01:22:23.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': '11375',
'incident_address': '67-09 AUSTIN STREET',
'street_name': 'AUSTIN STREET',
'cross_street_1': '67 AVENUE',
'cross_street_2': '67 ROAD',
'intersection_street_1': '67 AVENUE',
'intersection_street_2': '67 ROAD',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': 'AUSTIN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:22:27.000',
'community_board': '06 QUEENS',
'bbl': '4031680108',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024386',
'y_coordinate_state_plane': '203074',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.723976875488944',
'longitude': '-73.855199298862',
'location': {'latitude': '40.723976875488944',
'longitude': '-73.855199298862',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483761',
'created_date': '2024-09-19T01:20:58.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10454',
'incident_address': '340 BEEKMAN AVENUE',
'street_name': 'BEEKMAN AVENUE',
'cross_street_1': 'OAK TERRACE',
'cross_street_2': 'BEECH TERRACE',
'intersection_street_1': 'OAK TERRACE',
'intersection_street_2': 'BEECH TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BEEKMAN AVENUE',
'status': 'In Progress',
'community_board': '01 BRONX',
'bbl': '2025540010',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008107',
'y_coordinate_state_plane': '233961',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.80881252683152',
'longitude': '-73.9138202000098',
'location': {'latitude': '40.80881252683152',
'longitude': '-73.9138202000098',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483917',
'created_date': '2024-09-19T01:20:34.000',
'closed_date': '2024-09-19T01:35: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': '10031',
'incident_address': '3675 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 152 STREET',
'cross_street_2': 'WEST 153 STREET',
'intersection_street_1': 'WEST 152 STREET',
'intersection_street_2': 'WEST 153 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:35:50.000',
'community_board': '09 MANHATTAN',
'bbl': '1020990029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998871',
'y_coordinate_state_plane': '242017',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'location': {'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485572',
'created_date': '2024-09-19T01:18:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '10128',
'incident_address': '170 EAST END AVENUE',
'street_name': 'EAST END AVENUE',
'cross_street_1': 'CARL SCHURZ PARK PATH',
'cross_street_2': 'EAST 88 STREET',
'intersection_street_1': 'CARL SCHURZ PARK PATH',
'intersection_street_2': 'EAST 88 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST END AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:34:56.000',
'community_board': '08 MANHATTAN',
'bbl': '1015847501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999766',
'y_coordinate_state_plane': '222012',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77603433855194',
'longitude': '-73.94397839396736',
'location': {'latitude': '40.77603433855194',
'longitude': '-73.94397839396736',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489378',
'created_date': '2024-09-19T01:18:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11225',
'incident_address': '562 NEW YORK AVENUE',
'street_name': 'NEW YORK AVENUE',
'cross_street_1': 'MAPLE STREET',
'cross_street_2': 'MIDWOOD STREET',
'intersection_street_1': 'MAPLE STREET',
'intersection_street_2': 'MIDWOOD STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NEW YORK AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:13.000',
'community_board': '09 BROOKLYN',
'bbl': '3047960039',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998746',
'y_coordinate_state_plane': '180064',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.660898930805445',
'longitude': '-73.94775151256',
'location': {'latitude': '40.660898930805445',
'longitude': '-73.94775151256',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491779',
'created_date': '2024-09-19T01:17:51.000',
'closed_date': '2024-09-19T01:34:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10032',
'incident_address': '535 WEST 163 STREET',
'street_name': 'WEST 163 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 163 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:34:32.000',
'community_board': '12 MANHATTAN',
'bbl': '1021220127',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000663',
'y_coordinate_state_plane': '244298',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.83720162164926',
'longitude': '-73.94068522810484',
'location': {'latitude': '40.83720162164926',
'longitude': '-73.94068522810484',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487007',
'created_date': '2024-09-19T01:17:39.000',
'closed_date': '2024-09-19T01:19:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '35 HILLSIDE AVENUE',
'street_name': 'HILLSIDE AVENUE',
'cross_street_1': 'BOGARDUS PLACE',
'cross_street_2': 'ELLWOOD STREET',
'intersection_street_1': 'BOGARDUS PLACE',
'intersection_street_2': 'ELLWOOD STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'HILLSIDE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:19:27.000',
'community_board': '12 MANHATTAN',
'bbl': '1021700112',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003705',
'y_coordinate_state_plane': '252082',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'location': {'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488377',
'created_date': '2024-09-19T01:17:20.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2124 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'GERRITSEN AVENUE',
'cross_street_2': 'AVENUE V',
'intersection_street_1': 'GERRITSEN AVENUE',
'intersection_street_2': 'AVENUE V',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3073700019',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002537',
'y_coordinate_state_plane': '158038',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60043521586024',
'longitude': '-73.93414715309122',
'location': {'latitude': '40.60043521586024',
'longitude': '-73.93414715309122',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493070',
'created_date': '2024-09-19T01:15:27.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Store/Commercial',
'incident_zip': '10019',
'incident_address': '745 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 49 STREET',
'cross_street_2': 'WEST 50 STREET',
'intersection_street_1': 'WEST 49 STREET',
'intersection_street_2': 'WEST 50 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T01:19:12.000',
'community_board': '05 MANHATTAN',
'bbl': '1010020001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988790',
'y_coordinate_state_plane': '216386',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.760604881971254',
'longitude': '-73.98361180988199',
'location': {'latitude': '40.760604881971254',
'longitude': '-73.98361180988199',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490323',
'created_date': '2024-09-19T01:14:28.000',
'closed_date': '2024-09-19T01:26:24.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '11207',
'incident_address': '130 JAMAICA AVENUE',
'street_name': 'JAMAICA AVENUE',
'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': 'JAMAICA AVENUE',
'status': 'Closed',
'resolution_description': 'The Department of Homeless Services did not have enough information to act on your request.',
'resolution_action_updated_date': '2024-09-19T01:26:24.000',
'community_board': '05 BROOKLYN',
'bbl': '3036620022',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1013263',
'y_coordinate_state_plane': '186708',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.679099545797875',
'longitude': '-73.89539877556126',
'location': {'latitude': '40.679099545797875',
'longitude': '-73.89539877556126',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484585',
'created_date': '2024-09-19T01:14:19.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Urinating in Public',
'descriptor': 'N/A',
'location_type': 'Residential Building/House',
'incident_zip': '10002',
'incident_address': '107 CLINTON STREET',
'street_name': 'CLINTON STREET',
'cross_street_1': 'RIVINGTON STREET',
'cross_street_2': 'DELANCEY STREET',
'intersection_street_1': 'RIVINGTON STREET',
'intersection_street_2': 'DELANCEY STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'CLINTON STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:17:18.000',
'community_board': '03 MANHATTAN',
'bbl': '1003480032',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988265',
'y_coordinate_state_plane': '200949',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71823440398107',
'longitude': '-73.98551613359581',
'location': {'latitude': '40.71823440398107',
'longitude': '-73.98551613359581',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486766',
'created_date': '2024-09-19T01:13:36.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Encampment',
'descriptor': 'N/A',
'location_type': 'Park/Playground',
'incident_zip': '10169',
'incident_address': '230 PARK AVENUE',
'street_name': 'PARK AVENUE',
'cross_street_1': 'EAST 45 STREET',
'cross_street_2': 'EAST 46 STREET',
'intersection_street_1': 'EAST 45 STREET',
'intersection_street_2': 'EAST 46 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'PARK AVENUE',
'status': 'In Progress',
'community_board': '05 MANHATTAN',
'bbl': '1013000001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990913',
'y_coordinate_state_plane': '214165',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'N/A',
'park_borough': 'MANHATTAN',
'latitude': '40.75450745921105',
'longitude': '-73.97595054706579',
'location': {'latitude': '40.75450745921105',
'longitude': '-73.97595054706579',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491967',
'created_date': '2024-09-19T01:13:36.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': '125 MARCY PLACE',
'street_name': 'MARCY PLACE',
'cross_street_1': 'WALTON AVENUE',
'cross_street_2': 'GRAND CONCOURSE',
'intersection_street_1': 'WALTON AVENUE',
'intersection_street_2': 'GRAND CONCOURSE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MARCY PLACE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028410083',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007484',
'y_coordinate_state_plane': '244596',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83800423364504',
'longitude': '-73.91603386694314',
'location': {'latitude': '40.83800423364504',
'longitude': '-73.91603386694314',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491686',
'created_date': '2024-09-19T01:13:18.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Store/Commercial',
'incident_zip': '10019',
'incident_address': '745 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 49 STREET',
'cross_street_2': 'WEST 50 STREET',
'intersection_street_1': 'WEST 49 STREET',
'intersection_street_2': 'WEST 50 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T01:15:28.000',
'community_board': '05 MANHATTAN',
'bbl': '1010020001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988790',
'y_coordinate_state_plane': '216386',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.760604881971254',
'longitude': '-73.98361180988199',
'location': {'latitude': '40.760604881971254',
'longitude': '-73.98361180988199',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493035',
'created_date': '2024-09-19T01:12:33.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '282 11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': 'WEST 28 STREET',
'cross_street_2': 'WEST 29 STREET',
'intersection_street_1': 'WEST 28 STREET',
'intersection_street_2': 'WEST 29 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '11 AVENUE',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'bbl': '1007000009',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982963',
'y_coordinate_state_plane': '213291',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '282 11 AVENUE, MANHATTAN (NEW YORK), NY, 10001',
'latitude': '40.75211096770169',
'longitude': '-74.00464513463317',
'location': {'latitude': '40.75211096770169',
'longitude': '-74.00464513463317',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489500',
'created_date': '2024-09-19T01:12: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': '10038',
'incident_address': '39 PARK ROW',
'street_name': 'PARK ROW',
'cross_street_1': 'BEEKMAN STREET',
'cross_street_2': 'CENTRE STREET',
'intersection_street_1': 'BEEKMAN STREET',
'intersection_street_2': 'CENTRE STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'PARK ROW',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:45:12.000',
'community_board': '01 MANHATTAN',
'bbl': '1001010002',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982432',
'y_coordinate_state_plane': '198617',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.711834345767514',
'longitude': '-74.00655769383572',
'location': {'latitude': '40.711834345767514',
'longitude': '-74.00655769383572',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485549',
'created_date': '2024-09-19T01:11:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '10003',
'incident_address': '314 EAST 9 STREET',
'street_name': 'EAST 9 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 9 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:53:29.000',
'community_board': '03 MANHATTAN',
'bbl': '1004500012',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987948',
'y_coordinate_state_plane': '204844',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.728925373633764',
'longitude': '-73.98665755146082',
'location': {'latitude': '40.728925373633764',
'longitude': '-73.98665755146082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487019',
'created_date': '2024-09-19T01:11:47.000',
'closed_date': '2024-09-19T01:36:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10031',
'incident_address': '3675 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 152 STREET',
'cross_street_2': 'WEST 153 STREET',
'intersection_street_1': 'WEST 152 STREET',
'intersection_street_2': 'WEST 153 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:36:20.000',
'community_board': '09 MANHATTAN',
'bbl': '1020990029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998871',
'y_coordinate_state_plane': '242017',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'location': {'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492338',
'created_date': '2024-09-19T01:11:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11230',
'incident_address': '1827 CONEY ISLAND AVENUE',
'street_name': 'CONEY ISLAND AVENUE',
'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': 'CONEY ISLAND AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:52:06.000',
'community_board': '14 BROOKLYN',
'bbl': '3067490058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994535',
'y_coordinate_state_plane': '162656',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61312357962291',
'longitude': '-73.96295591280976',
'location': {'latitude': '40.61312357962291',
'longitude': '-73.96295591280976',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487591',
'created_date': '2024-09-19T01:11:12.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': '11385',
'incident_address': '16 CHARLOTTE STREET',
'street_name': 'CHARLOTTE STREET',
'cross_street_1': 'FLUSHING AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'FLUSHING AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'CHARLOTTE STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4033940086',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1006762',
'y_coordinate_state_plane': '198585',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.71171806041751',
'longitude': '-73.91879726782693',
'location': {'latitude': '40.71171806041751',
'longitude': '-73.91879726782693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492713',
'created_date': '2024-09-19T01:10:53.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Yard',
'incident_zip': '10452',
'incident_address': '957 WOODCREST AVENUE',
'street_name': 'WOODCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483784',
'created_date': '2024-09-19T01:09:58.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': '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': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:50:56.000',
'community_board': 'Unspecified MANHATTAN',
'borough': 'MANHATTAN',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN'},
{'unique_key': '62489226',
'created_date': '2024-09-19T01:09:04.000',
'closed_date': '2024-09-19T01:26:18.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10024',
'incident_address': 'WEST 91 STREET',
'street_name': 'WEST 91 STREET',
'cross_street_1': 'CENTRAL PARK WEST',
'cross_street_2': 'JOHN L NELSON WAY',
'intersection_street_1': 'CENTRAL PARK WEST',
'intersection_street_2': 'JOHN L NELSON 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': '2024-09-19T01:26:22.000',
'community_board': 'Unspecified MANHATTAN',
'borough': 'MANHATTAN',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN'},
{'unique_key': '62487484',
'created_date': '2024-09-19T01:08:58.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': 'AVENUE N',
'street_name': 'AVENUE N',
'cross_street_1': 'AVENUE N',
'cross_street_2': 'EAST 69 STREET',
'intersection_street_1': 'AVENUE N',
'intersection_street_2': 'EAST 69 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008579',
'y_coordinate_state_plane': '165916',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62204416745975',
'longitude': '-73.91236109173892',
'location': {'latitude': '40.62204416745975',
'longitude': '-73.91236109173892',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492704',
'created_date': '2024-09-19T01:08:19.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '10 AVENUE',
'street_name': '10 AVENUE',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 33 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 33 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984357',
'y_coordinate_state_plane': '213946',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 33 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'location': {'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488569',
'created_date': '2024-09-19T01:08:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': '1327 EAST 57 STREET',
'street_name': 'EAST 57 STREET',
'cross_street_1': 'AVENUE M',
'cross_street_2': 'AVENUE N',
'intersection_street_1': 'AVENUE M',
'intersection_street_2': 'AVENUE N',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 57 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:43:28.000',
'community_board': '18 BROOKLYN',
'bbl': '3078820036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006377',
'y_coordinate_state_plane': '165523',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62097123814068',
'longitude': '-73.92029450878546',
'location': {'latitude': '40.62097123814068',
'longitude': '-73.92029450878546',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492346',
'created_date': '2024-09-19T01:08: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': '10301',
'incident_address': 'BELMONT PLACE',
'street_name': 'BELMONT PLACE',
'cross_street_1': 'BELMONT PLACE',
'cross_street_2': 'WALL STREET',
'intersection_street_1': 'BELMONT PLACE',
'intersection_street_2': 'WALL STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'resolution_description': 'Your complaint has been received by the Police Department and additional information will be available later.',
'resolution_action_updated_date': '2024-09-19T02:13:12.000',
'community_board': '01 STATEN ISLAND',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '962074',
'y_coordinate_state_plane': '173539',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.64297332979561',
'longitude': '-74.07990833861824',
'location': {'latitude': '40.64297332979561',
'longitude': '-74.07990833861824',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491968',
'created_date': '2024-09-19T01:06:54.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '85-77 80 STREET',
'street_name': '80 STREET',
'cross_street_1': '85 DRIVE',
'cross_street_2': '86 AVENUE',
'intersection_street_1': '85 DRIVE',
'intersection_street_2': '86 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '80 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:14:29.000',
'community_board': '09 QUEENS',
'bbl': '4088470199',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022234',
'y_coordinate_state_plane': '192082',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69381597828006',
'longitude': '-73.86302517659573',
'location': {'latitude': '40.69381597828006',
'longitude': '-73.86302517659573',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485018',
'created_date': '2024-09-19T01:06:45.000',
'closed_date': '2024-09-19T01:35:39.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11106',
'incident_address': '31-71 30 STREET',
'street_name': '30 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': '30 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:35:42.000',
'community_board': '01 QUEENS',
'bbl': '4005890012',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004886',
'y_coordinate_state_plane': '217330',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76317300119427',
'longitude': '-73.92550665861583',
'location': {'latitude': '40.76317300119427',
'longitude': '-73.92550665861583',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493415',
'created_date': '2024-09-19T01:05:23.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'House of Worship',
'incident_zip': '10001',
'incident_address': '135 WEST 31 STREET',
'street_name': 'WEST 31 STREET',
'cross_street_1': 'AVENUE OF THE AMERICAS',
'cross_street_2': '7 AVENUE',
'intersection_street_1': 'AVENUE OF THE AMERICAS',
'intersection_street_2': '7 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 31 STREET',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T01:07:40.000',
'community_board': '05 MANHATTAN',
'bbl': '1008070022',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986945',
'y_coordinate_state_plane': '211930',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.748375049229544',
'longitude': '-73.99027355413834',
'location': {'latitude': '40.748375049229544',
'longitude': '-73.99027355413834',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493012',
'created_date': '2024-09-19T01:05: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': '11234',
'incident_address': '1387 EAST 57 STREET',
'street_name': 'EAST 57 STREET',
'cross_street_1': 'AVENUE M',
'cross_street_2': 'AVENUE N',
'intersection_street_1': 'AVENUE M',
'intersection_street_2': 'AVENUE N',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 57 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:43:54.000',
'community_board': '18 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006408',
'y_coordinate_state_plane': '165147',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6199391194119',
'longitude': '-73.9201840752975',
'location': {'latitude': '40.6199391194119',
'longitude': '-73.9201840752975',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487568',
'created_date': '2024-09-19T01:04:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10453',
'incident_address': '2094 CRESTON AVENUE',
'street_name': 'CRESTON 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': 'CRESTON AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:49:04.000',
'community_board': '05 BRONX',
'bbl': '2031610007',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010938',
'y_coordinate_state_plane': '250486',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.854160779365',
'longitude': '-73.90352790711202',
'location': {'latitude': '40.854160779365',
'longitude': '-73.90352790711202',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486029',
'created_date': '2024-09-19T01:04:49.000',
'closed_date': '2024-09-19T01:28:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11225',
'incident_address': '23 CHESTER COURT',
'street_name': 'CHESTER COURT',
'cross_street_1': 'FLATBUSH AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'FLATBUSH AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CHESTER COURT',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:28:42.000',
'community_board': '09 BROOKLYN',
'bbl': '3050260173',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995028',
'y_coordinate_state_plane': '179124',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.658324144332724',
'longitude': '-73.96115394264083',
'location': {'latitude': '40.658324144332724',
'longitude': '-73.96115394264083',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487713',
'created_date': '2024-09-19T01:04:49.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10036',
'incident_address': '1520 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 44 STREET',
'cross_street_2': '7 AVENUE',
'intersection_street_1': 'WEST 44 STREET',
'intersection_street_2': '7 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T01:06:22.000',
'community_board': '05 MANHATTAN',
'bbl': '1009970001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988213',
'y_coordinate_state_plane': '215273',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.75755025932459',
'longitude': '-73.985695282159',
'location': {'latitude': '40.75755025932459',
'longitude': '-73.985695282159',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490425',
'created_date': '2024-09-19T01:04:46.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2306 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'AVENUE W',
'cross_street_2': 'ALLEN AVENUE',
'intersection_street_1': 'AVENUE W',
'intersection_street_2': 'ALLEN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002759',
'y_coordinate_state_plane': '156558',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59637245542003',
'longitude': '-73.9333517698993',
'location': {'latitude': '40.59637245542003',
'longitude': '-73.9333517698993',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492253',
'created_date': '2024-09-19T01:04:06.000',
'closed_date': '2024-09-19T01:28:04.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': '11234',
'incident_address': 'BERGEN COVE',
'street_name': 'BERGEN COVE',
'cross_street_1': 'BERGEN COVE',
'cross_street_2': 'EAST 73 STREET',
'intersection_street_1': 'BERGEN COVE',
'intersection_street_2': 'EAST 73 STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:28:10.000',
'community_board': '18 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1009546',
'y_coordinate_state_plane': '166385',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.623328765523',
'longitude': '-73.90887597020462',
'location': {'latitude': '40.623328765523',
'longitude': '-73.90887597020462',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486618',
'created_date': '2024-09-19T01:03:55.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': '67 STEVENSON PLACE',
'street_name': 'STEVENSON PLACE',
'cross_street_1': 'BEND',
'cross_street_2': 'SEDGWICK AVENUE',
'intersection_street_1': 'BEND',
'intersection_street_2': 'SEDGWICK AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'STEVENSON PLACE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032460076',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013437',
'y_coordinate_state_plane': '260789',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88243144617686',
'longitude': '-73.89444962474693',
'location': {'latitude': '40.88243144617686',
'longitude': '-73.89444962474693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483690',
'created_date': '2024-09-19T01:03:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Fireworks',
'descriptor': 'N/A',
'location_type': 'Residential Building/House',
'incident_zip': '10452',
'incident_address': '950 WOODCREST AVENUE',
'street_name': 'WOODCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025070001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003911',
'y_coordinate_state_plane': '242179',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.831378946066906',
'longitude': '-73.9289535299807',
'location': {'latitude': '40.831378946066906',
'longitude': '-73.9289535299807',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492657',
'created_date': '2024-09-19T01:03:27.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Overgrown Tree/Branches',
'descriptor': 'Blocking Street',
'location_type': 'Street',
'incident_zip': '10305',
'incident_address': '44 MAGNOLIA AVENUE',
'street_name': 'MAGNOLIA AVENUE',
'cross_street_1': 'SEAVIEW AVENUE',
'cross_street_2': 'LIBERTY AVENUE',
'intersection_street_1': 'SEAVIEW AVENUE',
'intersection_street_2': 'LIBERTY AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'MAGNOLIA AVENUE',
'status': 'In Progress',
'community_board': '02 STATEN ISLAND',
'bbl': '5033430060',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '958114',
'y_coordinate_state_plane': '153087',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.58682605171901',
'longitude': '-74.0940985089792',
'location': {'latitude': '40.58682605171901',
'longitude': '-74.0940985089792',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492310',
'created_date': '2024-09-19T01:03:23.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Signs of Rodents',
'location_type': 'Vacant Lot',
'incident_zip': '10026',
'incident_address': '201 WEST 118 STREET',
'street_name': 'WEST 118 STREET',
'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_2': 'ST NICHOLAS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 118 STREET',
'status': 'In Progress',
'community_board': '10 MANHATTAN',
'bbl': '1019240029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997591',
'y_coordinate_state_plane': '232431',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80463523773741',
'longitude': '-73.95181068742968',
'location': {'latitude': '40.80463523773741',
'longitude': '-73.95181068742968',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489886',
'created_date': '2024-09-19T01:03:19.000',
'closed_date': '2024-09-19T01:16:25.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11221',
'incident_address': '150 MALCOM X BOULEVARD',
'street_name': 'MALCOM X BOULEVARD',
'cross_street_1': 'GATES AVENUE',
'cross_street_2': 'MONROE STREET',
'intersection_street_1': 'GATES AVENUE',
'intersection_street_2': 'MONROE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MALCOLM X BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:16:28.000',
'community_board': '03 BROOKLYN',
'bbl': '3016360024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003623',
'y_coordinate_state_plane': '190063',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.688334599490894',
'longitude': '-73.93014442097454',
'location': {'latitude': '40.688334599490894',
'longitude': '-73.93014442097454',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493323',
'created_date': '2024-09-19T01:02:52.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '3+ Family Apt. Building',
'incident_zip': '11367',
'incident_address': '150-43 72 DRIVE',
'street_name': '72 DRIVE',
'cross_street_1': '150 STREET',
'cross_street_2': '153 STREET',
'intersection_street_1': '150 STREET',
'intersection_street_2': '153 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '72 DRIVE',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4067010001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035120',
'y_coordinate_state_plane': '204091',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72671307309488',
'longitude': '-73.81646611166899',
'location': {'latitude': '40.72671307309488',
'longitude': '-73.81646611166899',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483722',
'created_date': '2024-09-19T01:02:25.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': '11105',
'incident_address': '23-08 SOUND STREET',
'street_name': 'SOUND STREET',
'cross_street_1': '23 AVENUE',
'cross_street_2': '23 ROAD',
'intersection_street_1': '23 AVENUE',
'intersection_street_2': '23 ROAD',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': 'SOUND STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:49:19.000',
'community_board': '01 QUEENS',
'bbl': '4007810046',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010075',
'y_coordinate_state_plane': '219714',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76970282556765',
'longitude': '-73.90676588007389',
'location': {'latitude': '40.76970282556765',
'longitude': '-73.90676588007389',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493678',
'created_date': '2024-09-19T01:00: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': '11238',
'incident_address': '433 LAFAYETTE AVENUE',
'street_name': 'LAFAYETTE AVENUE',
'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': 'LAFAYETTE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:53:54.000',
'community_board': '03 BROOKLYN',
'bbl': '3019380001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995966',
'y_coordinate_state_plane': '190354',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.689146775461836',
'longitude': '-73.95775368411394',
'location': {'latitude': '40.689146775461836',
'longitude': '-73.95775368411394',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490487',
'created_date': '2024-09-19T01:00:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10468',
'incident_address': '135 WEST KINGSBRIDGE ROAD',
'street_name': 'WEST KINGSBRIDGE ROAD',
'cross_street_1': 'WEBB AVENUE',
'cross_street_2': 'SEDGWICK AVENUE',
'intersection_street_1': 'WEBB AVENUE',
'intersection_street_2': 'SEDGWICK AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST KINGSBRIDGE ROAD',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032480143',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011083',
'y_coordinate_state_plane': '255910',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86904757553018',
'longitude': '-73.90298204449822',
'location': {'latitude': '40.86904757553018',
'longitude': '-73.90298204449822',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484581',
'created_date': '2024-09-19T00:59: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': '10452',
'incident_address': '957 WOODCREST AVENUE',
'street_name': 'WOODCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483767',
'created_date': '2024-09-19T00: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': '11208',
'incident_address': '32 FOUNTAIN AVENUE',
'street_name': 'FOUNTAIN AVENUE',
'cross_street_1': 'ATLANTIC AVENUE',
'cross_street_2': 'WELLS STREET',
'intersection_street_1': 'ATLANTIC AVENUE',
'intersection_street_2': 'WELLS STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FOUNTAIN AVENUE',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'bbl': '3041540061',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1018537',
'y_coordinate_state_plane': '186810',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67936065535422',
'longitude': '-73.87638380854551',
'location': {'latitude': '40.67936065535422',
'longitude': '-73.87638380854551',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485653',
'created_date': '2024-09-19T00:58:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10009',
'incident_address': '526 EAST 11 STREET',
'street_name': 'EAST 11 STREET',
'cross_street_1': 'AVENUE A',
'cross_street_2': 'AVENUE B',
'intersection_street_1': 'AVENUE A',
'intersection_street_2': 'AVENUE B',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 11 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:52:57.000',
'community_board': '03 MANHATTAN',
'bbl': '1004040017',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989511',
'y_coordinate_state_plane': '204548',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72811213435681',
'longitude': '-73.98101845175333',
'location': {'latitude': '40.72811213435681',
'longitude': '-73.98101845175333',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486039',
'created_date': '2024-09-19T00:58:33.000',
'closed_date': '2024-09-19T01:08:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Park',
'descriptor': 'Loud Talking',
'location_type': 'Park/Playground',
'incident_zip': '11209',
'incident_address': '8301 SHORE ROAD',
'street_name': 'SHORE ROAD',
'cross_street_1': '83 STREET',
'cross_street_2': 'SHORE ROAD LANE',
'intersection_street_1': '83 STREET',
'intersection_street_2': 'SHORE ROAD LANE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SHORE ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:08:40.000',
'community_board': '10 BROOKLYN',
'bbl': '3060130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '973151',
'y_coordinate_state_plane': '168039',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Fort Hamilton Athletic Field',
'park_borough': 'BROOKLYN',
'latitude': '40.62789780945477',
'longitude': '-74.03998476829533',
'location': {'latitude': '40.62789780945477',
'longitude': '-74.03998476829533',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487694',
'created_date': '2024-09-19T00:58:25.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10036',
'incident_address': '1500 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 43 STREET',
'cross_street_2': 'WEST 44 STREET',
'intersection_street_1': 'WEST 43 STREET',
'intersection_street_2': 'WEST 44 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T01:01:21.000',
'community_board': '05 MANHATTAN',
'bbl': '1009960001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988136',
'y_coordinate_state_plane': '215020',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7568558730713',
'longitude': '-73.98597336511823',
'location': {'latitude': '40.7568558730713',
'longitude': '-73.98597336511823',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489951',
'created_date': '2024-09-19T00:58:23.000',
'closed_date': '2024-09-19T01:10:41.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10025',
'incident_address': '998 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 109 STREET',
'cross_street_2': 'CATHEDRAL PARKWAY',
'intersection_street_1': 'WEST 109 STREET',
'intersection_street_2': 'CATHEDRAL PARKWAY',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:10:45.000',
'community_board': '07 MANHATTAN',
'bbl': '1018810032',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994168',
'y_coordinate_state_plane': '231674',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80256198626038',
'longitude': '-73.96417609586966',
'location': {'latitude': '40.80256198626038',
'longitude': '-73.96417609586966',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483390',
'created_date': '2024-09-19T00:58:19.000',
'closed_date': '2024-09-19T01:24:20.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '31-50 14 STREET',
'street_name': '14 STREET',
'cross_street_1': '31 DRIVE',
'cross_street_2': 'BROADWAY',
'intersection_street_1': '31 DRIVE',
'intersection_street_2': 'BROADWAY',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '14 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:24:23.000',
'community_board': '01 QUEENS',
'bbl': '4005197501',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1002784',
'y_coordinate_state_plane': '218707',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7669571658427',
'longitude': '-73.93309081193267',
'location': {'latitude': '40.7669571658427',
'longitude': '-73.93309081193267',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491276',
'created_date': '2024-09-19T00:58:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '329 EAST 8 STREET',
'street_name': 'EAST 8 STREET',
'cross_street_1': 'BEVERLEY ROAD',
'cross_street_2': 'AVENUE C',
'intersection_street_1': 'BEVERLEY ROAD',
'intersection_street_2': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 8 STREET',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3053600061',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992203',
'y_coordinate_state_plane': '173184',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64202312316082',
'longitude': '-73.97134280797705',
'location': {'latitude': '40.64202312316082',
'longitude': '-73.97134280797705',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486507',
'created_date': '2024-09-19T00:57:58.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80-26 PARK LANE SOUTH',
'street_name': 'PARK LANE SOUTH',
'cross_street_1': '80 STREET',
'cross_street_2': 'FOREST PARK DRIVE',
'intersection_street_1': '80 STREET',
'intersection_street_2': 'FOREST PARK DRIVE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': 'PARK LANE SOUTH',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:45:16.000',
'community_board': '09 QUEENS',
'bbl': '4088510318',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022343',
'y_coordinate_state_plane': '192838',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.6958905519394',
'longitude': '-73.8626278349381',
'location': {'latitude': '40.6958905519394',
'longitude': '-73.8626278349381',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486567',
'created_date': '2024-09-19T00:57:55.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Condition Attracting Rodents',
'location_type': '3+ Family Apt. Building',
'incident_zip': '11102',
'incident_address': '8-15 27 AVENUE',
'street_name': '27 AVENUE',
'cross_street_1': '8 STREET',
'cross_street_2': '9 STREET',
'intersection_street_1': '8 STREET',
'intersection_street_2': '9 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '27 AVENUE',
'status': 'In Progress',
'community_board': '01 QUEENS',
'bbl': '4009080001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003190',
'y_coordinate_state_plane': '221332',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'location': {'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493006',
'created_date': '2024-09-19T00:57:54.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '2337 85 STREET',
'street_name': '85 STREET',
'cross_street_1': '23 AVENUE',
'cross_street_2': '24 AVENUE',
'intersection_street_1': '23 AVENUE',
'intersection_street_2': '24 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '85 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3068550063',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987008',
'y_coordinate_state_plane': '158109',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60064853448842',
'longitude': '-73.99006820608484',
'location': {'latitude': '40.60064853448842',
'longitude': '-73.99006820608484',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490544',
'created_date': '2024-09-19T00:56:20.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': '11 AVENUE',
'cross_street_2': 'WEST 29 STREET',
'intersection_street_1': '11 AVENUE',
'intersection_street_2': 'WEST 29 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983066',
'y_coordinate_state_plane': '213485',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '11 AVENUE AND WEST 29 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'location': {'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487427',
'created_date': '2024-09-19T00:56:18.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11209',
'incident_address': '259 93 STREET',
'street_name': '93 STREET',
'cross_street_1': 'RIDGE BOULEVARD',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'RIDGE BOULEVARD',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '93 STREET',
'status': 'In Progress',
'community_board': '10 BROOKLYN',
'bbl': '3061020054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '974757',
'y_coordinate_state_plane': '164770',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'location': {'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487323',
'created_date': '2024-09-19T00:56:00.000',
'closed_date': '2024-09-19T01:16:10.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11106',
'incident_address': '31-91 21 STREET',
'street_name': '21 STREET',
'cross_street_1': '31 DRIVE',
'cross_street_2': 'BROADWAY',
'intersection_street_1': '31 DRIVE',
'intersection_street_2': 'BROADWAY',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '21 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:16:13.000',
'community_board': '01 QUEENS',
'bbl': '4005540015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003214',
'y_coordinate_state_plane': '218128',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76536704921336',
'longitude': '-73.93154011254339',
'location': {'latitude': '40.76536704921336',
'longitude': '-73.93154011254339',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487428',
'created_date': '2024-09-19T00:55:46.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11232',
'incident_address': '820 40 STREET',
'street_name': '40 STREET',
'cross_street_1': '8 AVENUE',
'cross_street_2': '9 AVENUE',
'intersection_street_1': '8 AVENUE',
'intersection_street_2': '9 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '40 STREET',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3009200013',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985015',
'y_coordinate_state_plane': '174748',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.646319504066255',
'longitude': '-73.99724328389676',
'location': {'latitude': '40.646319504066255',
'longitude': '-73.99724328389676',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486500',
'created_date': '2024-09-19T00:55:42.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': '900 ERSKINE STREET',
'street_name': 'ERSKINE STREET',
'cross_street_1': 'SCHROEDERS WALK',
'cross_street_2': 'GATEWAY DRIVE',
'intersection_street_1': 'SCHROEDERS WALK',
'intersection_street_2': 'GATEWAY DRIVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ERSKINE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:00:23.000',
'community_board': '05 BROOKLYN',
'bbl': '3045860971',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1020816',
'y_coordinate_state_plane': '178606',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65683340850539',
'longitude': '-73.86821175716499',
'location': {'latitude': '40.65683340850539',
'longitude': '-73.86821175716499',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484451',
'created_date': '2024-09-19T00:55:34.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11209',
'incident_address': '259 93 STREET',
'street_name': '93 STREET',
'cross_street_1': 'RIDGE BOULEVARD',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'RIDGE BOULEVARD',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '93 STREET',
'status': 'In Progress',
'community_board': '10 BROOKLYN',
'bbl': '3061020054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '974757',
'y_coordinate_state_plane': '164770',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'location': {'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484746',
'created_date': '2024-09-19T00:55:19.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80 STREET',
'street_name': '80 STREET',
'cross_street_1': '80 STREET',
'cross_street_2': '85 AVENUE',
'intersection_street_1': '80 STREET',
'intersection_street_2': '85 AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:03:57.000',
'community_board': '09 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022074',
'y_coordinate_state_plane': '192673',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.695438819592155',
'longitude': '-73.8635988360984',
'location': {'latitude': '40.695438819592155',
'longitude': '-73.8635988360984',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488387',
'created_date': '2024-09-19T00:53:44.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': '900 ERSKINE STREET',
'street_name': 'ERSKINE STREET',
'cross_street_1': 'SCHROEDERS WALK',
'cross_street_2': 'GATEWAY DRIVE',
'intersection_street_1': 'SCHROEDERS WALK',
'intersection_street_2': 'GATEWAY DRIVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ERSKINE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:50:12.000',
'community_board': '05 BROOKLYN',
'bbl': '3045860971',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1020816',
'y_coordinate_state_plane': '178606',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'SUV',
'latitude': '40.65683340850539',
'longitude': '-73.86821175716499',
'location': {'latitude': '40.65683340850539',
'longitude': '-73.86821175716499',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485412',
'created_date': '2024-09-19T00:53:26.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Store/Commercial',
'incident_zip': '10462',
'incident_address': '1265 CASTLE HILL AVENUE',
'street_name': 'CASTLE HILL AVENUE',
'cross_street_1': 'NEWBOLD AVENUE',
'cross_street_2': 'WESTCHESTER AVENUE',
'intersection_street_1': 'NEWBOLD AVENUE',
'intersection_street_2': 'WESTCHESTER AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CASTLE HILL AVENUE',
'status': 'Closed',
'resolution_description': 'The mobile outreach response team offered services to the individual, but the individual did not accept assistance.',
'resolution_action_updated_date': '2024-09-19T02:34:35.000',
'community_board': '09 BRONX',
'bbl': '2038140055',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025355',
'y_coordinate_state_plane': '242997',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83355034759749',
'longitude': '-73.85145915568084',
'location': {'latitude': '40.83355034759749',
'longitude': '-73.85145915568084',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489665',
'created_date': '2024-09-19T00:53:12.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11368',
'incident_address': '107-17 34 AVENUE',
'street_name': '34 AVENUE',
'cross_street_1': '107 STREET',
'cross_street_2': '108 STREET',
'intersection_street_1': '107 STREET',
'intersection_street_2': '108 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '34 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:23:31.000',
'community_board': '03 QUEENS',
'bbl': '4017220027',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022655',
'y_coordinate_state_plane': '214819',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.756221625978554',
'longitude': '-73.86137725014854',
'location': {'latitude': '40.756221625978554',
'longitude': '-73.86137725014854',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491644',
'created_date': '2024-09-19T00:53:05.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Defective Hardware',
'location_type': 'Street',
'incident_zip': '11214',
'incident_address': '2157 83 STREET',
'street_name': '83 STREET',
'cross_street_1': '21 AVENUE',
'cross_street_2': 'BAY PARKWAY',
'intersection_street_1': '21 AVENUE',
'intersection_street_2': 'BAY PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '83 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063180055',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986184',
'y_coordinate_state_plane': '159426',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.604263649874156',
'longitude': '-73.99303512346577',
'location': {'latitude': '40.604263649874156',
'longitude': '-73.99303512346577',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487415',
'created_date': '2024-09-19T00:52:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11239',
'incident_address': '618 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': '2024-09-19T01:50:27.000',
'community_board': '05 BROOKLYN',
'bbl': '3045860955',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1020377',
'y_coordinate_state_plane': '178395',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Other',
'latitude': '40.65625606234023',
'longitude': '-73.86979509375526',
'location': {'latitude': '40.65625606234023',
'longitude': '-73.86979509375526',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484518',
'created_date': '2024-09-19T00:52:32.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11238',
'incident_address': '537 GRAND AVENUE',
'street_name': 'GRAND 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': 'GRAND AVENUE',
'status': 'In Progress',
'community_board': '08 BROOKLYN',
'bbl': '3011330003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994828',
'y_coordinate_state_plane': '186716',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'SUV',
'latitude': '40.679162729862014',
'longitude': '-73.96186286931942',
'location': {'latitude': '40.679162729862014',
'longitude': '-73.96186286931942',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491679',
'created_date': '2024-09-19T00:52:25.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Outdoor Dining',
'descriptor': 'Sidewalk Zone Blocked',
'location_type': 'Sidewalk',
'incident_zip': '10014',
'incident_address': '213 AVENUE OF THE AMERICAS',
'street_name': 'AVENUE OF THE AMERICAS',
'cross_street_1': 'CHARLTON STREET',
'cross_street_2': 'KING STREET',
'intersection_street_1': 'CHARLTON STREET',
'intersection_street_2': 'KING STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AVENUE OF THE AMERICAS',
'status': 'In Progress',
'community_board': '02 MANHATTAN',
'bbl': '1005190030',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983331',
'y_coordinate_state_plane': '204257',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7273149270773',
'longitude': '-74.00331568789693',
'location': {'latitude': '40.7273149270773',
'longitude': '-74.00331568789693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488648',
'created_date': '2024-09-19T00:52:19.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11226',
'incident_address': '108 EAST 18 STREET',
'street_name': 'EAST 18 STREET',
'cross_street_1': 'CHURCH AVENUE',
'cross_street_2': 'TENNIS COURT',
'intersection_street_1': 'CHURCH AVENUE',
'intersection_street_2': 'TENNIS COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 18 STREET',
'status': 'In Progress',
'community_board': '14 BROOKLYN',
'bbl': '3050970100',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994541',
'y_coordinate_state_plane': '175565',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64855604610874',
'longitude': '-73.96291461797959',
'location': {'latitude': '40.64855604610874',
'longitude': '-73.96291461797959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484519',
'created_date': '2024-09-19T00:51:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11239',
'incident_address': '552 SCHROEDERS AVENUE',
'street_name': 'SCHROEDERS AVENUE',
'cross_street_1': 'ELTON STREET',
'cross_street_2': 'ESSEX STREET',
'intersection_street_1': 'ELTON STREET',
'intersection_street_2': 'ESSEX STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SCHROEDERS AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:49:49.000',
'community_board': '05 BROOKLYN',
'bbl': '3044520923',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1019800',
'y_coordinate_state_plane': '178067',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.655358110386516',
'longitude': '-73.87187637889684',
'location': {'latitude': '40.655358110386516',
'longitude': '-73.87187637889684',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484668',
'created_date': '2024-09-19T00:51:51.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': '11 AVENUE',
'cross_street_2': 'WEST 29 STREET',
'intersection_street_1': '11 AVENUE',
'intersection_street_2': 'WEST 29 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983066',
'y_coordinate_state_plane': '213485',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '11 AVENUE AND WEST 29 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'location': {'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490495',
'created_date': '2024-09-19T00:51:08.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': '3601 KINGS HIGHWAY',
'street_name': 'KINGS HIGHWAY',
'cross_street_1': 'EAST 36 STREET',
'cross_street_2': 'EAST 37 STREET',
'intersection_street_1': 'EAST 36 STREET',
'intersection_street_2': 'EAST 37 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KINGS HIGHWAY',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:56:52.000',
'community_board': '18 BROOKLYN',
'bbl': '3076540024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000925',
'y_coordinate_state_plane': '165604',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62120550511057',
'longitude': '-73.93993340030033',
'location': {'latitude': '40.62120550511057',
'longitude': '-73.93993340030033',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490450',
'created_date': '2024-09-19T00:50:50.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': '78-49 73 PLACE',
'street_name': '73 PLACE',
'cross_street_1': '78 AVENUE',
'cross_street_2': 'MYRTLE AVENUE',
'intersection_street_1': '78 AVENUE',
'intersection_street_2': 'MYRTLE AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '73 PLACE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4038230002',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1018689',
'y_coordinate_state_plane': '195536',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70331089838369',
'longitude': '-73.87579118901239',
'location': {'latitude': '40.70331089838369',
'longitude': '-73.87579118901239',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484523',
'created_date': '2024-09-19T00:50:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10467',
'incident_address': '2925 WALLACE AVENUE',
'street_name': 'WALLACE AVENUE',
'cross_street_1': 'ARNOW AVENUE',
'cross_street_2': 'WILLIAMSBRIDGE ROAD',
'intersection_street_1': 'ARNOW AVENUE',
'intersection_street_2': 'WILLIAMSBRIDGE ROAD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WALLACE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:32:14.000',
'community_board': '11 BRONX',
'bbl': '2045480047',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021762',
'y_coordinate_state_plane': '255752',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.868574991645396',
'longitude': '-73.86437176637796',
'location': {'latitude': '40.868574991645396',
'longitude': '-73.86437176637796',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492821',
'created_date': '2024-09-19T00:50:42.000',
'closed_date': '2024-09-19T01:00:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10031',
'incident_address': '558 WEST 151 STREET',
'street_name': 'WEST 151 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 151 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:00:19.000',
'community_board': '09 MANHATTAN',
'bbl': '1020820056',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999086',
'y_coordinate_state_plane': '241552',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829667434237464',
'longitude': '-73.94639040402599',
'location': {'latitude': '40.829667434237464',
'longitude': '-73.94639040402599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491322',
'created_date': '2024-09-19T00:50:39.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80-24 PARK LANE SOUTH',
'street_name': 'PARK LANE SOUTH',
'cross_street_1': '80 STREET',
'cross_street_2': 'FOREST PARK DRIVE',
'intersection_street_1': '80 STREET',
'intersection_street_2': 'FOREST PARK DRIVE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': 'PARK LANE SOUTH',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:44:57.000',
'community_board': '09 QUEENS',
'bbl': '4088510317',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022324',
'y_coordinate_state_plane': '192833',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'location': {'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485853',
'created_date': '2024-09-19T00:50:23.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Sidewalk',
'incident_zip': '11233',
'incident_address': '477 BAINBRIDGE STREET',
'street_name': 'BAINBRIDGE 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': 'BAINBRIDGE STREET',
'status': 'In Progress',
'community_board': '03 BROOKLYN',
'bbl': '3015050047',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006982',
'y_coordinate_state_plane': '187930',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68247201494548',
'longitude': '-73.91803966954187',
'location': {'latitude': '40.68247201494548',
'longitude': '-73.91803966954187',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484453',
'created_date': '2024-09-19T00:50:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11239',
'incident_address': '598 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': '2024-09-19T02:02:57.000',
'community_board': '05 BROOKLYN',
'bbl': '3045860945',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1020207',
'y_coordinate_state_plane': '178299',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65599325559804',
'longitude': '-73.87040829977123',
'location': {'latitude': '40.65599325559804',
'longitude': '-73.87040829977123',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489543',
'created_date': '2024-09-19T00:50:15.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Television',
'location_type': 'Residential Building/House',
'incident_zip': '10030',
'incident_address': '175 WEST 137 STREET',
'street_name': 'WEST 137 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 137 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:14:53.000',
'community_board': '10 MANHATTAN',
'bbl': '1020060007',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000361',
'y_coordinate_state_plane': '236648',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.816205112629476',
'longitude': '-73.94179499235126',
'location': {'latitude': '40.816205112629476',
'longitude': '-73.94179499235126',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489860',
'created_date': '2024-09-19T00:49:41.000',
'closed_date': '2024-09-19T01:05:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Drinking',
'descriptor': 'In Public',
'location_type': 'Street/Sidewalk',
'incident_zip': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:05:18.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492638',
'created_date': '2024-09-19T00:49:31.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': '402 EAST 52 STREET',
'street_name': 'EAST 52 STREET',
'cross_street_1': 'CHURCH AVENUE',
'cross_street_2': 'SNYDER AVENUE',
'intersection_street_1': 'CHURCH AVENUE',
'intersection_street_2': 'SNYDER AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 52 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:57:26.000',
'community_board': '17 BROOKLYN',
'bbl': '3046990026',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004130',
'y_coordinate_state_plane': '176461',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6509990366991',
'longitude': '-73.92835638412213',
'location': {'latitude': '40.6509990366991',
'longitude': '-73.92835638412213',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491241',
'created_date': '2024-09-19T00:49:21.000',
'closed_date': '2024-09-19T01:10:33.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': 'Closed',
'resolution_description': 'The Police Department reviewed your complaint and provided additional information below.',
'resolution_action_updated_date': '2024-09-19T01:10:40.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': '62485468',
'created_date': '2024-09-19T00:48:57.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80-24 PARK LANE SOUTH',
'street_name': 'PARK LANE SOUTH',
'cross_street_1': '80 STREET',
'cross_street_2': 'FOREST PARK DRIVE',
'intersection_street_1': '80 STREET',
'intersection_street_2': 'FOREST PARK DRIVE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': 'PARK LANE SOUTH',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:45:40.000',
'community_board': '09 QUEENS',
'bbl': '4088510317',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022324',
'y_coordinate_state_plane': '192833',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'location': {'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491762',
'created_date': '2024-09-19T00:48:52.000',
'closed_date': '2024-09-19T01:10: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': '11102',
'incident_address': '8-15 27 AVENUE',
'street_name': '27 AVENUE',
'cross_street_1': '8 STREET',
'cross_street_2': '9 STREET',
'intersection_street_1': '8 STREET',
'intersection_street_2': '9 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '27 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:10:59.000',
'community_board': '01 QUEENS',
'bbl': '4009080001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003190',
'y_coordinate_state_plane': '221332',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'location': {'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485064',
'created_date': '2024-09-19T00:48:37.000',
'closed_date': '2024-09-19T01:11: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': '11102',
'incident_address': '8-15 27 AVENUE',
'street_name': '27 AVENUE',
'cross_street_1': '8 STREET',
'cross_street_2': '9 STREET',
'intersection_street_1': '8 STREET',
'intersection_street_2': '9 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '27 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:11:17.000',
'community_board': '01 QUEENS',
'bbl': '4009080001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1003190',
'y_coordinate_state_plane': '221332',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'location': {'latitude': '40.77416124408082',
'longitude': '-73.9316177230618',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489515',
'created_date': '2024-09-19T00:48:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11239',
'incident_address': '475 LOCKE STREET',
'street_name': 'LOCKE STREET',
'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': 'LOCKE STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:02:36.000',
'community_board': '05 BROOKLYN',
'bbl': '3044477502',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1018747',
'y_coordinate_state_plane': '178426',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65634765060057',
'longitude': '-73.8756695914011',
'location': {'latitude': '40.65634765060057',
'longitude': '-73.8756695914011',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484434',
'created_date': '2024-09-19T00:48:25.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2648 GERRITSEN AVENUE',
'street_name': 'GERRITSEN AVENUE',
'cross_street_1': 'CHANNEL AVENUE',
'cross_street_2': 'DEVON AVENUE',
'intersection_street_1': 'CHANNEL AVENUE',
'intersection_street_2': 'DEVON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GERRITSEN AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3089390836',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004583',
'y_coordinate_state_plane': '155810',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.594315349881',
'longitude': '-73.92678606399917',
'location': {'latitude': '40.594315349881',
'longitude': '-73.92678606399917',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485040',
'created_date': '2024-09-19T00:48:22.000',
'closed_date': '2024-09-19T01:12: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': '11430',
'incident_address': '132-26 SOUTH CONDUIT AVENUE',
'street_name': 'SOUTH CONDUIT AVENUE',
'cross_street_1': '132 STREET',
'cross_street_2': '134 STREET',
'intersection_street_1': '132 STREET',
'intersection_street_2': '134 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': 'SOUTH CONDUIT AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:12:43.000',
'community_board': '10 QUEENS',
'bbl': '4118860010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037724',
'y_coordinate_state_plane': '182049',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.66619769722842',
'longitude': '-73.80724616061472',
'location': {'latitude': '40.66619769722842',
'longitude': '-73.80724616061472',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486624',
'created_date': '2024-09-19T00:48:18.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11378',
'incident_address': '56 ROAD',
'street_name': '56 ROAD',
'cross_street_1': '56 ROAD',
'cross_street_2': '60 STREET',
'intersection_street_1': '56 ROAD',
'intersection_street_2': '60 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '05 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010235',
'y_coordinate_state_plane': '203253',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.724521073537794',
'longitude': '-73.90625184500092',
'location': {'latitude': '40.724521073537794',
'longitude': '-73.90625184500092',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492973',
'created_date': '2024-09-19T00:48:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11228',
'incident_address': '51 BAY 11 STREET',
'street_name': 'BAY 11 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 11 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063620021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '981734',
'y_coordinate_state_plane': '161348',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60953900066985',
'longitude': '-74.00906153780079',
'location': {'latitude': '40.60953900066985',
'longitude': '-74.00906153780079',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493397',
'created_date': '2024-09-19T00:47:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80 STREET',
'street_name': '80 STREET',
'cross_street_1': '80 STREET',
'cross_street_2': '85 AVENUE',
'intersection_street_1': '80 STREET',
'intersection_street_2': '85 AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:03:52.000',
'community_board': '09 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022074',
'y_coordinate_state_plane': '192673',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.695438819592155',
'longitude': '-73.8635988360984',
'location': {'latitude': '40.695438819592155',
'longitude': '-73.8635988360984',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487532',
'created_date': '2024-09-19T00:47:26.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': '11 AVENUE',
'cross_street_2': 'WEST 29 STREET',
'intersection_street_1': '11 AVENUE',
'intersection_street_2': 'WEST 29 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983066',
'y_coordinate_state_plane': '213485',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '11 AVENUE AND WEST 29 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'location': {'latitude': '40.75264346296054',
'longitude': '-74.00427341365126',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490370',
'created_date': '2024-09-19T00:46:46.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11417',
'incident_address': '133-03 88 STREET',
'street_name': '88 STREET',
'cross_street_1': '133 AVENUE',
'cross_street_2': 'PITKIN AVENUE',
'intersection_street_1': '133 AVENUE',
'intersection_street_2': 'PITKIN AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '88 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:54:57.000',
'community_board': '10 QUEENS',
'bbl': '4113690001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026298',
'y_coordinate_state_plane': '185045',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.67448267244144',
'longitude': '-73.84841385023017',
'location': {'latitude': '40.67448267244144',
'longitude': '-73.84841385023017',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483943',
'created_date': '2024-09-19T00:46:43.000',
'closed_date': '2024-09-19T01:35: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': '10031',
'incident_address': '3675 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 152 STREET',
'cross_street_2': 'WEST 153 STREET',
'intersection_street_1': 'WEST 152 STREET',
'intersection_street_2': 'WEST 153 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:35:20.000',
'community_board': '09 MANHATTAN',
'bbl': '1020990029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998871',
'y_coordinate_state_plane': '242017',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'location': {'latitude': '40.830944084252245',
'longitude': '-73.94716628869014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487455',
'created_date': '2024-09-19T00:45:59.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Mosquitoes',
'descriptor': 'Large Number of Mosquitoes',
'location_type': 'Residential Property',
'incident_zip': '11225',
'incident_address': '79 WINTHROP STREET',
'street_name': 'WINTHROP STREET',
'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': 'WINTHROP STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:00:09.000',
'community_board': '09 BROOKLYN',
'bbl': '3050450072',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996038',
'y_coordinate_state_plane': '178516',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65665403097727',
'longitude': '-73.95751476496751',
'location': {'latitude': '40.65665403097727',
'longitude': '-73.95751476496751',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492730',
'created_date': '2024-09-19T00:45:45.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Residential Building/House',
'incident_zip': '10003',
'incident_address': '223 1 AVENUE',
'street_name': '1 AVENUE',
'cross_street_1': 'EAST 13 STREET',
'cross_street_2': 'EAST 14 STREET',
'intersection_street_1': 'EAST 13 STREET',
'intersection_street_2': 'EAST 14 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '1 AVENUE',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T00:50:31.000',
'community_board': '03 MANHATTAN',
'bbl': '1004550040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988983',
'y_coordinate_state_plane': '205553',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.730870911940215',
'longitude': '-73.98292275477844',
'location': {'latitude': '40.730870911940215',
'longitude': '-73.98292275477844',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486437',
'created_date': '2024-09-19T00:45:31.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': '2257 EAST 18 STREET',
'street_name': 'EAST 18 STREET',
'cross_street_1': 'GRAVESEND NECK ROAD',
'cross_street_2': 'AVENUE W',
'intersection_street_1': 'GRAVESEND NECK ROAD',
'intersection_street_2': 'AVENUE W',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 18 STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3073790065',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997338',
'y_coordinate_state_plane': '156274',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59560259597438',
'longitude': '-73.95287255192771',
'location': {'latitude': '40.59560259597438',
'longitude': '-73.95287255192771',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489975',
'created_date': '2024-09-19T00:45:18.000',
'closed_date': '2024-09-19T01:04: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': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:05:00.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484470',
'created_date': '2024-09-19T00:45:17.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': '1-2 Family Dwelling',
'incident_zip': '11218',
'incident_address': '99 EAST 3 STREET',
'street_name': 'EAST 3 STREET',
'cross_street_1': 'GREENWOOD AVENUE',
'cross_street_2': 'FORT HAMILTON PARKWAY',
'intersection_street_1': 'GREENWOOD AVENUE',
'intersection_street_2': 'FORT HAMILTON PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 3 STREET',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3052820024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '990190',
'y_coordinate_state_plane': '175984',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64971009741192',
'longitude': '-73.97859382225289',
'location': {'latitude': '40.64971009741192',
'longitude': '-73.97859382225289',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485085',
'created_date': '2024-09-19T00:44:48.000',
'closed_date': '2024-09-19T01:16: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': '10030',
'incident_address': '330 WEST 141 STREET',
'street_name': 'WEST 141 STREET',
'cross_street_1': 'EDGECOMBE AVENUE',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'EDGECOMBE AVENUE',
'intersection_street_2': 'ST NICHOLAS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 141 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:16:19.000',
'community_board': '10 MANHATTAN',
'bbl': '1020480040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999374',
'y_coordinate_state_plane': '238376',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82094973055104',
'longitude': '-73.94535688090521',
'location': {'latitude': '40.82094973055104',
'longitude': '-73.94535688090521',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493302',
'created_date': '2024-09-19T00:44:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '80-24 PARK LANE SOUTH',
'street_name': 'PARK LANE SOUTH',
'cross_street_1': '80 STREET',
'cross_street_2': 'FOREST PARK DRIVE',
'intersection_street_1': '80 STREET',
'intersection_street_2': 'FOREST PARK DRIVE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': 'PARK LANE SOUTH',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:45:36.000',
'community_board': '09 QUEENS',
'bbl': '4088510317',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022324',
'y_coordinate_state_plane': '192833',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'location': {'latitude': '40.69587690988083',
'longitude': '-73.8626963814814',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483874',
'created_date': '2024-09-19T00:44:37.000',
'closed_date': '2024-09-19T01:15: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': '10002',
'incident_address': '147 ORCHARD STREET',
'street_name': 'ORCHARD 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': 'ORCHARD STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:15:58.000',
'community_board': '03 MANHATTAN',
'bbl': '1004160067',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987298',
'y_coordinate_state_plane': '201791',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72054587734027',
'longitude': '-73.98900414549702',
'location': {'latitude': '40.72054587734027',
'longitude': '-73.98900414549702',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489380',
'created_date': '2024-09-19T00:44:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11368',
'incident_address': '107-15 34 AVENUE',
'street_name': '34 AVENUE',
'cross_street_1': '107 STREET',
'cross_street_2': '108 STREET',
'intersection_street_1': '107 STREET',
'intersection_street_2': '108 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '34 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:23:54.000',
'community_board': '03 QUEENS',
'bbl': '4017220029',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022651',
'y_coordinate_state_plane': '214819',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75622164335191',
'longitude': '-73.86139168811427',
'location': {'latitude': '40.75622164335191',
'longitude': '-73.86139168811427',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485589',
'created_date': '2024-09-19T00:43:57.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': 'NELSON AVENUE',
'street_name': 'NELSON AVENUE',
'cross_street_1': 'NELSON AVENUE',
'cross_street_2': 'WEST 169 STREET',
'intersection_street_1': 'NELSON AVENUE',
'intersection_street_2': 'WEST 169 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1005304',
'y_coordinate_state_plane': '245260',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.83983218634017',
'longitude': '-73.9239101535875',
'location': {'latitude': '40.83983218634017',
'longitude': '-73.9239101535875',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486434',
'created_date': '2024-09-19T00:43:45.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '70-12 70 STREET',
'street_name': '70 STREET',
'cross_street_1': '70 AVENUE',
'cross_street_2': 'CENTRAL AVENUE',
'intersection_street_1': '70 AVENUE',
'intersection_street_2': 'CENTRAL AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '70 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4036600041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016833',
'y_coordinate_state_plane': '196319',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.705467076079366',
'longitude': '-73.88248130175523',
'location': {'latitude': '40.705467076079366',
'longitude': '-73.88248130175523',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492684',
'created_date': '2024-09-19T00:43:38.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': '11218',
'incident_address': '460 OCEAN PARKWAY',
'street_name': 'OCEAN PARKWAY',
'cross_street_1': 'CORTELYOU ROAD',
'cross_street_2': 'DITMAS AVENUE',
'intersection_street_1': 'CORTELYOU ROAD',
'intersection_street_2': 'DITMAS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'OCEAN PARKWAY',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3053890024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991753',
'y_coordinate_state_plane': '171466',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63730797358531',
'longitude': '-73.97296621167484',
'location': {'latitude': '40.63730797358531',
'longitude': '-73.97296621167484',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493297',
'created_date': '2024-09-19T00:43:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10453',
'incident_address': '1890 SEDGWICK AVENUE',
'street_name': 'SEDGWICK AVENUE',
'cross_street_1': 'WEST TREMONT AVENUE',
'cross_street_2': 'WEST 179 STREET',
'intersection_street_1': 'WEST TREMONT AVENUE',
'intersection_street_2': 'WEST 179 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SEDGWICK AVENUE',
'status': 'In Progress',
'community_board': '05 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007090',
'y_coordinate_state_plane': '250468',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85412216785146',
'longitude': '-73.91743775467452',
'location': {'latitude': '40.85412216785146',
'longitude': '-73.91743775467452',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487546',
'created_date': '2024-09-19T00:42:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10461',
'incident_address': '1935 HOBART AVENUE',
'street_name': 'HOBART AVENUE',
'cross_street_1': 'ST THERESA AVENUE',
'cross_street_2': 'WILKINSON AVENUE',
'intersection_street_1': 'ST THERESA AVENUE',
'intersection_street_2': 'WILKINSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'HOBART AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2042340048',
'borough': 'BRONX',
'x_coordinate_state_plane': '1030944',
'y_coordinate_state_plane': '249089',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.850243296272794',
'longitude': '-73.83121985620531',
'location': {'latitude': '40.850243296272794',
'longitude': '-73.83121985620531',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484036',
'created_date': '2024-09-19T00:42:26.000',
'closed_date': '2024-09-19T01:09:05.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': '2024-09-19T01:09:09.000',
'community_board': 'Unspecified MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989216',
'y_coordinate_state_plane': '211094',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'bridge_highway_name': '6',
'bridge_highway_direction': '6 Downtown',
'bridge_highway_segment': 'Platform',
'latitude': '40.74607945556746',
'longitude': '-73.98207797178418',
'location': {'latitude': '40.74607945556746',
'longitude': '-73.98207797178418',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487015',
'created_date': '2024-09-19T00:42:07.000',
'closed_date': '2024-09-19T01:07:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '6742 5 AVENUE',
'street_name': '5 AVENUE',
'cross_street_1': 'SENATOR STREET',
'cross_street_2': '68 STREET',
'intersection_street_1': 'SENATOR STREET',
'intersection_street_2': '68 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '5 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:07:54.000',
'community_board': '10 BROOKLYN',
'bbl': '3058550046',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '978542',
'y_coordinate_state_plane': '170476',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63459197298848',
'longitude': '-74.02056545148501',
'location': {'latitude': '40.63459197298848',
'longitude': '-74.02056545148501',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485648',
'created_date': '2024-09-19T00:42: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': '11372',
'incident_address': '35-27 93 STREET',
'street_name': '93 STREET',
'cross_street_1': '35 AVENUE',
'cross_street_2': '37 AVENUE',
'intersection_street_1': '35 AVENUE',
'intersection_street_2': '37 AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '93 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:03:08.000',
'community_board': '03 QUEENS',
'bbl': '4014670056',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1019054',
'y_coordinate_state_plane': '213466',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75252289641102',
'longitude': '-73.87438203509657',
'location': {'latitude': '40.75252289641102',
'longitude': '-73.87438203509657',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485516',
'created_date': '2024-09-19T00:41:21.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Maintenance or Facility',
'descriptor': 'Rodent Sighting',
'location_type': 'Park',
'incident_zip': '10002',
'incident_address': 'EAST RIVER',
'street_name': 'EAST RIVER',
'cross_street_1': 'MANHATTAN BRIDGE BIKE PATH',
'cross_street_2': 'WILLIAMSBURG BR PEDESTRIAN PATH',
'intersection_street_1': 'MANHATTAN BRIDGE BIKE PATH',
'intersection_street_2': 'WILLIAMSBURG BR PEDESTRIAN PATH',
'address_type': 'UNRECOGNIZED',
'city': 'NEW YORK',
'landmark': 'EAST RIVER',
'status': 'In Progress',
'community_board': '03 MANHATTAN',
'bbl': '1009920050',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989469',
'y_coordinate_state_plane': '197201',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.70794640923041',
'longitude': '-73.98117568305577',
'location': {'latitude': '40.70794640923041',
'longitude': '-73.98117568305577',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485614',
'created_date': '2024-09-19T00:41:19.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': 'WEST 28 STREET',
'street_name': 'WEST 28 STREET',
'cross_street_1': '11 AVENUE',
'cross_street_2': 'WEST 28 STREET',
'intersection_street_1': '11 AVENUE',
'intersection_street_2': 'WEST 28 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '982942',
'y_coordinate_state_plane': '213259',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '11 AVENUE AND WEST 28 STREET, MANHATTAN, NY, 10001',
'latitude': '40.7520231327207',
'longitude': '-74.00472092314611',
'location': {'latitude': '40.7520231327207',
'longitude': '-74.00472092314611',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493631',
'created_date': '2024-09-19T00:41:10.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10472',
'incident_address': '2065 CHATTERTON AVENUE',
'street_name': 'CHATTERTON AVENUE',
'cross_street_1': 'PUGSLEY AVENUE',
'cross_street_2': 'OLMSTEAD AVENUE',
'intersection_street_1': 'PUGSLEY AVENUE',
'intersection_street_2': 'OLMSTEAD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CHATTERTON AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2037980054',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024604',
'y_coordinate_state_plane': '240902',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82780364486187',
'longitude': '-73.85418563610011',
'location': {'latitude': '40.82780364486187',
'longitude': '-73.85418563610011',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486106',
'created_date': '2024-09-19T00:40:40.000',
'closed_date': '2024-09-19T01:04:40.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:04:43.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485414',
'created_date': '2024-09-19T00:40:29.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2636 GERRITSEN AVENUE',
'street_name': 'GERRITSEN AVENUE',
'cross_street_1': 'CHANNEL AVENUE',
'cross_street_2': 'DEVON AVENUE',
'intersection_street_1': 'CHANNEL AVENUE',
'intersection_street_2': 'DEVON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GERRITSEN AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3089390841',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004537',
'y_coordinate_state_plane': '155864',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59446367437809',
'longitude': '-73.9269515360188',
'location': {'latitude': '40.59446367437809',
'longitude': '-73.9269515360188',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491963',
'created_date': '2024-09-19T00:39:31.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Food Establishment',
'descriptor': 'Rodents/Insects/Garbage',
'location_type': 'Restaurant/Bar/Deli/Bakery',
'incident_zip': '10002',
'incident_address': '357 GRAND STREET',
'street_name': 'GRAND STREET',
'cross_street_1': 'ESSEX STREET',
'cross_street_2': 'NORFOLK STREET',
'intersection_street_1': 'ESSEX STREET',
'intersection_street_2': 'NORFOLK STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'GRAND STREET',
'status': 'In Progress',
'community_board': '03 MANHATTAN',
'bbl': '1003110013',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987288',
'y_coordinate_state_plane': '200376',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71666204593021',
'longitude': '-73.98904085977543',
'location': {'latitude': '40.71666204593021',
'longitude': '-73.98904085977543',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485634',
'created_date': '2024-09-19T00:38:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '450 OCEAN PARKWAY',
'street_name': 'OCEAN PARKWAY',
'cross_street_1': 'CORTELYOU ROAD',
'cross_street_2': 'DITMAS AVENUE',
'intersection_street_1': 'CORTELYOU ROAD',
'intersection_street_2': 'DITMAS AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'OCEAN PARKWAY',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3053890024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991741',
'y_coordinate_state_plane': '171544',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63752207709732',
'longitude': '-73.97300936184442',
'location': {'latitude': '40.63752207709732',
'longitude': '-73.97300936184442',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492337',
'created_date': '2024-09-19T00:38: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': '11357',
'incident_address': '145-04 14 AVENUE',
'street_name': '14 AVENUE',
'cross_street_1': 'PARSONS BOULEVARD',
'cross_street_2': '145 PLACE',
'intersection_street_1': 'PARSONS BOULEVARD',
'intersection_street_2': '145 PLACE',
'address_type': 'ADDRESS',
'city': 'WHITESTONE',
'landmark': '14 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:46:11.000',
'community_board': '07 QUEENS',
'bbl': '4046220013',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033512',
'y_coordinate_state_plane': '226015',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'location': {'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486548',
'created_date': '2024-09-19T00:37:32.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11226',
'incident_address': '261 LENNOX ROAD',
'street_name': 'LENNOX ROAD',
'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': 'LENOX ROAD',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3050660071',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997861',
'y_coordinate_state_plane': '177586',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65409877035123',
'longitude': '-73.95094635281875',
'location': {'latitude': '40.65409877035123',
'longitude': '-73.95094635281875',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488578',
'created_date': '2024-09-19T00:37:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '11356',
'incident_address': '15-35 126 STREET',
'street_name': '126 STREET',
'cross_street_1': '15 AVENUE',
'cross_street_2': '18 AVENUE',
'intersection_street_1': '15 AVENUE',
'intersection_street_2': '18 AVENUE',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': '126 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:37:42.000',
'community_board': '07 QUEENS',
'bbl': '4040920001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027968',
'y_coordinate_state_plane': '225183',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78464338570151',
'longitude': '-73.84213261116304',
'location': {'latitude': '40.78464338570151',
'longitude': '-73.84213261116304',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490532',
'created_date': '2024-09-19T00:37:28.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Sidewalk Condition',
'descriptor': 'Broken Sidewalk',
'location_type': 'Sidewalk',
'incident_zip': '11215',
'incident_address': '289 18 STREET',
'street_name': '18 STREET',
'cross_street_1': '5 AVENUE',
'cross_street_2': '6 AVENUE',
'intersection_street_1': '5 AVENUE',
'intersection_street_2': '6 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '18 STREET',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3008730055',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986983',
'y_coordinate_state_plane': '180504',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.662118078015105',
'longitude': '-73.9901491640594',
'location': {'latitude': '40.662118078015105',
'longitude': '-73.9901491640594',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485068',
'created_date': '2024-09-19T00:37:15.000',
'closed_date': '2024-09-19T00:51: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': '11229',
'incident_address': '3042 AVENUE V',
'street_name': 'AVENUE V',
'cross_street_1': 'FORD STREET',
'cross_street_2': 'COYLE STREET',
'intersection_street_1': 'FORD STREET',
'intersection_street_2': 'COYLE 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': '2024-09-19T00:51:11.000',
'community_board': '15 BROOKLYN',
'bbl': '3073890001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001769',
'y_coordinate_state_plane': '157438',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59878988925375',
'longitude': '-73.93691433327626',
'location': {'latitude': '40.59878988925375',
'longitude': '-73.93691433327626',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491549',
'created_date': '2024-09-19T00:36:46.000',
'closed_date': '2024-09-19T01:08:50.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '22-60 NAMEOKE AVENUE',
'street_name': 'NAMEOKE AVENUE',
'cross_street_1': 'CHANDLER STREET',
'cross_street_2': 'MCBRIDE STREET',
'intersection_street_1': 'CHANDLER STREET',
'intersection_street_2': 'MCBRIDE STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NAMEOKE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:08:53.000',
'community_board': '14 QUEENS',
'bbl': '4156540005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051842',
'y_coordinate_state_plane': '161087',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'location': {'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483686',
'created_date': '2024-09-19T00:36:38.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '7901 17 AVENUE',
'street_name': '17 AVENUE',
'cross_street_1': '79 STREET',
'cross_street_2': 'NEW UTRECHT AVENUE',
'intersection_street_1': '79 STREET',
'intersection_street_2': 'NEW UTRECHT AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '17 AVENUE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3062720010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984040',
'y_coordinate_state_plane': '162436',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61252569163625',
'longitude': '-74.00075636250895',
'location': {'latitude': '40.61252569163625',
'longitude': '-74.00075636250895',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483705',
'created_date': '2024-09-19T00:35:39.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11367',
'incident_address': '147-03 71 AVENUE',
'street_name': '71 AVENUE',
'cross_street_1': '147 STREET',
'cross_street_2': '150 STREET',
'intersection_street_1': '147 STREET',
'intersection_street_2': '150 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '71 AVENUE',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4066760020',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034038',
'y_coordinate_state_plane': '204785',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72862408614533',
'longitude': '-73.8203647140369',
'location': {'latitude': '40.72862408614533',
'longitude': '-73.8203647140369',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486799',
'created_date': '2024-09-19T00:34:45.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Outdoor Dining',
'descriptor': 'Unauthorized Restaurant',
'location_type': 'Sidewalk',
'incident_zip': '10014',
'incident_address': '213 AVENUE OF THE AMERICAS',
'street_name': 'AVENUE OF THE AMERICAS',
'cross_street_1': 'CHARLTON STREET',
'cross_street_2': 'KING STREET',
'intersection_street_1': 'CHARLTON STREET',
'intersection_street_2': 'KING STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AVENUE OF THE AMERICAS',
'status': 'In Progress',
'community_board': '02 MANHATTAN',
'bbl': '1005190030',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983331',
'y_coordinate_state_plane': '204257',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7273149270773',
'longitude': '-74.00331568789693',
'location': {'latitude': '40.7273149270773',
'longitude': '-74.00331568789693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488019',
'created_date': '2024-09-19T00:34:37.000',
'closed_date': '2024-09-19T01:04: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': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:04:07.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489481',
'created_date': '2024-09-19T00:34:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11206',
'incident_address': '91 BOERUM STREET',
'street_name': 'BOERUM STREET',
'cross_street_1': 'LEONARD STREET',
'cross_street_2': 'MANHATTAN AVENUE',
'intersection_street_1': 'LEONARD STREET',
'intersection_street_2': 'MANHATTAN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BOERUM STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:00:21.000',
'community_board': '01 BROOKLYN',
'bbl': '3030600075',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999357',
'y_coordinate_state_plane': '196378',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.705676111622125',
'longitude': '-73.94551268688019',
'location': {'latitude': '40.705676111622125',
'longitude': '-73.94551268688019',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486078',
'created_date': '2024-09-19T00:34:20.000',
'closed_date': '2024-09-19T00:52: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': '11233',
'incident_address': '2158 ATLANTIC AVENUE',
'street_name': 'ATLANTIC AVENUE',
'cross_street_1': 'ROOSEVELT PLACE',
'cross_street_2': 'RADDE PLACE',
'intersection_street_1': 'ROOSEVELT PLACE',
'intersection_street_2': 'RADDE PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ATLANTIC AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T00:52:47.000',
'community_board': '16 BROOKLYN',
'bbl': '3014330023',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1007776',
'y_coordinate_state_plane': '185781',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'location': {'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488751',
'created_date': '2024-09-19T00:34:06.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Posting',
'descriptor': 'Flyer or Handbill',
'location_type': 'Sidewalk',
'incident_zip': '11223',
'incident_address': '152 AVENUE T',
'street_name': 'AVENUE T',
'cross_street_1': 'WEST 8 STREET',
'cross_street_2': 'SEA BEACH LINE',
'intersection_street_1': 'WEST 8 STREET',
'intersection_street_2': 'SEA BEACH LINE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'AVENUE T',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3070980001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989897',
'y_coordinate_state_plane': '157336',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.598525436126',
'longitude': '-73.97966531643192',
'location': {'latitude': '40.598525436126',
'longitude': '-73.97966531643192',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492689',
'created_date': '2024-09-19T00:33: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': '11356',
'incident_address': '15-35 126 STREET',
'street_name': '126 STREET',
'cross_street_1': '15 AVENUE',
'cross_street_2': '18 AVENUE',
'intersection_street_1': '15 AVENUE',
'intersection_street_2': '18 AVENUE',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': '126 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:38:03.000',
'community_board': '07 QUEENS',
'bbl': '4040920001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027968',
'y_coordinate_state_plane': '225183',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78464338570151',
'longitude': '-73.84213261116304',
'location': {'latitude': '40.78464338570151',
'longitude': '-73.84213261116304',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491995',
'created_date': '2024-09-19T00:33:37.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Sidewalk Condition',
'descriptor': 'Broken Sidewalk',
'location_type': 'Sidewalk',
'incident_zip': '11215',
'incident_address': '523 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': '17 STREET',
'cross_street_2': '18 STREET',
'intersection_street_1': '17 STREET',
'intersection_street_2': '18 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '7 AVENUE',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3008750002',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987881',
'y_coordinate_state_plane': '179983',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.660687725295496',
'longitude': '-73.98691268993602',
'location': {'latitude': '40.660687725295496',
'longitude': '-73.98691268993602',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490529',
'created_date': '2024-09-19T00:33:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10467',
'incident_address': '3550 JEROME AVENUE',
'street_name': 'JEROME AVENUE',
'cross_street_1': 'EAST GUN HILL ROAD',
'cross_street_2': 'EAST 212 STREET',
'intersection_street_1': 'EAST GUN HILL ROAD',
'intersection_street_2': 'EAST 212 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'JEROME AVENUE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2033280025',
'borough': 'BRONX',
'x_coordinate_state_plane': '1017358',
'y_coordinate_state_plane': '261355',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.883971099410495',
'longitude': '-73.88026713958368',
'location': {'latitude': '40.883971099410495',
'longitude': '-73.88026713958368',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489532',
'created_date': '2024-09-19T00:33: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': 'EAST TREMONT AVENUE',
'street_name': 'EAST TREMONT AVENUE',
'cross_street_1': 'EAST TREMONT AVENUE',
'cross_street_2': 'PROSPECT AVENUE',
'intersection_street_1': 'EAST TREMONT AVENUE',
'intersection_street_2': 'PROSPECT AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '06 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1014957',
'y_coordinate_state_plane': '246924',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84437108658596',
'longitude': '-73.88901630722455',
'location': {'latitude': '40.84437108658596',
'longitude': '-73.88901630722455',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487931',
'created_date': '2024-09-19T00:33:21.000',
'closed_date': '2024-09-19T00:42:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10029',
'incident_address': '1875 3 AVENUE',
'street_name': '3 AVENUE',
'cross_street_1': 'PEDESTRIAN PATH',
'cross_street_2': 'EAST 104 STREET',
'intersection_street_1': 'PEDESTRIAN PATH',
'intersection_street_2': 'EAST 104 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '3 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:42:56.000',
'community_board': '11 MANHATTAN',
'bbl': '1016520001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999207',
'y_coordinate_state_plane': '227011',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7897562261136',
'longitude': '-73.9459855725782',
'location': {'latitude': '40.7897562261136',
'longitude': '-73.9459855725782',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489533',
'created_date': '2024-09-19T00:33:15.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': '108 EAST 157 STREET',
'street_name': 'EAST 157 STREET',
'cross_street_1': 'RIVER AVENUE',
'cross_street_2': 'GERARD AVENUE',
'intersection_street_1': 'RIVER AVENUE',
'intersection_street_2': 'GERARD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 157 STREET',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2024820030',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004534',
'y_coordinate_state_plane': '240060',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82556148985162',
'longitude': '-73.92670868131337',
'location': {'latitude': '40.82556148985162',
'longitude': '-73.92670868131337',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483242',
'created_date': '2024-09-19T00:33:13.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2602 GERRITSEN AVENUE',
'street_name': 'GERRITSEN AVENUE',
'cross_street_1': 'CHANNEL AVENUE',
'cross_street_2': 'DEVON AVENUE',
'intersection_street_1': 'CHANNEL AVENUE',
'intersection_street_2': 'DEVON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GERRITSEN AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3089390857',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004407',
'y_coordinate_state_plane': '156018',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59488666985413',
'longitude': '-73.92741917415859',
'location': {'latitude': '40.59488666985413',
'longitude': '-73.92741917415859',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490977',
'created_date': '2024-09-19T00:33:06.000',
'closed_date': '2024-09-19T00:45: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': '11226',
'incident_address': '242 PARKSIDE AVENUE',
'street_name': 'PARKSIDE 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': 'PARKSIDE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:45:46.000',
'community_board': '09 BROOKLYN',
'bbl': '3050550012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995532',
'y_coordinate_state_plane': '178154',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65566107952329',
'longitude': '-73.95933904938464',
'location': {'latitude': '40.65566107952329',
'longitude': '-73.95933904938464',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486502',
'created_date': '2024-09-19T00:32:59.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11358',
'incident_address': '40-05 167 STREET',
'street_name': '167 STREET',
'cross_street_1': '167 ST FOOTBRIDGE',
'cross_street_2': 'NORTHERN BOULEVARD',
'intersection_street_1': '167 ST FOOTBRIDGE',
'intersection_street_2': 'NORTHERN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '167 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:39:49.000',
'community_board': '07 QUEENS',
'bbl': '4053420035',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039884',
'y_coordinate_state_plane': '216585',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.760977210433495',
'longitude': '-73.79917478876096',
'location': {'latitude': '40.760977210433495',
'longitude': '-73.79917478876096',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491628',
'created_date': '2024-09-19T00:32:35.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'For Hire Vehicle Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '10 AVENUE',
'street_name': '10 AVENUE',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 28 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 28 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983728',
'y_coordinate_state_plane': '212824',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 28 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75082924905948',
'longitude': '-74.00188400437024',
'location': {'latitude': '40.75082924905948',
'longitude': '-74.00188400437024',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483670',
'created_date': '2024-09-19T00:32:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10473',
'incident_address': '1965 LAFAYETTE AVENUE',
'street_name': 'LAFAYETTE AVENUE',
'cross_street_1': 'STICKBALL BOULEVARD',
'cross_street_2': 'PUGSLEY AVENUE',
'intersection_street_1': 'STICKBALL BOULEVARD',
'intersection_street_2': 'PUGSLEY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'LAFAYETTE AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2036720001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024052',
'y_coordinate_state_plane': '238896',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82230025720139',
'longitude': '-73.85619211834099',
'location': {'latitude': '40.82230025720139',
'longitude': '-73.85619211834099',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491972',
'created_date': '2024-09-19T00:31:33.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10473',
'incident_address': '1965 LAFAYETTE AVENUE',
'street_name': 'LAFAYETTE AVENUE',
'cross_street_1': 'STICKBALL BOULEVARD',
'cross_street_2': 'PUGSLEY AVENUE',
'intersection_street_1': 'STICKBALL BOULEVARD',
'intersection_street_2': 'PUGSLEY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'LAFAYETTE AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2036720001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024052',
'y_coordinate_state_plane': '238896',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82230025720139',
'longitude': '-73.85619211834099',
'location': {'latitude': '40.82230025720139',
'longitude': '-73.85619211834099',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487608',
'created_date': '2024-09-19T00:31:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11237',
'incident_address': '362 KNICKERBOCKER AVENUE',
'street_name': 'KNICKERBOCKER AVENUE',
'cross_street_1': 'STOCKHOLM STREET',
'cross_street_2': 'STANHOPE STREET',
'intersection_street_1': 'STOCKHOLM STREET',
'intersection_street_2': 'STANHOPE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNICKERBOCKER AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:50:52.000',
'community_board': '04 BROOKLYN',
'bbl': '3032570027',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1006009',
'y_coordinate_state_plane': '194535',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.700603654005825',
'longitude': '-73.92152648963516',
'location': {'latitude': '40.700603654005825',
'longitude': '-73.92152648963516',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484620',
'created_date': '2024-09-19T00:31:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11413',
'incident_address': '122-24 MILBURN STREET',
'street_name': 'MILBURN STREET',
'cross_street_1': '122 AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': '122 AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'SPRINGFIELD GARDENS',
'landmark': 'MILBURN STREET',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4127020060',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051215',
'y_coordinate_state_plane': '188223',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68305211279475',
'longitude': '-73.75855501395829',
'location': {'latitude': '40.68305211279475',
'longitude': '-73.75855501395829',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486832',
'created_date': '2024-09-19T00:30:26.000',
'closed_date': '2024-09-19T01:30:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '11201',
'incident_address': '38 WASHINGTON STREET',
'street_name': 'WASHINGTON STREET',
'cross_street_1': 'PLYMOUTH STREET',
'cross_street_2': 'WATER STREET',
'intersection_street_1': 'PLYMOUTH STREET',
'intersection_street_2': 'WATER STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WASHINGTON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:30:20.000',
'community_board': '02 BROOKLYN',
'bbl': '3000270040',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987137',
'y_coordinate_state_plane': '195508',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.703300591443224',
'longitude': '-73.98958765752316',
'location': {'latitude': '40.703300591443224',
'longitude': '-73.98958765752316',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492232',
'created_date': '2024-09-19T00:30:13.000',
'closed_date': '2024-09-19T01:03:40.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '2536 WEST STREET',
'street_name': 'WEST STREET',
'cross_street_1': 'AVENUE Y',
'cross_street_2': 'AVENUE Z',
'intersection_street_1': 'AVENUE Y',
'intersection_street_2': 'AVENUE Z',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:03:42.000',
'community_board': '13 BROOKLYN',
'bbl': '3072150020',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992674',
'y_coordinate_state_plane': '153343',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.587563248988374',
'longitude': '-73.96967039893228',
'location': {'latitude': '40.587563248988374',
'longitude': '-73.96967039893228',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486613',
'created_date': '2024-09-19T00:29: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': '10463',
'incident_address': '1 JACOBUS PLACE',
'street_name': 'JACOBUS PLACE',
'cross_street_1': 'WEST 225 STREET',
'cross_street_2': 'FORT CHARLES PLACE',
'intersection_street_1': 'WEST 225 STREET',
'intersection_street_2': 'FORT CHARLES PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'JACOBUS PLACE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '1022150339',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008544',
'y_coordinate_state_plane': '258129',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.875145400143914',
'longitude': '-73.91215405363715',
'location': {'latitude': '40.875145400143914',
'longitude': '-73.91215405363715',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487353',
'created_date': '2024-09-19T00:29:29.000',
'closed_date': '2024-09-19T01:06:15.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11433',
'incident_address': '109-26 164 STREET',
'street_name': '164 STREET',
'cross_street_1': '109 AVENUE',
'cross_street_2': '110 AVENUE',
'intersection_street_1': '109 AVENUE',
'intersection_street_2': '110 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '164 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:06:17.000',
'community_board': '12 QUEENS',
'bbl': '4101810015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1042792',
'y_coordinate_state_plane': '192477',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69478804715952',
'longitude': '-73.78888738633195',
'location': {'latitude': '40.69478804715952',
'longitude': '-73.78888738633195',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493697',
'created_date': '2024-09-19T00:29:20.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11368',
'incident_address': '108-06 37 AVENUE',
'street_name': '37 AVENUE',
'cross_street_1': '108 STREET',
'cross_street_2': '109 STREET',
'intersection_street_1': '108 STREET',
'intersection_street_2': '109 STREET',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '37 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:01:12.000',
'community_board': '03 QUEENS',
'bbl': '4017770006',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023050',
'y_coordinate_state_plane': '213984',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.753928041742626',
'longitude': '-73.85995631950479',
'location': {'latitude': '40.753928041742626',
'longitude': '-73.85995631950479',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487837',
'created_date': '2024-09-19T00:29:19.000',
'closed_date': '2024-09-19T00:33:45.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '10004',
'incident_address': '30 WASHINGTON STREET',
'street_name': 'WASHINGTON STREET',
'cross_street_1': 'BATTERY PLACE',
'cross_street_2': 'BK BATTERY TNNL PEDESTRIAN OVPS',
'intersection_street_1': 'BATTERY PLACE',
'intersection_street_2': 'BK BATTERY TNNL PEDESTRIAN OVPS',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WASHINGTON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:33:48.000',
'community_board': '01 MANHATTAN',
'bbl': '1000157502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '980016',
'y_coordinate_state_plane': '196471',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.70594325780663',
'longitude': '-74.01527107927228',
'location': {'latitude': '40.70594325780663',
'longitude': '-74.01527107927228',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490527',
'created_date': '2024-09-19T00:29:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10472',
'incident_address': '1996 GLEASON AVENUE',
'street_name': 'GLEASON 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': 'GLEASON AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2037920042',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023621',
'y_coordinate_state_plane': '242071',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83101664751081',
'longitude': '-73.85773072259643',
'location': {'latitude': '40.83101664751081',
'longitude': '-73.85773072259643',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484958',
'created_date': '2024-09-19T00:29:08.000',
'closed_date': '2024-09-19T01:00:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '18-16 EVERDELL AVENUE',
'street_name': 'EVERDELL AVENUE',
'cross_street_1': 'GATEWAY BOULEVARD',
'cross_street_2': 'BEACH 19 STREET',
'intersection_street_1': 'GATEWAY BOULEVARD',
'intersection_street_2': 'BEACH 19 STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'EVERDELL AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:00:51.000',
'community_board': '14 QUEENS',
'bbl': '4155630072',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1053443',
'y_coordinate_state_plane': '158290',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.60087565612088',
'longitude': '-73.75082890525756',
'location': {'latitude': '40.60087565612088',
'longitude': '-73.75082890525756',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489202',
'created_date': '2024-09-19T00:29:03.000',
'closed_date': '2024-09-19T01:09:07.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Detached Trailer',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '22-60 NAMEOKE STREET',
'street_name': 'NAMEOKE STREET',
'cross_street_1': 'CHANDLER STREET',
'cross_street_2': 'MCBRIDE STREET',
'intersection_street_1': 'CHANDLER STREET',
'intersection_street_2': 'MCBRIDE STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NAMEOKE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:09:10.000',
'community_board': '14 QUEENS',
'bbl': '4156540005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051842',
'y_coordinate_state_plane': '161087',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'location': {'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488508',
'created_date': '2024-09-19T00:28:42.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11369',
'incident_address': '25-50 87 STREET',
'street_name': '87 STREET',
'cross_street_1': '25 AVENUE',
'cross_street_2': '30 AVENUE',
'intersection_street_1': '25 AVENUE',
'intersection_street_2': '30 AVENUE',
'address_type': 'ADDRESS',
'city': 'EAST ELMHURST',
'landmark': '87 STREET',
'status': 'In Progress',
'community_board': '03 QUEENS',
'bbl': '4013600033',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016977',
'y_coordinate_state_plane': '217019',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.762282896886624',
'longitude': '-73.88186124015745',
'location': {'latitude': '40.762282896886624',
'longitude': '-73.88186124015745',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492005',
'created_date': '2024-09-19T00:28:34.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '10 AVENUE',
'street_name': '10 AVENUE',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 33 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 33 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984357',
'y_coordinate_state_plane': '213946',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 33 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'location': {'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487912',
'created_date': '2024-09-19T00:28:12.000',
'closed_date': '2024-09-19T00:47:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Talking',
'location_type': 'Store/Commercial',
'incident_zip': '11207',
'incident_address': '1766 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'CHAUNCEY STREET',
'cross_street_2': 'PILLING STREET',
'intersection_street_1': 'CHAUNCEY STREET',
'intersection_street_2': 'PILLING STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:47:32.000',
'community_board': '16 BROOKLYN',
'bbl': '3015170018',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1009245',
'y_coordinate_state_plane': '187967',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6825674704746',
'longitude': '-73.90988028089441',
'location': {'latitude': '40.6825674704746',
'longitude': '-73.90988028089441',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487579',
'created_date': '2024-09-19T00:28:04.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Sidewalk Condition',
'descriptor': 'Broken Sidewalk',
'location_type': 'Sidewalk',
'incident_zip': '11215',
'incident_address': '465 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': '16 STREET',
'cross_street_2': 'WINDSOR PLACE',
'intersection_street_1': '16 STREET',
'intersection_street_2': 'WINDSOR PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '7 AVENUE',
'status': 'In Progress',
'community_board': '07 BROOKLYN',
'bbl': '3011080007',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988328',
'y_coordinate_state_plane': '180613',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.662416741611',
'longitude': '-73.98530117492429',
'location': {'latitude': '40.662416741611',
'longitude': '-73.98530117492429',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490597',
'created_date': '2024-09-19T00:27:06.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11358',
'incident_address': '29-10 159 STREET',
'street_name': '159 STREET',
'cross_street_1': '29 AVENUE',
'cross_street_2': '32 AVENUE',
'intersection_street_1': '29 AVENUE',
'intersection_street_2': '32 AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '159 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:44:53.000',
'community_board': '07 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1038152',
'y_coordinate_state_plane': '220182',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77086074963879',
'longitude': '-73.80539802141905',
'location': {'latitude': '40.77086074963879',
'longitude': '-73.80539802141905',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490607',
'created_date': '2024-09-19T00:26:46.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '10 AVENUE',
'street_name': '10 AVENUE',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 33 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 33 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984357',
'y_coordinate_state_plane': '213946',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 33 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'location': {'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486564',
'created_date': '2024-09-19T00:26:32.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': '10312',
'incident_address': '29 SCRANTON AVENUE',
'street_name': 'SCRANTON AVENUE',
'cross_street_1': 'RICHMOND AVENUE',
'cross_street_2': 'WAINWRIGHT AVENUE',
'intersection_street_1': 'RICHMOND AVENUE',
'intersection_street_2': 'WAINWRIGHT AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'SCRANTON AVENUE',
'status': 'In Progress',
'community_board': '03 STATEN ISLAND',
'bbl': '5056070020',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '937220',
'y_coordinate_state_plane': '140907',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.553308157737774',
'longitude': '-74.16923916252257',
'location': {'latitude': '40.553308157737774',
'longitude': '-74.16923916252257',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483756',
'created_date': '2024-09-19T00:26: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': '10040',
'incident_address': '35 HILLSIDE AVENUE',
'street_name': 'HILLSIDE AVENUE',
'cross_street_1': 'BOGARDUS PLACE',
'cross_street_2': 'ELLWOOD STREET',
'intersection_street_1': 'BOGARDUS PLACE',
'intersection_street_2': 'ELLWOOD STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'HILLSIDE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:16.000',
'community_board': '12 MANHATTAN',
'bbl': '1021700112',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003705',
'y_coordinate_state_plane': '252082',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'location': {'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490232',
'created_date': '2024-09-19T00:25:44.000',
'closed_date': '2024-09-19T01:03:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '2540 WEST STREET',
'street_name': 'WEST STREET',
'cross_street_1': 'AVENUE Y',
'cross_street_2': 'AVENUE Z',
'intersection_street_1': 'AVENUE Y',
'intersection_street_2': 'AVENUE Z',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:03:26.000',
'community_board': '13 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992677',
'y_coordinate_state_plane': '153321',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58750286052584',
'longitude': '-73.96965962522793',
'location': {'latitude': '40.58750286052584',
'longitude': '-73.96965962522793',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483542',
'created_date': '2024-09-19T00:25:33.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11370',
'incident_address': '76-03 31 AVENUE',
'street_name': '31 AVENUE',
'cross_street_1': '76 STREET',
'cross_street_2': '77 STREET',
'intersection_street_1': '76 STREET',
'intersection_street_2': '77 STREET',
'address_type': 'ADDRESS',
'city': 'EAST ELMHURST',
'landmark': '31 AVENUE',
'status': 'In Progress',
'community_board': '03 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014319',
'y_coordinate_state_plane': '215700',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75867202259864',
'longitude': '-73.89146204573142',
'location': {'latitude': '40.75867202259864',
'longitude': '-73.89146204573142',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490829',
'created_date': '2024-09-19T00:25:28.000',
'closed_date': '2024-09-19T01:00:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10472',
'incident_address': '1810 MCGRAW AVENUE',
'street_name': 'MCGRAW AVENUE',
'cross_street_1': 'BEACH AVENUE',
'cross_street_2': 'TAYLOR AVENUE',
'intersection_street_1': 'BEACH AVENUE',
'intersection_street_2': 'TAYLOR AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MCGRAW AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:00:24.000',
'community_board': '09 BRONX',
'bbl': '2038770043',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021269',
'y_coordinate_state_plane': '243186',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83408716968069',
'longitude': '-73.86622363737138',
'location': {'latitude': '40.83408716968069',
'longitude': '-73.86622363737138',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491874',
'created_date': '2024-09-19T00:25:20.000',
'closed_date': '2024-09-19T01:09:25.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '22-60 NAMEOKE STREET',
'street_name': 'NAMEOKE STREET',
'cross_street_1': 'CHANDLER STREET',
'cross_street_2': 'MCBRIDE STREET',
'intersection_street_1': 'CHANDLER STREET',
'intersection_street_2': 'MCBRIDE STREET',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NAMEOKE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:09:32.000',
'community_board': '14 QUEENS',
'bbl': '4156540005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1051842',
'y_coordinate_state_plane': '161087',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'location': {'latitude': '40.608565176492206',
'longitude': '-73.75656624962146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491630',
'created_date': '2024-09-19T00:25:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11204',
'incident_address': '6912 16 AVENUE',
'street_name': '16 AVENUE',
'cross_street_1': 'BAY RIDGE AVENUE',
'cross_street_2': '70 STREET',
'intersection_street_1': 'BAY RIDGE AVENUE',
'intersection_street_2': '70 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '16 AVENUE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3061580063',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984963',
'y_coordinate_state_plane': '165008',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61958527290409',
'longitude': '-73.99743169759168',
'location': {'latitude': '40.61958527290409',
'longitude': '-73.99743169759168',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492339',
'created_date': '2024-09-19T00:25:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11357',
'incident_address': '145-04 14 AVENUE',
'street_name': '14 AVENUE',
'cross_street_1': 'PARSONS BOULEVARD',
'cross_street_2': '145 PLACE',
'intersection_street_1': 'PARSONS BOULEVARD',
'intersection_street_2': '145 PLACE',
'address_type': 'ADDRESS',
'city': 'WHITESTONE',
'landmark': '14 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:46:37.000',
'community_board': '07 QUEENS',
'bbl': '4046220013',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033512',
'y_coordinate_state_plane': '226015',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'location': {'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487578',
'created_date': '2024-09-19T00:24:18.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '10040',
'incident_address': '300 WADSWORTH AVENUE',
'street_name': 'WADSWORTH AVENUE',
'cross_street_1': 'WEST 188 STREET',
'cross_street_2': 'WEST 189 STREET',
'intersection_street_1': 'WEST 188 STREET',
'intersection_street_2': 'WEST 189 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WADSWORTH AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:57.000',
'community_board': '12 MANHATTAN',
'bbl': '1021700307',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003140',
'y_coordinate_state_plane': '250530',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.854301674144835',
'longitude': '-73.93171607047358',
'location': {'latitude': '40.854301674144835',
'longitude': '-73.93171607047358',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485086',
'created_date': '2024-09-19T00:24:00.000',
'closed_date': '2024-09-19T00:24:26.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': '11374',
'incident_address': '98-39 67 AVENUE',
'street_name': '67 AVENUE',
'cross_street_1': 'WETHEROLE STREET',
'cross_street_2': 'BOOTH STREET',
'intersection_street_1': 'WETHEROLE STREET',
'intersection_street_2': 'BOOTH STREET',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': '67 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:24:29.000',
'community_board': '06 QUEENS',
'bbl': '4031570140',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024474',
'y_coordinate_state_plane': '203557',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72530219178569',
'longitude': '-73.8548789304943',
'location': {'latitude': '40.72530219178569',
'longitude': '-73.8548789304943',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488262',
'created_date': '2024-09-19T00:24:00.000',
'closed_date': '2024-09-19T01:31:33.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10462',
'incident_address': '908 WOODMANSTEN PLACE',
'street_name': 'WOODMANSTEN PLACE',
'cross_street_1': 'BOGART AVENUE',
'cross_street_2': 'PAULDING AVENUE',
'intersection_street_1': 'BOGART AVENUE',
'intersection_street_2': 'PAULDING AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODMANSTEN PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:31:38.000',
'community_board': '11 BRONX',
'bbl': '2043250001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1022739',
'y_coordinate_state_plane': '250781',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.854926906865785',
'longitude': '-73.86086788203355',
'location': {'latitude': '40.854926906865785',
'longitude': '-73.86086788203355',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491169',
'created_date': '2024-09-19T00:24:00.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2404 GERRITSEN AVENUE',
'street_name': 'GERRITSEN AVENUE',
'cross_street_1': 'WHITNEY AVENUE',
'cross_street_2': 'AVENUE W',
'intersection_street_1': 'WHITNEY AVENUE',
'intersection_street_2': 'AVENUE W',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GERRITSEN AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3088270018',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003372',
'y_coordinate_state_plane': '157234',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59822663698829',
'longitude': '-73.93114253308492',
'location': {'latitude': '40.59822663698829',
'longitude': '-73.93114253308492',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485058',
'created_date': '2024-09-19T00:23:56.000',
'closed_date': '2024-09-19T01:14:01.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11201',
'incident_address': '442 FULTON STREET',
'street_name': 'FULTON STREET',
'cross_street_1': 'LAWRENCE STREET',
'cross_street_2': 'BRIDGE STREET',
'intersection_street_1': 'LAWRENCE STREET',
'intersection_street_2': 'BRIDGE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FULTON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:14:04.000',
'community_board': '02 BROOKLYN',
'bbl': '3001560024',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '988257',
'y_coordinate_state_plane': '190929',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.690731865536264',
'longitude': '-73.98555095542704',
'location': {'latitude': '40.690731865536264',
'longitude': '-73.98555095542704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486785',
'created_date': '2024-09-19T00:23:54.000',
'closed_date': '2024-09-19T00:30:58.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Drug Activity',
'descriptor': 'Use Indoor',
'location_type': 'Other',
'incident_zip': '11365',
'incident_address': '71-10 PARK AVENUE',
'street_name': 'PARK AVENUE',
'cross_street_1': '71 AVENUE',
'cross_street_2': '160 STREET',
'intersection_street_1': '71 AVENUE',
'intersection_street_2': '160 STREET',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': 'PARK AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:31:03.000',
'community_board': '08 QUEENS',
'bbl': '4067970054',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037172',
'y_coordinate_state_plane': '205268',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72993160457863',
'longitude': '-73.80905346664248',
'location': {'latitude': '40.72993160457863',
'longitude': '-73.80905346664248',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486898',
'created_date': '2024-09-19T00:23:51.000',
'closed_date': '2024-09-19T00:41:34.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11233',
'incident_address': '2317 DEAN STREET',
'street_name': 'DEAN STREET',
'cross_street_1': 'ROCKAWAY AVENUE',
'cross_street_2': 'EASTERN PARKWAY',
'intersection_street_1': 'ROCKAWAY AVENUE',
'intersection_street_2': 'EASTERN PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DEAN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:41:37.000',
'community_board': '16 BROOKLYN',
'bbl': '3014420100',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1009019',
'y_coordinate_state_plane': '185117',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67474550492708',
'longitude': '-73.91070560034514',
'location': {'latitude': '40.67474550492708',
'longitude': '-73.91070560034514',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493299',
'created_date': '2024-09-19T00:23:38.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': '80-19 101 AVENUE',
'street_name': '101 AVENUE',
'cross_street_1': '80 STREET',
'cross_street_2': '81 STREET',
'intersection_street_1': '80 STREET',
'intersection_street_2': '81 STREET',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '101 AVENUE',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4090510033',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023567',
'y_coordinate_state_plane': '187339',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.6807917261959',
'longitude': '-73.85824590645649',
'location': {'latitude': '40.6807917261959',
'longitude': '-73.85824590645649',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486587',
'created_date': '2024-09-19T00:23:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10460',
'incident_address': '1577 LELAND AVENUE',
'street_name': 'LELAND AVENUE',
'cross_street_1': 'GUERLAIN STREET',
'cross_street_2': 'EAST TREMONT AVENUE',
'intersection_street_1': 'GUERLAIN STREET',
'intersection_street_2': 'EAST TREMONT AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'LELAND AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2039260012',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021562',
'y_coordinate_state_plane': '245432',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.840250548425054',
'longitude': '-73.86515232413545',
'location': {'latitude': '40.840250548425054',
'longitude': '-73.86515232413545',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491769',
'created_date': '2024-09-19T00:23:05.000',
'closed_date': '2024-09-19T00: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': '10029',
'incident_address': '307 EAST 104 STREET',
'street_name': 'EAST 104 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 104 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:37:44.000',
'community_board': '11 MANHATTAN',
'bbl': '1016760006',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000052',
'y_coordinate_state_plane': '226781',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78912346747359',
'longitude': '-73.94293455396478',
'location': {'latitude': '40.78912346747359',
'longitude': '-73.94293455396478',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489553',
'created_date': '2024-09-19T00:22:59.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Maintenance or Facility',
'descriptor': 'Garbage or Litter',
'location_type': 'Park',
'incident_zip': '10013',
'incident_address': '55 MULBERRY STREET',
'street_name': 'MULBERRY STREET',
'cross_street_1': 'MOSCO STREET',
'cross_street_2': 'BAYARD STREET',
'intersection_street_1': 'MOSCO STREET',
'intersection_street_2': 'BAYARD STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'MULBERRY STREET',
'status': 'In Progress',
'community_board': '03 MANHATTAN',
'bbl': '1001650001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984378',
'y_coordinate_state_plane': '199937',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71545761672882',
'longitude': '-73.99953826708476',
'location': {'latitude': '40.71545761672882',
'longitude': '-73.99953826708476',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487277',
'created_date': '2024-09-19T00:22:45.000',
'closed_date': '2024-09-19T01:25:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11236',
'incident_address': '1243 EAST 87 STREET',
'street_name': 'EAST 87 STREET',
'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': 'EAST 87 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:25:19.000',
'community_board': '18 BROOKLYN',
'bbl': '3080660020',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1011488',
'y_coordinate_state_plane': '169971',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63316581646606',
'longitude': '-73.90186581838118',
'location': {'latitude': '40.63316581646606',
'longitude': '-73.90186581838118',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486015',
'created_date': '2024-09-19T00:22:34.000',
'closed_date': '2024-09-19T00:49: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': '11210',
'incident_address': '860 EAST 27 STREET',
'street_name': 'EAST 27 STREET',
'cross_street_1': 'DEAD END',
'cross_street_2': 'AVENUE I',
'intersection_street_1': 'DEAD END',
'intersection_street_2': 'AVENUE I',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 27 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T00:49:54.000',
'community_board': '14 BROOKLYN',
'bbl': '3075720070',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998049',
'y_coordinate_state_plane': '168576',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.629367966827076',
'longitude': '-73.95028723467163',
'location': {'latitude': '40.629367966827076',
'longitude': '-73.95028723467163',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487306',
'created_date': '2024-09-19T00:22:30.000',
'closed_date': '2024-09-19T01:03:05.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': '11223',
'incident_address': '2568 WEST 1 STREET',
'street_name': 'WEST 1 STREET',
'cross_street_1': 'AVENUE Y',
'cross_street_2': 'AVENUE Z',
'intersection_street_1': 'AVENUE Y',
'intersection_street_2': 'AVENUE Z',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 1 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:03:08.000',
'community_board': '13 BROOKLYN',
'bbl': '3072140001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992442',
'y_coordinate_state_plane': '153128',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.58697333431153',
'longitude': '-73.97050594766067',
'location': {'latitude': '40.58697333431153',
'longitude': '-73.97050594766067',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484435',
'created_date': '2024-09-19T00:22:02.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Commercial Disposal Complaint',
'descriptor': 'Waste Disposal',
'location_type': 'Sidewalk',
'incident_zip': '10014',
'incident_address': '69 7 AVENUE SOUTH',
'street_name': '7 AVENUE SOUTH',
'cross_street_1': 'BLEECKER STREET',
'cross_street_2': 'BARROW STREET',
'intersection_street_1': 'BLEECKER STREET',
'intersection_street_2': 'BARROW STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE SOUTH',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:01:16.000',
'community_board': '02 MANHATTAN',
'bbl': '1005900054',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983264',
'y_coordinate_state_plane': '206064',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7322746929856',
'longitude': '-74.00355768400813',
'location': {'latitude': '40.7322746929856',
'longitude': '-74.00355768400813',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491356',
'created_date': '2024-09-19T00:22:00.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': '10 AVENUE',
'street_name': '10 AVENUE',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 33 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 33 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984357',
'y_coordinate_state_plane': '213946',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 33 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'location': {'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489924',
'created_date': '2024-09-19T00:21:15.000',
'closed_date': '2024-09-19T00: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': '11214',
'incident_address': '30 BAY 25 STREET',
'street_name': 'BAY 25 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 25 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:29:59.000',
'community_board': '11 BROOKLYN',
'bbl': '3063750049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984748',
'y_coordinate_state_plane': '159149',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'location': {'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486028',
'created_date': '2024-09-19T00:20:46.000',
'closed_date': '2024-09-19T00:23:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '35 HILLSIDE AVENUE',
'street_name': 'HILLSIDE AVENUE',
'cross_street_1': 'BOGARDUS PLACE',
'cross_street_2': 'ELLWOOD STREET',
'intersection_street_1': 'BOGARDUS PLACE',
'intersection_street_2': 'ELLWOOD STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'HILLSIDE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:23:07.000',
'community_board': '12 MANHATTAN',
'bbl': '1021700112',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003705',
'y_coordinate_state_plane': '252082',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'location': {'latitude': '40.858560221856706',
'longitude': '-73.92966919428181',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484636',
'created_date': '2024-09-19T00:20:06.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10040',
'incident_address': '27 SICKLES STREET',
'street_name': 'SICKLES STREET',
'cross_street_1': 'NAGLE AVENUE',
'cross_street_2': 'SHERMAN AVENUE',
'intersection_street_1': 'NAGLE AVENUE',
'intersection_street_2': 'SHERMAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'SICKLES STREET',
'status': 'In Progress',
'community_board': '12 MANHATTAN',
'bbl': '1021740145',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1004247',
'y_coordinate_state_plane': '253063',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'location': {'latitude': '40.86125155997211',
'longitude': '-73.92770691106014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487640',
'created_date': '2024-09-19T00:19:39.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11421',
'incident_address': '86-22 87 STREET',
'street_name': '87 STREET',
'cross_street_1': '85 ROAD',
'cross_street_2': 'JAMAICA AVENUE',
'intersection_street_1': '85 ROAD',
'intersection_street_2': 'JAMAICA AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '87 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:01:12.000',
'community_board': '09 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023753',
'y_coordinate_state_plane': '191854',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69318352201691',
'longitude': '-73.8575488283919',
'location': {'latitude': '40.69318352201691',
'longitude': '-73.8575488283919',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483764',
'created_date': '2024-09-19T00:19: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': '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': '2024-09-19T01:48:54.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': '62488960',
'created_date': '2024-09-19T00:19:36.000',
'closed_date': '2024-09-19T00:43:09.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11234',
'incident_address': '2049 COLEMAN STREET',
'street_name': 'COLEMAN 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': 'COLEMAN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:43:12.000',
'community_board': '18 BROOKLYN',
'bbl': '3085270021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1004563',
'y_coordinate_state_plane': '161989',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61127548808744',
'longitude': '-73.92683949667223',
'location': {'latitude': '40.61127548808744',
'longitude': '-73.92683949667223',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488378',
'created_date': '2024-09-19T00:19:27.000',
'agency': 'DCWP',
'agency_name': 'Department of Consumer and Worker Protection',
'complaint_type': 'Consumer Complaint',
'descriptor': 'Other Store (Non-Food)',
'location_type': 'Business',
'incident_zip': '11229',
'incident_address': '2312 KNAPP STREET',
'street_name': 'KNAPP STREET',
'cross_street_1': 'AVENUE W',
'cross_street_2': 'ALLEN AVENUE',
'intersection_street_1': 'AVENUE W',
'intersection_street_2': 'ALLEN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KNAPP STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074100156',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002765',
'y_coordinate_state_plane': '156521',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.596270885377876',
'longitude': '-73.93333026617783',
'location': {'latitude': '40.596270885377876',
'longitude': '-73.93333026617783',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490496',
'created_date': '2024-09-19T00:19:27.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11419',
'incident_address': '107-19 118 STREET',
'street_name': '118 STREET',
'cross_street_1': '107 AVENUE',
'cross_street_2': '109 AVENUE',
'intersection_street_1': '107 AVENUE',
'intersection_street_2': '109 AVENUE',
'address_type': 'ADDRESS',
'city': 'SOUTH RICHMOND HILL',
'landmark': '118 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4095980070',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033079',
'y_coordinate_state_plane': '188450',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68379380181476',
'longitude': '-73.82394323361834',
'location': {'latitude': '40.68379380181476',
'longitude': '-73.82394323361834',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491922',
'created_date': '2024-09-19T00:19:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11417',
'incident_address': '107-17 106 STREET',
'street_name': '106 STREET',
'cross_street_1': '107 AVENUE',
'cross_street_2': '109 AVENUE',
'intersection_street_1': '107 AVENUE',
'intersection_street_2': '109 AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '106 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4095440075',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1030190',
'y_coordinate_state_plane': '187366',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.680833939698196',
'longitude': '-73.83436711300743',
'location': {'latitude': '40.680833939698196',
'longitude': '-73.83436711300743',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487010',
'created_date': '2024-09-19T00:19:06.000',
'closed_date': '2024-09-19T00:31:56.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10030',
'incident_address': '2400 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 140 STREET',
'cross_street_2': 'WEST 141 STREET',
'intersection_street_1': 'WEST 140 STREET',
'intersection_street_2': 'WEST 141 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:31:59.000',
'community_board': '10 MANHATTAN',
'bbl': '1020260029',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000482',
'y_coordinate_state_plane': '237497',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81853515725049',
'longitude': '-73.94135579635707',
'location': {'latitude': '40.81853515725049',
'longitude': '-73.94135579635707',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490646',
'created_date': '2024-09-19T00:18:52.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Outdoor Dining',
'descriptor': 'Sidewalk Zone Blocked',
'location_type': 'Sidewalk',
'incident_zip': '10019',
'incident_address': '831 7 AVENUE',
'street_name': '7 AVENUE',
'cross_street_1': 'WEST 53 STREET',
'cross_street_2': 'WEST 54 STREET',
'intersection_street_1': 'WEST 53 STREET',
'intersection_street_2': 'WEST 54 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '7 AVENUE',
'status': 'In Progress',
'community_board': '05 MANHATTAN',
'bbl': '1010060063',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989337',
'y_coordinate_state_plane': '217368',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.763299921645554',
'longitude': '-73.98163654260297',
'location': {'latitude': '40.763299921645554',
'longitude': '-73.98163654260297',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483378',
'created_date': '2024-09-19T00:17:50.000',
'closed_date': '2024-09-19T00:54:57.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '10-40 NEILSON STREET',
'street_name': 'NEILSON STREET',
'cross_street_1': 'CORNAGA AVENUE',
'cross_street_2': 'DINSMORE AVENUE',
'intersection_street_1': 'CORNAGA AVENUE',
'intersection_street_2': 'DINSMORE AVENUE',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'NEILSON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:55:05.000',
'community_board': '14 QUEENS',
'bbl': '4155550018',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1054271',
'y_coordinate_state_plane': '159377',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.60385273445068',
'longitude': '-73.74783594039397',
'location': {'latitude': '40.60385273445068',
'longitude': '-73.74783594039397',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489889',
'created_date': '2024-09-19T00:17:37.000',
'closed_date': '2024-09-19T01:07:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11209',
'incident_address': '9715 3 AVENUE',
'street_name': '3 AVENUE',
'cross_street_1': '97 STREET',
'cross_street_2': 'MARINE AVENUE',
'intersection_street_1': '97 STREET',
'intersection_street_2': 'MARINE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '3 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:07:20.000',
'community_board': '10 BROOKLYN',
'bbl': '3061260006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '974737',
'y_coordinate_state_plane': '163553',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61558652160902',
'longitude': '-74.03426479360745',
'location': {'latitude': '40.61558652160902',
'longitude': '-74.03426479360745',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485995',
'created_date': '2024-09-19T00:17:32.000',
'closed_date': '2024-09-19T01:27:34.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11211',
'incident_address': '759 GRAND STREET',
'street_name': 'GRAND STREET',
'cross_street_1': 'GRAHAM AVENUE',
'cross_street_2': 'HUMBOLDT STREET',
'intersection_street_1': 'GRAHAM AVENUE',
'intersection_street_2': 'HUMBOLDT STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'GRAND STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:27:38.000',
'community_board': '01 BROOKLYN',
'bbl': '3027830031',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000111',
'y_coordinate_state_plane': '198594',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.71175718620469',
'longitude': '-73.942787970944',
'location': {'latitude': '40.71175718620469',
'longitude': '-73.942787970944',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493127',
'created_date': '2024-09-19T00:16:50.000',
'closed_date': '2024-09-19T00:55:03.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': '1266 BERGEN AVENUE',
'street_name': 'BERGEN 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': 'BERGEN AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:55:08.000',
'community_board': '18 BROOKLYN',
'bbl': '3083600069',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008723',
'y_coordinate_state_plane': '167671',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62686087583163',
'longitude': '-73.91183600662785',
'location': {'latitude': '40.62686087583163',
'longitude': '-73.91183600662785',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484624',
'created_date': '2024-09-19T00:16:50.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': '11385',
'incident_address': '601 ONDERDONK AVENUE',
'street_name': 'ONDERDONK AVENUE',
'cross_street_1': 'GROVE STREET',
'cross_street_2': 'LINDEN STREET',
'intersection_street_1': 'GROVE STREET',
'intersection_street_2': 'LINDEN STREET',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'ONDERDONK AVENUE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4034080012',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009517',
'y_coordinate_state_plane': '196130',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7049722312723',
'longitude': '-73.90886896382558',
'location': {'latitude': '40.7049722312723',
'longitude': '-73.90886896382558',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489564',
'created_date': '2024-09-19T00:16:47.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'incident_zip': '10001',
'incident_address': 'WEST 33 STREET',
'street_name': 'WEST 33 STREET',
'cross_street_1': '10 AVENUE',
'cross_street_2': 'WEST 33 STREET',
'intersection_street_1': '10 AVENUE',
'intersection_street_2': 'WEST 33 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984357',
'y_coordinate_state_plane': '213946',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '10 AVENUE AND WEST 33 STREET, MANHATTAN, NY, 10001',
'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'location': {'latitude': '40.75390886966659',
'longitude': '-73.99961379734235',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485717',
'created_date': '2024-09-19T00:16:44.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Dog Waste',
'location_type': 'Sidewalk',
'incident_zip': '10472',
'incident_address': '1234 STRATFORD AVENUE',
'street_name': 'STRATFORD AVENUE',
'cross_street_1': 'WESTCHESTER AVENUE',
'cross_street_2': 'EAST 172 STREET',
'intersection_street_1': 'WESTCHESTER AVENUE',
'intersection_street_2': 'EAST 172 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'STRATFORD AVENUE',
'status': 'In Progress',
'community_board': '09 BRONX',
'bbl': '2037770015',
'borough': 'BRONX',
'x_coordinate_state_plane': '1018644',
'y_coordinate_state_plane': '241759',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83018108184639',
'longitude': '-73.87571695998837',
'location': {'latitude': '40.83018108184639',
'longitude': '-73.87571695998837',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489922',
'created_date': '2024-09-19T00:16:43.000',
'closed_date': '2024-09-19T00:51: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': '10453',
'incident_address': '1605 NELSON AVENUE',
'street_name': 'NELSON AVENUE',
'cross_street_1': 'FEATHERBED LANE',
'cross_street_2': 'FEATHERBED LANE',
'intersection_street_1': 'FEATHERBED LANE',
'intersection_street_2': 'FEATHERBED LANE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'NELSON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:51:47.000',
'community_board': '05 BRONX',
'bbl': '2028760055',
'borough': 'BRONX',
'x_coordinate_state_plane': '1006499',
'y_coordinate_state_plane': '247590',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84622442205441',
'longitude': '-73.91958365636393',
'location': {'latitude': '40.84622442205441',
'longitude': '-73.91958365636393',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493009',
'created_date': '2024-09-19T00:16:21.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': '2442 EAST 22 STREET',
'street_name': 'EAST 22 STREET',
'cross_street_1': 'AVENUE X',
'cross_street_2': 'AVENUE Y',
'intersection_street_1': 'AVENUE X',
'intersection_street_2': 'AVENUE Y',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 22 STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074220220',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '998686',
'y_coordinate_state_plane': '154968',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59201579596947',
'longitude': '-73.94802144678599',
'location': {'latitude': '40.59201579596947',
'longitude': '-73.94802144678599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486023',
'created_date': '2024-09-19T00:15:18.000',
'closed_date': '2024-09-19T00:36: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': '11230',
'incident_address': '505 ELMWOOD AVENUE',
'street_name': 'ELMWOOD AVENUE',
'cross_street_1': 'EAST 5 STREET',
'cross_street_2': 'OCEAN PARKWAY',
'intersection_street_1': 'EAST 5 STREET',
'intersection_street_2': 'OCEAN PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ELMWOOD AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:36:33.000',
'community_board': '12 BROOKLYN',
'bbl': '3065030051',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991940',
'y_coordinate_state_plane': '167881',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62746774789866',
'longitude': '-73.97229652389454',
'location': {'latitude': '40.62746774789866',
'longitude': '-73.97229652389454',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486539',
'created_date': '2024-09-19T00:15:05.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Indoor Air Quality',
'descriptor': 'Chemical Vapors/Gases/Odors',
'location_type': 'Commercial Building',
'incident_zip': '11206',
'incident_address': '988 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': 'THROOP AVENUE',
'cross_street_2': 'MARCUS GARVEY BOULEVARD',
'intersection_street_1': 'THROOP AVENUE',
'intersection_street_2': 'MARCUS GARVEY BOULEVARD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MYRTLE AVENUE',
'status': 'In Progress',
'community_board': '03 BROOKLYN',
'bbl': '3017570025',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000358',
'y_coordinate_state_plane': '192929',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69620765016373',
'longitude': '-73.94191057112042',
'location': {'latitude': '40.69620765016373',
'longitude': '-73.94191057112042',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491032',
'created_date': '2024-09-19T00:14:47.000',
'closed_date': '2024-09-19T00:37: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': '10029',
'incident_address': '2 AVENUE',
'street_name': '2 AVENUE',
'cross_street_1': '2 AVENUE',
'cross_street_2': 'EAST 104 STREET',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': 'EAST 104 STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:37:23.000',
'community_board': '11 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999924',
'y_coordinate_state_plane': '226848',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78930759239708',
'longitude': '-73.94339664132497',
'location': {'latitude': '40.78930759239708',
'longitude': '-73.94339664132497',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485996',
'created_date': '2024-09-19T00:14:43.000',
'closed_date': '2024-09-19T00:26:23.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': '11377',
'incident_address': '59-10 WOODSIDE AVENUE',
'street_name': 'WOODSIDE AVENUE',
'cross_street_1': '59 STREET',
'cross_street_2': '60 STREET',
'intersection_street_1': '59 STREET',
'intersection_street_2': '60 STREET',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': 'WOODSIDE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:26:28.000',
'community_board': '02 QUEENS',
'bbl': '4013310041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1010479',
'y_coordinate_state_plane': '210832',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74532282812181',
'longitude': '-73.9053420000799',
'location': {'latitude': '40.74532282812181',
'longitude': '-73.9053420000799',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492592',
'created_date': '2024-09-19T00:14:38.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Graffiti',
'descriptor': 'Graffiti',
'location_type': 'Mixed Use',
'incident_zip': '10075',
'incident_address': '271 EAST 78 STREET',
'street_name': 'EAST 78 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'facility_type': 'N/A',
'status': 'Open',
'due_date': '2024-10-19T00:14:38.000',
'resolution_description': 'The graffiti on this property has been scheduled to be removed by the City.',
'resolution_action_updated_date': '2024-09-19T00:14:38.000',
'community_board': '08 MANHATTAN',
'bbl': '1014330024',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996345',
'y_coordinate_state_plane': '220902',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.772993023077916',
'longitude': '-73.95633214990671',
'location': {'latitude': '40.772993023077916',
'longitude': '-73.95633214990671',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484641',
'created_date': '2024-09-19T00:14: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': '10452',
'incident_address': '957 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003936',
'y_coordinate_state_plane': '242233',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'location': {'latitude': '40.8315271048226',
'longitude': '-73.92886303221528',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487548',
'created_date': '2024-09-19T00:14:30.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Posted Parking Sign Violation',
'location_type': 'Street/Sidewalk',
'incident_zip': '11356',
'incident_address': '126-09 22 AVENUE',
'street_name': '22 AVENUE',
'cross_street_1': '126 STREET',
'cross_street_2': '127 STREET',
'intersection_street_1': '126 STREET',
'intersection_street_2': '127 STREET',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': '22 AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4041710041',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1027949',
'y_coordinate_state_plane': '223550',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78016133553098',
'longitude': '-73.84221184264153',
'location': {'latitude': '40.78016133553098',
'longitude': '-73.84221184264153',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487398',
'created_date': '2024-09-19T00:14:24.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11356',
'incident_address': '11-21 COLLEGE POINT BOULEVARD',
'street_name': 'COLLEGE POINT BOULEVARD',
'cross_street_1': '11 AVENUE',
'cross_street_2': 'COLLEGE PLACE',
'intersection_street_1': '11 AVENUE',
'intersection_street_2': 'COLLEGE PLACE',
'address_type': 'ADDRESS',
'city': 'COLLEGE POINT',
'landmark': 'COLLEGE POINT BOULEVARD',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4039950008',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026987',
'y_coordinate_state_plane': '226187',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.78740389142424',
'longitude': '-73.84566864521503',
'location': {'latitude': '40.78740389142424',
'longitude': '-73.84566864521503',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493735',
'created_date': '2024-09-19T00:14:11.000',
'closed_date': '2024-09-19T00:40:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Drug Activity',
'descriptor': 'Use Outside',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '4848 5 AVENUE',
'street_name': '5 AVENUE',
'cross_street_1': '48 STREET',
'cross_street_2': '49 STREET',
'intersection_street_1': '48 STREET',
'intersection_street_2': '49 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '5 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:40:06.000',
'community_board': '07 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '981628',
'y_coordinate_state_plane': '174616',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6459568374732',
'longitude': '-74.00944845797038',
'location': {'latitude': '40.6459568374732',
'longitude': '-74.00944845797038',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490528',
'created_date': '2024-09-19T00:14:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10033',
'incident_address': '729 WEST 186 STREET',
'street_name': 'WEST 186 STREET',
'cross_street_1': 'BENNETT AVENUE',
'cross_street_2': 'OVERLOOK TERRACE',
'intersection_street_1': 'BENNETT AVENUE',
'intersection_street_2': 'OVERLOOK TERRACE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 186 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:21:10.000',
'community_board': '12 MANHATTAN',
'bbl': '1021800200',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1002056',
'y_coordinate_state_plane': '250284',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.85362873031077',
'longitude': '-73.93563518613773',
'location': {'latitude': '40.85362873031077',
'longitude': '-73.93563518613773',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484448',
'created_date': '2024-09-19T00:14:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11417',
'incident_address': '107-17 106 STREET',
'street_name': '106 STREET',
'cross_street_1': '107 AVENUE',
'cross_street_2': '109 AVENUE',
'intersection_street_1': '107 AVENUE',
'intersection_street_2': '109 AVENUE',
'address_type': 'ADDRESS',
'city': 'OZONE PARK',
'landmark': '106 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:27.000',
'community_board': '10 QUEENS',
'bbl': '4095440075',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1030190',
'y_coordinate_state_plane': '187366',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.680833939698196',
'longitude': '-73.83436711300743',
'location': {'latitude': '40.680833939698196',
'longitude': '-73.83436711300743',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489571',
'created_date': '2024-09-19T00:13:59.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10472',
'incident_address': 'GLEASON AVENUE',
'street_name': 'GLEASON AVENUE',
'cross_street_1': 'GLEASON AVENUE',
'cross_street_2': 'PUGLSEY AVENUE',
'intersection_street_1': 'GLEASON AVENUE',
'intersection_street_2': 'PUGLSEY AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '09 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023780',
'y_coordinate_state_plane': '242102',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83110102328477',
'longitude': '-73.85715598568363',
'location': {'latitude': '40.83110102328477',
'longitude': '-73.85715598568363',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485491',
'created_date': '2024-09-19T00:13:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Lamppost Knocked Down',
'incident_address': 'MARTIN LUTHER KING JR EXPY',
'street_name': 'MARTIN LUTHER KING JR EXPY',
'cross_street_1': 'HOOKER PL',
'address_type': 'BLOCKFACE',
'status': 'Open',
'community_board': '0 Unspecified',
'borough': 'Unspecified',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'Unspecified'},
{'unique_key': '62486341',
'created_date': '2024-09-19T00:12:54.000',
'closed_date': '2024-09-19T01:23:39.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': '471 55 STREET',
'street_name': '55 STREET',
'cross_street_1': '4 AVENUE',
'cross_street_2': '5 AVENUE',
'intersection_street_1': '4 AVENUE',
'intersection_street_2': '5 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '55 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:23:43.000',
'community_board': '07 BROOKLYN',
'bbl': '3008230050',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '980368',
'y_coordinate_state_plane': '173457',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64277516946314',
'longitude': '-74.01398823987964',
'location': {'latitude': '40.64277516946314',
'longitude': '-74.01398823987964',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484510',
'created_date': '2024-09-19T00:12:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11355',
'incident_address': '150-35 59 AVENUE',
'street_name': '59 AVENUE',
'cross_street_1': '150 STREET',
'cross_street_2': '153 STREET',
'intersection_street_1': '150 STREET',
'intersection_street_2': '153 STREET',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '59 AVENUE',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4064320035',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034540',
'y_coordinate_state_plane': '209602',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.741842695067504',
'longitude': '-73.81851749432101',
'location': {'latitude': '40.741842695067504',
'longitude': '-73.81851749432101',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485862',
'created_date': '2024-09-19T00:12:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '11230',
'incident_address': '1388 EAST 18 STREET',
'street_name': 'EAST 18 STREET',
'cross_street_1': 'AVENUE M',
'cross_street_2': 'AVENUE N',
'intersection_street_1': 'AVENUE M',
'intersection_street_2': 'AVENUE N',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 18 STREET',
'status': 'In Progress',
'community_board': '14 BROOKLYN',
'bbl': '3067460036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996218',
'y_coordinate_state_plane': '163972',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61673361375316',
'longitude': '-73.95689182140032',
'location': {'latitude': '40.61673361375316',
'longitude': '-73.95689182140032',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487902',
'created_date': '2024-09-19T00:12:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Street Light Out',
'incident_zip': '10452',
'incident_address': '1055 JEROME AVENUE',
'street_name': 'JEROME AVENUE',
'cross_street_1': '165 ST E',
'cross_street_2': '165 ST W',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'community_board': '04 BRONX',
'bbl': '2025040105',
'borough': 'BRONX',
'x_coordinate_state_plane': '1004946',
'y_coordinate_state_plane': '242754',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83295479050044',
'longitude': '-73.92521170912806',
'location': {'latitude': '40.83295479050044',
'longitude': '-73.92521170912806',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490988',
'created_date': '2024-09-19T00:11:23.000',
'closed_date': '2024-09-19T00:43:18.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10002',
'incident_address': '101 ORCHARD STREET',
'street_name': 'ORCHARD 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': 'ORCHARD STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:43:21.000',
'community_board': '03 MANHATTAN',
'bbl': '1004140054',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987012',
'y_coordinate_state_plane': '201058',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.71853406271085',
'longitude': '-73.99003620952051',
'location': {'latitude': '40.71853406271085',
'longitude': '-73.99003620952051',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491601',
'created_date': '2024-09-19T00:10:21.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Damaged Tree',
'descriptor': 'Tree Alive - in Poor Condition',
'location_type': 'Street',
'incident_zip': '11223',
'incident_address': '2365 OCEAN PARKWAY',
'street_name': 'OCEAN PARKWAY',
'cross_street_1': 'ANGELA DRIVE',
'cross_street_2': 'AVENUE X',
'intersection_street_1': 'ANGELA DRIVE',
'intersection_street_2': 'AVENUE X',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'OCEAN PARKWAY',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3071820001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993978',
'y_coordinate_state_plane': '154868',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.591747733641384',
'longitude': '-73.96497330842028',
'location': {'latitude': '40.591747733641384',
'longitude': '-73.96497330842028',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486049',
'created_date': '2024-09-19T00:10:19.000',
'closed_date': '2024-09-19T00: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': '11226',
'incident_address': '1819 BEVERLEY ROAD',
'street_name': 'BEVERLEY ROAD',
'cross_street_1': 'EAST 18 STREET',
'cross_street_2': 'EAST 19 STREET',
'intersection_street_1': 'EAST 18 STREET',
'intersection_street_2': 'EAST 19 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BEVERLEY ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:49:41.000',
'community_board': '14 BROOKLYN',
'bbl': '3051220035',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994824',
'y_coordinate_state_plane': '174144',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.644655375117686',
'longitude': '-73.96189700656006',
'location': {'latitude': '40.644655375117686',
'longitude': '-73.96189700656006',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491966',
'created_date': '2024-09-19T00:10:14.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': '62489387',
'created_date': '2024-09-19T00:10:08.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Drinking',
'descriptor': 'In Public',
'location_type': 'Store/Commercial',
'incident_zip': '10452',
'incident_address': '950 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025070001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003911',
'y_coordinate_state_plane': '242179',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.831378946066906',
'longitude': '-73.9289535299807',
'location': {'latitude': '40.831378946066906',
'longitude': '-73.9289535299807',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491641',
'created_date': '2024-09-19T00:10:07.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': '953 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110073',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003916',
'y_coordinate_state_plane': '242199',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Other',
'latitude': '40.8314338291739',
'longitude': '-73.92893540348943',
'location': {'latitude': '40.8314338291739',
'longitude': '-73.92893540348943',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487045',
'created_date': '2024-09-19T00:10:07.000',
'closed_date': '2024-09-19T01:07:50.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10002',
'incident_address': '180 LUDLOW STREET',
'street_name': 'LUDLOW STREET',
'cross_street_1': 'STANTON STREET',
'cross_street_2': 'EAST 1 STREET',
'intersection_street_1': 'STANTON STREET',
'intersection_street_2': 'EAST 1 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'LUDLOW STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:07:54.000',
'community_board': '03 MANHATTAN',
'bbl': '1004120048',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987724',
'y_coordinate_state_plane': '202252',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'SUV',
'latitude': '40.72181105404858',
'longitude': '-73.98746708538718',
'location': {'latitude': '40.72181105404858',
'longitude': '-73.98746708538718',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486645',
'created_date': '2024-09-19T00:10:04.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Sidewalk Condition',
'descriptor': 'Broken Sidewalk',
'location_type': 'Sidewalk',
'incident_zip': '10457',
'incident_address': '2236 WEBSTER AVENUE',
'street_name': 'WEBSTER 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': 'WEBSTER AVENUE',
'status': 'In Progress',
'community_board': '06 BRONX',
'bbl': '2030300048',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012849',
'y_coordinate_state_plane': '250653',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.85461316093779',
'longitude': '-73.89661929583497',
'location': {'latitude': '40.85461316093779',
'longitude': '-73.89661929583497',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492839',
'created_date': '2024-09-19T00:09:42.000',
'closed_date': '2024-09-19T00:24:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '65-41 BOOTH STREET',
'street_name': 'BOOTH STREET',
'cross_street_1': '65 ROAD',
'cross_street_2': '66 AVENUE',
'intersection_street_1': '65 ROAD',
'intersection_street_2': '66 AVENUE',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': 'BOOTH STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:24:17.000',
'community_board': '06 QUEENS',
'bbl': '4030870002',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023479',
'y_coordinate_state_plane': '204144',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72691783045527',
'longitude': '-73.85846528617489',
'location': {'latitude': '40.72691783045527',
'longitude': '-73.85846528617489',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493751',
'created_date': '2024-09-19T00:09:23.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Sidewalk',
'incident_zip': '10467',
'incident_address': '3751 BARNES AVENUE',
'street_name': 'BARNES AVENUE',
'cross_street_1': 'EAST 218 STREET',
'cross_street_2': 'EAST 219 STREET',
'intersection_street_1': 'EAST 218 STREET',
'intersection_street_2': 'EAST 219 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BARNES AVENUE',
'status': 'In Progress',
'resolution_description': 'The Department of Sanitation cleaned the location.',
'resolution_action_updated_date': '2024-09-19T00:09:28.000',
'community_board': '12 BRONX',
'bbl': '2046660012',
'borough': 'BRONX',
'x_coordinate_state_plane': '1022886',
'y_coordinate_state_plane': '260670',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88206852041072',
'longitude': '-73.86027948130524',
'location': {'latitude': '40.88206852041072',
'longitude': '-73.86027948130524',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490938',
'created_date': '2024-09-19T00:08:20.000',
'closed_date': '2024-09-19T00:51: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': '10453',
'incident_address': '106 MOUNT HOPE PLACE',
'street_name': 'MOUNT HOPE PLACE',
'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': 'MOUNT HOPE PLACE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:51:37.000',
'community_board': '05 BRONX',
'bbl': '2028050010',
'borough': 'BRONX',
'x_coordinate_state_plane': '1009705',
'y_coordinate_state_plane': '248524',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84877931521459',
'longitude': '-73.90799241583848',
'location': {'latitude': '40.84877931521459',
'longitude': '-73.90799241583848',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491541',
'created_date': '2024-09-19T00:08:04.000',
'closed_date': '2024-09-19T01:10:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11208',
'incident_address': '184 ETNA STREET',
'street_name': 'ETNA STREET',
'cross_street_1': 'RICHMOND STREET',
'cross_street_2': 'CHESTNUT STREET',
'intersection_street_1': 'RICHMOND STREET',
'intersection_street_2': 'CHESTNUT STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ETNA STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:10:13.000',
'community_board': '05 BROOKLYN',
'bbl': '3041150026',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1018413',
'y_coordinate_state_plane': '189241',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68603366963854',
'longitude': '-73.87681854478991',
'location': {'latitude': '40.68603366963854',
'longitude': '-73.87681854478991',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488001',
'created_date': '2024-09-19T00:08:04.000',
'closed_date': '2024-09-19T00:34:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Park',
'descriptor': 'Loud Music/Party',
'location_type': 'Park/Playground',
'incident_zip': '11205',
'incident_address': '345 CLASSON AVENUE',
'street_name': 'CLASSON AVENUE',
'cross_street_1': 'DEKALB AVENUE',
'cross_street_2': 'LAFAYETTE AVENUE',
'intersection_street_1': 'DEKALB AVENUE',
'intersection_street_2': 'LAFAYETTE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CLASSON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:34:25.000',
'community_board': '03 BROOKLYN',
'bbl': '3019380001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995317',
'y_coordinate_state_plane': '190441',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Lafayette Gardens Playground',
'park_borough': 'BROOKLYN',
'latitude': '40.68938640574804',
'longitude': '-73.96009374733582',
'location': {'latitude': '40.68938640574804',
'longitude': '-73.96009374733582',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490855',
'created_date': '2024-09-19T00:08:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Pedestrian Signal',
'incident_zip': '11413',
'intersection_street_1': '147 AVENUE',
'intersection_street_2': '230 STREET',
'address_type': 'INTERSECTION',
'city': 'QUEENS',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '13 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1053054',
'y_coordinate_state_plane': '179092',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.65797555673386',
'longitude': '-73.75201766128718',
'location': {'latitude': '40.65797555673386',
'longitude': '-73.75201766128718',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486968',
'created_date': '2024-09-19T00:07:43.000',
'closed_date': '2024-09-19T00:29: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': '11214',
'incident_address': '30 BAY 25 STREET',
'street_name': 'BAY 25 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 25 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:29:43.000',
'community_board': '11 BROOKLYN',
'bbl': '3063750049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984748',
'y_coordinate_state_plane': '159149',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'location': {'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485538',
'created_date': '2024-09-19T00:07:38.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11414',
'incident_address': '151-21 78 STREET',
'street_name': '78 STREET',
'cross_street_1': 'STANLEY AVENUE',
'cross_street_2': '153 AVENUE',
'intersection_street_1': 'STANLEY AVENUE',
'intersection_street_2': '153 AVENUE',
'address_type': 'ADDRESS',
'city': 'HOWARD BEACH',
'landmark': '78 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4114257502',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024096',
'y_coordinate_state_plane': '182203',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.66669221382886',
'longitude': '-73.85636900793425',
'location': {'latitude': '40.66669221382886',
'longitude': '-73.85636900793425',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489017',
'created_date': '2024-09-19T00:06:41.000',
'closed_date': '2024-09-19T00:09:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11224',
'incident_address': '2945 WEST 23 STREET',
'street_name': 'WEST 23 STREET',
'cross_street_1': 'MERMAID AVENUE',
'cross_street_2': 'SURF AVENUE',
'intersection_street_1': 'MERMAID AVENUE',
'intersection_street_2': 'SURF AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 23 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:09:07.000',
'community_board': '13 BROOKLYN',
'bbl': '3070570012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987060',
'y_coordinate_state_plane': '148802',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'location': {'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492829',
'created_date': '2024-09-19T00:06:16.000',
'closed_date': '2024-09-19T00:51: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': '10025',
'incident_address': '951 COLUMBUS AVENUE',
'street_name': 'COLUMBUS AVENUE',
'cross_street_1': 'WEST 106 STREET',
'cross_street_2': 'WEST 107 STREET',
'intersection_street_1': 'WEST 106 STREET',
'intersection_street_2': 'WEST 107 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'COLUMBUS AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:51:37.000',
'community_board': '07 MANHATTAN',
'bbl': '1018420063',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994618',
'y_coordinate_state_plane': '230614',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'location': {'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484503',
'created_date': '2024-09-19T00:05:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11433',
'incident_address': '156-17 111 AVENUE',
'street_name': '111 AVENUE',
'cross_street_1': '156 STREET',
'cross_street_2': '157 STREET',
'intersection_street_1': '156 STREET',
'intersection_street_2': '157 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '111 AVENUE',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4121600046',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1041755',
'y_coordinate_state_plane': '190644',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.68976369862706',
'longitude': '-73.79264262146422',
'location': {'latitude': '40.68976369862706',
'longitude': '-73.79264262146422',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486637',
'created_date': '2024-09-19T00:05: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': '10452',
'incident_address': '963 WOODYCREST AVENUE',
'street_name': 'WOODYCREST AVENUE',
'cross_street_1': 'WEST 162 STREET',
'cross_street_2': 'WEST 163 STREET',
'intersection_street_1': 'WEST 162 STREET',
'intersection_street_2': 'WEST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WOODYCREST AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2025110068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1003966',
'y_coordinate_state_plane': '242285',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.831669762919574',
'longitude': '-73.9287544719845',
'location': {'latitude': '40.831669762919574',
'longitude': '-73.9287544719845',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485585',
'created_date': '2024-09-19T00:05:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11372',
'incident_address': '74-12 35 AVENUE',
'street_name': '35 AVENUE',
'cross_street_1': '74 STREET',
'cross_street_2': '75 STREET',
'intersection_street_1': '74 STREET',
'intersection_street_2': '75 STREET',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '35 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:19:41.000',
'community_board': '03 QUEENS',
'bbl': '4012740001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014201',
'y_coordinate_state_plane': '212911',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.751017333021714',
'longitude': '-73.89190040511717',
'location': {'latitude': '40.751017333021714',
'longitude': '-73.89190040511717',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493396',
'created_date': '2024-09-19T00:05:26.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '19 LANE',
'street_name': '19 LANE',
'cross_street_1': '19 LANE',
'cross_street_2': '20 DRIVE',
'intersection_street_1': '19 LANE',
'intersection_street_2': '20 DRIVE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '982972',
'y_coordinate_state_plane': '157731',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.599611338099905',
'longitude': '-74.00460211581945',
'location': {'latitude': '40.599611338099905',
'longitude': '-74.00460211581945',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487945',
'created_date': '2024-09-19T00:05:26.000',
'closed_date': '2024-09-19T01:34: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': '10032',
'incident_address': '570 WEST 159 STREET',
'street_name': 'WEST 159 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 159 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:34:22.000',
'community_board': '12 MANHATTAN',
'bbl': '1021170011',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999921',
'y_coordinate_state_plane': '243513',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83504837208185',
'longitude': '-73.94336856756071',
'location': {'latitude': '40.83504837208185',
'longitude': '-73.94336856756071',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487709',
'created_date': '2024-09-19T00:04:53.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Encampment',
'descriptor': 'N/A',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '87-08 90 STREET',
'street_name': '90 STREET',
'cross_street_1': 'JAMAICA AVENUE',
'cross_street_2': '88 AVENUE',
'intersection_street_1': 'JAMAICA AVENUE',
'intersection_street_2': '88 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '90 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:35:30.000',
'community_board': '09 QUEENS',
'bbl': '4089310010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024575',
'y_coordinate_state_plane': '191628',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69255949790014',
'longitude': '-73.85458598488026',
'location': {'latitude': '40.69255949790014',
'longitude': '-73.85458598488026',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487682',
'created_date': '2024-09-19T00:04:53.000',
'closed_date': '2024-09-19T01:35:20.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Encampment',
'descriptor': 'N/A',
'location_type': 'Street/Sidewalk',
'incident_zip': '11421',
'incident_address': '87-08 90 STREET',
'street_name': '90 STREET',
'cross_street_1': 'JAMAICA AVENUE',
'cross_street_2': '88 AVENUE',
'intersection_street_1': 'JAMAICA AVENUE',
'intersection_street_2': '88 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODHAVEN',
'landmark': '90 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department visited the location and has referred the complaint to the Department of Homeless Services (DHS) for further action. DHS will inspect the condition and update your Service Request with more information.',
'resolution_action_updated_date': '2024-09-19T01:35:24.000',
'community_board': '09 QUEENS',
'bbl': '4089310010',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024575',
'y_coordinate_state_plane': '191628',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.69255949790014',
'longitude': '-73.85458598488026',
'location': {'latitude': '40.69255949790014',
'longitude': '-73.85458598488026',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491391',
'created_date': '2024-09-19T00:03:35.000',
'closed_date': '2024-09-19T00:42:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10458',
'incident_address': '2482 VALENTINE AVENUE',
'street_name': 'VALENTINE AVENUE',
'cross_street_1': 'EAST 188 STREET',
'cross_street_2': 'EAST FORDHAM ROAD',
'intersection_street_1': 'EAST 188 STREET',
'intersection_street_2': 'EAST FORDHAM ROAD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'VALENTINE AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:42:06.000',
'community_board': '05 BRONX',
'bbl': '2031480010',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012997',
'y_coordinate_state_plane': '253269',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.861792810907275',
'longitude': '-73.89607308130834',
'location': {'latitude': '40.861792810907275',
'longitude': '-73.89607308130834',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489915',
'created_date': '2024-09-19T00:03:35.000',
'closed_date': '2024-09-19T01:08:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11375',
'incident_address': '102-50 62 ROAD',
'street_name': '62 ROAD',
'cross_street_1': '102 STREET',
'cross_street_2': 'YELLOWSTONE BOULEVARD',
'intersection_street_1': '102 STREET',
'intersection_street_2': 'YELLOWSTONE BOULEVARD',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': '62 ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:08:15.000',
'community_board': '06 QUEENS',
'bbl': '4021220028',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024315',
'y_coordinate_state_plane': '207122',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73508795272568',
'longitude': '-73.85543134632108',
'location': {'latitude': '40.73508795272568',
'longitude': '-73.85543134632108',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490902',
'created_date': '2024-09-19T00:03:29.000',
'closed_date': '2024-09-19T00:12:15.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10002',
'incident_address': '168 DELANCEY STREET',
'street_name': 'DELANCEY STREET',
'cross_street_1': 'CLINTON STREET',
'cross_street_2': 'ATTORNEY STREET',
'intersection_street_1': 'CLINTON STREET',
'intersection_street_2': 'ATTORNEY STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'DELANCEY STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:12:17.000',
'community_board': '03 MANHATTAN',
'bbl': '1003480075',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988250',
'y_coordinate_state_plane': '200743',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71766899024975',
'longitude': '-73.9855703675894',
'location': {'latitude': '40.71766899024975',
'longitude': '-73.9855703675894',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485578',
'created_date': '2024-09-19T00:02: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': '10463',
'incident_address': '5588 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 231 STREET',
'cross_street_2': 'NAPLES TERRACE',
'intersection_street_1': 'WEST 231 STREET',
'intersection_street_2': 'NAPLES TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BROADWAY',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032670084',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010632',
'y_coordinate_state_plane': '259599',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.879174099143526',
'longitude': '-73.9045981618307',
'location': {'latitude': '40.879174099143526',
'longitude': '-73.9045981618307',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489530',
'created_date': '2024-09-19T00:01:53.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10459',
'incident_address': '824 EAST 166 STREET',
'street_name': 'EAST 166 STREET',
'cross_street_1': 'UNION AVENUE',
'cross_street_2': 'PROSPECT AVENUE',
'intersection_street_1': 'UNION AVENUE',
'intersection_street_2': 'PROSPECT AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 166 STREET',
'status': 'In Progress',
'community_board': '03 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011968',
'y_coordinate_state_plane': '240172',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82584869749088',
'longitude': '-73.8998472813353',
'location': {'latitude': '40.82584869749088',
'longitude': '-73.8998472813353',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487628',
'created_date': '2024-09-19T00:01:21.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Chronic Dumping',
'location_type': 'Street',
'incident_zip': '11412',
'incident_address': '111-42 203 STREET',
'street_name': '203 STREET',
'cross_street_1': '111 AVENUE',
'cross_street_2': '112 AVENUE',
'intersection_street_1': '111 AVENUE',
'intersection_street_2': '112 AVENUE',
'address_type': 'ADDRESS',
'city': 'SAINT ALBANS',
'landmark': '203 STREET',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4109600628',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1052579',
'y_coordinate_state_plane': '195914',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70415161986311',
'longitude': '-73.75355906874013',
'location': {'latitude': '40.70415161986311',
'longitude': '-73.75355906874013',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490617',
'created_date': '2024-09-19T00:01:18.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Gutter',
'incident_zip': '11419',
'incident_address': '101-09 113 STREET',
'street_name': '113 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': '113 STREET',
'status': 'In Progress',
'community_board': '09 QUEENS',
'bbl': '4094310001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1031165',
'y_coordinate_state_plane': '190062',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68822871644722',
'longitude': '-73.83083306789842',
'location': {'latitude': '40.68822871644722',
'longitude': '-73.83083306789842',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483911',
'created_date': '2024-09-19T00:00:24.000',
'closed_date': '2024-09-19T00:02: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': '11233',
'incident_address': '2158 ATLANTIC AVENUE',
'street_name': 'ATLANTIC AVENUE',
'cross_street_1': 'ROOSEVELT PLACE',
'cross_street_2': 'RADDE PLACE',
'intersection_street_1': 'ROOSEVELT PLACE',
'intersection_street_2': 'RADDE PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ATLANTIC AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T00:02:57.000',
'community_board': '16 BROOKLYN',
'bbl': '3014330023',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1007776',
'y_coordinate_state_plane': '185781',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'location': {'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486593',
'created_date': '2024-09-18T23:59:21.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': '11385',
'incident_address': '601 ONDERDONK AVENUE',
'street_name': 'ONDERDONK AVENUE',
'cross_street_1': 'GROVE STREET',
'cross_street_2': 'LINDEN STREET',
'intersection_street_1': 'GROVE STREET',
'intersection_street_2': 'LINDEN STREET',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'ONDERDONK AVENUE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4034080012',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1009517',
'y_coordinate_state_plane': '196130',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.7049722312723',
'longitude': '-73.90886896382558',
'location': {'latitude': '40.7049722312723',
'longitude': '-73.90886896382558',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490657',
'created_date': '2024-09-18T23:59:05.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10021',
'incident_address': '315 EAST 72 STREET',
'street_name': 'EAST 72 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 72 STREET',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T00:40:01.000',
'community_board': '08 MANHATTAN',
'bbl': '1014470009',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996017',
'y_coordinate_state_plane': '219248',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7684536674536',
'longitude': '-73.95751925856608',
'location': {'latitude': '40.7684536674536',
'longitude': '-73.95751925856608',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485616',
'created_date': '2024-09-18T23:58:45.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Passenger',
'location_type': 'Street',
'incident_zip': '10009',
'incident_address': '164 1 AVENUE',
'street_name': '1 AVENUE',
'cross_street_1': 'EAST 10 STREET',
'cross_street_2': 'EAST 11 STREET',
'intersection_street_1': 'EAST 10 STREET',
'intersection_street_2': 'EAST 11 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '1 AVENUE',
'status': 'In Progress',
'community_board': '03 MANHATTAN',
'bbl': '1004380001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '988586',
'y_coordinate_state_plane': '204818',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '164 1 AVENUE, MANHATTAN (NEW YORK), NY, 10009',
'latitude': '40.72885372024659',
'longitude': '-73.98435565312514',
'location': {'latitude': '40.72885372024659',
'longitude': '-73.98435565312514',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483918',
'created_date': '2024-09-18T23:57:38.000',
'closed_date': '2024-09-19T00:27:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11226',
'incident_address': '340 EAST 21 STREET',
'street_name': 'EAST 21 STREET',
'cross_street_1': 'REGENT PLACE',
'cross_street_2': 'BEVERLEY ROAD',
'intersection_street_1': 'REGENT PLACE',
'intersection_street_2': 'BEVERLEY ROAD',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 21 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:27:05.000',
'community_board': '14 BROOKLYN',
'bbl': '3051240045',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995578',
'y_coordinate_state_plane': '174617',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64595272565537',
'longitude': '-73.95917920329565',
'location': {'latitude': '40.64595272565537',
'longitude': '-73.95917920329565',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484095',
'created_date': '2024-09-18T23:57:29.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'DOOR/WINDOW',
'descriptor': 'DOOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10032',
'incident_address': '76 ST NICHOLAS PLACE',
'street_name': 'ST NICHOLAS PLACE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '09 MANHATTAN',
'bbl': '1020540079',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000634',
'y_coordinate_state_plane': '241478',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.829461589531974',
'longitude': '-73.94079691863257',
'location': {'latitude': '40.829461589531974',
'longitude': '-73.94079691863257',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484529',
'created_date': '2024-09-18T23:57:26.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11378',
'incident_address': '53-38 70 STREET',
'street_name': '70 STREET',
'cross_street_1': '53 ROAD',
'cross_street_2': '53 DRIVE',
'intersection_street_1': '53 ROAD',
'intersection_street_2': '53 DRIVE',
'address_type': 'ADDRESS',
'city': 'MASPETH',
'landmark': '70 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4024970034',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013684',
'y_coordinate_state_plane': '205306',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73014525050099',
'longitude': '-73.89379964460844',
'location': {'latitude': '40.73014525050099',
'longitude': '-73.89379964460844',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487968',
'created_date': '2024-09-18T23:57:05.000',
'closed_date': '2024-09-19T00:31: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': '10029',
'incident_address': '1265 PARK AVENUE',
'street_name': 'PARK AVENUE',
'cross_street_1': 'EAST 97 STREET',
'cross_street_2': 'EAST 98 STREET',
'intersection_street_1': 'EAST 97 STREET',
'intersection_street_2': 'EAST 98 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'PARK AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:32:02.000',
'community_board': '11 MANHATTAN',
'bbl': '1016250071',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997615',
'y_coordinate_state_plane': '226246',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78765905760488',
'longitude': '-73.95173630579889',
'location': {'latitude': '40.78765905760488',
'longitude': '-73.95173630579889',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488487',
'created_date': '2024-09-18T23:57: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': '11370',
'incident_address': '31-15 85 STREET',
'street_name': '85 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': '85 STREET',
'status': 'In Progress',
'community_board': '03 QUEENS',
'bbl': '4013970049',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016621',
'y_coordinate_state_plane': '215847',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.759067371096414',
'longitude': '-73.88315197995848',
'location': {'latitude': '40.759067371096414',
'longitude': '-73.88315197995848',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488584',
'created_date': '2024-09-18T23:57:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10030',
'incident_address': '330 WEST 141 STREET',
'street_name': 'WEST 141 STREET',
'cross_street_1': 'EDGECOMBE AVENUE',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'EDGECOMBE AVENUE',
'intersection_street_2': 'ST NICHOLAS AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 141 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:08:29.000',
'community_board': '10 MANHATTAN',
'bbl': '1020480040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999374',
'y_coordinate_state_plane': '238376',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82094973055104',
'longitude': '-73.94535688090521',
'location': {'latitude': '40.82094973055104',
'longitude': '-73.94535688090521',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490466',
'created_date': '2024-09-18T23:56:56.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': '11385',
'incident_address': '66-32 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': '66 PLACE',
'cross_street_2': '66 PLACE',
'intersection_street_1': '66 PLACE',
'intersection_street_2': '66 PLACE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': 'MYRTLE AVENUE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4036990037',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015546',
'y_coordinate_state_plane': '194840',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.701412217400446',
'longitude': '-73.88713005570222',
'location': {'latitude': '40.701412217400446',
'longitude': '-73.88713005570222',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487970',
'created_date': '2024-09-18T23:56:37.000',
'closed_date': '2024-09-19T01:05:19.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11374',
'incident_address': '64-11 99 STREET',
'street_name': '99 STREET',
'cross_street_1': '64 AVENUE',
'cross_street_2': '64 ROAD',
'intersection_street_1': '64 AVENUE',
'intersection_street_2': '64 ROAD',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': '99 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T01:05:22.000',
'community_board': '06 QUEENS',
'bbl': '4021130001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024134',
'y_coordinate_state_plane': '205511',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.730666977572405',
'longitude': '-73.85609400675855',
'location': {'latitude': '40.730666977572405',
'longitude': '-73.85609400675855',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487673',
'created_date': '2024-09-18T23:56:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Crosswalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '10469',
'incident_address': '3438 WILSON AVENUE',
'street_name': 'WILSON AVENUE',
'cross_street_1': 'EAST 214 STREET',
'cross_street_2': 'EAST 215 STREET',
'intersection_street_1': 'EAST 214 STREET',
'intersection_street_2': 'EAST 215 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WILSON AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2047120001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025445',
'y_coordinate_state_plane': '258458',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87598570111598',
'longitude': '-73.8510389136148',
'location': {'latitude': '40.87598570111598',
'longitude': '-73.8510389136148',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490795',
'created_date': '2024-09-18T23:55:56.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Outdoor Dining',
'descriptor': 'Site Setup Condition',
'location_type': 'Street',
'incident_zip': '10025',
'incident_address': '951 COLUMBUS AVENUE',
'street_name': 'COLUMBUS AVENUE',
'cross_street_1': 'WEST 106 STREET',
'cross_street_2': 'WEST 107 STREET',
'intersection_street_1': 'WEST 106 STREET',
'intersection_street_2': 'WEST 107 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'COLUMBUS AVENUE',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'bbl': '1018420063',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994618',
'y_coordinate_state_plane': '230614',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'location': {'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485008',
'created_date': '2024-09-18T23:55:48.000',
'closed_date': '2024-09-19T00:31: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': '10009',
'incident_address': '280 FIRST AVENUE',
'street_name': 'FIRST AVENUE',
'cross_street_1': 'EAST 16 STREET',
'cross_street_2': 'EAST 17 STREET',
'intersection_street_1': 'EAST 16 STREET',
'intersection_street_2': 'EAST 17 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '1 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:31:47.000',
'community_board': '06 MANHATTAN',
'bbl': '1009720001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989435',
'y_coordinate_state_plane': '206283',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'location': {'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483584',
'created_date': '2024-09-18T23:55:40.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Lost Property',
'descriptor': 'Bag/Wallet',
'location_type': 'Taxi',
'incident_zip': '10017',
'incident_address': '3 AVENUE',
'street_name': '3 AVENUE',
'cross_street_1': '3 AVENUE',
'cross_street_2': 'EAST 49 STREET',
'intersection_street_1': '3 AVENUE',
'intersection_street_2': 'EAST 49 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '06 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '992224',
'y_coordinate_state_plane': '214415',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '3 AVENUE AND EAST 49 STREET, MANHATTAN, NY, 10017',
'latitude': '40.755192560508654',
'longitude': '-73.97121832341485',
'location': {'latitude': '40.755192560508654',
'longitude': '-73.97121832341485',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488924',
'created_date': '2024-09-18T23:55:27.000',
'closed_date': '2024-09-19T01:06:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Park',
'descriptor': 'Loud Talking',
'location_type': 'Park/Playground',
'incident_zip': '11209',
'incident_address': '8301 SHORE ROAD',
'street_name': 'SHORE ROAD',
'cross_street_1': '83 STREET',
'cross_street_2': 'SHORE ROAD LANE',
'intersection_street_1': '83 STREET',
'intersection_street_2': 'SHORE ROAD LANE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SHORE ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:06:51.000',
'community_board': '10 BROOKLYN',
'bbl': '3060130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '973151',
'y_coordinate_state_plane': '168039',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Fort Hamilton Athletic Field',
'park_borough': 'BROOKLYN',
'latitude': '40.62789780945477',
'longitude': '-74.03998476829533',
'location': {'latitude': '40.62789780945477',
'longitude': '-74.03998476829533',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484349',
'created_date': '2024-09-18T23:55:13.000',
'closed_date': '2024-09-19T00:51:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10032',
'incident_address': '631 WEST 156 STREET',
'street_name': 'WEST 156 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 156 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:51:17.000',
'community_board': '12 MANHATTAN',
'bbl': '1021340071',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999126',
'y_coordinate_state_plane': '243065',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83382011648776',
'longitude': '-73.9462425096845',
'location': {'latitude': '40.83382011648776',
'longitude': '-73.9462425096845',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490477',
'created_date': '2024-09-18T23:55:12.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10469',
'incident_address': '3448 WILSON AVENUE',
'street_name': 'WILSON AVENUE',
'cross_street_1': 'EAST 214 STREET',
'cross_street_2': 'EAST 215 STREET',
'intersection_street_1': 'EAST 214 STREET',
'intersection_street_2': 'EAST 215 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WILSON AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2047120001',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025410',
'y_coordinate_state_plane': '258516',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8761450562773',
'longitude': '-73.8511651169979',
'location': {'latitude': '40.8761450562773',
'longitude': '-73.8511651169979',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489933',
'created_date': '2024-09-18T23:55:04.000',
'closed_date': '2024-09-19T00:03: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': '11201',
'incident_address': '16 FLEET WALK',
'street_name': 'FLEET WALK',
'cross_street_1': 'NAVY WALK',
'cross_street_2': 'JOHNSON STREET',
'intersection_street_1': 'NAVY WALK',
'intersection_street_2': 'JOHNSON STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FLEET WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:03:40.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989467',
'y_coordinate_state_plane': '192600',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69531774349862',
'longitude': '-73.98118646103762',
'location': {'latitude': '40.69531774349862',
'longitude': '-73.98118646103762',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484773',
'created_date': '2024-09-18T23:55:02.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'Taxi Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'location_type': 'Street',
'incident_zip': '11201',
'incident_address': '50 DEKALB AVENUE',
'street_name': 'DEKALB AVENUE',
'cross_street_1': 'UNIVERSITY PLAZA',
'cross_street_2': 'HUDSON AVENUE',
'intersection_street_1': 'UNIVERSITY PLAZA',
'intersection_street_2': 'HUDSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DEKALB AVENUE',
'status': 'In Progress',
'community_board': '02 BROOKLYN',
'bbl': '3020930001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989535',
'y_coordinate_state_plane': '190629',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'taxi_pick_up_location': '50 DEKALB AVENUE, BROOKLYN, NY, 11201',
'latitude': '40.6899077637655',
'longitude': '-73.98094278587038',
'location': {'latitude': '40.6899077637655',
'longitude': '-73.98094278587038',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485551',
'created_date': '2024-09-18T23:54:44.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11358',
'incident_address': '43-49 170 STREET',
'street_name': '170 STREET',
'cross_street_1': '43 AVENUE',
'cross_street_2': '45 AVENUE',
'intersection_street_1': '43 AVENUE',
'intersection_street_2': '45 AVENUE',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'landmark': '170 STREET',
'status': 'In Progress',
'community_board': '07 QUEENS',
'bbl': '4054280015',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1040547',
'y_coordinate_state_plane': '215403',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.75772873495825',
'longitude': '-73.79679142649539',
'location': {'latitude': '40.75772873495825',
'longitude': '-73.79679142649539',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492343',
'created_date': '2024-09-18T23:54: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': '11365',
'incident_address': '162-19 59 AVENUE',
'street_name': '59 AVENUE',
'cross_street_1': '162 STREET',
'cross_street_2': '163 STREET',
'intersection_street_1': '162 STREET',
'intersection_street_2': '163 STREET',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '59 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:12:43.000',
'community_board': '07 QUEENS',
'bbl': '4067290001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037954',
'y_coordinate_state_plane': '209103',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.740452994840936',
'longitude': '-73.80620134868052',
'location': {'latitude': '40.740452994840936',
'longitude': '-73.80620134868052',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483769',
'created_date': '2024-09-18T23:54:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '10467',
'incident_address': '713 BARTHOLDI STREET',
'street_name': 'BARTHOLDI STREET',
'cross_street_1': 'WHITE PLAINS ROAD',
'cross_street_2': 'CRUGER AVENUE',
'intersection_street_1': 'WHITE PLAINS ROAD',
'intersection_street_2': 'CRUGER AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BARTHOLDI STREET',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2046290003',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021157',
'y_coordinate_state_plane': '257828',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87427551947461',
'longitude': '-73.8665477633253',
'location': {'latitude': '40.87427551947461',
'longitude': '-73.8665477633253',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489569',
'created_date': '2024-09-18T23:54: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': '10467',
'incident_address': '3363 CRUGER AVENUE',
'street_name': 'CRUGER AVENUE',
'cross_street_1': 'BARTHOLDI STREET',
'cross_street_2': 'MAGENTA STREET',
'intersection_street_1': 'BARTHOLDI STREET',
'intersection_street_2': 'MAGENTA STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'CRUGER AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2046290024',
'borough': 'BRONX',
'x_coordinate_state_plane': '1021293',
'y_coordinate_state_plane': '257906',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87448903549135',
'longitude': '-73.86605556963036',
'location': {'latitude': '40.87448903549135',
'longitude': '-73.86605556963036',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485053',
'created_date': '2024-09-18T23:54:04.000',
'closed_date': '2024-09-19T00:31: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': '10009',
'incident_address': '280 FIRST AVENUE',
'street_name': 'FIRST AVENUE',
'cross_street_1': 'EAST 16 STREET',
'cross_street_2': 'EAST 17 STREET',
'intersection_street_1': 'EAST 16 STREET',
'intersection_street_2': 'EAST 17 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '1 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:31:17.000',
'community_board': '06 MANHATTAN',
'bbl': '1009720001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989435',
'y_coordinate_state_plane': '206283',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'location': {'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490972',
'created_date': '2024-09-18T23:54:03.000',
'closed_date': '2024-09-19T00:16: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': '11104',
'incident_address': '43-10 44 STREET',
'street_name': '44 STREET',
'cross_street_1': '43 AVENUE',
'cross_street_2': 'QUEENS BOULEVARD',
'intersection_street_1': '43 AVENUE',
'intersection_street_2': 'QUEENS BOULEVARD',
'address_type': 'ADDRESS',
'city': 'SUNNYSIDE',
'landmark': '44 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:16:49.000',
'community_board': '02 QUEENS',
'bbl': '4001620028',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1006339',
'y_coordinate_state_plane': '210626',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.744768720053685',
'longitude': '-73.92028353915026',
'location': {'latitude': '40.744768720053685',
'longitude': '-73.92028353915026',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491992',
'created_date': '2024-09-18T23:54: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': '10469',
'incident_address': 'WILSON AVENUE',
'street_name': 'WILSON AVENUE',
'cross_street_1': 'BOSTON ROAD',
'cross_street_2': 'WILSON AVENUE',
'intersection_street_1': 'BOSTON ROAD',
'intersection_street_2': 'WILSON AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '12 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1025542',
'y_coordinate_state_plane': '258276',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'vehicle_type': 'Car',
'latitude': '40.87548571470515',
'longitude': '-73.85068928413239',
'location': {'latitude': '40.87548571470515',
'longitude': '-73.85068928413239',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483823',
'created_date': '2024-09-18T23:54:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Lamppost Wire Exposed',
'incident_zip': '11368',
'incident_address': '50-21 97 STREET',
'street_name': '97 STREET',
'cross_street_1': '50 AVE',
'cross_street_2': 'CHRISTIE AVE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'status': 'Open',
'community_board': '04 QUEENS',
'bbl': '4018890019',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1021441',
'y_coordinate_state_plane': '209436',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.741451853888826',
'longitude': '-73.8657889423964',
'location': {'latitude': '40.741451853888826',
'longitude': '-73.8657889423964',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487033',
'created_date': '2024-09-18T23:53:54.000',
'closed_date': '2024-09-19T00:24:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11375',
'incident_address': '105-10 62 ROAD',
'street_name': '62 ROAD',
'cross_street_1': 'YELLOWSTONE BOULEVARD',
'cross_street_2': '108 STREET',
'intersection_street_1': 'YELLOWSTONE BOULEVARD',
'intersection_street_2': '108 STREET',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': '62 ROAD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:24:54.000',
'community_board': '06 QUEENS',
'bbl': '4021440002',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024924',
'y_coordinate_state_plane': '207362',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.735743912936805',
'longitude': '-73.85323241259277',
'location': {'latitude': '40.735743912936805',
'longitude': '-73.85323241259277',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486990',
'created_date': '2024-09-18T23:53:38.000',
'closed_date': '2024-09-19T00:57:09.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11211',
'incident_address': '290 UNION AVENUE',
'street_name': 'UNION AVENUE',
'cross_street_1': 'STAGG STREET',
'cross_street_2': 'HEWES STREET',
'intersection_street_1': 'STAGG STREET',
'intersection_street_2': 'HEWES STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'UNION AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:57:14.000',
'community_board': '01 BROOKLYN',
'bbl': '3030220003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997890',
'y_coordinate_state_plane': '197605',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70904631916916',
'longitude': '-73.9508013160741',
'location': {'latitude': '40.70904631916916',
'longitude': '-73.9508013160741',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483557',
'created_date': '2024-09-18T23:53:36.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '7601 20 AVENUE',
'street_name': '20 AVENUE',
'cross_street_1': '76 STREET',
'cross_street_2': '77 STREET',
'intersection_street_1': '76 STREET',
'intersection_street_2': '77 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '20 AVENUE',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3062400010',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '986340',
'y_coordinate_state_plane': '161572',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61015394539482',
'longitude': '-73.99247265959997',
'location': {'latitude': '40.61015394539482',
'longitude': '-73.99247265959997',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486962',
'created_date': '2024-09-18T23:53:34.000',
'closed_date': '2024-09-19T00:03:01.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '11223',
'incident_address': '2487 CONEY ISLAND AVENUE',
'street_name': 'CONEY ISLAND AVENUE',
'cross_street_1': 'AVENUE U',
'cross_street_2': 'AVENUE V',
'intersection_street_1': 'AVENUE U',
'intersection_street_2': 'AVENUE V',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CONEY ISLAND AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:03:05.000',
'community_board': '15 BROOKLYN',
'bbl': '3073430045',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995069',
'y_coordinate_state_plane': '156594',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59648399158953',
'longitude': '-73.96104228428698',
'location': {'latitude': '40.59648399158953',
'longitude': '-73.96104228428698',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491344',
'created_date': '2024-09-18T23:53:32.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10463',
'incident_address': '5588 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 231 STREET',
'cross_street_2': 'NAPLES TERRACE',
'intersection_street_1': 'WEST 231 STREET',
'intersection_street_2': 'NAPLES TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BROADWAY',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032670084',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010632',
'y_coordinate_state_plane': '259599',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.879174099143526',
'longitude': '-73.9045981618307',
'location': {'latitude': '40.879174099143526',
'longitude': '-73.9045981618307',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485082',
'created_date': '2024-09-18T23:53:29.000',
'closed_date': '2024-09-19T00:23:56.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11235',
'incident_address': '3118 BRIGHTON 4 STREET',
'street_name': 'BRIGHTON 4 STREET',
'cross_street_1': 'BRIGHTON BEACH AVENUE',
'cross_street_2': 'BRIGHTWATER COURT',
'intersection_street_1': 'BRIGHTON BEACH AVENUE',
'intersection_street_2': 'BRIGHTWATER COURT',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRIGHTON 4 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:23:59.000',
'community_board': '13 BROOKLYN',
'bbl': '3086860078',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994493',
'y_coordinate_state_plane': '149246',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.57631588047588',
'longitude': '-73.96312751749467',
'location': {'latitude': '40.57631588047588',
'longitude': '-73.96312751749467',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486620',
'created_date': '2024-09-18T23:53:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '10461',
'incident_address': '1830 PARKVIEW AVENUE',
'street_name': 'PARKVIEW AVENUE',
'cross_street_1': 'BUHRE AVENUE',
'cross_street_2': 'WILLOW LANE',
'intersection_street_1': 'BUHRE AVENUE',
'intersection_street_2': 'WILLOW LANE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'PARKVIEW AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2041980014',
'borough': 'BRONX',
'x_coordinate_state_plane': '1031447',
'y_coordinate_state_plane': '248698',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84916744453533',
'longitude': '-73.82940446926932',
'location': {'latitude': '40.84916744453533',
'longitude': '-73.82940446926932',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489509',
'created_date': '2024-09-18T23:53:16.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': '72-30 66 PLACE',
'street_name': '66 PLACE',
'cross_street_1': 'MYRTLE AVENUE',
'cross_street_2': 'COOPER AVENUE',
'intersection_street_1': 'MYRTLE AVENUE',
'intersection_street_2': 'COOPER AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '66 PLACE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4036990050',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015603',
'y_coordinate_state_plane': '194633',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.700843849553046',
'longitude': '-73.88692544743698',
'location': {'latitude': '40.700843849553046',
'longitude': '-73.88692544743698',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487020',
'created_date': '2024-09-18T23:52:28.000',
'closed_date': '2024-09-19T00:33:08.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10025',
'incident_address': '951 COLUMBUS AVENUE',
'street_name': 'COLUMBUS AVENUE',
'cross_street_1': 'WEST 106 STREET',
'cross_street_2': 'WEST 107 STREET',
'intersection_street_1': 'WEST 106 STREET',
'intersection_street_2': 'WEST 107 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'COLUMBUS AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:33:12.000',
'community_board': '07 MANHATTAN',
'bbl': '1018420063',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994618',
'y_coordinate_state_plane': '230614',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'location': {'latitude': '40.79965205989694',
'longitude': '-73.96255232884016',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493500',
'created_date': '2024-09-18T23:51:48.000',
'closed_date': '2024-09-19T00:24: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': '11694',
'incident_address': '106-40 ROCKAWAY BEACH BOULEVARD',
'street_name': 'ROCKAWAY BEACH BOULEVARD',
'cross_street_1': 'BEACH 106 STREET',
'cross_street_2': 'BEACH 108 STREET',
'intersection_street_1': 'BEACH 106 STREET',
'intersection_street_2': 'BEACH 108 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': '2024-09-19T00:24:29.000',
'community_board': '14 QUEENS',
'bbl': '4161780001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1031876',
'y_coordinate_state_plane': '151470',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.5822983028542',
'longitude': '-73.82854171394642',
'location': {'latitude': '40.5822983028542',
'longitude': '-73.82854171394642',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485917',
'created_date': '2024-09-18T23:51:28.000',
'closed_date': '2024-09-19T00:22:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '11201',
'incident_address': '253 COURT STREET',
'street_name': 'COURT STREET',
'cross_street_1': 'BALTIC STREET',
'cross_street_2': 'KANE STREET',
'intersection_street_1': 'BALTIC STREET',
'intersection_street_2': 'KANE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'COURT STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:22:08.000',
'community_board': '06 BROOKLYN',
'bbl': '3004020001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985822',
'y_coordinate_state_plane': '189053',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Truck',
'latitude': '40.68558344367201',
'longitude': '-73.99433188313448',
'location': {'latitude': '40.68558344367201',
'longitude': '-73.99433188313448',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492157',
'created_date': '2024-09-18T23:51:25.000',
'closed_date': '2024-09-19T00:07:38.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': '11374',
'incident_address': '98-39 67 AVENUE',
'street_name': '67 AVENUE',
'cross_street_1': 'WETHEROLE STREET',
'cross_street_2': 'BOOTH STREET',
'intersection_street_1': 'WETHEROLE STREET',
'intersection_street_2': 'BOOTH STREET',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': '67 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:07:45.000',
'community_board': '06 QUEENS',
'bbl': '4031570140',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024474',
'y_coordinate_state_plane': '203557',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72530219178569',
'longitude': '-73.8548789304943',
'location': {'latitude': '40.72530219178569',
'longitude': '-73.8548789304943',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489261',
'created_date': '2024-09-18T23:51:09.000',
'closed_date': '2024-09-19T00:14:08.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': '11374',
'incident_address': '64 ROAD',
'street_name': '64 ROAD',
'cross_street_1': '64 ROAD',
'cross_street_2': 'AUSTIN STREET',
'intersection_street_1': '64 ROAD',
'intersection_street_2': 'AUSTIN STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:14:12.000',
'community_board': '06 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022565',
'y_coordinate_state_plane': '204144',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72692183666251',
'longitude': '-73.86176291066438',
'location': {'latitude': '40.72692183666251',
'longitude': '-73.86176291066438',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489513',
'created_date': '2024-09-18T23:51:08.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Overnight Commercial Storage',
'location_type': 'Street/Sidewalk',
'incident_zip': '11375',
'incident_address': '67-51 LOUBET STREET',
'street_name': 'LOUBET STREET',
'cross_street_1': 'SELFRIDGE STREET',
'cross_street_2': '68 AVENUE',
'intersection_street_1': 'SELFRIDGE STREET',
'intersection_street_2': '68 AVENUE',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': 'LOUBET STREET',
'status': 'In Progress',
'community_board': '06 QUEENS',
'bbl': '4031820030',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1024017',
'y_coordinate_state_plane': '199885',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.715225516452975',
'longitude': '-73.85654939760012',
'location': {'latitude': '40.715225516452975',
'longitude': '-73.85654939760012',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490464',
'created_date': '2024-09-18T23:51:03.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': '11218',
'incident_address': '122 DAHILL ROAD',
'street_name': 'DAHILL ROAD',
'cross_street_1': 'ALBEMARLE ROAD',
'cross_street_2': 'CLARA STREET',
'intersection_street_1': 'ALBEMARLE ROAD',
'intersection_street_2': 'CLARA STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DAHILL ROAD',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3053090054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989569',
'y_coordinate_state_plane': '174079',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64448167917492',
'longitude': '-73.98083324288439',
'location': {'latitude': '40.64448167917492',
'longitude': '-73.98083324288439',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492775',
'created_date': '2024-09-18T23:50:59.000',
'closed_date': '2024-09-19T00:28:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '10004',
'incident_address': '30 WASHINGTON STREET',
'street_name': 'WASHINGTON STREET',
'cross_street_1': 'BATTERY PLACE',
'cross_street_2': 'BK BATTERY TNNL PEDESTRIAN OVPS',
'intersection_street_1': 'BATTERY PLACE',
'intersection_street_2': 'BK BATTERY TNNL PEDESTRIAN OVPS',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WASHINGTON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:28:28.000',
'community_board': '01 MANHATTAN',
'bbl': '1000157502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '980016',
'y_coordinate_state_plane': '196471',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.70594325780663',
'longitude': '-74.01527107927228',
'location': {'latitude': '40.70594325780663',
'longitude': '-74.01527107927228',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484778',
'created_date': '2024-09-18T23:50:57.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10035',
'incident_address': '535 EAST 119 STREET',
'street_name': 'EAST 119 STREET',
'cross_street_1': 'PLEASANT AVENUE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'PLEASANT AVENUE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 119 STREET',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-19T00:39:32.000',
'community_board': '11 MANHATTAN',
'bbl': '1018160001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003364',
'y_coordinate_state_plane': '229532',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.7966676747336',
'longitude': '-73.93096616993171',
'location': {'latitude': '40.7966676747336',
'longitude': '-73.93096616993171',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491702',
'created_date': '2024-09-18T23:50:53.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Dumping',
'descriptor': 'Removal Request',
'location_type': 'Sidewalk',
'incident_zip': '11230',
'incident_address': '1527 OCEAN PARKWAY',
'street_name': 'OCEAN PARKWAY',
'cross_street_1': 'AVENUE O',
'cross_street_2': 'AVENUE P',
'intersection_street_1': 'AVENUE O',
'intersection_street_2': 'AVENUE P',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'OCEAN PARKWAY',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3066130085',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993137',
'y_coordinate_state_plane': '161919',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.611102178978435',
'longitude': '-73.96799214079536',
'location': {'latitude': '40.611102178978435',
'longitude': '-73.96799214079536',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487911',
'created_date': '2024-09-18T23:50:44.000',
'closed_date': '2024-09-18T23:57:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '10012',
'incident_address': '125 WEST THIRD STREET',
'street_name': 'WEST THIRD STREET',
'cross_street_1': 'MAC DOUGAL STREET',
'cross_street_2': 'AVENUE OF THE AMERICAS',
'intersection_street_1': 'MAC DOUGAL STREET',
'intersection_street_2': 'AVENUE OF THE AMERICAS',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 3 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-18T23:57:46.000',
'community_board': '02 MANHATTAN',
'bbl': '1005430063',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984081',
'y_coordinate_state_plane': '205483',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.730680043771706',
'longitude': '-74.0006097710031',
'location': {'latitude': '40.730680043771706',
'longitude': '-74.0006097710031',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487612',
'created_date': '2024-09-18T23:50:38.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Condition',
'descriptor': 'Defective Hardware',
'location_type': 'Street',
'incident_zip': '10016',
'incident_address': '135 EAST 37 STREET',
'street_name': 'EAST 37 STREET',
'cross_street_1': 'LEXINGTON AVENUE',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'LEXINGTON AVENUE',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 37 STREET',
'status': 'In Progress',
'community_board': '06 MANHATTAN',
'bbl': '1008930025',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990317',
'y_coordinate_state_plane': '211872',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.74821418324599',
'longitude': '-73.97810382002123',
'location': {'latitude': '40.74821418324599',
'longitude': '-73.97810382002123',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486019',
'created_date': '2024-09-18T23:50:35.000',
'closed_date': '2024-09-19T00:56:58.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11211',
'incident_address': '290 UNION AVENUE',
'street_name': 'UNION AVENUE',
'cross_street_1': 'STAGG STREET',
'cross_street_2': 'HEWES STREET',
'intersection_street_1': 'STAGG STREET',
'intersection_street_2': 'HEWES STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'UNION AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:57:03.000',
'community_board': '01 BROOKLYN',
'bbl': '3030220003',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997890',
'y_coordinate_state_plane': '197605',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.70904631916916',
'longitude': '-73.9508013160741',
'location': {'latitude': '40.70904631916916',
'longitude': '-73.9508013160741',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491760',
'created_date': '2024-09-18T23:50:23.000',
'closed_date': '2024-09-19T01:24: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': '10039',
'incident_address': '210P WEST 153 STREET',
'street_name': 'WEST 153 STREET',
'cross_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'ADAM CLAYTON POWELL JR BOULEVARD',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 153 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:24:29.000',
'community_board': '10 MANHATTAN',
'bbl': '1020370011',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1002046',
'y_coordinate_state_plane': '240511',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.826804719288',
'longitude': '-73.93569726672507',
'location': {'latitude': '40.826804719288',
'longitude': '-73.93569726672507',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489379',
'created_date': '2024-09-18T23:50:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11379',
'incident_address': '67-17 73 PLACE',
'street_name': '73 PLACE',
'cross_street_1': 'METROPOLITAN AVENUE',
'cross_street_2': '67 ROAD',
'intersection_street_1': 'METROPOLITAN AVENUE',
'intersection_street_2': '67 ROAD',
'address_type': 'ADDRESS',
'city': 'MIDDLE VILLAGE',
'landmark': '73 PLACE',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4037700001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1017725',
'y_coordinate_state_plane': '198808',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.71229545552287',
'longitude': '-73.87925171118994',
'location': {'latitude': '40.71229545552287',
'longitude': '-73.87925171118994',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489246',
'created_date': '2024-09-18T23:50:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Water System',
'descriptor': 'Hydrant Running (WC3)',
'incident_zip': '11235',
'incident_address': '2756 EAST 12 STREET',
'street_name': 'EAST 12 STREET',
'cross_street_1': 'BLAKE CT',
'cross_street_2': 'BANNER AVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'community_board': '15 BROOKLYN',
'bbl': '3087630013',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996082',
'y_coordinate_state_plane': '152048',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.584004838001555',
'longitude': '-73.95740257288016',
'location': {'latitude': '40.584004838001555',
'longitude': '-73.95740257288016',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485529',
'created_date': '2024-09-18T23:49:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11379',
'incident_address': '61-11 69 STREET',
'street_name': '69 STREET',
'cross_street_1': 'ELIOT AVENUE',
'cross_street_2': '61 ROAD',
'intersection_street_1': 'ELIOT AVENUE',
'intersection_street_2': '61 ROAD',
'address_type': 'ADDRESS',
'city': 'MIDDLE VILLAGE',
'landmark': '69 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4029220005',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014491',
'y_coordinate_state_plane': '201305',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.719160762463815',
'longitude': '-73.89090590209267',
'location': {'latitude': '40.719160762463815',
'longitude': '-73.89090590209267',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484396',
'created_date': '2024-09-18T23:49:38.000',
'closed_date': '2024-09-19T01:26: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': '251 UNDERHILL AVENUE',
'street_name': 'UNDERHILL AVENUE',
'cross_street_1': 'LINCOLN PLACE',
'cross_street_2': 'EASTERN PARKWAY',
'intersection_street_1': 'LINCOLN PLACE',
'intersection_street_2': 'EASTERN PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'UNDERHILL AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:26:22.000',
'community_board': '08 BROOKLYN',
'bbl': '3011790096',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993322',
'y_coordinate_state_plane': '184605',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67337018294782',
'longitude': '-73.9672953301547',
'location': {'latitude': '40.67337018294782',
'longitude': '-73.9672953301547',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484163',
'created_date': '2024-09-18T23:49:11.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'ENTIRE BUILDING',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10459',
'incident_address': '950 EAST 163 STREET',
'street_name': 'EAST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '02 BRONX',
'bbl': '2027110017',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013108',
'y_coordinate_state_plane': '238401',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.8209841569559',
'longitude': '-73.89573576985637',
'location': {'latitude': '40.8209841569559',
'longitude': '-73.89573576985637',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487753',
'created_date': '2024-09-18T23:49:07.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'HEAT/HOT WATER',
'descriptor': 'APARTMENT ONLY',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10455',
'incident_address': '432 EAST 156 STREET',
'street_name': 'EAST 156 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '01 BRONX',
'bbl': '2023770018',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007918',
'y_coordinate_state_plane': '238227',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82052200708547',
'longitude': '-73.91448788999959',
'location': {'latitude': '40.82052200708547',
'longitude': '-73.91448788999959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485839',
'created_date': '2024-09-18T23:48:51.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Sidewalk',
'incident_zip': '10456',
'incident_address': 'EAST 165 STREET',
'street_name': 'EAST 165 STREET',
'cross_street_1': 'EAST 165 STREET',
'cross_street_2': 'PARK AVENUE',
'intersection_street_1': 'EAST 165 STREET',
'intersection_street_2': 'PARK AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '03 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008557',
'y_coordinate_state_plane': '240917',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.827903554590385',
'longitude': '-73.91216944981274',
'location': {'latitude': '40.827903554590385',
'longitude': '-73.91216944981274',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488975',
'created_date': '2024-09-18T23:48:48.000',
'closed_date': '2024-09-19T00:37: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': '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': '2024-09-19T00:37:48.000',
'community_board': '15 BROOKLYN',
'bbl': '3073890001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002127',
'y_coordinate_state_plane': '157111',
'open_data_channel_type': 'PHONE',
'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': '62487892',
'created_date': '2024-09-18T23:48:43.000',
'closed_date': '2024-09-19T00:24:40.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11374',
'incident_address': '64-86 WETHEROLE STREET',
'street_name': 'WETHEROLE STREET',
'cross_street_1': '64 ROAD',
'cross_street_2': '65 ROAD',
'intersection_street_1': '64 ROAD',
'intersection_street_2': '65 ROAD',
'address_type': 'ADDRESS',
'city': 'REGO PARK',
'landmark': 'WETHEROLE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:24:43.000',
'community_board': '06 QUEENS',
'bbl': '4030987505',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1022730',
'y_coordinate_state_plane': '204208',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.727096784623164',
'longitude': '-73.86116724047018',
'location': {'latitude': '40.727096784623164',
'longitude': '-73.86116724047018',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485872',
'created_date': '2024-09-18T23:48:32.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Missed Collection',
'descriptor': 'Trash',
'location_type': 'Street',
'incident_zip': '10029',
'incident_address': '235 EAST 116 STREET',
'street_name': 'EAST 116 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 116 STREET',
'status': 'In Progress',
'community_board': '11 MANHATTAN',
'bbl': '1016660016',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001225',
'y_coordinate_state_plane': '229796',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.79739665073308',
'longitude': '-73.93869090340826',
'location': {'latitude': '40.79739665073308',
'longitude': '-73.93869090340826',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488671',
'created_date': '2024-09-18T23:47:46.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Dog Waste',
'location_type': 'Sidewalk',
'incident_zip': '11426',
'incident_address': '76-23 251 STREET',
'street_name': '251 STREET',
'cross_street_1': 'ELKMONT AVENUE',
'cross_street_2': 'SHILOH AVENUE',
'intersection_street_1': 'ELKMONT AVENUE',
'intersection_street_2': 'SHILOH AVENUE',
'address_type': 'ADDRESS',
'city': 'BELLEROSE',
'landmark': '251 STREET',
'status': 'In Progress',
'community_board': '13 QUEENS',
'bbl': '4085040020',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1061737',
'y_coordinate_state_plane': '211024',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74554923442616',
'longitude': '-73.72035531673825',
'location': {'latitude': '40.74554923442616',
'longitude': '-73.72035531673825',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487539',
'created_date': '2024-09-18T23:47:07.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': 'Commercial Building',
'incident_zip': '10011',
'incident_address': '169 WEST 23 STREET',
'street_name': 'WEST 23 STREET',
'cross_street_1': 'AVENUE OF THE AMERICAS',
'cross_street_2': '7 AVENUE',
'intersection_street_1': 'AVENUE OF THE AMERICAS',
'intersection_street_2': '7 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 23 STREET',
'status': 'In Progress',
'community_board': '04 MANHATTAN',
'bbl': '1007990006',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '985745',
'y_coordinate_state_plane': '210217',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.743673578090956',
'longitude': '-73.99460481988268',
'location': {'latitude': '40.743673578090956',
'longitude': '-73.99460481988268',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490139',
'created_date': '2024-09-18T23:47:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Hazardous Materials',
'descriptor': 'Chemical Odor (HD1)',
'incident_zip': '11207',
'incident_address': '29 ELDERT STREET',
'street_name': 'ELDERT STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'BUSHWICK AVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '04 BROOKLYN',
'bbl': '3034080052',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008149',
'y_coordinate_state_plane': '189203',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68596303377859',
'longitude': '-73.91382753317447',
'location': {'latitude': '40.68596303377859',
'longitude': '-73.91382753317447',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485654',
'created_date': '2024-09-18T23:46:24.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '42-64 81 STREET',
'street_name': '81 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': '45 AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': '45 AVENUE',
'address_type': 'ADDRESS',
'city': 'ELMHURST',
'landmark': '81 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4015260043',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1016391',
'y_coordinate_state_plane': '209689',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74216607036609',
'longitude': '-73.88401163137529',
'location': {'latitude': '40.74216607036609',
'longitude': '-73.88401163137529',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492864',
'created_date': '2024-09-18T23:45:56.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'GENERAL',
'descriptor': 'COOKING GAS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10468',
'incident_address': '2435 DEVOE TERRACE',
'street_name': 'DEVOE TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The complaint you filed is a duplicate of a condition already reported by another tenant for a building-wide condition. The original complaint is still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection of your unit if the original complainant is not available for verification.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '07 BRONX',
'bbl': '2032190082',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010091',
'y_coordinate_state_plane': '254184',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.864313192663545',
'longitude': '-73.90657539336519',
'location': {'latitude': '40.864313192663545',
'longitude': '-73.90657539336519',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487483',
'created_date': '2024-09-18T23:45:26.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10458',
'incident_address': '2847 BRIGGS AVENUE',
'street_name': 'BRIGGS AVENUE',
'cross_street_1': 'EAST 198 STREET',
'cross_street_2': 'EAST 199 STREET',
'intersection_street_1': 'EAST 198 STREET',
'intersection_street_2': 'EAST 199 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BRIGGS AVENUE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2033020071',
'borough': 'BRONX',
'x_coordinate_state_plane': '1015016',
'y_coordinate_state_plane': '256003',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86928999991364',
'longitude': '-73.88876139482211',
'location': {'latitude': '40.86928999991364',
'longitude': '-73.88876139482211',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491417',
'created_date': '2024-09-18T23:45:15.000',
'closed_date': '2024-09-19T00: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': '10459',
'incident_address': 'EAST 163 STREET',
'street_name': 'EAST 163 STREET',
'cross_street_1': 'EAST 163 STREET',
'cross_street_2': 'FOX STREET',
'intersection_street_1': 'EAST 163 STREET',
'intersection_street_2': 'FOX STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:29:30.000',
'community_board': '02 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013623',
'y_coordinate_state_plane': '238400',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.82097971474811',
'longitude': '-73.89387507611023',
'location': {'latitude': '40.82097971474811',
'longitude': '-73.89387507611023',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490596',
'created_date': '2024-09-18T23:45: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': '10452',
'incident_address': '1505 TOWNSEND AVENUE',
'street_name': 'TOWNSEND AVENUE',
'cross_street_1': 'EAST 172 STREET',
'cross_street_2': 'EAST MOUNT EDEN AVENUE',
'intersection_street_1': 'EAST 172 STREET',
'intersection_street_2': 'EAST MOUNT EDEN AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'TOWNSEND AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028460074',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007758',
'y_coordinate_state_plane': '246176',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'location': {'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493845',
'created_date': '2024-09-18T23:44:54.000',
'closed_date': '2024-09-19T00:47: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': '10027',
'incident_address': '307 WEST 126 STREET',
'street_name': 'WEST 126 STREET',
'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'cross_street_2': 'ST NICHOLAS AVENUE',
'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_2': 'ST NICHOLAS 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': '2024-09-19T00:47:32.000',
'community_board': '10 MANHATTAN',
'bbl': '1019537501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997811',
'y_coordinate_state_plane': '234747',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.810991681481056',
'longitude': '-73.95101134237656',
'location': {'latitude': '40.810991681481056',
'longitude': '-73.95101134237656',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487592',
'created_date': '2024-09-18T23:44:53.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '11379',
'incident_address': '62-31 69 STREET',
'street_name': '69 STREET',
'cross_street_1': '62 ROAD',
'cross_street_2': '62 DRIVE',
'intersection_street_1': '62 ROAD',
'intersection_street_2': '62 DRIVE',
'address_type': 'ADDRESS',
'city': 'MIDDLE VILLAGE',
'landmark': '69 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4029520007',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015087',
'y_coordinate_state_plane': '200443',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.716792723963174',
'longitude': '-73.88875978945109',
'location': {'latitude': '40.716792723963174',
'longitude': '-73.88875978945109',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489504',
'created_date': '2024-09-18T23:44:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11238',
'incident_address': '778 FRANKLIN AVENUE',
'street_name': 'FRANKLIN AVENUE',
'cross_street_1': 'ST JOHNS PLACE',
'cross_street_2': 'LINCOLN PLACE',
'intersection_street_1': 'ST JOHNS PLACE',
'intersection_street_2': 'LINCOLN PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FRANKLIN AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:50:32.000',
'community_board': '08 BROOKLYN',
'bbl': '3011780049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996032',
'y_coordinate_state_plane': '184080',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67192598398303',
'longitude': '-73.95752666637821',
'location': {'latitude': '40.67192598398303',
'longitude': '-73.95752666637821',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493174',
'created_date': '2024-09-18T23:44:39.000',
'closed_date': '2024-09-19T00:35:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11249',
'incident_address': '68 NORTH 12 STREET',
'street_name': 'NORTH 12 STREET',
'cross_street_1': 'KENT AVENUE',
'cross_street_2': 'WYTHE AVENUE',
'intersection_street_1': 'KENT AVENUE',
'intersection_street_2': 'WYTHE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NORTH 12 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:35:07.000',
'community_board': '01 BROOKLYN',
'bbl': '3022880001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995737',
'y_coordinate_state_plane': '202675',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.72296531083438',
'longitude': '-73.95855840861759',
'location': {'latitude': '40.72296531083438',
'longitude': '-73.95855840861759',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486446',
'created_date': '2024-09-18T23:44:38.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Indoor Air Quality',
'descriptor': 'Chemical Vapors/Gases/Odors',
'location_type': '3+ Family Apartment Building',
'incident_zip': '10456',
'incident_address': '1385 FULTON AVENUE',
'street_name': 'FULTON AVENUE',
'cross_street_1': 'EAST 169 STREET',
'cross_street_2': 'EAST 170 STREET',
'intersection_street_1': 'EAST 169 STREET',
'intersection_street_2': 'EAST 170 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'FULTON AVENUE',
'status': 'In Progress',
'community_board': '03 BRONX',
'bbl': '2029250050',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011291',
'y_coordinate_state_plane': '243139',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83399435605209',
'longitude': '-73.90228150626456',
'location': {'latitude': '40.83399435605209',
'longitude': '-73.90228150626456',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485059',
'created_date': '2024-09-18T23:44:29.000',
'closed_date': '2024-09-19T00:50:59.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10032',
'incident_address': '600 WEST 164 STREET',
'street_name': 'WEST 164 STREET',
'cross_street_1': 'BROADWAY',
'cross_street_2': 'FORT WASHINGTON AVENUE',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'FORT WASHINGTON AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 164 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:51:03.000',
'community_board': '12 MANHATTAN',
'bbl': '1021370141',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000286',
'y_coordinate_state_plane': '244796',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.83856917947116',
'longitude': '-73.94204647344907',
'location': {'latitude': '40.83856917947116',
'longitude': '-73.94204647344907',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490852',
'created_date': '2024-09-18T23:44:18.000',
'closed_date': '2024-09-19T00:47:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10026',
'incident_address': '318 WEST 118 STREET',
'street_name': 'WEST 118 STREET',
'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'cross_street_2': 'MANHATTAN AVENUE',
'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_2': 'MANHATTAN AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 118 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:47:56.000',
'community_board': '10 MANHATTAN',
'bbl': '1019440043',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996675',
'y_coordinate_state_plane': '232932',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80601168021016',
'longitude': '-73.95511846289004',
'location': {'latitude': '40.80601168021016',
'longitude': '-73.95511846289004',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483782',
'created_date': '2024-09-18T23:44:12.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11204',
'incident_address': '2272 63 STREET',
'street_name': '63 STREET',
'cross_street_1': 'BAY PARKWAY',
'cross_street_2': '23 AVENUE',
'intersection_street_1': 'BAY PARKWAY',
'intersection_street_2': '23 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '63 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3065520036',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '990151',
'y_coordinate_state_plane': '163011',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.614101985519994',
'longitude': '-73.97874571141668',
'location': {'latitude': '40.614101985519994',
'longitude': '-73.97874571141668',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483543',
'created_date': '2024-09-18T23:44:12.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10461',
'incident_address': '3005 LASALLE AVENUE',
'street_name': 'LASALLE AVENUE',
'cross_street_1': 'CROSBY AVENUE',
'cross_street_2': 'HOBART AVENUE',
'intersection_street_1': 'CROSBY AVENUE',
'intersection_street_2': 'HOBART AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'LA SALLE AVENUE',
'status': 'In Progress',
'community_board': '10 BRONX',
'bbl': '2053640008',
'borough': 'BRONX',
'x_coordinate_state_plane': '1031520',
'y_coordinate_state_plane': '245289',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83981036654597',
'longitude': '-73.82916463912196',
'location': {'latitude': '40.83981036654597',
'longitude': '-73.82916463912196',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491349',
'created_date': '2024-09-18T23:43:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11219',
'incident_address': '1436 66 STREET',
'street_name': '66 STREET',
'cross_street_1': '14 AVENUE',
'cross_street_2': 'NEW UTRECHT AVENUE',
'intersection_street_1': '14 AVENUE',
'intersection_street_2': 'NEW UTRECHT AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '66 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3057620021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984490',
'y_coordinate_state_plane': '166452',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62354877710104',
'longitude': '-73.9991354429437',
'location': {'latitude': '40.62354877710104',
'longitude': '-73.9991354429437',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486066',
'created_date': '2024-09-18T23:43:15.000',
'closed_date': '2024-09-19T00:30: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': '10459',
'incident_address': '906 SIMPSON STREET',
'street_name': 'SIMPSON STREET',
'cross_street_1': 'BARRETTO STREET',
'cross_street_2': 'EAST 163 STREET',
'intersection_street_1': 'BARRETTO STREET',
'intersection_street_2': 'EAST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SIMPSON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:30:07.000',
'community_board': '02 BRONX',
'bbl': '2027230028',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013698',
'y_coordinate_state_plane': '238088',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.820123113708036',
'longitude': '-73.8936054698288',
'location': {'latitude': '40.820123113708036',
'longitude': '-73.8936054698288',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483703',
'created_date': '2024-09-18T23:43:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11219',
'incident_address': '5107 11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': '51 STREET',
'cross_street_2': '52 STREET',
'intersection_street_1': '51 STREET',
'intersection_street_2': '52 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '11 AVENUE',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3056540008',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984864',
'y_coordinate_state_plane': '171154',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6364547566193',
'longitude': '-73.99778774709554',
'location': {'latitude': '40.6364547566193',
'longitude': '-73.99778774709554',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485015',
'created_date': '2024-09-18T23:43:08.000',
'closed_date': '2024-09-19T00:04: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': '11201',
'incident_address': '5 FLEET WALK',
'street_name': 'FLEET WALK',
'cross_street_1': 'TILLARY STREET',
'cross_street_2': 'NAVY WALK',
'intersection_street_1': 'TILLARY STREET',
'intersection_street_2': 'NAVY WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FLEET WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:04:25.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989455',
'y_coordinate_state_plane': '192677',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'location': {'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489978',
'created_date': '2024-09-18T23:42:48.000',
'closed_date': '2024-09-19T00:45:53.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '10026',
'incident_address': '155 LENOX AVENUE',
'street_name': 'LENOX AVENUE',
'cross_street_1': 'WEST 117 STREET',
'cross_street_2': 'WEST 118 STREET',
'intersection_street_1': 'WEST 117 STREET',
'intersection_street_2': 'WEST 118 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'LENOX AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:45:56.000',
'community_board': '10 MANHATTAN',
'bbl': '1019020035',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998401',
'y_coordinate_state_plane': '231883',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.803129868378484',
'longitude': '-73.94888602470876',
'location': {'latitude': '40.803129868378484',
'longitude': '-73.94888602470876',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489666',
'created_date': '2024-09-18T23:42:39.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10034',
'incident_address': '650 WEST 218 STREET',
'street_name': 'WEST 218 STREET',
'cross_street_1': 'INWOOD HILL PARK GREENWAY',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'INWOOD HILL PARK GREENWAY',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 218 STREET',
'status': 'Closed',
'resolution_description': 'The mobile outreach response team went to the location provided but could not find the individual that you reported.',
'resolution_action_updated_date': '2024-09-19T01:02:51.000',
'community_board': '12 MANHATTAN',
'bbl': '1022552000',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1006368',
'y_coordinate_state_plane': '257783',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.87420145824804',
'longitude': '-73.92002350363556',
'location': {'latitude': '40.87420145824804',
'longitude': '-73.92002350363556',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485075',
'created_date': '2024-09-18T23:42:10.000',
'closed_date': '2024-09-19T00:30: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': '11214',
'incident_address': '30 BAY 25 STREET',
'street_name': 'BAY 25 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 25 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:30:17.000',
'community_board': '11 BROOKLYN',
'bbl': '3063750049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984748',
'y_coordinate_state_plane': '159149',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'location': {'latitude': '40.6035035383368',
'longitude': '-73.99820658271871',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485628',
'created_date': '2024-09-18T23:41:56.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '8732 BAY PARKWAY',
'street_name': 'BAY PARKWAY',
'cross_street_1': 'BENSON AVENUE',
'cross_street_2': 'BATH AVENUE',
'intersection_street_1': 'BENSON AVENUE',
'intersection_street_2': 'BATH AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY PARKWAY',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3064140057',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985208',
'y_coordinate_state_plane': '157627',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.599325919526294',
'longitude': '-73.99655022839774',
'location': {'latitude': '40.599325919526294',
'longitude': '-73.99655022839774',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488037',
'created_date': '2024-09-18T23:41:46.000',
'closed_date': '2024-09-19T00:04:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '5 FLEET WALK',
'street_name': 'FLEET WALK',
'cross_street_1': 'TILLARY STREET',
'cross_street_2': 'NAVY WALK',
'intersection_street_1': 'TILLARY STREET',
'intersection_street_2': 'NAVY WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FLEET WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:04:10.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989455',
'y_coordinate_state_plane': '192677',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'location': {'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489521',
'created_date': '2024-09-18T23:41:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Bike Lane',
'location_type': 'Street/Sidewalk',
'incident_zip': '10456',
'incident_address': 'EAST 165 STREET',
'street_name': 'EAST 165 STREET',
'cross_street_1': 'EAST 165 STREET',
'cross_street_2': 'PARK AVENUE',
'intersection_street_1': 'EAST 165 STREET',
'intersection_street_2': 'PARK AVENUE',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '03 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008557',
'y_coordinate_state_plane': '240917',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.827903554590385',
'longitude': '-73.91216944981274',
'location': {'latitude': '40.827903554590385',
'longitude': '-73.91216944981274',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489474',
'created_date': '2024-09-18T23:41:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Bike Lane',
'location_type': 'Street/Sidewalk',
'incident_zip': '10003',
'incident_address': '61 COOPER SQUARE',
'street_name': 'COOPER SQUARE',
'cross_street_1': 'EAST 7 STREET',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'EAST 7 STREET',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'COOPER SQUARE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:53:14.000',
'community_board': '03 MANHATTAN',
'bbl': '1004630001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986950',
'y_coordinate_state_plane': '204886',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72904101430865',
'longitude': '-73.99025833599084',
'location': {'latitude': '40.72904101430865',
'longitude': '-73.99025833599084',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483435',
'created_date': '2024-09-18T23:41:21.000',
'closed_date': '2024-09-19T01:04: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': '11203',
'incident_address': '701 FENIMORE STREET',
'street_name': 'FENIMORE STREET',
'cross_street_1': 'ALBANY AVENUE',
'cross_street_2': 'TROY AVENUE',
'intersection_street_1': 'ALBANY AVENUE',
'intersection_street_2': 'TROY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FENIMORE STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:04:30.000',
'community_board': '09 BROOKLYN',
'bbl': '3048130001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001179',
'y_coordinate_state_plane': '179525',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'location': {'latitude': '40.65941517743085',
'longitude': '-73.9389835134306',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489193',
'created_date': '2024-09-18T23:41:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11205',
'incident_address': '342 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': 'CARLTON AVE',
'cross_street_2': 'ADELPHI ST',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '02 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991836',
'y_coordinate_state_plane': '191841',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69323275082817',
'longitude': '-73.972644231401',
'location': {'latitude': '40.69323275082817',
'longitude': '-73.972644231401',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486043',
'created_date': '2024-09-18T23:40:35.000',
'closed_date': '2024-09-19T00:29: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': '10459',
'incident_address': '906 SIMPSON STREET',
'street_name': 'SIMPSON STREET',
'cross_street_1': 'BARRETTO STREET',
'cross_street_2': 'EAST 163 STREET',
'intersection_street_1': 'BARRETTO STREET',
'intersection_street_2': 'EAST 163 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'SIMPSON STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:29:47.000',
'community_board': '02 BRONX',
'bbl': '2027230028',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013698',
'y_coordinate_state_plane': '238088',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.820123113708036',
'longitude': '-73.8936054698288',
'location': {'latitude': '40.820123113708036',
'longitude': '-73.8936054698288',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489971',
'created_date': '2024-09-18T23:40:30.000',
'closed_date': '2024-09-19T00:03: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': '11201',
'incident_address': '5 FLEET WALK',
'street_name': 'FLEET WALK',
'cross_street_1': 'TILLARY STREET',
'cross_street_2': 'NAVY WALK',
'intersection_street_1': 'TILLARY STREET',
'intersection_street_2': 'NAVY WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FLEET WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:03:12.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989455',
'y_coordinate_state_plane': '192677',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'location': {'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491613',
'created_date': '2024-09-18T23:40:15.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Signs of Rodents',
'location_type': '3+ Family Apt. Building',
'incident_zip': '11222',
'incident_address': '96 KENT STREET',
'street_name': 'KENT STREET',
'cross_street_1': 'FRANKLIN STREET',
'cross_street_2': 'MANHATTAN AVENUE',
'intersection_street_1': 'FRANKLIN STREET',
'intersection_street_2': 'MANHATTAN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'KENT STREET',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3025580011',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '996197',
'y_coordinate_state_plane': '205478',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.73065825333143',
'longitude': '-73.95689389298394',
'location': {'latitude': '40.73065825333143',
'longitude': '-73.95689389298394',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490120',
'created_date': '2024-09-18T23:39:55.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'MOLD',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10468',
'incident_address': '2542 UNIVERSITY AVENUE',
'street_name': 'UNIVERSITY AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '07 BRONX',
'bbl': '2032140022',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011145',
'y_coordinate_state_plane': '254819',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86605292576407',
'longitude': '-73.90276225495491',
'location': {'latitude': '40.86605292576407',
'longitude': '-73.90276225495491',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491347',
'created_date': '2024-09-18T23:39:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10460',
'incident_address': '2035 MARMION AVENUE',
'street_name': 'MARMION AVENUE',
'cross_street_1': 'EAST 179 STREET',
'cross_street_2': 'SOUTHERN BOULEVARD',
'intersection_street_1': 'EAST 179 STREET',
'intersection_street_2': 'SOUTHERN BOULEVARD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'MARMION AVENUE',
'status': 'In Progress',
'community_board': '06 BRONX',
'bbl': '2031080044',
'borough': 'BRONX',
'x_coordinate_state_plane': '1015907',
'y_coordinate_state_plane': '247072',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84477394812298',
'longitude': '-73.88558204647576',
'location': {'latitude': '40.84477394812298',
'longitude': '-73.88558204647576',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489938',
'created_date': '2024-09-18T23:39:21.000',
'closed_date': '2024-09-19T00:05:37.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10029',
'incident_address': '183 EAST 98 STREET',
'street_name': 'EAST 98 STREET',
'cross_street_1': 'LEXINGTON AVENUE',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'LEXINGTON AVENUE',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 98 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:05:40.000',
'community_board': '11 MANHATTAN',
'bbl': '1016260021',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998418',
'y_coordinate_state_plane': '225885',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.786666958517124',
'longitude': '-73.94883727388323',
'location': {'latitude': '40.786666958517124',
'longitude': '-73.94883727388323',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490366',
'created_date': '2024-09-18T23:39:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11207',
'incident_address': '367 ASHFORD STREET',
'street_name': 'ASHFORD STREET',
'cross_street_1': 'PITKIN AVENUE',
'cross_street_2': 'BELMONT AVENUE',
'intersection_street_1': 'PITKIN AVENUE',
'intersection_street_2': 'BELMONT AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ASHFORD STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:46:31.000',
'community_board': '05 BROOKLYN',
'bbl': '3040160118',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1016167',
'y_coordinate_state_plane': '184561',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67319652562248',
'longitude': '-73.88493909772221',
'location': {'latitude': '40.67319652562248',
'longitude': '-73.88493909772221',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489476',
'created_date': '2024-09-18T23:39:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '44 BAY 13 STREET',
'street_name': 'BAY 13 STREET',
'cross_street_1': '86 STREET',
'cross_street_2': 'BENSON AVENUE',
'intersection_street_1': '86 STREET',
'intersection_street_2': 'BENSON AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BAY 13 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3063630062',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '982197',
'y_coordinate_state_plane': '161050',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.608721171163175',
'longitude': '-74.00739392257415',
'location': {'latitude': '40.608721171163175',
'longitude': '-74.00739392257415',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491021',
'created_date': '2024-09-18T23:38:55.000',
'closed_date': '2024-09-19T00:03: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': '11201',
'incident_address': '5 FLEET WALK',
'street_name': 'FLEET WALK',
'cross_street_1': 'TILLARY STREET',
'cross_street_2': 'NAVY WALK',
'intersection_street_1': 'TILLARY STREET',
'intersection_street_2': 'NAVY WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'FLEET WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:03:52.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989455',
'y_coordinate_state_plane': '192677',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'location': {'latitude': '40.69552909769039',
'longitude': '-73.98122967592082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485570',
'created_date': '2024-09-18T23:38:42.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11435',
'incident_address': '143-04 JAMAICA AVENUE',
'street_name': 'JAMAICA AVENUE',
'cross_street_1': '143 STREET',
'cross_street_2': '144 STREET',
'intersection_street_1': '143 STREET',
'intersection_street_2': '144 STREET',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': 'JAMAICA AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:23:09.000',
'community_board': '12 QUEENS',
'bbl': '4099830001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1036490',
'y_coordinate_state_plane': '195191',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70227677096624',
'longitude': '-73.81159236734636',
'location': {'latitude': '40.70227677096624',
'longitude': '-73.81159236734636',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487606',
'created_date': '2024-09-18T23:38: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': '10468',
'incident_address': '2327 ANDREWS AVENUE NORTH',
'street_name': 'ANDREWS AVENUE NORTH',
'cross_street_1': 'WEST 183 STREET',
'cross_street_2': 'WEST FORDHAM ROAD',
'intersection_street_1': 'WEST 183 STREET',
'intersection_street_2': 'WEST FORDHAM ROAD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'ANDREWS AVENUE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2032250123',
'borough': 'BRONX',
'x_coordinate_state_plane': '1009989',
'y_coordinate_state_plane': '253309',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86191188144227',
'longitude': '-73.90694752060794',
'location': {'latitude': '40.86191188144227',
'longitude': '-73.90694752060794',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486733',
'created_date': '2024-09-18T23:38:33.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Other',
'incident_zip': '10044',
'incident_address': '568 MAIN STREET',
'street_name': 'MAIN STREET',
'cross_street_1': 'UNNAMED STREET',
'cross_street_2': 'UNNAMED STREET',
'intersection_street_1': 'UNNAMED STREET',
'intersection_street_2': 'UNNAMED STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'MAIN STREET',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-18T23:45:18.000',
'community_board': '08 MANHATTAN',
'bbl': '1013730030',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '998271',
'y_coordinate_state_plane': '217101',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.762557420897316',
'longitude': '-73.94938644027695',
'location': {'latitude': '40.762557420897316',
'longitude': '-73.94938644027695',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490482',
'created_date': '2024-09-18T23:38:20.000',
'closed_date': '2024-09-19T01:22:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11234',
'incident_address': '2605 EAST 63 STREET',
'street_name': 'EAST 63 STREET',
'cross_street_1': 'MAYFAIR DRIVE SOUTH',
'cross_street_2': '56 DRIVE',
'intersection_street_1': 'MAYFAIR DRIVE SOUTH',
'intersection_street_2': '56 DRIVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 63 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T01:22:19.000',
'community_board': '18 BROOKLYN',
'bbl': '3086470034',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008954',
'y_coordinate_state_plane': '161139',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.60893125983148',
'longitude': '-73.91102773050108',
'location': {'latitude': '40.60893125983148',
'longitude': '-73.91102773050108',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492993',
'created_date': '2024-09-18T23:38:08.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Signs of Rodents',
'location_type': '3+ Family Apt. Building',
'incident_zip': '10025',
'incident_address': '988 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 108 STREET',
'cross_street_2': 'WEST 109 STREET',
'intersection_street_1': 'WEST 108 STREET',
'intersection_street_2': 'WEST 109 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'bbl': '1018807501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994099',
'y_coordinate_state_plane': '231549',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.802218972733094',
'longitude': '-73.96442550781637',
'location': {'latitude': '40.802218972733094',
'longitude': '-73.96442550781637',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488337',
'created_date': '2024-09-18T23:38:04.000',
'closed_date': '2024-09-19T01:30:28.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11201',
'incident_address': '110 CADMAN PLAZA EAST',
'street_name': 'CADMAN PLAZA EAST',
'cross_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
'cross_street_2': 'RED CROSS PLACE',
'intersection_street_1': 'BROOKLYN BRIDGE EN RAMP SANDS ST',
'intersection_street_2': 'RED CROSS PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CADMAN PLAZA EAST',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:30:32.000',
'community_board': '02 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987087',
'y_coordinate_state_plane': '194404',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.700270386304894',
'longitude': '-73.98976845412388',
'location': {'latitude': '40.700270386304894',
'longitude': '-73.98976845412388',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487211',
'created_date': '2024-09-18T23:38:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11415',
'incident_address': '81-72 LEFFERTS BOULEVARD',
'street_name': 'LEFFERTS BOULEVARD',
'cross_street_1': 'CUTHBERT RD',
'cross_street_2': 'BEVERLY RD',
'address_type': 'ADDRESS',
'city': 'KEW GARDENS',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '09 QUEENS',
'bbl': '4033320027',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1031113',
'y_coordinate_state_plane': '197260',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70798578787977',
'longitude': '-73.8309704873065',
'location': {'latitude': '40.70798578787977',
'longitude': '-73.8309704873065',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488238',
'created_date': '2024-09-18T23:38:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11367',
'incident_address': '149-05 UNION TURNPIKE',
'street_name': 'UNION TURNPIKE',
'cross_street_1': '149 ST',
'cross_street_2': '150 ST',
'address_type': 'ADDRESS',
'city': 'FLUSHING',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '08 QUEENS',
'bbl': '4066910086',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035918',
'y_coordinate_state_plane': '201158',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.718658090597366',
'longitude': '-73.81360953226844',
'location': {'latitude': '40.718658090597366',
'longitude': '-73.81360953226844',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492569',
'created_date': '2024-09-18T23:38:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11205',
'incident_address': '342 MYRTLE AVENUE',
'street_name': 'MYRTLE AVENUE',
'cross_street_1': 'CARLTON AVE',
'cross_street_2': 'ADELPHI ST',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '02 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991836',
'y_coordinate_state_plane': '191841',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69323275082817',
'longitude': '-73.972644231401',
'location': {'latitude': '40.69323275082817',
'longitude': '-73.972644231401',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488522',
'created_date': '2024-09-18T23:37:30.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': '352 DYCKMAN STREET',
'street_name': 'DYCKMAN STREET',
'cross_street_1': 'BEND',
'cross_street_2': 'BEND',
'intersection_street_1': 'BEND',
'intersection_street_2': 'BEND',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'DYCKMAN STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:42.000',
'community_board': '12 MANHATTAN',
'bbl': '1021780530',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003179',
'y_coordinate_state_plane': '255859',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.86892808455398',
'longitude': '-73.93156004207157',
'location': {'latitude': '40.86892808455398',
'longitude': '-73.93156004207157',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491372',
'created_date': '2024-09-18T23:37:11.000',
'closed_date': '2024-09-19T00:13:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '10025',
'incident_address': '988 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 108 STREET',
'cross_street_2': 'WEST 109 STREET',
'intersection_street_1': 'WEST 108 STREET',
'intersection_street_2': 'WEST 109 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:13:52.000',
'community_board': '07 MANHATTAN',
'bbl': '1018807501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994099',
'y_coordinate_state_plane': '231549',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.802218972733094',
'longitude': '-73.96442550781637',
'location': {'latitude': '40.802218972733094',
'longitude': '-73.96442550781637',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485483',
'created_date': '2024-09-18T23:37:03.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Indoor Air Quality',
'descriptor': 'Chemical Vapors/Gases/Odors',
'location_type': '3+ Family Apartment Building',
'incident_zip': '10029',
'incident_address': '434 EAST 105 STREET',
'street_name': 'EAST 105 STREET',
'cross_street_1': '1 AVENUE',
'cross_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
'intersection_street_1': '1 AVENUE',
'intersection_street_2': 'FRANKLIN D ROOSEVELT DRIVE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 105 STREET',
'status': 'In Progress',
'community_board': '11 MANHATTAN',
'bbl': '1016960001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1001076',
'y_coordinate_state_plane': '226513',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.788385989229155',
'longitude': '-73.93923727576926',
'location': {'latitude': '40.788385989229155',
'longitude': '-73.93923727576926',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488952',
'created_date': '2024-09-18T23:36:29.000',
'closed_date': '2024-09-19T00:35:53.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11378',
'incident_address': '59-51 70 STREET',
'street_name': '70 STREET',
'cross_street_1': 'CALDWELL AVENUE',
'cross_street_2': '60 AVENUE',
'intersection_street_1': 'CALDWELL AVENUE',
'intersection_street_2': '60 AVENUE',
'address_type': 'ADDRESS',
'city': 'MASPETH',
'landmark': '70 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:35:56.000',
'community_board': '05 QUEENS',
'bbl': '4028330044',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014658',
'y_coordinate_state_plane': '202974',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72374118850705',
'longitude': '-73.89029591154315',
'location': {'latitude': '40.72374118850705',
'longitude': '-73.89029591154315',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492759',
'created_date': '2024-09-18T23:36:24.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dirty Condition',
'descriptor': 'Trash',
'location_type': 'Sidewalk',
'incident_zip': '10463',
'incident_address': '5585 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'WEST 231 STREET',
'cross_street_2': 'NAPLES TERRACE',
'intersection_street_1': 'WEST 231 STREET',
'intersection_street_2': 'NAPLES TERRACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BROADWAY',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2057040045',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010610',
'y_coordinate_state_plane': '259570',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87909456892025',
'longitude': '-73.90467783165927',
'location': {'latitude': '40.87909456892025',
'longitude': '-73.90467783165927',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486362',
'created_date': '2024-09-18T23:35:36.000',
'closed_date': '2024-09-19T00:11:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '2525 WEST 2 STREET',
'street_name': 'WEST 2 STREET',
'cross_street_1': 'AVENUE Y',
'cross_street_2': 'AVENUE Z',
'intersection_street_1': 'AVENUE Y',
'intersection_street_2': 'AVENUE Z',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 2 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:11:17.000',
'community_board': '13 BROOKLYN',
'bbl': '3072140001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992156',
'y_coordinate_state_plane': '153335',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58754176773402',
'longitude': '-73.97153540499298',
'location': {'latitude': '40.58754176773402',
'longitude': '-73.97153540499298',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484767',
'created_date': '2024-09-18T23:35:16.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Park/Playground',
'incident_zip': '10035',
'incident_address': "RANDALL'S ISLAND PARK",
'street_name': "RANDALL'S ISLAND PARK",
'cross_street_1': 'BEND',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'BEND',
'intersection_street_2': 'DEAD END',
'address_type': 'BLOCKFACE',
'city': 'NEW YORK',
'landmark': 'RANDALLS ISLAND PARK',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-18T23:36:23.000',
'community_board': '11 MANHATTAN',
'bbl': '1018190203',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1005340',
'y_coordinate_state_plane': '229529',
'open_data_channel_type': 'ONLINE',
'park_facility_name': "Randall's Island Park",
'park_borough': 'MANHATTAN',
'latitude': '40.79665494538755',
'longitude': '-73.92382948464403',
'location': {'latitude': '40.79665494538755',
'longitude': '-73.92382948464403',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486169',
'created_date': '2024-09-18T23:35:12.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'PAINT/PLASTER',
'descriptor': 'WALL',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11106',
'incident_address': '31-35 CRESCENT STREET',
'street_name': 'CRESCENT STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '01 QUEENS',
'bbl': '4005790036',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004421',
'y_coordinate_state_plane': '217880',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.76468368198577',
'longitude': '-73.92718359841146',
'location': {'latitude': '40.76468368198577',
'longitude': '-73.92718359841146',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484796',
'created_date': '2024-09-18T23:35:12.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Illegal Posting',
'descriptor': 'Sticker or Decal',
'location_type': 'Street',
'incident_zip': '10023',
'incident_address': '332 AMSTERDAM AVENUE',
'street_name': 'AMSTERDAM AVENUE',
'cross_street_1': 'WEST 75 STREET',
'cross_street_2': 'WEST 76 STREET',
'intersection_street_1': 'WEST 75 STREET',
'intersection_street_2': 'WEST 76 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'AMSTERDAM AVENUE',
'status': 'In Progress',
'community_board': '07 MANHATTAN',
'bbl': '1011670033',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989810',
'y_coordinate_state_plane': '223806',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78097026442252',
'longitude': '-73.9799237431935',
'location': {'latitude': '40.78097026442252',
'longitude': '-73.9799237431935',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483276',
'created_date': '2024-09-18T23:35:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11105',
'incident_address': '19-45 49 STREET',
'street_name': '49 STREET',
'cross_street_1': '19 AVE',
'cross_street_2': '20 AVE',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '01 QUEENS',
'bbl': '4007550009',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1013407',
'y_coordinate_state_plane': '221057',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77337864545688',
'longitude': '-73.89473078695957',
'location': {'latitude': '40.77337864545688',
'longitude': '-73.89473078695957',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493045',
'created_date': '2024-09-18T23:34:59.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dead Animal',
'descriptor': 'Cat',
'location_type': 'Street',
'incident_zip': '11234',
'incident_address': '3603 AVENUE M',
'street_name': 'AVENUE M',
'cross_street_1': 'EAST 36 STREET',
'cross_street_2': 'EAST 37 STREET',
'intersection_street_1': 'EAST 36 STREET',
'intersection_street_2': 'EAST 37 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'AVENUE M',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'bbl': '3076540109',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001000',
'y_coordinate_state_plane': '165259',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.620258410747105',
'longitude': '-73.9396640917652',
'location': {'latitude': '40.620258410747105',
'longitude': '-73.9396640917652',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493023',
'created_date': '2024-09-18T23:34:53.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11249',
'incident_address': '48 SOUTH 4 STREET',
'street_name': 'SOUTH 4 STREET',
'cross_street_1': 'KENT AVENUE',
'cross_street_2': 'WYTHE AVENUE',
'intersection_street_1': 'KENT AVENUE',
'intersection_street_2': 'WYTHE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SOUTH 4 STREET',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3024410021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993584',
'y_coordinate_state_plane': '199043',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.712998877490364',
'longitude': '-73.96633081126946',
'location': {'latitude': '40.712998877490364',
'longitude': '-73.96633081126946',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483549',
'created_date': '2024-09-18T23:34:46.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '11385',
'incident_address': '74-10 65 STREET',
'street_name': '65 STREET',
'cross_street_1': 'CYPRESS HILLS STREET',
'cross_street_2': 'COOPER AVENUE',
'intersection_street_1': 'CYPRESS HILLS STREET',
'intersection_street_2': 'COOPER AVENUE',
'address_type': 'ADDRESS',
'city': 'RIDGEWOOD',
'landmark': '65 STREET',
'status': 'In Progress',
'community_board': '05 QUEENS',
'bbl': '4035990037',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014889',
'y_coordinate_state_plane': '194334',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.700025666066686',
'longitude': '-73.88950184497676',
'location': {'latitude': '40.700025666066686',
'longitude': '-73.88950184497676',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484422',
'created_date': '2024-09-18T23:34:15.000',
'closed_date': '2024-09-19T00:08: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': '10305',
'incident_address': '607 TOMPKINS AVENUE',
'street_name': 'TOMPKINS AVENUE',
'cross_street_1': 'HYLAN BOULEVARD',
'cross_street_2': 'MARYLAND AVENUE',
'intersection_street_1': 'HYLAN BOULEVARD',
'intersection_street_2': 'MARYLAND AVENUE',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'TOMPKINS AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:08:19.000',
'community_board': '01 STATEN ISLAND',
'bbl': '5028560002',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '964591',
'y_coordinate_state_plane': '161919',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.61108482766208',
'longitude': '-74.0708048154687',
'location': {'latitude': '40.61108482766208',
'longitude': '-74.0708048154687',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483757',
'created_date': '2024-09-18T23:34: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': '10452',
'incident_address': '1403 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'EAST 170 STREET',
'cross_street_2': 'EAST 171 STREET',
'intersection_street_1': 'EAST 170 STREET',
'intersection_street_2': 'EAST 171 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028330030',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008147',
'y_coordinate_state_plane': '244946',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83896311232895',
'longitude': '-73.91363658344284',
'location': {'latitude': '40.83896311232895',
'longitude': '-73.91363658344284',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488842',
'created_date': '2024-09-18T23:34:02.000',
'closed_date': '2024-09-19T01:16:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10458',
'incident_address': '254 EAST 203 STREET',
'street_name': 'EAST 203 STREET',
'cross_street_1': 'VALENTINE AVENUE',
'cross_street_2': 'BRIGGS AVENUE',
'intersection_street_1': 'VALENTINE AVENUE',
'intersection_street_2': 'BRIGGS AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 203 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:16:26.000',
'community_board': '07 BRONX',
'bbl': '2033080051',
'borough': 'BRONX',
'x_coordinate_state_plane': '1016218',
'y_coordinate_state_plane': '257513',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.87343021249971',
'longitude': '-73.88440820293128',
'location': {'latitude': '40.87343021249971',
'longitude': '-73.88440820293128',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483910',
'created_date': '2024-09-18T23:34:00.000',
'closed_date': '2024-09-19T00:25:39.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Music/Party',
'location_type': 'Residential Building/House',
'incident_zip': '11230',
'incident_address': '512 RYDER AVENUE',
'street_name': 'RYDER AVENUE',
'cross_street_1': 'EAST 5 STREET',
'cross_street_2': 'OCEAN PARKWAY',
'intersection_street_1': 'EAST 5 STREET',
'intersection_street_2': 'OCEAN PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'RYDER AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:25:42.000',
'community_board': '12 BROOKLYN',
'bbl': '3065870093',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992671',
'y_coordinate_state_plane': '162967',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61397917797145',
'longitude': '-73.96966920238809',
'location': {'latitude': '40.61397917797145',
'longitude': '-73.96966920238809',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488422',
'created_date': '2024-09-18T23:33:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11209',
'incident_address': '259 93 STREET',
'street_name': '93 STREET',
'cross_street_1': 'RIDGE BOULEVARD',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'RIDGE BOULEVARD',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '93 STREET',
'status': 'In Progress',
'community_board': '10 BROOKLYN',
'bbl': '3061020054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '974757',
'y_coordinate_state_plane': '164770',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'location': {'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487967',
'created_date': '2024-09-18T23:33:41.000',
'closed_date': '2024-09-19T00:15: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': '10027',
'incident_address': '401 WEST 129 STREET',
'street_name': 'WEST 129 STREET',
'cross_street_1': 'ST NICHOLAS TERRACE',
'cross_street_2': 'CONVENT AVENUE',
'intersection_street_1': 'ST NICHOLAS TERRACE',
'intersection_street_2': 'CONVENT AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 129 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:15:13.000',
'community_board': '09 MANHATTAN',
'bbl': '1019690040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997654',
'y_coordinate_state_plane': '235728',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81368449246657',
'longitude': '-73.951576540477',
'location': {'latitude': '40.81368449246657',
'longitude': '-73.951576540477',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486369',
'created_date': '2024-09-18T23:33:38.000',
'closed_date': '2024-09-19T00:10:50.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Sidewalk',
'location_type': 'Street/Sidewalk',
'incident_zip': '11223',
'incident_address': '2525 WEST 2 STREET',
'street_name': 'WEST 2 STREET',
'cross_street_1': 'AVENUE Y',
'cross_street_2': 'AVENUE Z',
'intersection_street_1': 'AVENUE Y',
'intersection_street_2': 'AVENUE Z',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 2 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T00:10:54.000',
'community_board': '13 BROOKLYN',
'bbl': '3072140001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992156',
'y_coordinate_state_plane': '153335',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.58754176773402',
'longitude': '-73.97153540499298',
'location': {'latitude': '40.58754176773402',
'longitude': '-73.97153540499298',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491973',
'created_date': '2024-09-18T23:33:23.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': '2508 EAST 23 STREET',
'street_name': 'EAST 23 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 23 STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074410414',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999028',
'y_coordinate_state_plane': '154419',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59050833759813',
'longitude': '-73.94679123569863',
'location': {'latitude': '40.59050833759813',
'longitude': '-73.94679123569863',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487601',
'created_date': '2024-09-18T23:33:23.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10471',
'incident_address': '568 WEST 261 STREET',
'street_name': 'WEST 261 STREET',
'cross_street_1': 'NETHERLAND AVENUE',
'cross_street_2': 'INDEPENDENCE AVENUE',
'intersection_street_1': 'NETHERLAND AVENUE',
'intersection_street_2': 'INDEPENDENCE AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'WEST 261 STREET',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2059530367',
'borough': 'BRONX',
'x_coordinate_state_plane': '1010565',
'y_coordinate_state_plane': '271075',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.9106722489812',
'longitude': '-73.90479534194867',
'location': {'latitude': '40.9106722489812',
'longitude': '-73.90479534194867',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492143',
'created_date': '2024-09-18T23:33:16.000',
'closed_date': '2024-09-19T00:16: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': '41 ST NICHOLAS TERRACE',
'street_name': 'ST NICHOLAS TERRACE',
'cross_street_1': 'WEST 129 STREET',
'cross_street_2': 'WEST 130 STREET',
'intersection_street_1': 'WEST 129 STREET',
'intersection_street_2': 'WEST 130 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'ST NICHOLAS 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': '2024-09-19T00:16:09.000',
'community_board': '09 MANHATTAN',
'bbl': '1019690040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997741',
'y_coordinate_state_plane': '235720',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81366240227156',
'longitude': '-73.95126225932395',
'location': {'latitude': '40.81366240227156',
'longitude': '-73.95126225932395',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491422',
'created_date': '2024-09-18T23:33:11.000',
'closed_date': '2024-09-18T23:54:56.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10012',
'incident_address': '148 BLEECKER STREET',
'street_name': 'BLEECKER STREET',
'cross_street_1': 'LA GUARDIA PLACE',
'cross_street_2': 'THOMPSON STREET',
'intersection_street_1': 'LA GUARDIA PLACE',
'intersection_street_2': 'THOMPSON STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BLEECKER STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:55:00.000',
'community_board': '02 MANHATTAN',
'bbl': '1005257506',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984438',
'y_coordinate_state_plane': '204593',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.728237210910336',
'longitude': '-73.99932169972624',
'location': {'latitude': '40.728237210910336',
'longitude': '-73.99932169972624',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492402',
'created_date': '2024-09-18T23:33:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '10027',
'intersection_street_1': 'MALCOLM X BOULEVARD',
'intersection_street_2': 'WEST 125 STREET',
'address_type': 'INTERSECTION',
'city': 'MANHATTAN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '10 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999342',
'y_coordinate_state_plane': '233575',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.807772384239165',
'longitude': '-73.94548329252599',
'location': {'latitude': '40.807772384239165',
'longitude': '-73.94548329252599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491317',
'created_date': '2024-09-18T23:32:52.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Food Establishment',
'descriptor': 'Food Spoiled',
'location_type': 'Restaurant/Bar/Deli/Bakery',
'incident_zip': '10075',
'incident_address': '976 MADISON AVENUE',
'street_name': 'MADISON AVENUE',
'cross_street_1': 'EAST 76 STREET',
'cross_street_2': 'EAST 77 STREET',
'intersection_street_1': 'EAST 76 STREET',
'intersection_street_2': 'EAST 77 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'MADISON AVENUE',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1013910014',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994374',
'y_coordinate_state_plane': '221458',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77452157444525',
'longitude': '-73.96344741987714',
'location': {'latitude': '40.77452157444525',
'longitude': '-73.96344741987714',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486052',
'created_date': '2024-09-18T23:32:14.000',
'closed_date': '2024-09-18T23:59: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': '11226',
'incident_address': '1930 CHURCH AVENUE',
'street_name': 'CHURCH AVENUE',
'cross_street_1': 'EAST 19 STREET',
'cross_street_2': 'OCEAN AVENUE',
'intersection_street_1': 'EAST 19 STREET',
'intersection_street_2': 'OCEAN AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'CHURCH AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:00:02.000',
'community_board': '14 BROOKLYN',
'bbl': '3050990106',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994863',
'y_coordinate_state_plane': '176050',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64988688577203',
'longitude': '-73.96175347283278',
'location': {'latitude': '40.64988688577203',
'longitude': '-73.96175347283278',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484618',
'created_date': '2024-09-18T23:32:12.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': '1792 WEST 10 STREET',
'street_name': 'WEST 10 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 10 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3066460044',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989055',
'y_coordinate_state_plane': '159137',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60346931212046',
'longitude': '-73.98269605286242',
'location': {'latitude': '40.60346931212046',
'longitude': '-73.98269605286242',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490489',
'created_date': '2024-09-18T23:32:00.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11203',
'incident_address': '4617 AVENUE D',
'street_name': 'AVENUE D',
'cross_street_1': 'EAST 46 STREET',
'cross_street_2': 'SCHENECTADY AVENUE',
'intersection_street_1': 'EAST 46 STREET',
'intersection_street_2': 'SCHENECTADY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'AVENUE D',
'status': 'In Progress',
'community_board': '17 BROOKLYN',
'bbl': '3049630042',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002850',
'y_coordinate_state_plane': '173151',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64191658532289',
'longitude': '-73.93297837758371',
'location': {'latitude': '40.64191658532289',
'longitude': '-73.93297837758371',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492027',
'created_date': '2024-09-18T23:32:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Traffic Signal Condition',
'descriptor': 'Controller',
'incident_zip': '10456',
'intersection_street_1': 'MORRIS AVENUE',
'intersection_street_2': 'EAST 166 STREET',
'address_type': 'INTERSECTION',
'city': 'BRONX',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '04 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007579',
'y_coordinate_state_plane': '241875',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83053562658684',
'longitude': '-73.91570000683181',
'location': {'latitude': '40.83053562658684',
'longitude': '-73.91570000683181',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493229',
'created_date': '2024-09-18T23:32:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '11101',
'incident_address': '11-69 46 AVENUE',
'street_name': '46 AVENUE',
'cross_street_1': '11 ST',
'cross_street_2': '21 ST',
'address_type': 'ADDRESS',
'city': 'LONG ISLAND CITY',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '02 QUEENS',
'borough': 'QUEENS',
'x_coordinate_state_plane': '998357',
'y_coordinate_state_plane': '211136',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.746184877318235',
'longitude': '-73.94908850894396',
'location': {'latitude': '40.746184877318235',
'longitude': '-73.94908850894396',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492286',
'created_date': '2024-09-18T23:32:00.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11365',
'incident_address': '162-20 59 AVENUE',
'street_name': '59 AVENUE',
'cross_street_1': '162 STREET',
'cross_street_2': '163 STREET',
'intersection_street_1': '162 STREET',
'intersection_street_2': '163 STREET',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '59 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:13:23.000',
'community_board': '07 QUEENS',
'bbl': '4067400037',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037958',
'y_coordinate_state_plane': '209097',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74043650208218',
'longitude': '-73.8061869620548',
'location': {'latitude': '40.74043650208218',
'longitude': '-73.8061869620548',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483912',
'created_date': '2024-09-18T23:31:43.000',
'closed_date': '2024-09-19T01:23: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': '11213',
'incident_address': '899 MONTGOMERY STREET',
'street_name': 'MONTGOMERY 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': 'MONTGOMERY STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:23:18.000',
'community_board': '09 BROOKLYN',
'bbl': '3014180049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002229',
'y_coordinate_state_plane': '181397',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66455133277643',
'longitude': '-73.93519405201872',
'location': {'latitude': '40.66455133277643',
'longitude': '-73.93519405201872',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488462',
'created_date': '2024-09-18T23:30:46.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11249',
'incident_address': '103 SOUTH 2 STREET',
'street_name': 'SOUTH 2 STREET',
'cross_street_1': 'BERRY STREET',
'cross_street_2': 'BEDFORD AVENUE',
'intersection_street_1': 'BERRY STREET',
'intersection_street_2': 'BEDFORD AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SOUTH 2 STREET',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3024050046',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994406',
'y_coordinate_state_plane': '199316',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.71374729194273',
'longitude': '-73.96336531800148',
'location': {'latitude': '40.71374729194273',
'longitude': '-73.96336531800148',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485542',
'created_date': '2024-09-18T23:30:14.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11229',
'incident_address': '2416 OCEAN AVENUE',
'street_name': 'OCEAN AVENUE',
'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': 'OCEAN AVENUE',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3072980030',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997563',
'y_coordinate_state_plane': '158876',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.602744223135225',
'longitude': '-73.95205724112205',
'location': {'latitude': '40.602744223135225',
'longitude': '-73.95205724112205',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487575',
'created_date': '2024-09-18T23:29:55.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11436',
'incident_address': '115-20 142 STREET',
'street_name': '142 STREET',
'cross_street_1': '115 AVENUE',
'cross_street_2': '116 AVENUE',
'intersection_street_1': '115 AVENUE',
'intersection_street_2': '116 AVENUE',
'address_type': 'ADDRESS',
'city': 'JAMAICA',
'landmark': '142 STREET',
'status': 'In Progress',
'community_board': '12 QUEENS',
'bbl': '4119850014',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039554',
'y_coordinate_state_plane': '187745',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68182065434991',
'longitude': '-73.80060297840589',
'location': {'latitude': '40.68182065434991',
'longitude': '-73.80060297840589',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484854',
'created_date': '2024-09-18T23:29:47.000',
'closed_date': '2024-09-19T01:24:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '388 EAST 3 STREET',
'street_name': 'EAST 3 STREET',
'cross_street_1': 'BEVERLEY ROAD',
'cross_street_2': 'AVENUE C',
'intersection_street_1': 'BEVERLEY ROAD',
'intersection_street_2': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 3 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T01:24:07.000',
'community_board': '12 BROOKLYN',
'bbl': '3053540018',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '990584',
'y_coordinate_state_plane': '173221',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.642125986020176',
'longitude': '-73.977176545592',
'location': {'latitude': '40.642125986020176',
'longitude': '-73.977176545592',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490944',
'created_date': '2024-09-18T23:29:30.000',
'closed_date': '2024-09-19T00:08: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': '11213',
'incident_address': '375 HERKIMER STREET',
'street_name': 'HERKIMER 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': 'HERKIMER STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:08:37.000',
'community_board': '03 BROOKLYN',
'bbl': '3018640069',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1000719',
'y_coordinate_state_plane': '186717',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67915647471436',
'longitude': '-73.94062390106627',
'location': {'latitude': '40.67915647471436',
'longitude': '-73.94062390106627',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487044',
'created_date': '2024-09-18T23:29:19.000',
'closed_date': '2024-09-19T01:21:34.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10039',
'incident_address': '140 BRADHURST AVENUE',
'street_name': 'BRADHURST AVENUE',
'cross_street_1': 'WEST 149 STREET',
'cross_street_2': 'WEST 150 STREET',
'intersection_street_1': 'WEST 149 STREET',
'intersection_street_2': 'WEST 150 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'BRADHURST AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:21:38.000',
'community_board': '10 MANHATTAN',
'bbl': '1020450083',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1000600',
'y_coordinate_state_plane': '240198',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.82594841870185',
'longitude': '-73.94092289589497',
'location': {'latitude': '40.82594841870185',
'longitude': '-73.94092289589497',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487504',
'created_date': '2024-09-18T23:29:04.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': '48 SOUTH FOURTH STREET',
'street_name': 'SOUTH FOURTH STREET',
'cross_street_1': 'KENT AVENUE',
'cross_street_2': 'WYTHE AVENUE',
'intersection_street_1': 'KENT AVENUE',
'intersection_street_2': 'WYTHE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SOUTH 4 STREET',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3024410021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993584',
'y_coordinate_state_plane': '199043',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.712998877490364',
'longitude': '-73.96633081126946',
'location': {'latitude': '40.712998877490364',
'longitude': '-73.96633081126946',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490171',
'created_date': '2024-09-18T23:29:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Alarms (NR3)',
'incident_zip': '11226',
'incident_address': '177 WOODRUFF AVENUE',
'street_name': 'WOODRUFF AVENUE',
'cross_street_1': 'E 21 ST',
'cross_street_2': 'CLARKSON AVE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '14 BROOKLYN',
'bbl': '3050540049',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995281',
'y_coordinate_state_plane': '177788',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65465680591347',
'longitude': '-73.96024426577311',
'location': {'latitude': '40.65465680591347',
'longitude': '-73.96024426577311',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487943',
'created_date': '2024-09-18T23:28:35.000',
'closed_date': '2024-09-19T00:58:40.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '11423',
'incident_address': '91-20 182 STREET',
'street_name': '182 STREET',
'cross_street_1': '91 AVENUE',
'cross_street_2': 'JAMAICA AVENUE',
'intersection_street_1': '91 AVENUE',
'intersection_street_2': 'JAMAICA AVENUE',
'address_type': 'ADDRESS',
'city': 'HOLLIS',
'landmark': '182 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:58:43.000',
'community_board': '12 QUEENS',
'bbl': '4098980113',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1045423',
'y_coordinate_state_plane': '197880',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.70960017326829',
'longitude': '-73.77935050418488',
'location': {'latitude': '40.70960017326829',
'longitude': '-73.77935050418488',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491324',
'created_date': '2024-09-18T23:28:18.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': '3855 BAILEY AVENUE',
'street_name': 'BAILEY AVENUE',
'cross_street_1': 'WEST 238 STREET',
'cross_street_2': 'CHARLES HALLEY PLACE',
'intersection_street_1': 'WEST 238 STREET',
'intersection_street_2': 'CHARLES HALLEY PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BAILEY AVENUE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032710064',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012939',
'y_coordinate_state_plane': '261786',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.885169530651446',
'longitude': '-73.89624629430064',
'location': {'latitude': '40.885169530651446',
'longitude': '-73.89624629430064',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487971',
'created_date': '2024-09-18T23:28:15.000',
'closed_date': '2024-09-19T00: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': '11229',
'incident_address': '3042 AVENUE V',
'street_name': 'AVENUE V',
'cross_street_1': 'FORD STREET',
'cross_street_2': 'COYLE STREET',
'intersection_street_1': 'FORD STREET',
'intersection_street_2': 'COYLE 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': '2024-09-19T00:37:29.000',
'community_board': '15 BROOKLYN',
'bbl': '3073890001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1001769',
'y_coordinate_state_plane': '157438',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59878988925375',
'longitude': '-73.93691433327626',
'location': {'latitude': '40.59878988925375',
'longitude': '-73.93691433327626',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488978',
'created_date': '2024-09-18T23:28:11.000',
'closed_date': '2024-09-18T23:42: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': '10001',
'incident_address': '47 WEST 34 STREET',
'street_name': 'WEST 34 STREET',
'cross_street_1': '5 AVENUE',
'cross_street_2': 'AVENUE OF THE AMERICAS',
'intersection_street_1': '5 AVENUE',
'intersection_street_2': 'AVENUE OF THE AMERICAS',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 34 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-18T23:42:41.000',
'community_board': '05 MANHATTAN',
'bbl': '1008367502',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987929',
'y_coordinate_state_plane': '212288',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.74935731440976',
'longitude': '-73.98672203264972',
'location': {'latitude': '40.74935731440976',
'longitude': '-73.98672203264972',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489937',
'created_date': '2024-09-18T23:28:02.000',
'closed_date': '2024-09-19T00:34:41.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '11249',
'incident_address': 'KENT AVENUE',
'street_name': 'KENT AVENUE',
'cross_street_1': 'KENT AVENUE',
'cross_street_2': 'NORTH 11 STREET',
'intersection_street_1': 'KENT AVENUE',
'intersection_street_2': 'NORTH 11 STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:34:46.000',
'community_board': '01 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995519',
'y_coordinate_state_plane': '202518',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.72253466425103',
'longitude': '-73.9593451488693',
'location': {'latitude': '40.72253466425103',
'longitude': '-73.9593451488693',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487164',
'created_date': '2024-09-18T23:27:50.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'MOLD',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11221',
'incident_address': '969 PUTNAM AVENUE',
'street_name': 'PUTNAM AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '03 BROOKLYN',
'bbl': '3014830058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1005803',
'y_coordinate_state_plane': '189662',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.687228906750896',
'longitude': '-73.9222850169329',
'location': {'latitude': '40.687228906750896',
'longitude': '-73.9222850169329',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492198',
'created_date': '2024-09-18T23:27:50.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'WATER LEAK',
'descriptor': 'HEAVY FLOW',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11221',
'incident_address': '969 PUTNAM AVENUE',
'street_name': 'PUTNAM AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '03 BROOKLYN',
'bbl': '3014830058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1005803',
'y_coordinate_state_plane': '189662',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.687228906750896',
'longitude': '-73.9222850169329',
'location': {'latitude': '40.687228906750896',
'longitude': '-73.9222850169329',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488465',
'created_date': '2024-09-18T23:27:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11220',
'incident_address': '6802 COLONIAL ROAD',
'street_name': 'COLONIAL ROAD',
'cross_street_1': '68 STREET',
'cross_street_2': 'BAY RIDGE AVENUE',
'intersection_street_1': '68 STREET',
'intersection_street_2': 'BAY RIDGE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'COLONIAL ROAD',
'status': 'In Progress',
'community_board': '10 BROOKLYN',
'bbl': '3058600110',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '975660',
'y_coordinate_state_plane': '171777',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63816061470031',
'longitude': '-74.03095071438698',
'location': {'latitude': '40.63816061470031',
'longitude': '-74.03095071438698',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485469',
'created_date': '2024-09-18T23:27:48.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11230',
'incident_address': '1355 EAST 14 STREET',
'street_name': 'EAST 14 STREET',
'cross_street_1': 'ELM AVENUE',
'cross_street_2': 'AVENUE N',
'intersection_street_1': 'ELM AVENUE',
'intersection_street_2': 'AVENUE N',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 14 STREET',
'status': 'In Progress',
'community_board': '14 BROOKLYN',
'bbl': '3067430066',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995163',
'y_coordinate_state_plane': '163896',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.616526371765595',
'longitude': '-73.9606920045704',
'location': {'latitude': '40.616526371765595',
'longitude': '-73.9606920045704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486719',
'created_date': '2024-09-18T23:27:44.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'E-Scooter',
'descriptor': 'Improperly Parked or Abandoned',
'location_type': 'Private Property',
'incident_zip': '11366',
'incident_address': '76-03 169 STREET',
'street_name': '169 STREET',
'cross_street_1': '76 AVENUE',
'cross_street_2': '77 ROAD',
'intersection_street_1': '76 AVENUE',
'intersection_street_2': '77 ROAD',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '169 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4069990060',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039697',
'y_coordinate_state_plane': '203852',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72602957233431',
'longitude': '-73.79995477623311',
'location': {'latitude': '40.72602957233431',
'longitude': '-73.79995477623311',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486991',
'created_date': '2024-09-18T23:27:43.000',
'closed_date': '2024-09-18T23:51: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': '11218',
'incident_address': '3765 18 AVENUE',
'street_name': '18 AVENUE',
'cross_street_1': 'EAST 9 STREET',
'cross_street_2': 'EAST 8 STREET',
'intersection_street_1': 'EAST 9 STREET',
'intersection_street_2': 'EAST 8 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '18 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-18T23:51:52.000',
'community_board': '14 BROOKLYN',
'bbl': '3054180006',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '992757',
'y_coordinate_state_plane': '170418',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.634430529407',
'longitude': '-73.96935005702473',
'location': {'latitude': '40.634430529407',
'longitude': '-73.96935005702473',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491042',
'created_date': '2024-09-18T23:27:36.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'DOOR/WINDOW',
'descriptor': 'DOOR',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '10026',
'incident_address': '113 WEST 113 STREET',
'street_name': 'WEST 113 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '10 MANHATTAN',
'bbl': '1018230023',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997575',
'y_coordinate_state_plane': '230898',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.80042759780429',
'longitude': '-73.95187152376079',
'location': {'latitude': '40.80042759780429',
'longitude': '-73.95187152376079',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489676',
'created_date': '2024-09-18T23:27:09.000',
'closed_date': '2024-09-19T00:21:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Encampment',
'descriptor': 'N/A',
'location_type': 'Street/Sidewalk',
'incident_zip': '10035',
'incident_address': '1 WARDS ISLAND',
'street_name': 'WARDS ISLAND',
'cross_street_1': 'CHARLES GAY LOOP',
'intersection_street_1': 'CHARLES GAY LOOP',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WARDS ISLAND',
'status': 'Closed',
'resolution_description': 'The Police Department visited the location and no Encampment was found.',
'resolution_action_updated_date': '2024-09-19T00:21:07.000',
'community_board': '11 MANHATTAN',
'bbl': '1018190010',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003176',
'y_coordinate_state_plane': '225781',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.78637259802437',
'longitude': '-73.93165573710645',
'location': {'latitude': '40.78637259802437',
'longitude': '-73.93165573710645',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489984',
'created_date': '2024-09-18T23:26:51.000',
'closed_date': '2024-09-19T00:51:30.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Talking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11105',
'incident_address': '28-19 23 AVENUE',
'street_name': '23 AVENUE',
'cross_street_1': '28 STREET',
'cross_street_2': '29 STREET',
'intersection_street_1': '28 STREET',
'intersection_street_2': '29 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '23 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:51:32.000',
'community_board': '01 QUEENS',
'bbl': '4008450063',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007972',
'y_coordinate_state_plane': '221794',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77541777256768',
'longitude': '-73.91435084075295',
'location': {'latitude': '40.77541777256768',
'longitude': '-73.91435084075295',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485442',
'created_date': '2024-09-18T23:26:48.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': '11249',
'incident_address': '301 BERRY STREET',
'street_name': 'BERRY STREET',
'cross_street_1': 'SOUTH 2 STREET',
'cross_street_2': 'SOUTH 3 STREET',
'intersection_street_1': 'SOUTH 2 STREET',
'intersection_street_2': 'SOUTH 3 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BERRY STREET',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3024170004',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994278',
'y_coordinate_state_plane': '199207',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.71344825897491',
'longitude': '-73.9638272013927',
'location': {'latitude': '40.71344825897491',
'longitude': '-73.9638272013927',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487603',
'created_date': '2024-09-18T23:26: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': '10469',
'incident_address': 'BRONXWOOD AVENUE',
'street_name': 'BRONXWOOD AVENUE',
'cross_street_1': 'BRONXWOOD AVENUE',
'cross_street_2': 'EAST 220 STREET',
'intersection_street_1': 'BRONXWOOD AVENUE',
'intersection_street_2': 'EAST 220 STREET',
'address_type': 'INTERSECTION',
'status': 'In Progress',
'community_board': '12 BRONX',
'borough': 'BRONX',
'x_coordinate_state_plane': '1023885',
'y_coordinate_state_plane': '260810',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.88244834622546',
'longitude': '-73.8566659457604',
'location': {'latitude': '40.88244834622546',
'longitude': '-73.8566659457604',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488335',
'created_date': '2024-09-18T23:26:11.000',
'closed_date': '2024-09-19T01:17:22.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11691',
'incident_address': '316 BEACH 29 STREET',
'street_name': 'BEACH 29 STREET',
'cross_street_1': 'SEAGIRT BOULEVARD',
'cross_street_2': 'DEERFIELD ROAD',
'intersection_street_1': 'SEAGIRT BOULEVARD',
'intersection_street_2': 'DEERFIELD ROAD',
'address_type': 'ADDRESS',
'city': 'FAR ROCKAWAY',
'landmark': 'BEACH 29 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department issued a summons in response to the complaint.',
'resolution_action_updated_date': '2024-09-19T01:17:25.000',
'community_board': '14 QUEENS',
'bbl': '4157980036',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1050287',
'y_coordinate_state_plane': '156670',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.59645317898643',
'longitude': '-73.76220976428552',
'location': {'latitude': '40.59645317898643',
'longitude': '-73.76220976428552',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490513',
'created_date': '2024-09-18T23:26:03.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11209',
'incident_address': '259 93 STREET',
'street_name': '93 STREET',
'cross_street_1': 'RIDGE BOULEVARD',
'cross_street_2': '3 AVENUE',
'intersection_street_1': 'RIDGE BOULEVARD',
'intersection_street_2': '3 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '93 STREET',
'status': 'In Progress',
'community_board': '10 BROOKLYN',
'bbl': '3061020054',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '974757',
'y_coordinate_state_plane': '164770',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'location': {'latitude': '40.618926955414416',
'longitude': '-74.03419446692959',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486574',
'created_date': '2024-09-18T23:25:47.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Unsanitary Animal Pvt Property',
'descriptor': 'Dog',
'location_type': '1-2 Family Dwelling',
'incident_zip': '11420',
'incident_address': '122-14 150 AVENUE',
'street_name': '150 AVENUE',
'cross_street_1': '122 STREET',
'cross_street_2': '122 PLACE',
'intersection_street_1': '122 STREET',
'intersection_street_2': '122 PLACE',
'address_type': 'ADDRESS',
'city': 'SOUTH OZONE PARK',
'landmark': '150 AVENUE',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4118500038',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034538',
'y_coordinate_state_plane': '182083',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.666309688898906',
'longitude': '-73.81873021570308',
'location': {'latitude': '40.666309688898906',
'longitude': '-73.81873021570308',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483972',
'created_date': '2024-09-18T23:25:07.000',
'closed_date': '2024-09-18T23:59: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': '11694',
'incident_address': '113-06 ROCKAWAY BEACH BOULEVARD',
'street_name': 'ROCKAWAY BEACH BOULEVARD',
'cross_street_1': 'BEACH 113 STREET',
'cross_street_2': 'BEACH 114 STREET',
'intersection_street_1': 'BEACH 113 STREET',
'intersection_street_2': 'BEACH 114 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': '2024-09-18T23:59:20.000',
'community_board': '14 QUEENS',
'bbl': '4161660032',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1030155',
'y_coordinate_state_plane': '150819',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.580520518850285',
'longitude': '-73.83474188977914',
'location': {'latitude': '40.580520518850285',
'longitude': '-73.83474188977914',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484509',
'created_date': '2024-09-18T23:24:42.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': '2920 PITKIN AVENUE',
'street_name': 'PITKIN AVENUE',
'cross_street_1': 'ELDERT LANE',
'cross_street_2': 'FORBELL STREET',
'intersection_street_1': 'ELDERT LANE',
'intersection_street_2': 'FORBELL STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'PITKIN AVENUE',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'bbl': '3042420009',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1021947',
'y_coordinate_state_plane': '185759',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.676462036378624',
'longitude': '-73.86409550688053',
'location': {'latitude': '40.676462036378624',
'longitude': '-73.86409550688053',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490783',
'created_date': '2024-09-18T23:24:38.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Paper License Plates',
'location_type': 'Street/Sidewalk',
'incident_zip': '10466',
'incident_address': '4021 DURYEA AVENUE',
'street_name': 'DURYEA AVENUE',
'cross_street_1': 'STRANG AVENUE',
'cross_street_2': 'NUVERN AVENUE',
'intersection_street_1': 'STRANG AVENUE',
'intersection_street_2': 'NUVERN AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'DURYEA AVENUE',
'status': 'In Progress',
'community_board': '12 BRONX',
'bbl': '2049890062',
'borough': 'BRONX',
'x_coordinate_state_plane': '1029638',
'y_coordinate_state_plane': '264426',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.89234539990337',
'longitude': '-73.83583661996512',
'location': {'latitude': '40.89234539990337',
'longitude': '-73.83583661996512',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490486',
'created_date': '2024-09-18T23:24:36.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '10021',
'incident_address': '419 EAST 74 STREET',
'street_name': 'EAST 74 STREET',
'cross_street_1': '1 AVENUE',
'cross_street_2': 'YORK AVENUE',
'intersection_street_1': '1 AVENUE',
'intersection_street_2': 'YORK AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 74 STREET',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:33:47.000',
'community_board': '08 MANHATTAN',
'bbl': '1014690009',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '996879',
'y_coordinate_state_plane': '219397',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.768861444271984',
'longitude': '-73.95440702204013',
'location': {'latitude': '40.768861444271984',
'longitude': '-73.95440702204013',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486515',
'created_date': '2024-09-18T23:24:31.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '10456',
'incident_address': '535 EAST 170 STREET',
'street_name': 'EAST 170 STREET',
'cross_street_1': '3 AVENUE',
'cross_street_2': 'FULTON AVENUE',
'intersection_street_1': '3 AVENUE',
'intersection_street_2': 'FULTON AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'EAST 170 STREET',
'status': 'In Progress',
'community_board': '03 BRONX',
'bbl': '2029260002',
'borough': 'BRONX',
'x_coordinate_state_plane': '1011052',
'y_coordinate_state_plane': '243480',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.83493103062775',
'longitude': '-73.90314382114883',
'location': {'latitude': '40.83493103062775',
'longitude': '-73.90314382114883',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489524',
'created_date': '2024-09-18T23:24:17.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': '3085 DECATUR AVENUE',
'street_name': 'DECATUR AVENUE',
'cross_street_1': 'EAST MOSHOLU PARKWAY NORTH',
'cross_street_2': 'EAST 204 STREET',
'intersection_street_1': 'EAST MOSHOLU PARKWAY NORTH',
'intersection_street_2': 'EAST 204 STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'DECATUR AVENUE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2033320060',
'borough': 'BRONX',
'x_coordinate_state_plane': '1017837',
'y_coordinate_state_plane': '256727',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.871266873422016',
'longitude': '-73.87855807383626',
'location': {'latitude': '40.871266873422016',
'longitude': '-73.87855807383626',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491502',
'created_date': '2024-09-18T23:24:13.000',
'agency': 'HPD',
'agency_name': 'Department of Housing Preservation and Development',
'complaint_type': 'UNSANITARY CONDITION',
'descriptor': 'PESTS',
'location_type': 'RESIDENTIAL BUILDING',
'incident_zip': '11226',
'incident_address': '2401 NEWKIRK AVENUE',
'street_name': 'NEWKIRK AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'status': 'Open',
'resolution_description': 'The following complaint conditions are still open. HPD may attempt to contact you to verify the correction of the condition or may conduct an inspection.',
'resolution_action_updated_date': '2024-09-18T00:00:00.000',
'community_board': '17 BROOKLYN',
'bbl': '3052110026',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997007',
'y_coordinate_state_plane': '172321',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.63964875682105',
'longitude': '-73.95403410025646',
'location': {'latitude': '40.63964875682105',
'longitude': '-73.95403410025646',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490543',
'created_date': '2024-09-18T23:24:12.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Smoking',
'descriptor': 'Smoking Violation',
'location_type': 'Residential Building',
'incident_zip': '10458',
'incident_address': '2760 GRAND CONCOURSE',
'street_name': 'GRAND CONCOURSE',
'cross_street_1': 'EAST 196 STREET',
'cross_street_2': 'MIRIAM STREET',
'intersection_street_1': 'EAST 196 STREET',
'intersection_street_2': 'MIRIAM STREET',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'GRAND CONCOURSE',
'status': 'In Progress',
'community_board': '07 BRONX',
'bbl': '2033040092',
'borough': 'BRONX',
'x_coordinate_state_plane': '1013951',
'y_coordinate_state_plane': '255666',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86836868615612',
'longitude': '-73.89261353516922',
'location': {'latitude': '40.86836868615612',
'longitude': '-73.89261353516922',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493360',
'created_date': '2024-09-18T23:23: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': '10452',
'incident_address': '1505 TOWNSEND AVENUE',
'street_name': 'TOWNSEND AVENUE',
'cross_street_1': 'EAST 172 STREET',
'cross_street_2': 'EAST MOUNT EDEN AVENUE',
'intersection_street_1': 'EAST 172 STREET',
'intersection_street_2': 'EAST MOUNT EDEN AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'TOWNSEND AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028460074',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007758',
'y_coordinate_state_plane': '246176',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'location': {'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486945',
'created_date': '2024-09-18T23:23:46.000',
'closed_date': '2024-09-19T00:47:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '10027',
'incident_address': '100 WEST 124 STREET',
'street_name': 'WEST 124 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 124 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:47:16.000',
'community_board': '10 MANHATTAN',
'bbl': '1019080035',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999073',
'y_coordinate_state_plane': '233400',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.807292513101395',
'longitude': '-73.94645538517744',
'location': {'latitude': '40.807292513101395',
'longitude': '-73.94645538517744',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488566',
'created_date': '2024-09-18T23:23:25.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': '11211',
'incident_address': '202 DIVISION AVENUE',
'street_name': 'DIVISION AVENUE',
'cross_street_1': 'WILSON STREET',
'cross_street_2': 'MARCY AVENUE',
'intersection_street_1': 'WILSON STREET',
'intersection_street_2': 'MARCY AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DIVISION AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:22:46.000',
'community_board': '01 BROOKLYN',
'bbl': '3021837501',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995525',
'y_coordinate_state_plane': '196981',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.70733691676333',
'longitude': '-73.95933277659827',
'location': {'latitude': '40.70733691676333',
'longitude': '-73.95933277659827',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487037',
'created_date': '2024-09-18T23:23:18.000',
'closed_date': '2024-09-19T00:25:40.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10308',
'incident_address': '165 NELSON AVENUE',
'street_name': 'NELSON AVENUE',
'cross_street_1': 'GRANDVIEW TERRACE',
'cross_street_2': 'EDGEWOOD ROAD',
'intersection_street_1': 'GRANDVIEW TERRACE',
'intersection_street_2': 'EDGEWOOD ROAD',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'NELSON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:25:43.000',
'community_board': '03 STATEN ISLAND',
'bbl': '5051510001',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '942869',
'y_coordinate_state_plane': '138094',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'vehicle_type': 'Car',
'latitude': '40.54561517624095',
'longitude': '-74.1488938666873',
'location': {'latitude': '40.54561517624095',
'longitude': '-74.1488938666873',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484551',
'created_date': '2024-09-18T23:23:17.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Maintenance or Facility',
'descriptor': 'Unsecured Facility',
'location_type': 'Park',
'incident_zip': '11222',
'incident_address': 'MCCARREN PARK',
'street_name': 'MCCARREN PARK',
'cross_street_1': 'BAYARD STREET',
'cross_street_2': 'DRIGGS AVENUE',
'intersection_street_1': 'BAYARD STREET',
'intersection_street_2': 'DRIGGS AVENUE',
'address_type': 'UNRECOGNIZED',
'city': 'BROOKLYN',
'landmark': 'MCCARREN PARK',
'status': 'In Progress',
'community_board': '01 BROOKLYN',
'bbl': '3026960001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '997610',
'y_coordinate_state_plane': '201904',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'McCarren Park',
'park_borough': 'BROOKLYN',
'latitude': '40.72084647199604',
'longitude': '-73.95180272776703',
'location': {'latitude': '40.72084647199604',
'longitude': '-73.95180272776703',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485688',
'created_date': '2024-09-18T23:23:16.000',
'closed_date': '2024-09-19T01:01:30.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11201',
'incident_address': '2 WATER STREET',
'street_name': 'WATER STREET',
'cross_street_1': 'OLD FULTON STREET',
'cross_street_2': 'BROOKLYN BRIDGE',
'intersection_street_1': 'OLD FULTON STREET',
'intersection_street_2': 'BROOKLYN BRIDGE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WATER STREET',
'status': 'Closed',
'resolution_description': 'N/A',
'resolution_action_updated_date': '2024-09-19T01:01:34.000',
'community_board': '02 BROOKLYN',
'bbl': '3000350012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985861',
'y_coordinate_state_plane': '195435',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.703100547891474',
'longitude': '-73.99418973558447',
'location': {'latitude': '40.703100547891474',
'longitude': '-73.99418973558447',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483941',
'created_date': '2024-09-18T23:23:00.000',
'closed_date': '2024-09-19T00:09: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': '10027',
'incident_address': '41 ST NICHOLAS TERRACE',
'street_name': 'ST NICHOLAS TERRACE',
'cross_street_1': 'WEST 129 STREET',
'cross_street_2': 'WEST 130 STREET',
'intersection_street_1': 'WEST 129 STREET',
'intersection_street_2': 'WEST 130 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'ST NICHOLAS 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': '2024-09-19T00:09:14.000',
'community_board': '09 MANHATTAN',
'bbl': '1019690040',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997741',
'y_coordinate_state_plane': '235720',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.81366240227156',
'longitude': '-73.95126225932395',
'location': {'latitude': '40.81366240227156',
'longitude': '-73.95126225932395',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491209',
'created_date': '2024-09-18T23:21:44.000',
'closed_date': '2024-09-19T00:49:04.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '11226',
'incident_address': '9 CLARKSON AVENUE',
'street_name': 'CLARKSON 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': 'CLARKSON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:49:07.000',
'community_board': '09 BROOKLYN',
'bbl': '3050550001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995626',
'y_coordinate_state_plane': '177874',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.654892420597356',
'longitude': '-73.95900074056499',
'location': {'latitude': '40.654892420597356',
'longitude': '-73.95900074056499',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483980',
'created_date': '2024-09-18T23:21:42.000',
'closed_date': '2024-09-18T23:51:39.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Non-Emergency Police Matter',
'descriptor': 'Other (complaint details)',
'location_type': 'Store/Commercial',
'incident_zip': '10002',
'incident_address': '139 DIVISION STREET',
'street_name': 'DIVISION STREET',
'cross_street_1': 'LUDLOW STREET',
'cross_street_2': 'CANAL STREET',
'intersection_street_1': 'LUDLOW STREET',
'intersection_street_2': 'CANAL STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'DIVISION STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:51:43.000',
'community_board': '03 MANHATTAN',
'bbl': '1002830079',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986728',
'y_coordinate_state_plane': '199589',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71450209381514',
'longitude': '-73.99106126747391',
'location': {'latitude': '40.71450209381514',
'longitude': '-73.99106126747391',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490509',
'created_date': '2024-09-18T23:21:06.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11420',
'incident_address': '114-32 LEFFERTS BOULEVARD',
'street_name': 'LEFFERTS BOULEVARD',
'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': 'LEFFERTS BOULEVARD',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4116450123',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034126',
'y_coordinate_state_plane': '186372',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.67808433800886',
'longitude': '-73.82018358407184',
'location': {'latitude': '40.67808433800886',
'longitude': '-73.82018358407184',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488561',
'created_date': '2024-09-18T23:20:53.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': '2454 BRAGG STREET',
'street_name': 'BRAGG STREET',
'cross_street_1': 'AVENUE X',
'cross_street_2': 'AVENUE Y',
'intersection_street_1': 'AVENUE X',
'intersection_street_2': 'AVENUE Y',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BRAGG STREET',
'status': 'In Progress',
'community_board': '15 BROOKLYN',
'bbl': '3074270028',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002388',
'y_coordinate_state_plane': '155356',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.59307397522289',
'longitude': '-73.93469091366029',
'location': {'latitude': '40.59307397522289',
'longitude': '-73.93469091366029',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491759',
'created_date': '2024-09-18T23:20:50.000',
'closed_date': '2024-09-19T00:21: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': '11230',
'incident_address': '1703 MCDONALD AVENUE',
'street_name': 'MCDONALD AVENUE',
'cross_street_1': 'AVENUE O',
'cross_street_2': '65 STREET',
'intersection_street_1': 'AVENUE O',
'intersection_street_2': '65 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'MCDONALD AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:21:20.000',
'community_board': '12 BROOKLYN',
'bbl': '3066080001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '991626',
'y_coordinate_state_plane': '161940',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.611161206272136',
'longitude': '-73.97343420990082',
'location': {'latitude': '40.611161206272136',
'longitude': '-73.97343420990082',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487318',
'created_date': '2024-09-18T23:20:50.000',
'closed_date': '2024-09-19T00:13:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Horn',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '1384 36 STREET',
'street_name': '36 STREET',
'cross_street_1': 'CHURCH AVENUE',
'cross_street_2': '14 AVENUE',
'intersection_street_1': 'CHURCH AVENUE',
'intersection_street_2': '14 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '36 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:13:20.000',
'community_board': '12 BROOKLYN',
'bbl': '3053490092',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989071',
'y_coordinate_state_plane': '172855',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.64112234735575',
'longitude': '-73.98262863621837',
'location': {'latitude': '40.64112234735575',
'longitude': '-73.98262863621837',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485840',
'created_date': '2024-09-18T23:20:44.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Litter Basket Request',
'descriptor': 'New Basket',
'location_type': 'Sidewalk',
'incident_zip': '11201',
'incident_address': '286 HENRY STREET',
'street_name': 'HENRY STREET',
'cross_street_1': 'JORALEMON STREET',
'cross_street_2': 'STATE STREET',
'intersection_street_1': 'JORALEMON STREET',
'intersection_street_2': 'STATE STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'HENRY STREET',
'status': 'In Progress',
'community_board': '02 BROOKLYN',
'bbl': '3002620001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '985428',
'y_coordinate_state_plane': '191309',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.691775706578305',
'longitude': '-73.99575212355704',
'location': {'latitude': '40.691775706578305',
'longitude': '-73.99575212355704',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486590',
'created_date': '2024-09-18T23:20:43.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11373',
'incident_address': '85-44 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': '4028780030',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1017604',
'y_coordinate_state_plane': '206663',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.73385596597055',
'longitude': '-73.87964924372797',
'location': {'latitude': '40.73385596597055',
'longitude': '-73.87964924372797',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489932',
'created_date': '2024-09-18T23:20:23.000',
'closed_date': '2024-09-18T23:59: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': '10455',
'incident_address': '783 FOX STREET',
'street_name': 'FOX STREET',
'cross_street_1': 'EAST 156 STREET',
'cross_street_2': 'LONGWOOD AVENUE',
'intersection_street_1': 'EAST 156 STREET',
'intersection_street_2': 'LONGWOOD AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'FOX STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-18T23:59:22.000',
'community_board': '02 BRONX',
'bbl': '2027070068',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012595',
'y_coordinate_state_plane': '236686',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.816278628676834',
'longitude': '-73.89759648571234',
'location': {'latitude': '40.816278628676834',
'longitude': '-73.89759648571234',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492659',
'created_date': '2024-09-18T23:20:16.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Overgrown Tree/Branches',
'descriptor': 'Hitting Building',
'location_type': 'Street',
'incident_zip': '11365',
'incident_address': '71-46 167 STREET',
'street_name': '167 STREET',
'cross_street_1': '71 AVENUE',
'cross_street_2': '73 AVENUE',
'intersection_street_1': '71 AVENUE',
'intersection_street_2': '73 AVENUE',
'address_type': 'ADDRESS',
'city': 'FRESH MEADOWS',
'landmark': '167 STREET',
'status': 'In Progress',
'community_board': '08 QUEENS',
'bbl': '4069540039',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1039022',
'y_coordinate_state_plane': '204969',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.72909966259112',
'longitude': '-73.80238098436755',
'location': {'latitude': '40.72909966259112',
'longitude': '-73.80238098436755',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489878',
'created_date': '2024-09-18T23:20:05.000',
'closed_date': '2024-09-19T00:10:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10002',
'incident_address': '133 PITT STREET',
'street_name': 'PITT STREET',
'cross_street_1': 'STANTON STREET',
'cross_street_2': 'AVENUE C',
'intersection_street_1': 'STANTON STREET',
'intersection_street_2': 'AVENUE C',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'PITT STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:10:24.000',
'community_board': '03 MANHATTAN',
'bbl': '1003450058',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989361',
'y_coordinate_state_plane': '201675',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.720226533969814',
'longitude': '-73.98156182961009',
'location': {'latitude': '40.720226533969814',
'longitude': '-73.98156182961009',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486395',
'created_date': '2024-09-18T23:20:00.000',
'agency': 'DOT',
'agency_name': 'Department of Transportation',
'complaint_type': 'Street Light Condition',
'descriptor': 'Foreign Attachment On Lamppost',
'intersection_street_1': 'BROADWAY',
'intersection_street_2': 'ROEBLING ST',
'address_type': 'INTERSECTION',
'status': 'Open',
'community_board': 'Unspecified BROOKLYN',
'borough': 'BROOKLYN',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN'},
{'unique_key': '62489194',
'created_date': '2024-09-18T23:20:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Noise',
'descriptor': 'Noise: Construction Before/After Hours (NM1)',
'incident_zip': '10003',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': 'EAST 10 STREET',
'address_type': 'INTERSECTION',
'city': 'MANHATTAN',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '03 MANHATTAN',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '987906',
'y_coordinate_state_plane': '205154',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.72977626532991',
'longitude': '-73.98680891976119',
'location': {'latitude': '40.72977626532991',
'longitude': '-73.98680891976119',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488234',
'created_date': '2024-09-18T23:20:00.000',
'agency': 'DEP',
'agency_name': 'Department of Environmental Protection',
'complaint_type': 'Lead',
'descriptor': 'Lead Kit Request (Residential) (L10)',
'incident_zip': '10010',
'incident_address': '325 3 AVENUE',
'street_name': '3 AVENUE',
'cross_street_1': 'E 24 ST',
'cross_street_2': 'E 25 ST',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'facility_type': 'N/A',
'status': 'Open',
'community_board': '06 MANHATTAN',
'bbl': '1009050003',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989094',
'y_coordinate_state_plane': '208763',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73968151003943',
'longitude': '-73.982519941951',
'location': {'latitude': '40.73968151003943',
'longitude': '-73.982519941951',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491770',
'created_date': '2024-09-18T23:19:52.000',
'closed_date': '2024-09-19T00:09:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Street/Sidewalk',
'descriptor': 'Loud Music/Party',
'location_type': 'Street/Sidewalk',
'incident_zip': '11221',
'incident_address': '1104 BROADWAY',
'street_name': 'BROADWAY',
'cross_street_1': 'DODWORTH STREET',
'cross_street_2': 'DEKALB AVENUE',
'intersection_street_1': 'DODWORTH STREET',
'intersection_street_2': 'DEKALB AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BROADWAY',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:09:54.000',
'community_board': '03 BROOKLYN',
'bbl': '3016000019',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1003614',
'y_coordinate_state_plane': '192169',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.69411510167481',
'longitude': '-73.93017081981881',
'location': {'latitude': '40.69411510167481',
'longitude': '-73.93017081981881',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491378',
'created_date': '2024-09-18T23:19:51.000',
'closed_date': '2024-09-19T00:51:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11102',
'incident_address': '18-12 ASTORIA BOULEVARD',
'street_name': 'ASTORIA BOULEVARD',
'cross_street_1': '18 STREET',
'cross_street_2': '21 STREET',
'intersection_street_1': '18 STREET',
'intersection_street_2': '21 STREET',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': 'ASTORIA BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:51:52.000',
'community_board': '01 QUEENS',
'bbl': '4005390026',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1004418',
'y_coordinate_state_plane': '220637',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77225093512045',
'longitude': '-73.92718615529014',
'location': {'latitude': '40.77225093512045',
'longitude': '-73.92718615529014',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489418',
'created_date': '2024-09-18T23:19:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'Partial Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '10469',
'incident_address': '2925 LACONIA AVENUE',
'street_name': 'LACONIA 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': 'LACONIA AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T02:22:08.000',
'community_board': '11 BRONX',
'bbl': '2045570057',
'borough': 'BRONX',
'x_coordinate_state_plane': '1024161',
'y_coordinate_state_plane': '255642',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.86826255466496',
'longitude': '-73.85569862218757',
'location': {'latitude': '40.86826255466496',
'longitude': '-73.85569862218757',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491980',
'created_date': '2024-09-18T23:19:26.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': '11207',
'incident_address': '20 BARBEY STREET',
'street_name': 'BARBEY STREET',
'cross_street_1': 'HIGHLAND BOULEVARD',
'cross_street_2': 'SUNNYSIDE AVENUE',
'intersection_street_1': 'HIGHLAND BOULEVARD',
'intersection_street_2': 'SUNNYSIDE AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'BARBEY STREET',
'status': 'In Progress',
'community_board': '05 BROOKLYN',
'bbl': '3038860066',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1014593',
'y_coordinate_state_plane': '188087',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.68288012554493',
'longitude': '-73.89059749205234',
'location': {'latitude': '40.68288012554493',
'longitude': '-73.89059749205234',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485010',
'created_date': '2024-09-18T23:19:25.000',
'closed_date': '2024-09-19T00:41: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': '11213',
'incident_address': '1608 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 and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:41:18.000',
'community_board': '09 BROOKLYN',
'bbl': '3014010021',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1002112',
'y_coordinate_state_plane': '182674',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.66805664978962',
'longitude': '-73.93561239915763',
'location': {'latitude': '40.66805664978962',
'longitude': '-73.93561239915763',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492479',
'created_date': '2024-09-18T23:19:10.000',
'closed_date': '2024-09-18T23:19:33.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '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 with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:19:35.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': '62486754',
'created_date': '2024-09-18T23:19:04.000',
'agency': 'DHS',
'agency_name': 'Department of Homeless Services',
'complaint_type': 'Homeless Person Assistance',
'descriptor': 'Non-Chronic',
'location_type': 'Street/Sidewalk',
'incident_zip': '10014',
'incident_address': '140 WEST 10 STREET',
'street_name': 'WEST 10 STREET',
'cross_street_1': 'GREENWICH AVENUE',
'cross_street_2': 'WAVERLY PLACE',
'intersection_street_1': 'GREENWICH AVENUE',
'intersection_street_2': 'WAVERLY PLACE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'WEST 10 STREET',
'status': 'Assigned',
'resolution_description': 'The Department of Homeless Services has sent a mobile outreach response team to the location.',
'resolution_action_updated_date': '2024-09-18T23:22:35.000',
'community_board': '02 MANHATTAN',
'bbl': '1006100048',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '984062',
'y_coordinate_state_plane': '206903',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.734577594628455',
'longitude': '-74.00067836481676',
'location': {'latitude': '40.734577594628455',
'longitude': '-74.00067836481676',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488563',
'created_date': '2024-09-18T23:18:54.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': '3855 BAILEY AVENUE',
'street_name': 'BAILEY AVENUE',
'cross_street_1': 'WEST 238 STREET',
'cross_street_2': 'CHARLES HALLEY PLACE',
'intersection_street_1': 'WEST 238 STREET',
'intersection_street_2': 'CHARLES HALLEY PLACE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'BAILEY AVENUE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2032710064',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012939',
'y_coordinate_state_plane': '261786',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.885169530651446',
'longitude': '-73.89624629430064',
'location': {'latitude': '40.885169530651446',
'longitude': '-73.89624629430064',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484528',
'created_date': '2024-09-18T23:18:47.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11214',
'incident_address': '1825 81 STREET',
'street_name': '81 STREET',
'cross_street_1': '18 AVENUE',
'cross_street_2': '19 AVENUE',
'intersection_street_1': '18 AVENUE',
'intersection_street_2': '19 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '81 STREET',
'status': 'In Progress',
'community_board': '11 BROOKLYN',
'bbl': '3062850059',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '984577',
'y_coordinate_state_plane': '161363',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.60958052375006',
'longitude': '-73.99882228748066',
'location': {'latitude': '40.60958052375006',
'longitude': '-73.99882228748066',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491940',
'created_date': '2024-09-18T23:18:34.000',
'agency': 'DOHMH',
'agency_name': 'Department of Health and Mental Hygiene',
'complaint_type': 'Rodent',
'descriptor': 'Rat Sighting',
'location_type': 'Commercial Building',
'incident_zip': '10021',
'incident_address': '333 EAST 70 STREET',
'street_name': 'EAST 70 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 70 STREET',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1014450020',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '995934',
'y_coordinate_state_plane': '218671',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.76687006240421',
'longitude': '-73.95781990476242',
'location': {'latitude': '40.76687006240421',
'longitude': '-73.95781990476242',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491225',
'created_date': '2024-09-18T23:18:32.000',
'closed_date': '2024-09-19T00:27: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': '11232',
'incident_address': '5001 SECOND AVENUE',
'street_name': 'SECOND AVENUE',
'cross_street_1': '50 STREET',
'cross_street_2': '51 STREET',
'intersection_street_1': '50 STREET',
'intersection_street_2': '51 STREET',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '2 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:27:20.000',
'community_board': '07 BROOKLYN',
'bbl': '3007890001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '979531',
'y_coordinate_state_plane': '175727',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64900542297605',
'longitude': '-74.01700583931128',
'location': {'latitude': '40.64900542297605',
'longitude': '-74.01700583931128',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483871',
'created_date': '2024-09-18T23:18:04.000',
'closed_date': '2024-09-19T00:48: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': '11238',
'incident_address': '677 WASHINGTON AVENUE',
'street_name': 'WASHINGTON AVENUE',
'cross_street_1': 'ST MARKS AVENUE',
'cross_street_2': 'PROSPECT PLACE',
'intersection_street_1': 'ST MARKS AVENUE',
'intersection_street_2': 'PROSPECT PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WASHINGTON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:48:14.000',
'community_board': '08 BROOKLYN',
'bbl': '3011540001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994346',
'y_coordinate_state_plane': '185924',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.676989432024314',
'longitude': '-73.96360182236936',
'location': {'latitude': '40.676989432024314',
'longitude': '-73.96360182236936',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489873',
'created_date': '2024-09-18T23:17:58.000',
'closed_date': '2024-09-19T00:14:45.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Banging/Pounding',
'location_type': 'Store/Commercial',
'incident_zip': '10023',
'incident_address': '329 COLUMBUS AVENUE',
'street_name': 'COLUMBUS AVENUE',
'cross_street_1': 'WEST 75 STREET',
'cross_street_2': 'WEST 76 STREET',
'intersection_street_1': 'WEST 75 STREET',
'intersection_street_2': 'WEST 76 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'COLUMBUS AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:14:49.000',
'community_board': '07 MANHATTAN',
'bbl': '1011280001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '990585',
'y_coordinate_state_plane': '223335',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.77967697261496',
'longitude': '-73.97712578831164',
'location': {'latitude': '40.77967697261496',
'longitude': '-73.97712578831164',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489531',
'created_date': '2024-09-18T23:17: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': '10452',
'incident_address': '1505 TOWNSEND AVENUE',
'street_name': 'TOWNSEND AVENUE',
'cross_street_1': 'EAST 172 STREET',
'cross_street_2': 'EAST MOUNT EDEN AVENUE',
'intersection_street_1': 'EAST 172 STREET',
'intersection_street_2': 'EAST MOUNT EDEN AVENUE',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'TOWNSEND AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028460074',
'borough': 'BRONX',
'x_coordinate_state_plane': '1007758',
'y_coordinate_state_plane': '246176',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'location': {'latitude': '40.842340146343126',
'longitude': '-73.91503811152762',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488023',
'created_date': '2024-09-18T23:17:46.000',
'closed_date': '2024-09-19T00:09:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11224',
'incident_address': '2945 WEST 23 STREET',
'street_name': 'WEST 23 STREET',
'cross_street_1': 'MERMAID AVENUE',
'cross_street_2': 'SURF AVENUE',
'intersection_street_1': 'MERMAID AVENUE',
'intersection_street_2': 'SURF AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 23 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:09:06.000',
'community_board': '13 BROOKLYN',
'bbl': '3070570012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987060',
'y_coordinate_state_plane': '148802',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'location': {'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488929',
'created_date': '2024-09-18T23:17:45.000',
'closed_date': '2024-09-18T23:19:21.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '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 with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:19:24.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': '62486036',
'created_date': '2024-09-18T23:17:24.000',
'closed_date': '2024-09-18T23:26:27.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11226',
'incident_address': '1930 CHURCH AVENUE',
'street_name': 'CHURCH AVENUE',
'cross_street_1': 'EAST 19 STREET',
'cross_street_2': 'OCEAN AVENUE',
'intersection_street_1': 'EAST 19 STREET',
'intersection_street_2': 'OCEAN 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': '2024-09-18T23:26:31.000',
'community_board': '14 BROOKLYN',
'bbl': '3050990106',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994863',
'y_coordinate_state_plane': '176050',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.64988688577203',
'longitude': '-73.96175347283278',
'location': {'latitude': '40.64988688577203',
'longitude': '-73.96175347283278',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490908',
'created_date': '2024-09-18T23:17:20.000',
'closed_date': '2024-09-18T23:59:13.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Engine Idling',
'location_type': 'Street/Sidewalk',
'incident_zip': '11212',
'incident_address': 'LOTT AVENUE',
'street_name': 'LOTT AVENUE',
'cross_street_1': 'LOTT AVENUE',
'cross_street_2': 'STRAUSS STREET',
'intersection_street_1': 'LOTT AVENUE',
'intersection_street_2': 'STRAUSS STREET',
'address_type': 'INTERSECTION',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:59:17.000',
'community_board': '16 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1008294',
'y_coordinate_state_plane': '178691',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Other',
'latitude': '40.657109570043076',
'longitude': '-73.91334220451655',
'location': {'latitude': '40.657109570043076',
'longitude': '-73.91334220451655',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485649',
'created_date': '2024-09-18T23:17:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10001',
'incident_address': '311 11 AVENUE',
'street_name': '11 AVENUE',
'cross_street_1': 'WEST 29 STREET',
'cross_street_2': 'WEST 30 STREET',
'intersection_street_1': 'WEST 29 STREET',
'intersection_street_2': 'WEST 30 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '11 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:55:44.000',
'community_board': '04 MANHATTAN',
'bbl': '1006750012',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '983137',
'y_coordinate_state_plane': '213619',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.753011268221584',
'longitude': '-74.0040171753845',
'location': {'latitude': '40.753011268221584',
'longitude': '-74.0040171753845',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489557',
'created_date': '2024-09-18T23:17: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': '11357',
'incident_address': '145-04 14 AVENUE',
'street_name': '14 AVENUE',
'cross_street_1': 'PARSONS BOULEVARD',
'cross_street_2': '145 PLACE',
'intersection_street_1': 'PARSONS BOULEVARD',
'intersection_street_2': '145 PLACE',
'address_type': 'ADDRESS',
'city': 'WHITESTONE',
'landmark': '14 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:46:34.000',
'community_board': '07 QUEENS',
'bbl': '4046220013',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033512',
'y_coordinate_state_plane': '226015',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'location': {'latitude': '40.786897836426725',
'longitude': '-73.82210696337218',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486955',
'created_date': '2024-09-18T23:16:35.000',
'closed_date': '2024-09-19T00:08: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': '11224',
'incident_address': '2945 WEST 23 STREET',
'street_name': 'WEST 23 STREET',
'cross_street_1': 'MERMAID AVENUE',
'cross_street_2': 'SURF AVENUE',
'intersection_street_1': 'MERMAID AVENUE',
'intersection_street_2': 'SURF AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'WEST 23 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-19T00:09:02.000',
'community_board': '13 BROOKLYN',
'bbl': '3070570012',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987060',
'y_coordinate_state_plane': '148802',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'location': {'latitude': '40.575102659589476',
'longitude': '-73.98988481977605',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483895',
'created_date': '2024-09-18T23:16:33.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'For Hire Vehicle Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'location_type': 'Street',
'incident_zip': '10065',
'incident_address': '301 EAST 61 STREET',
'street_name': 'EAST 61 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': 'PEDESTRIAN AND BIKE PATH LINK',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': 'PEDESTRIAN AND BIKE PATH LINK',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 61 STREET',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1014367504',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994424',
'y_coordinate_state_plane': '216824',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '301 EAST 61 STREET, MANHATTAN (NEW YORK), NY, 10065',
'latitude': '40.7618023912161',
'longitude': '-73.96327391015367',
'location': {'latitude': '40.7618023912161',
'longitude': '-73.96327391015367',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486031',
'created_date': '2024-09-18T23:16:07.000',
'closed_date': '2024-09-19T01:03:16.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '11419',
'incident_address': '107-10 120 STREET',
'street_name': '120 STREET',
'cross_street_1': '107 AVENUE',
'cross_street_2': '109 AVENUE',
'intersection_street_1': '107 AVENUE',
'intersection_street_2': '109 AVENUE',
'address_type': 'ADDRESS',
'city': 'SOUTH RICHMOND HILL',
'landmark': '120 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:03:21.000',
'community_board': '10 QUEENS',
'bbl': '4095990017',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1033584',
'y_coordinate_state_plane': '188581',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.68415056591931',
'longitude': '-73.82212146259369',
'location': {'latitude': '40.68415056591931',
'longitude': '-73.82212146259369',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62492366',
'created_date': '2024-09-18T23:15:49.000',
'agency': 'TLC',
'agency_name': 'Taxi and Limousine Commission',
'complaint_type': 'For Hire Vehicle Complaint',
'descriptor': 'Driver Complaint - Non Passenger',
'location_type': 'Street',
'incident_zip': '10065',
'incident_address': '301 EAST 61 STREET',
'street_name': 'EAST 61 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': 'PEDESTRIAN AND BIKE PATH LINK',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': 'PEDESTRIAN AND BIKE PATH LINK',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 61 STREET',
'status': 'In Progress',
'community_board': '08 MANHATTAN',
'bbl': '1014367504',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '994424',
'y_coordinate_state_plane': '216824',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'taxi_pick_up_location': '301 EAST 61 STREET, MANHATTAN (NEW YORK), NY, 10065',
'latitude': '40.7618023912161',
'longitude': '-73.96327391015367',
'location': {'latitude': '40.7618023912161',
'longitude': '-73.96327391015367',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485388',
'created_date': '2024-09-18T23:15:39.000',
'closed_date': '2024-09-19T01:00:38.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '10306',
'incident_address': '69 BEACON AVENUE',
'street_name': 'BEACON AVENUE',
'cross_street_1': 'LUIGI PLACE',
'cross_street_2': 'DEAD END',
'intersection_street_1': 'LUIGI PLACE',
'intersection_street_2': 'DEAD END',
'address_type': 'ADDRESS',
'city': 'STATEN ISLAND',
'landmark': 'BEACON AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:00:42.000',
'community_board': '02 STATEN ISLAND',
'bbl': '5009480042',
'borough': 'STATEN ISLAND',
'x_coordinate_state_plane': '950117',
'y_coordinate_state_plane': '149737',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'STATEN ISLAND',
'latitude': '40.57760378737239',
'longitude': '-74.12287348329977',
'location': {'latitude': '40.57760378737239',
'longitude': '-74.12287348329977',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483959',
'created_date': '2024-09-18T23:15:20.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Dumpster Complaint',
'descriptor': 'Blocking Sidewalk or Street',
'location_type': 'Street',
'incident_zip': '11420',
'incident_address': '109-55 128 STREET',
'street_name': '128 STREET',
'cross_street_1': 'HAWTREE CREEK ROAD',
'cross_street_2': '111 AVENUE',
'intersection_street_1': 'HAWTREE CREEK ROAD',
'intersection_street_2': '111 AVENUE',
'address_type': 'ADDRESS',
'city': 'SOUTH OZONE PARK',
'landmark': '128 STREET',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4116090021',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1035857',
'y_coordinate_state_plane': '188459',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.683802743767316',
'longitude': '-73.8139268984246',
'location': {'latitude': '40.683802743767316',
'longitude': '-73.8139268984246',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62485647',
'created_date': '2024-09-18T23:14: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': '10471',
'incident_address': '244 FIELDSTON TERRACE',
'street_name': 'FIELDSTON TERRACE',
'cross_street_1': 'POST ROAD',
'cross_street_2': 'COLLEGE ROAD',
'intersection_street_1': 'POST ROAD',
'intersection_street_2': 'COLLEGE ROAD',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'FIELDSTON TERRACE',
'status': 'In Progress',
'community_board': '08 BRONX',
'bbl': '2058271620',
'borough': 'BRONX',
'x_coordinate_state_plane': '1012414',
'y_coordinate_state_plane': '265624',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.895705312364115',
'longitude': '-73.89812881204892',
'location': {'latitude': '40.895705312364115',
'longitude': '-73.89812881204892',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486537',
'created_date': '2024-09-18T23:14:50.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Illegal Tree Damage',
'descriptor': 'Bicycle Chained to Tree',
'location_type': 'Street',
'incident_zip': '10002',
'incident_address': '132 DIVISION STREET',
'street_name': 'DIVISION STREET',
'cross_street_1': 'ORCHARD STREET',
'cross_street_2': 'LUDLOW STREET',
'intersection_street_1': 'ORCHARD STREET',
'intersection_street_2': 'LUDLOW STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'DIVISION STREET',
'status': 'In Progress',
'community_board': '03 MANHATTAN',
'bbl': '1002947501',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '986526',
'y_coordinate_state_plane': '199571',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.71445274238597',
'longitude': '-73.99178993536712',
'location': {'latitude': '40.71445274238597',
'longitude': '-73.99178993536712',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490588',
'created_date': '2024-09-18T23:14:35.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Club/Bar/Restaurant',
'incident_zip': '11420',
'incident_address': '115-88 LEFFERTS BOULEVARD',
'street_name': 'LEFFERTS BOULEVARD',
'cross_street_1': 'ROCKAWAY BOULEVARD',
'cross_street_2': 'SUTTER AVENUE',
'intersection_street_1': 'ROCKAWAY BOULEVARD',
'intersection_street_2': 'SUTTER AVENUE',
'address_type': 'ADDRESS',
'city': 'SOUTH OZONE PARK',
'landmark': 'LEFFERTS BOULEVARD',
'status': 'In Progress',
'community_board': '10 QUEENS',
'bbl': '4117110001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1034288',
'y_coordinate_state_plane': '185119',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.67464422870562',
'longitude': '-73.81960883486667',
'location': {'latitude': '40.67464422870562',
'longitude': '-73.81960883486667',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483847',
'created_date': '2024-09-18T23:14:26.000',
'closed_date': '2024-09-18T23:23:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Park',
'descriptor': 'Loud Music/Party',
'location_type': 'Park/Playground',
'incident_zip': '11375',
'incident_address': '68-01 YELLOWSTONE BOULEVARD',
'street_name': 'YELLOWSTONE BOULEVARD',
'cross_street_1': '68 AVENUE',
'cross_street_2': '68 ROAD',
'intersection_street_1': '68 AVENUE',
'intersection_street_2': '68 ROAD',
'address_type': 'ADDRESS',
'city': 'FOREST HILLS',
'landmark': 'YELLOWSTONE BOULEVARD',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-18T23:23:55.000',
'community_board': '06 QUEENS',
'bbl': '4021580001',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1026254',
'y_coordinate_state_plane': '203913',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Yellowstone Park',
'park_borough': 'QUEENS',
'latitude': '40.72627105070567',
'longitude': '-73.84845479620932',
'location': {'latitude': '40.72627105070567',
'longitude': '-73.84845479620932',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62486359',
'created_date': '2024-09-18T23:14:25.000',
'closed_date': '2024-09-19T00:55:30.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Commercial Overnight Parking',
'location_type': 'Street/Sidewalk',
'incident_zip': '11102',
'incident_address': '24-40 29 STREET',
'street_name': '29 STREET',
'cross_street_1': 'DOROTHY PLACE',
'cross_street_2': 'HOYT AVENUE NORTH',
'intersection_street_1': 'DOROTHY PLACE',
'intersection_street_2': 'HOYT AVENUE NORTH',
'address_type': 'ADDRESS',
'city': 'ASTORIA',
'landmark': '29 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:55:32.000',
'community_board': '01 QUEENS',
'bbl': '4008410048',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007117',
'y_coordinate_state_plane': '220599',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.77214006523073',
'longitude': '-73.91744191443289',
'location': {'latitude': '40.77214006523073',
'longitude': '-73.91744191443289',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489929',
'created_date': '2024-09-18T23:14:22.000',
'closed_date': '2024-09-18T23:19: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': '11201',
'incident_address': '85 NAVY WALK',
'street_name': 'NAVY WALK',
'cross_street_1': 'NAVY STREET',
'cross_street_2': 'FLEET WALK',
'intersection_street_1': 'NAVY STREET',
'intersection_street_2': 'FLEET WALK',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'NAVY WALK',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and took action to fix the condition.',
'resolution_action_updated_date': '2024-09-18T23:19:11.000',
'community_board': '02 BROOKLYN',
'bbl': '3020500001',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '989616',
'y_coordinate_state_plane': '192660',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.695482340480766',
'longitude': '-73.98064908964048',
'location': {'latitude': '40.695482340480766',
'longitude': '-73.98064908964048',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493818',
'created_date': '2024-09-18T23:14:20.000',
'closed_date': '2024-09-19T00:31:27.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '10009',
'incident_address': '280 1 AVENUE',
'street_name': '1 AVENUE',
'cross_street_1': 'EAST 16 STREET',
'cross_street_2': 'EAST 17 STREET',
'intersection_street_1': 'EAST 16 STREET',
'intersection_street_2': 'EAST 17 STREET',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': '1 AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and determined that police action was not necessary.',
'resolution_action_updated_date': '2024-09-19T00:31:30.000',
'community_board': '06 MANHATTAN',
'bbl': '1009720001',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '989435',
'y_coordinate_state_plane': '206283',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'location': {'latitude': '40.73287432940016',
'longitude': '-73.98129132077486',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489611',
'created_date': '2024-09-18T23:14:17.000',
'closed_date': '2024-09-19T01:01:29.000',
'agency': 'DSNY',
'agency_name': 'Department of Sanitation',
'complaint_type': 'Vendor Enforcement',
'descriptor': 'Food Vendor',
'location_type': 'Street',
'incident_zip': '11372',
'incident_address': '73-01 37 AVENUE',
'street_name': '37 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': 'JACKSON HEIGHTS',
'landmark': '37 AVENUE',
'status': 'Closed',
'resolution_description': 'N/A',
'resolution_action_updated_date': '2024-09-19T01:01:33.000',
'community_board': '03 QUEENS',
'bbl': '4012730039',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1014017',
'y_coordinate_state_plane': '212135',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74888803173323',
'longitude': '-73.89256793491637',
'location': {'latitude': '40.74888803173323',
'longitude': '-73.89256793491637',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483726',
'created_date': '2024-09-18T23:14:17.000',
'closed_date': '2024-09-19T00:28:09.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Blocked Driveway',
'descriptor': 'No Access',
'location_type': 'Street/Sidewalk',
'incident_zip': '11210',
'incident_address': '1042 EAST 32 STREET',
'street_name': 'EAST 32 STREET',
'cross_street_1': 'AVENUE J',
'cross_street_2': 'AVENUE K',
'intersection_street_1': 'AVENUE J',
'intersection_street_2': 'AVENUE K',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 32 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:28:12.000',
'community_board': '18 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999585',
'y_coordinate_state_plane': '167317',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.625909751565885',
'longitude': '-73.94475644862165',
'location': {'latitude': '40.625909751565885',
'longitude': '-73.94475644862165',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490436',
'created_date': '2024-09-18T23:14:16.000',
'agency': 'DPR',
'agency_name': 'Department of Parks and Recreation',
'complaint_type': 'Overgrown Tree/Branches',
'descriptor': 'Blocking Street',
'location_type': 'Street',
'incident_zip': '11210',
'incident_address': '1169 EAST 32 STREET',
'street_name': 'EAST 32 STREET',
'cross_street_1': 'AVENUE K',
'cross_street_2': 'AVENUE L',
'intersection_street_1': 'AVENUE K',
'intersection_street_2': 'AVENUE L',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 32 STREET',
'status': 'In Progress',
'community_board': '18 BROOKLYN',
'bbl': '3076320017',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999741',
'y_coordinate_state_plane': '166286',
'open_data_channel_type': 'UNKNOWN',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.62307960168091',
'longitude': '-73.9441968328253',
'location': {'latitude': '40.62307960168091',
'longitude': '-73.9441968328253',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490985',
'created_date': '2024-09-18T23:14:08.000',
'closed_date': '2024-09-19T00:41: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': '11233',
'incident_address': '2317 DEAN STREET',
'street_name': 'DEAN STREET',
'cross_street_1': 'ROCKAWAY AVENUE',
'cross_street_2': 'EASTERN PARKWAY',
'intersection_street_1': 'ROCKAWAY AVENUE',
'intersection_street_2': 'EASTERN PARKWAY',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'DEAN STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:41:18.000',
'community_board': '16 BROOKLYN',
'bbl': '3014420100',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1009019',
'y_coordinate_state_plane': '185117',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.67474550492708',
'longitude': '-73.91070560034514',
'location': {'latitude': '40.67474550492708',
'longitude': '-73.91070560034514',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489545',
'created_date': '2024-09-18T23: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': '11372',
'incident_address': '37-55 79 STREET',
'street_name': '79 STREET',
'cross_street_1': '37 AVENUE',
'cross_street_2': 'ROOSEVELT AVENUE',
'intersection_street_1': '37 AVENUE',
'intersection_street_2': 'ROOSEVELT AVENUE',
'address_type': 'ADDRESS',
'city': 'JACKSON HEIGHTS',
'landmark': '79 STREET',
'status': 'In Progress',
'community_board': '03 QUEENS',
'bbl': '4012900049',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1015553',
'y_coordinate_state_plane': '212214',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.749099562693985',
'longitude': '-73.8870239963435',
'location': {'latitude': '40.749099562693985',
'longitude': '-73.8870239963435',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62484552',
'created_date': '2024-09-18T23:13:54.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Traffic',
'descriptor': 'Drag Racing',
'location_type': 'Street/Sidewalk',
'incident_zip': '10452',
'incident_address': '1605 TOWNSEND AVENUE',
'street_name': 'TOWNSEND AVENUE',
'cross_street_1': 'EAST MOUNT EDEN AVENUE',
'cross_street_2': 'CROSS BRONX EP NB EN JEROME AV',
'intersection_street_1': 'EAST MOUNT EDEN AVENUE',
'intersection_street_2': 'CROSS BRONX EP NB EN JEROME AV',
'address_type': 'ADDRESS',
'city': 'BRONX',
'landmark': 'TOWNSEND AVENUE',
'status': 'In Progress',
'community_board': '04 BRONX',
'bbl': '2028470022',
'borough': 'BRONX',
'x_coordinate_state_plane': '1008161',
'y_coordinate_state_plane': '246922',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BRONX',
'latitude': '40.84438661493779',
'longitude': '-73.91357894232796',
'location': {'latitude': '40.84438661493779',
'longitude': '-73.91357894232796',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488562',
'created_date': '2024-09-18T23:13:52.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11230',
'incident_address': '1478 EAST 15 STREET',
'street_name': 'EAST 15 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 15 STREET',
'status': 'In Progress',
'community_board': '14 BROOKLYN',
'bbl': '3067520040',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995566',
'y_coordinate_state_plane': '162891',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61376734935535',
'longitude': '-73.95924210638032',
'location': {'latitude': '40.61376734935535',
'longitude': '-73.95924210638032',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489542',
'created_date': '2024-09-18T23:13: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': '11368',
'incident_address': '50-14 104 STREET',
'street_name': '104 STREET',
'cross_street_1': 'CORONA AVENUE',
'cross_street_2': 'ALSTYNE AVENUE',
'intersection_street_1': 'CORONA AVENUE',
'intersection_street_2': 'ALSTYNE AVENUE',
'address_type': 'ADDRESS',
'city': 'CORONA',
'landmark': '104 STREET',
'status': 'In Progress',
'community_board': '04 QUEENS',
'bbl': '4019290072',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1023400',
'y_coordinate_state_plane': '210315',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74385603126189',
'longitude': '-73.85871440034525',
'location': {'latitude': '40.74385603126189',
'longitude': '-73.85871440034525',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493503',
'created_date': '2024-09-18T23:13:08.000',
'closed_date': '2024-09-19T01:04: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': '10128',
'incident_address': '334 EAST 96 STREET',
'street_name': 'EAST 96 STREET',
'cross_street_1': '2 AVENUE',
'cross_street_2': '1 AVENUE',
'intersection_street_1': '2 AVENUE',
'intersection_street_2': '1 AVENUE',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'EAST 96 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T01:04:33.000',
'community_board': '08 MANHATTAN',
'bbl': '1015580033',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '999342',
'y_coordinate_state_plane': '224756',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'latitude': '40.783566625604834',
'longitude': '-73.94550311160371',
'location': {'latitude': '40.783566625604834',
'longitude': '-73.94550311160371',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483551',
'created_date': '2024-09-18T23:12:45.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Abandoned Vehicle',
'descriptor': 'With License Plate',
'location_type': 'Street/Sidewalk',
'incident_zip': '11420',
'incident_address': '131-05 116 AVENUE',
'street_name': '116 AVENUE',
'cross_street_1': '131 STREET',
'cross_street_2': '132 STREET',
'intersection_street_1': '131 STREET',
'intersection_street_2': '132 STREET',
'address_type': 'ADDRESS',
'city': 'SOUTH OZONE PARK',
'landmark': '116 AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:59:06.000',
'community_board': '10 QUEENS',
'bbl': '4116740038',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1037284',
'y_coordinate_state_plane': '186383',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'vehicle_type': 'Car',
'latitude': '40.67809617380642',
'longitude': '-73.80879809187206',
'location': {'latitude': '40.67809617380642',
'longitude': '-73.80879809187206',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489961',
'created_date': '2024-09-18T23:12:42.000',
'closed_date': '2024-09-18T23:24:29.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Vehicle',
'descriptor': 'Car/Truck Music',
'location_type': 'Street/Sidewalk',
'incident_zip': '10034',
'incident_address': '284 DYCKMAN STREET',
'street_name': 'DYCKMAN STREET',
'cross_street_1': 'PAYSON AVENUE',
'cross_street_2': 'HENSHAW STREET',
'intersection_street_1': 'PAYSON AVENUE',
'intersection_street_2': 'HENSHAW 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': '2024-09-18T23:24:32.000',
'community_board': '12 MANHATTAN',
'bbl': '1022460036',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '1003838',
'y_coordinate_state_plane': '255197',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'MANHATTAN',
'vehicle_type': 'Car',
'latitude': '40.86710965901609',
'longitude': '-73.92917928857699',
'location': {'latitude': '40.86710965901609',
'longitude': '-73.92917928857699',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487324',
'created_date': '2024-09-18T23:12:27.000',
'closed_date': '2024-09-19T01:21:11.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'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': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T01:21:13.000',
'community_board': '09 MANHATTAN',
'bbl': '1019880118',
'borough': 'MANHATTAN',
'x_coordinate_state_plane': '997300',
'y_coordinate_state_plane': '238040',
'open_data_channel_type': 'MOBILE',
'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': '62484996',
'created_date': '2024-09-18T23:11:59.000',
'closed_date': '2024-09-18T23:19:49.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11201',
'incident_address': '177 SANDS STREET',
'street_name': 'SANDS STREET',
'cross_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'cross_street_2': 'BIKE PATH',
'intersection_street_1': 'BQE WESTBOUND ENTRANCE SANDS ST',
'intersection_street_2': 'BIKE PATH',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'SANDS STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:19:51.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': '62487485',
'created_date': '2024-09-18T23:11:57.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Blocked Hydrant',
'location_type': 'Street/Sidewalk',
'incident_zip': '11218',
'incident_address': '1120 38 STREET',
'street_name': '38 STREET',
'cross_street_1': 'FORT HAMILTON PARKWAY',
'cross_street_2': '12 AVENUE',
'intersection_street_1': 'FORT HAMILTON PARKWAY',
'intersection_street_2': '12 AVENUE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': '38 STREET',
'status': 'In Progress',
'community_board': '12 BROOKLYN',
'bbl': '3052900041',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '987225',
'y_coordinate_state_plane': '173661',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.6433354567099',
'longitude': '-73.98927991679304',
'location': {'latitude': '40.6433354567099',
'longitude': '-73.98927991679304',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62483463',
'created_date': '2024-09-18T23:11:54.000',
'closed_date': '2024-09-19T00:28:36.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': '11210',
'incident_address': '1042 EAST 32 STREET',
'street_name': 'EAST 32 STREET',
'cross_street_1': 'AVENUE J',
'cross_street_2': 'AVENUE K',
'intersection_street_1': 'AVENUE J',
'intersection_street_2': 'AVENUE K',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 32 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded and upon arrival those responsible for the condition were gone.',
'resolution_action_updated_date': '2024-09-19T00:28:38.000',
'community_board': '18 BROOKLYN',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '999585',
'y_coordinate_state_plane': '167317',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'vehicle_type': 'Car',
'latitude': '40.625909751565885',
'longitude': '-73.94475644862165',
'location': {'latitude': '40.625909751565885',
'longitude': '-73.94475644862165',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62488935',
'created_date': '2024-09-18T23:11:18.000',
'closed_date': '2024-09-19T00:03:27.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11223',
'incident_address': '2411 EAST 3 STREET',
'street_name': 'EAST 3 STREET',
'cross_street_1': 'AVENUE W',
'cross_street_2': 'AVENUE X',
'intersection_street_1': 'AVENUE W',
'intersection_street_2': 'AVENUE X',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'EAST 3 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-19T00:03:30.000',
'community_board': '15 BROOKLYN',
'bbl': '3071790042',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '993268',
'y_coordinate_state_plane': '154723',
'open_data_channel_type': 'PHONE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.5913504885388',
'longitude': '-73.96752993169969',
'location': {'latitude': '40.5913504885388',
'longitude': '-73.96752993169969',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62487558',
'created_date': '2024-09-18T23:11:17.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Illegal Parking',
'descriptor': 'Unauthorized Bus Layover',
'location_type': 'Street/Sidewalk',
'incident_zip': '11226',
'incident_address': '344 PARKSIDE AVENUE',
'street_name': 'PARKSIDE 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': 'PARKSIDE AVENUE',
'status': 'In Progress',
'resolution_action_updated_date': '2024-09-19T01:37:17.000',
'community_board': '09 BROOKLYN',
'bbl': '3050550154',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '995790',
'y_coordinate_state_plane': '178178',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.65572662179278',
'longitude': '-73.95840916221606',
'location': {'latitude': '40.65572662179278',
'longitude': '-73.95840916221606',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62489876',
'created_date': '2024-09-18T23:11:02.000',
'closed_date': '2024-09-18T23:26:02.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Banging/Pounding',
'location_type': 'Residential Building/House',
'incident_zip': '11377',
'incident_address': '41-29 50 STREET',
'street_name': '50 STREET',
'cross_street_1': 'SKILLMAN AVENUE',
'cross_street_2': '43 AVENUE',
'intersection_street_1': 'SKILLMAN AVENUE',
'intersection_street_2': '43 AVENUE',
'address_type': 'ADDRESS',
'city': 'WOODSIDE',
'landmark': '50 STREET',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-18T23:26:06.000',
'community_board': '02 QUEENS',
'bbl': '4001310009',
'borough': 'QUEENS',
'x_coordinate_state_plane': '1007984',
'y_coordinate_state_plane': '211025',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'QUEENS',
'latitude': '40.74585961268317',
'longitude': '-73.91434553386067',
'location': {'latitude': '40.74585961268317',
'longitude': '-73.91434553386067',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62493493',
'created_date': '2024-09-18T23:10:58.000',
'closed_date': '2024-09-19T00:01: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': '11233',
'incident_address': '2158 ATLANTIC AVENUE',
'street_name': 'ATLANTIC AVENUE',
'cross_street_1': 'ROOSEVELT PLACE',
'cross_street_2': 'RADDE PLACE',
'intersection_street_1': 'ROOSEVELT PLACE',
'intersection_street_2': 'RADDE PLACE',
'address_type': 'ADDRESS',
'city': 'BROOKLYN',
'landmark': 'ATLANTIC AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint but officers were unable to gain entry into the premises.',
'resolution_action_updated_date': '2024-09-19T00:01:10.000',
'community_board': '16 BROOKLYN',
'bbl': '3014330023',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '1007776',
'y_coordinate_state_plane': '185781',
'open_data_channel_type': 'ONLINE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'location': {'latitude': '40.676571425032556',
'longitude': '-73.91518440283599',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62490911',
'created_date': '2024-09-18T23:10:54.000',
'closed_date': '2024-09-18T23:26:51.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Commercial',
'descriptor': 'Loud Music/Party',
'location_type': 'Store/Commercial',
'incident_zip': '11230',
'incident_address': '1827 CONEY ISLAND AVENUE',
'street_name': 'CONEY ISLAND AVENUE',
'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': 'CONEY ISLAND AVENUE',
'status': 'Closed',
'resolution_description': 'The Police Department responded to the complaint and with the information available observed no evidence of the violation at that time.',
'resolution_action_updated_date': '2024-09-18T23:26:54.000',
'community_board': '14 BROOKLYN',
'bbl': '3067490058',
'borough': 'BROOKLYN',
'x_coordinate_state_plane': '994535',
'y_coordinate_state_plane': '162656',
'open_data_channel_type': 'MOBILE',
'park_facility_name': 'Unspecified',
'park_borough': 'BROOKLYN',
'latitude': '40.61312357962291',
'longitude': '-73.96295591280976',
'location': {'latitude': '40.61312357962291',
'longitude': '-73.96295591280976',
'human_address': '{"address": "", "city": "", "state": "", "zip": ""}'}},
{'unique_key': '62491025',
'created_date': '2024-09-18T23:10:35.000',
'closed_date': '2024-09-19T00:21:31.000',
'agency': 'NYPD',
'agency_name': 'New York City Police Department',
'complaint_type': 'Noise - Residential',
'descriptor': 'Loud Talking',
'location_type': 'Residential Building/House',
'incident_zip': '10039',
'incident_address': '159-14 HARLEM RIVER DRIVE SERVICE RD W',
'street_name': 'HARLEM RIVER DRIVE SERVICE RD W',
'cross_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'cross_street_2': 'HARLEM RIVER DRIVE EXIT 23 SB',
'intersection_street_1': 'FREDERICK DOUGLASS BOULEVARD',
'intersection_street_2': 'HARLEM RIVER DRIVE EXIT 23 SB',
'address_type': 'ADDRESS',
'city': 'NEW YORK',
'landmark': 'HARLEM RIVER DRIVE SERVICE RD 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': '2024-09-19T00:21:34.000',
'community_board': '10 MANHATTAN',
'bbl': '1021060320',
'borough': 'MANHATTAN',
'x_coordinate_state_plane':