Point

Zusammenfassung

A representation of an x,y pair, optionally with measure, height, and ID attributes.

Diskussion

A Point object does not include spatial reference information and is frequently used to construct other geometry objects, including PointGeometry, Polyline, Polygon, and Multipoint objects. In the example below, a Point object is used to create a PointGeometry object.

pt = arcpy.Point(-12683890.6, 5811151.5)
pt_geometry = arcpy.PointGeometry(pt, spatial_reference=arcpy.SpatialReference(3857))

Syntax

 Point ({X}, {Y}, {Z}, {M}, {ID})
ParameterErläuterungDatentyp
X

The X coordinate of the point.

(Der Standardwert ist 0.0)

Double
Y

The Y coordinate of the point.

(Der Standardwert ist 0.0)

Double
Z

The Z coordinate of the point.

(Der Standardwert ist None)

Double
M

The M value of the point.

(Der Standardwert ist None)

Double
ID

The shape ID of the point.

(Der Standardwert ist 0)

Integer

Eigenschaften

EigenschaftErläuterungDatentyp
ID
(Lesen und schreiben)

An integer used to uniquely identify the point.

Integer
M
(Lesen und schreiben)

The measure value of the point.

Double
X
(Lesen und schreiben)

The horizontal coordinate of the point.

Double
Y
(Lesen und schreiben)

The vertical coordinate of the point.

Double
Z
(Lesen und schreiben)

The elevation value of the point.

Double

Methodenübersicht

MethodeErläuterung
clone (point_object)

Clone the Point object.

contains (second_geometry, {relation})

Indicates if the base geometry contains the comparison geometry.

contains is the opposite of within.

Only True relationships are shown in this illustration.

Possible contains relationships
crosses (second_geometry)

Gibt an, ob die beiden Geometrien sich in einer Geometrie mit einem geringeren Shape-Typ überschneiden.

Zwei Polylinien kreuzen sich, wenn sie nur Punkte gemeinsam haben, von denen mindestens einer kein Endpunkt ist. Eine Polylinie und ein Polygon kreuzen sich, wenn sie im Inneren des Polygons eine Polylinie oder einen Punkt (für eine vertikale Linie) gemeinsam haben, die bzw. der nicht der gesamten Polylinie entspricht.

Only True relationships are shown in this illustration.

Mögliche Beziehungen zwischen Überschneidungen
disjoint (second_geometry)

Gibt an, ob die Basis- und die Vergleichsgeometrie keine gemeinsamen Punkte aufweisen.

Zwei Geometrien überschneiden sich, wenn disjoint den Wert False zurückgibt.

Only True relationships are shown in this illustration.

Mögliche Beziehungen zwischen nicht überschneidenden Geometrien
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.

Possible equals relationships
overlaps (second_geometry)

Gibt an, üb die Überschneidung der beiden Geometrien denselben Shape-Typ wie eine der Eingabegeometrien aufweist, aber keiner der Eingabegeometrien entspricht.

Only True relationships are shown in this illustration.

Mögliche Beziehungen bei Überlappungen
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.

Possible touches relationships
within (second_geometry, {relation})

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.

Possible within relationships

The base geometry is within the comparison geometry if the base geometry is the intersection of the geometries and the intersection of their interiors is not empty. within is a Clementini operator, except in the case of an empty base geometry.

Methoden

clone (point_object)
ParameterErläuterungDatentyp
point_object

A Point object.

Point
contains (second_geometry, {relation})
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
relation

The spatial relationship type.

  • BOUNDARY Relationship has no restrictions for interiors or boundaries.
  • CLEMENTINI Interiors of geometries must intersect. Specifying CLEMENTINI is equivalent to specifying None. This is the default.
  • PROPER Boundaries of geometries must not intersect.

(Der Standardwert ist None)

String
Rückgabewert
DatentypErläuterung
Boolean

A return Boolean value of True indicates this geometry contains the second geometry.

crosses (second_geometry)
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
Rückgabewert
DatentypErläuterung
Boolean

Der boolesche Rückgabetyp "True" gibt an, dass sich die beiden Geometrien in einer Geometrie mit einem geringeren Shape-Typ schneiden.

disjoint (second_geometry)
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
Rückgabewert
DatentypErläuterung
Boolean

Der boolesche Rückgabetyp "True" gibt an, dass die beiden Geometrien keine gemeinsamen Punkte aufweisen.

equals (second_geometry)
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
Rückgabewert
DatentypErläuterung
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.

overlaps (second_geometry)
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
Rückgabewert
DatentypErläuterung
Boolean

Der boolesche Rückgabetyp True gibt an, dass die Überschneidung der beiden Geometrien dieselbe Dimension wie eine der Eingabegeometrien aufweist.

touches (second_geometry)
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
Rückgabewert
DatentypErläuterung
Boolean

A return Boolean value of True indicates the boundaries of the geometries intersect.

within (second_geometry, {relation})
ParameterErläuterungDatentyp
second_geometry

A second geometry.

Object
relation

The spatial relationship type.

  • BOUNDARY Relationship has no restrictions for interiors or boundaries.
  • CLEMENTINI Interiors of geometries must intersect. Specifying CLEMENTINI is equivalent to specifying None. This is the default.
  • PROPER Boundaries of geometries must not intersect.

(Der Standardwert ist None)

String
Rückgabewert
DatentypErläuterung
Boolean

A return Boolean value of True indicates this geometry is contained within the second geometry.

Codebeispiel

Point example

Create a Point object and print some of its properties.

import arcpy

# Create point object
point = arcpy.Point(2000, 2500)

# Print point properties
print("Point properties:")
print(" X:  {0}".format(point.X))
print(" Y:  {0}".format(point.Y))
Point example 2

Examine Point objects returned from a Polygon object.

import arcpy

# Create cursor to retrieve Hawaii shape
feature_class = "c:/data/Hawaii.shp"
cursor = arcpy.da.SearchCursor(feature_class, ["SHAPE@"])

for row in cursor:
    # Get the geometry object from the shape field
    print("Number of Hawaiian islands: {0}".format(row[0].partCount))

    # GetPart returns an array of point objects for each part.
    for island in row[0].getPart():
        print("Vertices in island: {0}".format(island.count))
        for point in island:
            print("X: {0}, Y: {1})".format(point.X, point.Y))

Verwandte Themen