면적 변환
제곱미터, 제곱피트, 에이커, 헥타르 등을 변환.
면적 변환기는 제곱미터, 제곱킬로미터, 제곱피트, 제곱마일, 에이커, 헥타르 등의 표면적 측정값을 변환합니다. 면적 변환은 부동산, 농업, 도시 계획, 측량, 과학 연구에서 자주 필요합니다.
어떤 단위 필드에든 값을 입력하면 다른 모든 단위가 자동으로 업데이트됩니다. 다른 지역의 부동산 크기를 비교할 때 특히 유용합니다 — 예를 들어, 미국과 영국에서 일반적인 에이커를 유럽과 국제적으로 사용되는 제곱미터나 헥타르로 변환할 때 말이죠.
1에이커는 약 4047 제곱미터 또는 0.4047 헥타르이고, 1헥타르는 10,000 제곱미터 또는 2.471 에이커입니다. 이러한 변환은 국제 부동산 목록을 읽거나, 농업 데이터를 해석하거나, 지리적 면적 통계를 이해할 때 중요합니다.
자주 묻는 질문
코드 구현
# Area conversion functions
def m2_to_ft2(m2: float) -> float:
"""Square meters to square feet"""
return m2 * 10.7639
def ft2_to_m2(ft2: float) -> float:
"""Square feet to square meters"""
return ft2 / 10.7639
def hectare_to_acre(ha: float) -> float:
"""Hectares to acres (1 ha = 2.47105 acres)"""
return ha * 2.47105
def acre_to_hectare(acres: float) -> float:
return acres / 2.47105
def m2_to_hectare(m2: float) -> float:
return m2 / 10_000
def km2_to_m2(km2: float) -> float:
return km2 * 1_000_000
def pyeong_to_m2(pyeong: float) -> float:
"""Korean pyeong (평) to square meters"""
return pyeong * 3.30579
def m2_to_pyeong(m2: float) -> float:
return m2 / 3.30579
# Examples
print(m2_to_ft2(100)) # 1076.39 sq ft
print(hectare_to_acre(1)) # 2.47105 acres
print(pyeong_to_m2(25)) # 82.64 m² (typical Korean apartment)Comments & Feedback
Comments are powered by Giscus. Sign in with GitHub to leave a comment.