Bulding Address: | 54 W 39th St |
Building Alternate address: | 54 W 39th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 16 |
Year Built: | 1924 |
Building Class: | C |
Block & lot: | 00840-0078 |
54 W 39th St, Manhattan, NYC
This building, located in the Garment District of Manhattan, was constructed in 1924. It is classified as an Office with Commercial 7-19 Stories (O6) and has a total of 43,250 square feet across 16 stories.
The property has a current tax assessor's market value of $4,505,000 and an estimated annual property tax of approximately $207,063.
Historically, West 39th Street was part of Manhattan's slaughterhouse district, known as "Abattoir Row," where cattle were processed for the city's meat supply. This industrial activity ceased in the 1960s.
Today, the building at 54 W 39th St offers commercial spaces for lease, with several active listings available.
To save an address like "54 W 39th St, Manhattan, NYC" in a Django model field and then display it in HTML, you would typically use a `CharField` for the address. Here's how you can define it in your model:
python
from django.db import models
class Location(models.Model):
address = models.CharField(max_length=255)
If you want to display this address in HTML, you can simply retrieve the address from your model and include it in your HTML template. However, if you want to ensure that the address is properly escaped to prevent XSS attacks, you can use Django's template escaping features.
Here's an example of how you might display the address in an HTML template:
Location: {{ location.address|safe }}
In this example, `{{ location.address|safe }}` will display the address without escaping it. However, if the address contains user-input data, you should avoid using `|safe` to prevent XSS vulnerabilities. Instead, let Django automatically escape the content by removing the `|safe` filter:
Location: {{ location.address }}
This will ensure that any HTML characters in the address are properly escaped.
### Saving the Address in a Django Model
To save the address "54 W 39th St, Manhattan, NYC" in your model, you can do so like this:
python
location = Location(address="54 W 39th St, Manhattan, NYC")
location.save()
### Converting to HTML
If you need to convert the address into a specific HTML format, you might want to wrap it in a `
` or `` with a specific class for styling:
{{ location.address }}
And then style it with CSS:
css
.address {
font-size: 18px;
color: blue;
}
This will display the address in blue with a font size of 18 pixels.
### Full Example
Here's a full example of how you might define a model, save an address, and display it in an HTML template:
#### models.py
python
from django.db import models
class Location(models.Model):
address = models.CharField(max_length=255)
#### views.py
python
from django.shortcuts import render
from .models import Location
def show_location(request):
location = Location.objects.get(id=1) # Assuming you have an entry with id=1
return render(request, 'location.html', {'location': location})
#### location.html
Location
Location: {{ location.address }}
#### Saving the Address
python
location = Location(address="54 W 39th St, Manhattan, NYC")
location.save()
54 W 39th St, Manhattan, NYC Building Amenities
- Elevator Building: Ensures easy accessibility throughout the building.
- 24 Hour Access: Allows tenants to work at any time.
- Proximity to Major Subway Lines: Close to B, D, F, M, 7, N, Q, R, and W lines.
- Capital Improvement Program: The building has undergone significant modernization.
- High Ceilings and Hardwood Floors: Available in certain office spaces, such as the 6th floor.
- Shared Pantry and Bathrooms: Available for tenants on select floors.
- Flexible Leasing Options: Portions of the 7th, 10th, and other floors are available.
- Property Manager on Site: Ensures prompt assistance and management.
- Independent Training Spot Facility: A 3,500 sqft gym space on the 3rd floor for personal trainers.
54 W 39th St, Manhattan, NYC
This historic building, constructed in 1924, is located in the Garment District of Manhattan and offers a mix of office and commercial spaces. It features 16 stories with a typical floor size of approximately 3,500 square feet.
Building Overview
- Year Built: 1924
- Building Height: 16 Stories
- Building Size: Approximately 43,250 square feet
- Neighborhood: Garment District
- Location: Between Fifth and Sixth Avenues
Office Spaces
Available office spaces include full floors on the 6th, 7th, 10th, and 12th floors, each approximately 3,500 square feet. The building offers flexible leasing options and has undergone recent capital improvements.
Current Tenants
Due to the nature of the building's office and commercial spaces, specific tenant information is not readily available. However, the building is known to attract a variety of businesses due to its prime location.
Neighborhood Amenities
- Subway Access: Close proximity to B, D, F, M, 7, N, Q, R, and W subway lines
- Independent Training Spot: A gym for personal trainers located nearby
Additional Features
- Accessibility: Elevator building with minimal loss factor
- Infrastructure: Recent capital improvements for modern workspace
Internet Providers at 54 W 39th St, Manhattan, NYC:
- Verizon Fios: Offers fiber internet with speeds up to 2.3 Gbps. It covers a significant portion of Manhattan, including many areas around Midtown.
- Astound Broadband Powered by RCN: Provides both cable and fiber services with speeds up to 1.5 Gbps. Coverage is widespread but may be spotty in some areas.
- Spectrum: Offers cable internet with speeds up to 1 Gbps. It has ubiquitous coverage across Manhattan.
- Earthlink: Offers fiber internet with speeds up to 2,300 Mbps in some areas of Manhattan.
- T-Mobile Home Internet: Provides fixed wireless internet with speeds up to 100 Mbps, available in many parts of Manhattan.
Location: 54 W 39th St, Manhattan, NYC
Nearest Public Transportation:
- Bus: M12, M42, M50
- Train: Harlem, Hudson, Port Washington Branch
- Subway: 2, 7, 7X, A, Q, C, E
- Ferry: Midtown West/W 39th St-Pier 79
Nearest Subway Stations:
- 34 St-Hudson Yards (4 min walk)
- 34 St-Penn Station (5 min walk)
Nearest Bus Stops:
- 12 Av/W 40 St (2 min walk)
- W 42 St/12 Av (4 min walk)
Cross Streets: 6th Avenue, 5th Avenue
None
None