Indirizzo dell'edificio: | 242-244 W 38th St |
Building Alternate address: | 242-244 W 38th St |
Codice postale: | 10018 |
Quartiere: | Penn Plaza/Garment |
Distretto: | Manhattan |
# Storie: | 15 |
Year Built: | 1923 |
Building Class: | C |
Block & lot: | 00787-0065 |
242-244 W 38th St, Manhattan, NYC
This property, located in the heart of the Garment District, Manhattan, has a rich history dating back to its construction in 1923. The building was last altered in 1963.
Building Details
- Year Built: 1923
- Year Last Altered: 1963
- Building Type: Office with Commercial 7-19 Stories (O6)
- Stories: 14
- Total Square Feet: 47,661
- Lot Size: Approximately 0.08 acres
Location and Amenities
- Neighborhood: Garment District
- Zip Code: 10018
- Closest Subway Lines: 1, 2, 3, 7, B, D, F, M, N, Q, R, S
- Amenities: 24/7 Access, Tenant-controlled heat, Renovated lobby, Security system
Leasing Information
The building offers office spaces for lease, with some spaces combinable up to 7,600 square feet. The area is well-connected with major transportation options and offers a vibrant mix of restaurants, bars, and activities.
To convert the address into HTML and save it in a Django model field, you can use a `TextField` in your model. Here's how you might represent the address in HTML and save it:
242-244 W 38th St, Manhattan, NYC
In a Django model, you could define a field like this:
python
from django.db import models
class Address(models.Model):
address_html = models.TextField(blank=True, null=True)
Then, you can save the HTML representation of the address in the `address_html` field.
If you want to include this HTML in a Django template, ensure you use `{% autoescape off %}` to prevent Django from escaping the HTML:
{% autoescape off %}
{% endautoescape %}
This will render the HTML correctly in your template.
To store the address in the model, you can do something like this in your view:
python
address = Address.objects.create(
address_html="
242-244 W 38th St, Manhattan, NYC
"
)
Or, if you're using a form:
python
class AddressForm(forms.ModelForm):
class Meta:
model = Address
fields = ['address_html']
# In your view
if request.method == 'POST':
form = AddressForm(request.POST)
if form.is_valid():
form.save()
Make sure to handle any potential security risks by validating and sanitizing user input if you're allowing users to edit the HTML content.
242-244 W 38th St, Manhattan, NYC Building Amenities:
- 24/7 Access
- Bus Line
- Commuter Rail
- Metro/Subway
- Security System
- Central Heating
- Air Conditioning
- Ronvated Lobby
- Tenant Controlled Heat
- Close to Major Transportation
242-244 West 38th Street, Manhattan, NYC
This 15-story office building is located in the Penn Plaza/Garment neighborhood of Manhattan.
Current Tenants
As of the latest available data, specific tenant information for this building is not detailed. However, the building is part of the vibrant Garment District, hosting a variety of businesses.
Typical Businesses in the Area
- Office Tenants: Typically include fashion companies, design studios, and business services.
- Retail Tenants: Often feature boutiques, restaurants, and coffee shops.
For the most accurate and up-to-date tenant list, please contact the building management or a local real estate agency.
This HTML snippet provides a basic structure for describing the building and its typical tenants. You can update it with specific tenant information if available. To save this in a Django model field, ensure the field is set to allow HTML content, typically a `TextField` or `CharField` with appropriate validation to prevent XSS attacks.
To convert the information about internet providers at 242-244 W 38th St, Manhattan, NYC into HTML and save it in a Django model field, you would first need to gather specific details about the providers available at that location. However, based on general information about internet providers in Manhattan, here's a sample HTML structure you could use:
Internet Providers at 242-244 W 38th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with unlimited data and competitive pricing starting at $20.
- Spectrum: Provides cable internet with speeds up to 1 Gbps, no data caps, and bundles starting at $30.
- T-Mobile 5G Home Internet: Offers wireless internet with speeds between 133 Mbps and 415 Mbps, starting at $60.
This HTML can be saved directly into a Django model field as a string. Ensure that the field is defined as a `TextField` or similar in your Django model to accommodate the HTML content.
Here's how you might define such a field in a Django model:
python
from django.db import models
class BuildingDetails(models.Model):
address = models.CharField(max_length=255)
internet_providers_info = models.TextField() # Field to store HTML content
# Example of saving HTML content
building = BuildingDetails(
address='242-244 W 38th St, Manhattan, NYC',
internet_providers_info='''
Internet Providers at 242-244 W 38th St, Manhattan, NYC:
- Verizon Fios: Known for high speeds up to 2 Gbps, reliable service, and competitive pricing starting at $49.99.
- Astound Broadband Powered by RCN: Offers both cable and fiber services with unlimited data and competitive pricing starting at $20.
- Spectrum: Provides cable internet with speeds up to 1 Gbps, no data caps, and bundles starting at $30.
- T-Mobile 5G Home Internet: Offers wireless internet with speeds between 133 Mbps and 415 Mbps, starting at $60.
'''
)
building.save()
Location: 242-244 W 38th St, Manhattan, NYC
Transportation Options:
- Bus: 108, 119, 158, 166, BM3, M11, M20, M34A-SBS
- Train: HARLEM, PATH, PORT JEFFERSON BRANCH
- Subway: 1, 3, A, S
Cross Streets:
Nearest Subway Station: 42 St-Port Authority Bus Terminal (2 min walk)
Nearest Train Station: 34 St-Penn Station (1 min walk)
None
None