Bulding Address: | 302 E 89th St |
Building Alternate address: | 302 E 89th St |
Zip Code: | 10128 |
Neighborhood: | Upper East Side |
Borough: | Manhattan |
Stories: | 5 |
Year Built: | 1920 |
Building Class: | C |
302 East 89th Street, located in the Yorkville neighborhood of Manhattan, is a pre-war building constructed in 1920. This five-story structure houses 20 residential units and is classified as an "Over Six Families without Stores" building. The building's history reflects the broader development of the Upper East Side, which transformed from vast farmland into a grid of iconic apartments and townhouses during the 19th century.
Originally part of a larger agricultural area, the Upper East Side began to take shape as New York City expanded its street grid. The removal of elevated train lines in the 1950s further enhanced the area's appeal, offering residents a more refined living environment. Today, 302 East 89th Street remains a testament to the architectural heritage of its time, standing alongside other historic buildings that define the neighborhood's charm.
The building's construction in 1920 coincided with a period of significant urban development in New York City. It has since become a part of the fabric of the Upper East Side, known for its elegant pre-war architecture, stunning Central Park vistas, and proximity to cultural institutions and shopping options.
To convert an address like "302 E 89th St, Manhattan, NYC" into HTML and save it in a Django model field, you can use a simple HTML formatting approach. Since you want to return only the HTML, you can wrap the address in HTML tags. Here's how you might do it:
302 E 89th St, Manhattan, NYC
However, if you want to make it more structured or include additional details like a link to a map, you could use something like this:
Address: 302 E 89th St, Manhattan, NYC
View on Map
This HTML includes a link to view the location on Google Maps. You would need to replace the URL with the actual map link for the address.
In Django, you can store this HTML in a model field like this:
python
from django.db import models
class Location(models.Model):
address_html = models.TextField()
# Example of saving the HTML
location = Location(address_html="
302 E 89th St, Manhattan, NYC
")
location.save()
Or, if you want to generate the HTML dynamically in your Django view or model method:
python
def generate_address_html(address):
return f"
{address}
"
# Example usage
address = "302 E 89th St, Manhattan, NYC"
html = generate_address_html(address)
location = Location(address_html=html)
location.save()
This approach allows you to store formatted HTML in your Django model field.
Building Amenities at 302 E 89th St, Manhattan, NYC:
- Laundry Facilities
- High Speed Internet Access
- Heating
- Smoke Free
- Cable Ready
- Kitchen
- Range
- Hardwood Floors
302 E 89th St, Manhattan, NYC
This prewar rental building is located in the Yorkville neighborhood of Manhattan. It was built in 1920 and features five floors with 20 units.
Currently, there is no information available on office or retail tenants in this building, as it is primarily residential.
Tenant Information:
- Residential Units: 20 units across five floors.
- Office Tenants: None listed.
- Retail Tenants: None listed.
For more accurate and up-to-date tenant information, please contact local real estate agents or property management companies.
To create an HTML snippet for internet providers at 302 E 89th St, Manhattan, NYC, and save it in a Django model field, you can follow these steps:
1. **Identify Internet Providers**: Based on the location, the primary internet providers in Manhattan include Verizon Fios, Astound Broadband Powered by RCN, and Spectrum. However, specific availability might vary by exact address.
2. **Create HTML Snippet**: Here's a basic HTML structure for listing these providers:
Internet Providers at 302 E 89th St, Manhattan, NYC
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with competitive pricing.
- Spectrum: Provides widespread coverage with speeds up to 1 Gbps.
3. **Saving in Django Model Field**: To save this HTML in a Django model field, ensure the field is a `TextField` or similar, which can handle HTML content. Here's a simplified example of how you might define such a field in your model:
python
from django.db import models
class InternetProviders(models.Model):
location = models.CharField(max_length=255)
providers_html = models.TextField()
# Example of saving the HTML
provider_html = """
Internet Providers at 302 E 89th St, Manhattan, NYC
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with competitive pricing.
- Spectrum: Provides widespread coverage with speeds up to 1 Gbps.
"""
# Saving the HTML in the model
InternetProviders.objects.create(location="302 E 89th St, Manhattan, NYC", providers_html=provider_html)
This approach allows you to store and display the HTML content directly from your Django model.
302 E 89th St, Manhattan, NYC offers convenient transportation options:
- Subway: Closest station is 2nd Ave & 86th St (Q line), approximately 0.131 miles away.
- Bus Routes: M15+ at 2 Av/E 88 St, about 0.046 miles away.
Cross streets include East 89th Street and Second Avenue.