ArcGIS for Desktop

  • ドキュメント
  • 価格
  • サポート

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS for Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS for Desktop

完全なプロ仕様の GIS

ArcGIS for Server

エンタープライズ GIS

ArcGIS for Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • 価格
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

Help

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • その他...

Extract Values To Table

Geostatistical Analyst のライセンスで利用可能。

  • サマリ
  • 使用法
  • 構文
  • コードのサンプル
  • 環境
  • ライセンス情報

サマリ

Extracts cell values from a set of rasters to a table, based on a point or polygon feature class.

使用法

  • This tool is primarily designed to analyze the output from the Gaussian Geostatistical Simulations tool.

  • All the rasters must have the same spatial reference and cell size.

  • If a point feature class is used, the output table has a record for each point and each raster that has data. Polygonal data will be treated as point data. The cell center of the input rasters will determine the number of points and will also be used to decide whether the cell is contained within the polygon or not.

  • Values outside the raster's extent will be ignored.

  • Multipart feature classes are not supported.

  • In the case of coincident points, the last one encountered will be used and the rest will be ignored. In the same vane, if overlapping polygons are encountered only one of the intersected features will be processed.

  • If Spatial Analyst is available, the Sample tool can also be used. However, the output table needs to be transposed if the values are to be graphed.

構文

ExtractValuesToTable_ga (in_features, in_rasters, out_table, {out_raster_names_table}, {add_warning_field})
パラメータ説明データ タイプ
in_features

The points or polygon features to be created.

Feature Layer
in_rasters
[in_raster,...]

The rasters must all have the same extent, coordinate system, and cell size.

Raster Layer; Mosaic Layer
out_table

The output table contains a record for each point and each raster that has data. If polygon features are input, they are converted to points that coincide with the raster cell centers.

Table
out_raster_names_table
(オプション)

Saves the names of the Input rasters to disc.

Table
add_warning_field
(オプション)

Records if input features are partially or completely covered by the Input rasters.

  • TRUE — Warning field is added to the output table and populated with a P when a feature is partially covered by raster values.
  • FALSE — Warning field is not added to the output table.
Boolean

コードのサンプル

ExtractValuesToTable example 1 (Python window)

Extract the cell values from a raster to a table, based on a point feature class.

import arcpy
from arcpy import env
env.workspace = "C:/gapyexamples/data"
arcpy.ExtractValuesToTable_ga("C:/gapyexamples/data/ca_ozone_pts.shp",
                              "C:/gapyexamples/data/inraster", 
                              "C:/gapyexamples/output/outEVFR.dbf", "", "")
ExtractValuesToTable example 2 (stand-alone script)

Extract the cell values from a raster to a table, based on a point feature class.

# Name: ExtractValuesToTable_Example_02.py
# Description: Extract the cell values from a raster, based on 
#              a point feature class, to a table.
# Requirements: Geostatistical Analyst Extension

# Import system modules
import arcpy
from arcpy import env

# Set environment settings
env.workspace = "C:/gapyexamples/data"

# Set local variables
inPoints = "C:/gapyexamples/data/ca_ozone_pts.shp"
raster = "C:/gapyexamples/data/inraster"
outTable = "C:/gapyexamples/output/outEVFR.dbf"

# Check out the ArcGIS Geostatistical Analyst extension license
arcpy.CheckOutExtension("GeoStats")

# Execute ExtractValuesToTable
arcpy.ExtractValuesToTable_ga(inPoints, raster, outTable, "", "")

環境

  • 現在のワークスペース
  • 範囲
  • テンポラリ ワークスペース

ライセンス情報

  • ArcGIS for Desktop Basic: 次のものが必要 Geostatistical Analyst
  • ArcGIS for Desktop Standard: 次のものが必要 Geostatistical Analyst
  • ArcGIS for Desktop Advanced: 次のものが必要 Geostatistical Analyst

関連トピック

  • An overview of the Simulation toolset
このトピックへのフィードバック

ArcGIS for Desktop

  • ホーム
  • ドキュメント
  • 価格
  • サポート

ArcGIS プラットフォーム

  • ArcGIS Online
  • ArcGIS for Desktop
  • ArcGIS for Server
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

Esri について

  • 会社概要
  • 採用情報
  • スタッフ ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
© Copyright 2016 Environmental Systems Research Institute, Inc. | プライバシー | リーガル