お知らせ :
2025 年 4 月 15 日 より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認 する必要があります。
フィードバックを送信
ee.Projection
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
指定されたベース座標系と、投影された座標とベース間の指定された変換を含む Projection を返します。変換が指定されていない場合は、恒等変換が想定されます。
用途 戻り値 ee.Projection(crs, transform , transformWkt )
予測
引数 タイプ 詳細 crs
オブジェクト この Projection の基準座標参照系。よく知られている機関コード(例: 'EPSG:4326')または WKT 文字列。 transform
リスト、デフォルト: null 投影座標と基本座標系の間の変換。行優先順の 2x3 アフィン変換行列として指定します([xScale, xShearing, xTranslation, yShearing, yScale, yTranslation])。これと transformWkt の両方を指定することはできません。 transformWkt
文字列、デフォルト: null 投影座標とベース座標系の間の変換。WKT 文字列として指定します。これと「transform」の両方を指定することはできません。
例
コードエディタ(JavaScript)
// Construct projections.
// Printing the projection will show the EPSG code if it is a direct match.
//
// e.g. You will see this for the string 'EPSG:3857'
// type: Projection
// crs: EPSG:3857
// transform: [1,0,0,0,1,0]
print ( ee . Projection ( 'EPSG:3857' )); // https://epsg.io/3857
print ( ee . Projection ( 'EPSG:4326' )); // https://epsg.io/4326
// WKT projection description for https://epsg.io/27572
var proj = ee . Projection (
'PROJCS["NTF (Paris) / Lambert zone II", ' +
' GEOGCS["NTF (Paris)", ' +
' DATUM["Nouvelle Triangulation Francaise (Paris)", ' +
' SPHEROID["Clarke 1880 (IGN)", 6378249.2, 293.4660212936269,' +
' AUTHORITY["EPSG","7011"]], ' +
' AUTHORITY["EPSG","6807"]], ' +
' PRIMEM["Paris", 2.5969213, AUTHORITY["EPSG","8903"]], ' +
' UNIT["grade", 0.015707963267948967], ' +
' AXIS["Geodetic longitude", EAST], ' +
' AXIS["Geodetic latitude", NORTH], ' +
' AUTHORITY["EPSG","4807"]], ' +
' PROJECTION["Lambert_Conformal_Conic_1SP", AUTHORITY["EPSG","9801"]], ' +
' PARAMETER["central_meridian", 0.0], ' +
' PARAMETER["latitude_of_origin", 52.0], ' +
' PARAMETER["scale_factor", 0.99987742], ' +
' PARAMETER["false_easting", 600000.0], ' +
' PARAMETER["false_northing", 2200000.0], ' +
' UNIT["m", 1.0], ' +
' AXIS["Easting", EAST], ' +
' AXIS["Northing", NORTH], ' +
' AUTHORITY["EPSG","27572"]]' );
print ( proj ); // crs: EPSG:27572
Python の設定
Python API とインタラクティブな開発での geemap
の使用については、
Python 環境 のページをご覧ください。
import ee
import geemap.core as geemap
Colab(Python)
# Construct projections.
# Printing the projection will show the EPSG code if it is a direct match.
#
# e.g. You will see this for the string 'EPSG:3857'
# type: Projection
# crs: EPSG:3857
# transform: [1,0,0,0,1,0]
print ( ee . Projection ( 'EPSG:3857' ) . getInfo ()) # https://epsg.io/3857
print ( ee . Projection ( 'EPSG:4326' ) . getInfo ()) # https://epsg.io/4326
# WKT projection description for https://epsg.io/27572
proj = ee . Projection (
'PROJCS["NTF (Paris) / Lambert zone II", ' +
' GEOGCS["NTF (Paris)", ' +
' DATUM["Nouvelle Triangulation Francaise (Paris)", ' +
' SPHEROID["Clarke 1880 (IGN)", 6378249.2, 293.4660212936269,' +
' AUTHORITY["EPSG","7011"]], ' +
' AUTHORITY["EPSG","6807"]], ' +
' PRIMEM["Paris", 2.5969213, AUTHORITY["EPSG","8903"]], ' +
' UNIT["grade", 0.015707963267948967], ' +
' AXIS["Geodetic longitude", EAST], ' +
' AXIS["Geodetic latitude", NORTH], ' +
' AUTHORITY["EPSG","4807"]], ' +
' PROJECTION["Lambert_Conformal_Conic_1SP", AUTHORITY["EPSG","9801"]], ' +
' PARAMETER["central_meridian", 0.0], ' +
' PARAMETER["latitude_of_origin", 52.0], ' +
' PARAMETER["scale_factor", 0.99987742], ' +
' PARAMETER["false_easting", 600000.0], ' +
' PARAMETER["false_northing", 2200000.0], ' +
' UNIT["m", 1.0], ' +
' AXIS["Easting", EAST], ' +
' AXIS["Northing", NORTH], ' +
' AUTHORITY["EPSG","27572"]]' )
print ( proj . getInfo ()) # crs: EPSG:27572
フィードバックを送信
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンス により使用許諾されます。コードサンプルは Apache 2.0 ライセンス により使用許諾されます。詳しくは、Google Developers サイトのポリシー をご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
ご意見をお聞かせください
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-07-26 UTC。"],[[["`ee.Projection` returns a Projection object with a defined base coordinate system and an optional transform."],["The base coordinate system (`crs`) can be specified using an authority code (e.g., 'EPSG:4326') or a WKT string."],["The transform between projected and base coordinates can be defined by a 2x3 affine transform matrix (`transform`) or a WKT string (`transformWkt`)."],["If no transform is provided, the identity transform is used, implying a direct mapping between projected and base coordinates."]]],[]]