Bulding Address: | 15 W 37th St |
Building Alternate address: | 15 W 37th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 16 |
Year Built: | 1921 |
Building Class: | C |
Block & lot: | 00839-0029 |
15 West 37th Street, located in the Garment District of Manhattan, New York City, is a notable office building with a rich history. Here are some key points about its past:
- Year Built: The building was constructed in 1920, reflecting the architectural styles of that era.
- Year Last Altered: Significant renovations or alterations were made in 1986, which likely updated its infrastructure and design.
- Building Class: It is classified as an Office with Commercial 7-19 Stories (O6), indicating its use for both office and commercial purposes.
- Lot and Building Size: The lot spans 9,194 square feet, while the building itself covers 129,465 square feet.
- Stories: The building stands at 16 stories tall.
- Neighborhood: Situated in the heart of the Garment District, it is surrounded by other significant buildings and historical sites.
For more detailed information, including sales history and property taxes, one would need to access specific real estate databases or local records.
To convert the address "15 W 37th St, Manhattan, NYC" into HTML and save it in a Django model field, you would typically store the address as a string in the model and then convert it to HTML when rendering it in a template. However, if you want to store it as HTML directly in the database, you could format it as HTML and then store it. Here's how you might do that:
### HTML Representation of the Address
15 W 37th St, Manhattan, NYC
### Django Model Field
If you want to store this HTML in a Django model, you can use a `TextField` to store the HTML string.
python
from django.db import models
class Address(models.Model):
address_html = models.TextField()
### Saving the HTML in the Model
To save the HTML representation of the address in the model:
python
address = Address(address_html="
15 W 37th St, Manhattan, NYC
")
address.save()
### Displaying the HTML in a Template
When displaying this HTML in a Django template, ensure you use the `safe` filter to prevent Django from escaping the HTML:
{% load markdown_extras %}
{% for address in addresses %}
{{ address.address_html|safe }}
{% endfor %}
### Views
In your views, you would retrieve the address objects and pass them to the template:
python
from django.shortcuts import render
from .models import Address
def view_addresses(request):
addresses = Address.objects.all()
return render(request, 'your_template.html', {'addresses': addresses})
### URLs
Make sure you have a URL pattern that maps to your view:
python
from django.urls import path
from .views import view_addresses
urlpatterns = [
path('addresses/', view_addresses, name='view_addresses'),
]
This setup allows you to store and display HTML content in a Django model field. However, storing HTML directly in the database is generally not recommended unless necessary for specific use cases, as it can introduce security risks if not properly sanitized.
15 West 37th Street, Manhattan, NYC, offers the following building amenities:
- Office building with commercial spaces
- 16 stories high
- Year built: 1920, last altered in 1986
- Total building area: 129,465 square feet
- Lot size: 9,194 square feet
- Located in the Garment District
- Close proximity to major transportation hubs like Penn Station and Port Authority
15 W 37th St, Manhattan, NYC
This office building, known as Tower 37, is located at 15 W 37th St, New York, NY 10018. It was built in 1921 and features 16 stories with a total building size of 138,000 square feet. The typical floor size is approximately 9,300 square feet, and it is classified as a Class B building.
Current Tenants
Some of the notable tenants in this building include:
- Park IP Translations - Translation Services
- Consulate General of Costa Rica - Government Office
- Frette North America - Luxury Home Goods
- Women's Refugee Commission - Non-Profit Organization
Usearch has identified a total of 30 tenants in the building, but a complete list by type of business is not fully available. However, the building hosts a mix of office and retail tenants.
Building Details
- Year Built: 1921
- Building Height: 16 Stories
- Building Size: 138,000 SF
- Building Class: B
- Typical Floor Size: 9,300 SF
For more detailed information on leasing opportunities, contact Newmark.
Internet Providers at 15 W 37th St, Manhattan, NYC:
- Verizon: Offers Fios with speeds up to 2.3 Gbps.
- Spectrum: Provides cable and fiber services with speeds up to 1 Gbps.
- Astound Broadband Powered by RCN: Offers cable and fiber services with speeds up to 1.5 Gbps.
- Earthlink: Available in nearby areas with fiber speeds up to 2,300 Mbps.
- T-Mobile Home Internet: Offers fixed wireless service with speeds up to 100 Mbps.
Location: 15 W 37th St, Manhattan, NYC
Transportation Options:
- Subway: Nearest stations include 42 St-Bryant Park (3 min walk), 34 St-Herald Square (5 min walk), and 33 St (9 min walk).
- Bus: Bus lines M1, M101, M55, BXM4, and others stop nearby.
- Train: PATH and Harlem lines are accessible from nearby stations.
Cross Streets:
- West 37th Street intersects with Broadway and 6th Avenue.
- Nearest cross streets include 5th Avenue and 6th Avenue.
None
None