🛠️ToolsShed

面積変換

平方メートル、平方フィート、エーカー、ヘクタールなどを変換。

面積コンバーターは、平方メートル、平方キロメートル、平方フィート、平方マイル、エーカー、ヘクタールなどの面積測定値を変換します。面積変換は不動産、農業、都市計画、土地測量、科学研究でよく必要とされます。

任意の単位フィールドに値を入力すると、他のすべての単位が自動的に更新されます。異なる地域の物件サイズを比較する際に特に便利です — 例えば、米国と英国で一般的なエーカーを欧州や国際的なコンテキストで一般的な平方メートルやヘクタールに変換する場合です。

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.