構文
GeographyPoint.From(
longitude as number,
latitude as number,
optional z as nullable number,
optional m as nullable number,
optional srid as nullable number
) as record
バージョン情報
経度、緯度、標高 (Z) とメジャー (M) など、構成部分から地理的なポイントを表すレコードを作成します。 省略可能な空間参照識別子 (SRID) は、既定値 (4326) とは異なる場合に指定できます。
Example
経度と緯度から地理的なポイントを作成します。
使用方法
GeographyPoint.From(-122.127222, 47.641944)
アウトプット
[Kind = "POINT", Longitude = -122.127222, Latitude = 47.641944]