Bulding Address: | 57 W 38th St |
Building Alternate address: | 57 W 38th St |
Postleitzahl : | 10018 |
Neighborhood: | Penn Plaza/Garment |
Borough: | Manhattan |
Stories: | 12 |
Year Built: | 1915 |
Building Class: | C |
Block & lot: | 00840-7501 |
57 West 38th Street is a pre-war condominium building located in the Garment District of Manhattan, New York City. The building was constructed in 1915 and features a total of 66,282 square feet. It is a 12-story structure with limited residential units, offering a doorman service for residents.
The building is situated in Midtown West, an area known for its vibrant mix of commercial and residential spaces. Midtown West is home to iconic landmarks like the Empire State Building and offers easy access to major transportation hubs such as Penn Station and Port Authority.
Historically, the Garment District has been a hub for the fashion industry, with many textile and apparel businesses operating in the area. Over time, the neighborhood has evolved to include a diverse range of businesses and residential properties.
To store an address like "57 W 38th St, Manhattan, NYC" in a Django model field and then display it in HTML, you can use a `CharField` for the address. Here's how you might define it in your model:
python
from django.db import models
class Location(models.Model):
address = models.CharField(max_length=255)
Then, to display this address in an HTML template, you would pass the model instance to the template and use Django's templating syntax to render the address. Here's a simple example of how you might do that:
### 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 a location with id=1
return render(request, 'location.html', {'location': location})
### location.html
Location
Location
If you want to store the address in a structured format (e.g., separate fields for street, city, state), you might define your model like this:
### models.py
python
from django.db import models
class Location(models.Model):
street = models.CharField(max_length=100)
city = models.CharField(max_length=50)
state = models.CharField(max_length=50)
zip_code = models.CharField(max_length=10)
### views.py (remains the same)
### location.html
Location
Location
, ,
To store "57 W 38th St, Manhattan, NYC" in the structured format, you would need to parse it into its components before saving it to the model.
### Example of parsing and saving:
python
import re
def parse_and_save_address(address):
# Simple parsing logic, may need adjustment based on address format
parts = re.split(',| ', address)
street = parts[0] + ' ' + parts[1] + ' ' + parts[2]
city = parts[3]
state = parts[4]
location = Location(street=street, city=city, state=state)
location.save()
# Example usage
parse_and_save_address("57 W 38th St, Manhattan, NYC")
This approach assumes a consistent address format, which might not always be the case. For more complex or variable address formats, consider using a dedicated geocoding service or library to parse addresses accurately.
57 W 38th St, Manhattan, NYC offers the following building amenities:
- Location: Situated in the Penn Plaza/Garment neighborhood of Manhattan.
- Year Built: 1915.
- Building Class: B (according to some sources), C (according to others).
- Stories: 12.
- Property Type: Office building with retail spaces.
- Spaces Available: Multi-tenant commercial space with various office and retail options.
- Accessibility: High Walk Score (98), Transit Score (100), and Bike Score (87).
- Neighborhood Amenities: Close proximity to major points of interest like Times Square, Grand Central, and multiple subway lines.
- Specific Spaces:
- Ground Floor: 4,000 SF with 16' ceilings.
- Mezzanine: 1,000 SF with 9' ceilings.
- Lower Level (Cellar): 4,600 SF with 12' ceilings.
57 W 38th St, Manhattan, NYC
This property is located in the Garment District of Manhattan, offering a mix of office and retail spaces. The building is a pre-war structure with 12 stories, built in 1915.
Property Details
- Building Class: B
- Year Built: 1915
- Lot Size: Approximately 0.13 acres
- Property Type: Office and Retail
- Neighborhood: Garment District
Current Tenants
The building hosts a variety of tenants across different industries:
- Office Tenants:
- Artisan Concept - 5,540 SF
- Park Assist LLC - 5,500 SF (lease ended February 2020)
- Marin Architects - 4,950 SF
- Winfield Security Corp - 4,645 SF
- Regen Benz Mackenzie - 4,200 SF
- Gerstein Strauss & Rinaldi LLP - 3,000 SF
- Wong & Co - 2,790 SF
- Matthijssen - 2,750 SF (lease ended June 2021)
- Retail Tenants:
- Beads World - 4,000 SF (lease ends June 2024)
- Merchandise Textiles & Cads Inc. - 2,797 SF (lease ended December 2011)
Amenities and Location
The property benefits from its prime location with a Walk Score of 98, Transit Score of 100, and Bike Score of 87. It is close to major attractions like Times Square and Grand Central.
Internet Providers at 57 W 38th St, Manhattan, NYC:
- Spectrum: Offers cable internet with speeds up to 1,000 Mbps and coverage of 99.5% in Midtown.
- Earthlink: Provides fiber internet with speeds up to 2,300 Mbps, covering 95.3% of Midtown.
- Verizon: Offers fiber internet with speeds up to 2,300 Mbps and fixed wireless with speeds up to 813 Mbps.
- Astound Broadband: Offers cable internet with speeds up to 1,500 Mbps and fiber with speeds up to 1,500 Mbps.
- T-Mobile Home Internet: Provides fixed wireless internet with speeds up to 100 Mbps.
- Skywire Networks: Offers fixed wireless internet with speeds up to 1,000 Mbps.
For precise availability at your address, use an address search tool.
57 W 38th St, Manhattan, NYC is conveniently located near several public transportation options.
Transportation Options:
- Bus: Lines 108, 119, 158, 166, BM3, M11, M20, and M34A-SBS stop nearby.
- Subway: The nearest subway stations are 42 St-Port Authority Bus Terminal (2 min walk) and 34 St-Hudson Yards (9 min walk). Subway lines include 1, 3, A, and S.
- Train: The nearest train station is 34 St-Penn Station (1 min walk), with lines such as HARLEM and PATH.
Cross Streets:
57 W 38th St is located between 6th Avenue and 7th Avenue.
Nearest Bus Stops:
- Lincoln Tnl App/Lincoln Tnl App
- W 40th St & 9th Ave
- New York Port Authority Bus Station
- Port Authority Bus Terminal
None
None