Extent (arcpy)
サマリ
An extent is a rectangle specified by providing the coordinate of the lower left corner and the coordinate of the upper right corner in map units.
説明
When used as input to ArcGIS Spatial Analyst エクステンション tools, Create Constant Raster, Create Normal Raster, Create Random Raster, Extract By Rectangle and Topo To Raster only the XMin, YMin, XMax and YMax values are used by these tools.
構文
パラメータ | 説明 | データ タイプ |
XMin |
The extent XMin value. | Double |
YMin |
The extent YMin value. | Double |
XMax |
The extent XMax value. | Double |
YMax |
The extent YMax value. | Double |
ZMin |
The extent ZMin value. None if no Z value. | Double |
ZMax |
The extent ZMax value. None if no Z value. | Double |
MMin |
The extent MMin value. None if no M value. | Double |
MMax |
The extent MMax value. None if no M value. | Double |
特性
プロパティ | 説明 | データ タイプ |
MMax (読み取り専用) |
The extent MMax value. None if no M value. | Double |
MMin (読み取り専用) |
The extent MMin value. None if no M value. | Double |
XMax (読み取り専用) |
The extent XMax value. | Double |
XMin (読み取り専用) |
The extent XMin value. | Double |
YMax (読み取り専用) |
The extent YMax value. | Double |
YMin (読み取り専用) |
The extent YMin value. | Double |
ZMax (読み取り専用) |
The extent ZMax value. None if no Z value. | Double |
ZMin (読み取り専用) |
The extent ZMin value. None if no Z value. | Double |
depth (読み取り専用) |
The extent depth value. None if no depth. | Double |
height (読み取り専用) |
The extent height value. | Double |
lowerLeft (読み取り専用) |
The lower left property: A point object is returned. | Point |
lowerRight (読み取り専用) |
The lower right property: A point object is returned. | Point |
spatialReference (読み取り専用) | The spatial reference of the extent. | SpatialReference |
upperLeft (読み取り専用) |
The upper left property: A point object is returned. | Point |
upperRight (読み取り専用) |
The upper right property: A point object is returned | Point |
width (読み取り専用) |
The extent width value. | Double |
メソッドの概要
メソッド | 説明 |
contains (second_geometry) |
Indicates if the base geometry contains the comparison geometry. contains is the opposite of within. Only True relationships are shown in this illustration. |
crosses (second_geometry) |
Indicates if the two geometries intersect in a geometry of a lesser shape type. Two polylines cross if they share only points in common, at least one of which is not an endpoint. A polyline and an polygon cross if they share a polyline or a point (for vertical line) in common on the interior of the polygon which is not equivalent to the entire polyline. Only True relationships are shown in this illustration. |
disjoint (second_geometry) |
Indicates if the base and comparison geometries share no points in common. Two geometries intersect if disjoint returns False. Only True relationships are shown in this illustration. |
equals (second_geometry) |
Indicates if the base and comparison geometries are of the same shape type and define the same set of points in the plane. This is a 2D comparison only; M and Z values are ignored. Only True relationships are shown in this illustration. |
overlaps (second_geometry) |
Indicates if the intersection of the two geometries has the same shape type as one of the input geometries and is not equivalent to either of the input geometries. Only True relationships are shown in this illustration. |
projectAs (spatial_reference, {transformation_name}) |
Projects a geometry and optionally applies a geotransformation. To project, the geometry needs to have a spatial reference, and not have an UnknownCoordinateSystem. The new spatial reference system passed to the method defines the output coordinate system. If either spatial reference is unknown the coordinates will not be changed. The Z- and measure values are not changed by the ProjectAs method. |
touches (second_geometry) |
Indicates if the boundaries of the geometries intersect. Two geometries touch when the intersection of the geometries is not empty, but the intersection of their interiors is empty. For example, a point touches a polyline only if the point is coincident with one of the polyline end points. Only True relationships are shown in this illustration. |
within (second_geometry) |
Indicates if the base geometry is within the comparison geometry. within is the opposite operator of contains. Only True relationships are shown in this illustration. |
メソッド
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean |
A return Boolean value of True indicates this geometry contains the second geometry. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean | A return Boolean value of True indicates the two geometries intersect in a geometry of a lesser shape type. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean | A return Boolean value of True indicates that the two geometries share no points in common. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean |
A return Boolean value of True indicates that the two geometries are of the same shape type and define the same set of points in the plane. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean | A return Boolean value of True indicates the intersection of the two geometries has the same dimension as one of the input geometries. |
パラメータ | 説明 | データ タイプ |
spatial_reference |
The new spatial reference. This can be a SpatialReference object or the coordinate system name. | SpatialReference |
transformation_name | The geotransformation name. | String |
データ タイプ | 説明 |
Object |
The projected geometry. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean | A return Boolean value of True indicates the boundaries of the geometries intersect. |
パラメータ | 説明 | データ タイプ |
second_geometry |
A second geometry. | Object |
データ タイプ | 説明 |
Boolean | A return Boolean value of True indicates this geometry is contained within the second geometry. |
コードのサンプル
Display extent object properties for features.
import arcpy
fc = "c:/Data/Florida.gdb/airports"
# Fetch each feature from the cursor and examine the extent properties
#
for row in arcpy.da.SearchCursor(fc, ["SHAPE@", "CNTY_NAME"]):
ext = row[0].extent
print("Extent of {0}:".format(row[1]))
print("XMin: {0}, YMin: {1}".format(ext.XMin, ext.YMin))
print("XMax: {0}, YMax: {1}".format(ext.XMax, ext.YMax))