Extent (arcpy)
Resumen
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.
Debate
When used as input to Extensión 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.
Sintaxis
Parámetro | Explicación | Tipo de datos |
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 |
Propiedades
Propiedad | Explicación | Tipo de datos |
MMax (Sólo lectura) |
The extent MMax value. None if no M value. | Double |
MMin (Sólo lectura) |
The extent MMin value. None if no M value. | Double |
XMax (Sólo lectura) |
The extent XMax value. | Double |
XMin (Sólo lectura) |
The extent XMin value. | Double |
YMax (Sólo lectura) |
The extent YMax value. | Double |
YMin (Sólo lectura) |
The extent YMin value. | Double |
ZMax (Sólo lectura) |
The extent ZMax value. None if no Z value. | Double |
ZMin (Sólo lectura) |
The extent ZMin value. None if no Z value. | Double |
depth (Sólo lectura) |
The extent depth value. None if no depth. | Double |
height (Sólo lectura) |
The extent height value. | Double |
lowerLeft (Sólo lectura) |
The lower left property: A point object is returned. | Point |
lowerRight (Sólo lectura) |
The lower right property: A point object is returned. | Point |
spatialReference (Sólo lectura) | The spatial reference of the extent. | SpatialReference |
upperLeft (Sólo lectura) |
The upper left property: A point object is returned. | Point |
upperRight (Sólo lectura) |
The upper right property: A point object is returned | Point |
width (Sólo lectura) |
The extent width value. | Double |
Descripción general de los métodos
Método | Explicación |
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. |
Métodos
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean |
A return Boolean value of True indicates this geometry contains the second geometry. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean | A return Boolean value of True indicates the two geometries intersect in a geometry of a lesser shape type. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean | A return Boolean value of True indicates that the two geometries share no points in common. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
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. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean | A return Boolean value of True indicates the intersection of the two geometries has the same dimension as one of the input geometries. |
Parámetro | Explicación | Tipo de datos |
spatial_reference |
The new spatial reference. This can be a SpatialReference object or the coordinate system name. | SpatialReference |
transformation_name | The geotransformation name. | String |
Tipo de datos | Explicación |
Object |
The projected geometry. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean | A return Boolean value of True indicates the boundaries of the geometries intersect. |
Parámetro | Explicación | Tipo de datos |
second_geometry |
A second geometry. | Object |
Tipo de datos | Explicación |
Boolean | A return Boolean value of True indicates this geometry is contained within the second geometry. |
Ejemplo de código
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))