Module: RGeo::Feature::Geometry

Extended by:
Type
Included in:
Curve, GeometryCollection, Point, Surface, Geos::CAPIGeometryImpl, Geos::FFIGeometryImpl
Defined in:
lib/rgeo/feature/geometry.rb

Overview

SFS 1.1 Description

Geometry is the root class of the hierarchy. Geometry is an abstract (non-instantiable) class.

The instantiable subclasses of Geometry defined in this International Standard are restricted to 0, 1 and 2-dimensional geometric objects that exist in 2-dimensional coordinate space (R2).

All instantiable Geometry classes described in this part of ISO 19125 are defined so that valid instances of a Geometry class are topologically closed, i.e. all defined geometries include their boundary.

Notes

Geometry is defined as a module and is provided primarily for the sake of documentation. Implementations need not necessarily include this module itself. Therefore, you should not depend on the result of is_a?(Geometry) to check type. Instead, use the provided check_type class method (or === operator) defined in the Type module.

Some implementations may support higher dimensional objects or coordinate systems, despite the limits of the SFS.

Forms of equivalence

The Geometry model defines three forms of equivalence.

  • Spatial equivalence is the weakest form of equivalence, indicating that the objects represent the same region of space, but may be different representations of that region. For example, POINT(0 0) and a MULTIPOINT(0 0) are spatially equivalent, as are LINESTRING(0 0, 10 10) and GEOMETRYCOLLECTION(POINT(0 0), LINESTRING(0 0, 10 10, 0 0)). As a general rule, objects must have factories that are Factory#eql? in order to be spatially equivalent.

  • Representational equivalence is a stronger form, indicating that the objects have the same representation, but may be different objects. All representationally equivalent objects are spatially equivalent, but not all spatially equivalent objects are representationally equivalent. For example, none of the examples in the spatial equivalence section above are representationally equivalent. However, two separate objects that both represent POINT(1 2) are representationally equivalent as well as spatially equivalent.

  • Objective equivalence is the strongest form, indicating that the references refer to the same object. Of course, all pairs of references with the same objective identity are also both representationally and spatially equivalent.

Different methods test for different types of equivalence:

  • equals? and == test for spatial equivalence.

  • rep_equals? and eql? test for representational equivalence.

  • equal? tests for objective equivalence.

All ruby objects must provide a suitable test for objective equivalence. Normally, this is simply provided by the Ruby Object base class. Geometry implementations should normally also provide tests for representational and spatial equivalence, if possible. The == operator and the eql? method are standard Ruby methods that are often expected to be usable for every object. Therefore, if an implementation cannot provide a suitable test for their equivalence types, they must degrade to use a stronger form of equivalence.

Instance Method Summary collapse

Methods included from Type

add_subtype, check_type, each_immediate_subtype, extended, subtype_of?, supertype, type_name

Instance Method Details

#*(other) ⇒ Object

If the given rhs is a geometry object, this operator must behave the same as the intersection method. The behavior for other rhs types is not specified; an implementation may choose to provide additional capabilities as appropriate.



710
711
712
# File 'lib/rgeo/feature/geometry.rb', line 710

def *(other)
  intersection(other)
end

#+(other) ⇒ Object

If the given rhs is a geometry object, this operator must behave the same as the union method. The behavior for other rhs types is not specified; an implementation may choose to provide additional capabilities as appropriate.



701
702
703
# File 'lib/rgeo/feature/geometry.rb', line 701

def +(other)
  union(other)
end

#-(other) ⇒ Object

If the given rhs is a geometry object, this operator must behave the same as the difference method. The behavior for other rhs types is not specified; an implementation may choose to provide additional capabilities as appropriate.



692
693
694
# File 'lib/rgeo/feature/geometry.rb', line 692

def -(other)
  difference(other)
end

#==(other) ⇒ Object

This operator should behave almost the same as the equals? method, with two key differences.

First, the == operator is required to handle rhs values that are not geometry objects (returning false in such cases) in order to fulfill the standard Ruby contract for the == operator, whereas the equals? method may assume that any rhs is a geometry.

Second, the == operator should always be defined. That is, it should never raise Error::UnsupportedOperation. In cases where the underlying implementation cannot provide a spatial equivalence test, the == operator must fall back on representational or objective equivalence.



675
676
677
678
679
680
681
682
683
684
685
# File 'lib/rgeo/feature/geometry.rb', line 675

def ==(other)
  if other.is_a?(RGeo::Feature::Instance)
    begin
      equals?(other)
    rescue Error::UnsupportedOperation
      eql?(other)
    end
  else
    false
  end
end

#as_binaryObject

SFS 1.1 Description

Exports this geometric object to a specific Well-known Binary Representation of Geometry.

Notes

Returns a binary string.



208
209
210
# File 'lib/rgeo/feature/geometry.rb', line 208

def as_binary
  raise Error::UnsupportedOperation, "Method #{self.class}#as_binary not defined."
end

#as_textObject

SFS 1.1 Description

Exports this geometric object to a specific Well-known Text Representation of Geometry.

Notes

Returns an ASCII string.



195
196
197
# File 'lib/rgeo/feature/geometry.rb', line 195

def as_text
  raise Error::UnsupportedOperation, "Method #{self.class}#as_text not defined."
end

#boundaryObject

SFS 1.1 Description

Returns the closure of the combinatorial boundary of this geometric object. Because the result of this function is a closure, and hence topologically closed, the resulting boundary can be represented using representational Geometry primitives.

Notes

Returns an object that supports the Geometry interface.



277
278
279
# File 'lib/rgeo/feature/geometry.rb', line 277

def boundary
  raise Error::UnsupportedOperation, "Method #{self.class}#boundary not defined."
end

#buffer(_distance_) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents all Points whose distance from this geometric object is less than or equal to distance. Calculations are in the spatial reference system of this geometric object.

Notes

Returns an object that supports the Geometry interface.



516
517
518
# File 'lib/rgeo/feature/geometry.rb', line 516

def buffer(_distance_)
  raise Error::UnsupportedOperation, "Method #{self.class}#buffer not defined."
end

#contains?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object “spatially contains” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



410
411
412
# File 'lib/rgeo/feature/geometry.rb', line 410

def contains?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#contains? not defined."
end

#convex_hullObject

SFS 1.1 Description

Returns a geometric object that represents the convex hull of this geometric object.

Notes

Returns an object that supports the Geometry interface.



529
530
531
# File 'lib/rgeo/feature/geometry.rb', line 529

def convex_hull
  raise Error::UnsupportedOperation, "Method #{self.class}#convex_hull not defined."
end

#coordinate_dimensionInteger

SFS 1.2 Description

The coordinate dimension is the dimension of direct positions (coordinate tuples) used in the definition of this geometric object

Notes

Difference between this and dimension is that this is the dimension of the coordinate not the dimension of the geometry.

Returns:

  • (Integer)

Raises:



121
122
123
# File 'lib/rgeo/feature/geometry.rb', line 121

def coordinate_dimension
  raise Error::UnsupportedOperation, "Method #{self.class}#coordinate_dimension not defined."
end

#crosses?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object “spatially crosses” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



372
373
374
# File 'lib/rgeo/feature/geometry.rb', line 372

def crosses?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#crosses? not defined."
end

#difference(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents the Point set difference of this geometric object with another_geometry.

Notes

Returns an object that supports the Geometry interface.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of performing operations on objects from different factories is undefined.



583
584
585
# File 'lib/rgeo/feature/geometry.rb', line 583

def difference(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#difference not defined."
end

#dimensionObject

SFS 1.1 Description

The inherent dimension of this geometric object, which must be less than or equal to the coordinate dimension. This specification is restricted to geometries in 2-dimensional coordinate space.

Notes

Returns an integer. This value is -1 for an empty geometry, 0 for point geometries, 1 for curves, and 2 for surfaces.



106
107
108
# File 'lib/rgeo/feature/geometry.rb', line 106

def dimension
  raise Error::UnsupportedOperation, "Method #{self.class}#dimension not defined."
end

#disjoint?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object is “spatially disjoint” from another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



315
316
317
# File 'lib/rgeo/feature/geometry.rb', line 315

def disjoint?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#disjoint? not defined."
end

#distance(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns the shortest distance between any two Points in the two geometric objects as calculated in the spatial reference system of this geometric object.

Notes

Returns a floating-point scalar value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of measuring the distance between objects from different factories is undefined.



501
502
503
# File 'lib/rgeo/feature/geometry.rb', line 501

def distance(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#distance not defined."
end

#empty?Boolean

SFS 1.1 Description

Returns true if this geometric object is the empty Geometry. If true, then this geometric object represents the empty point set for the coordinate space.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Returns:

  • (Boolean)

Raises:



223
224
225
# File 'lib/rgeo/feature/geometry.rb', line 223

def empty?
  raise Error::UnsupportedOperation, "Method #{self.class}#empty? not defined."
end

#envelopeObject

SFS 1.1 Description

The minimum bounding box for this Geometry, returned as a Geometry. The polygon is defined by the corner points of the bounding box [(MINX, MINY), (MAXX, MINY), (MAXX, MAXY), (MINX, MAXY), (MINX, MINY)].

Notes

Returns an object that supports the Geometry interface.



182
183
184
# File 'lib/rgeo/feature/geometry.rb', line 182

def envelope
  raise Error::UnsupportedOperation, "Method #{self.class}#envelope not defined."
end

#eql?(other) ⇒ Boolean

This method should behave almost the same as the rep_equals? method, with two key differences.

First, the eql? method is required to handle rhs values that are not geometry objects (returning false in such cases) in order to fulfill the standard Ruby contract for the method, whereas the rep_equals? method may assume that any rhs is a geometry.

Second, the eql? method should always be defined. That is, it should never raise Error::UnsupportedOperation. In cases where the underlying implementation cannot provide a representational equivalence test, this method must fall back on objective equivalence.

Returns:

  • (Boolean)


649
650
651
652
653
654
655
656
657
658
659
# File 'lib/rgeo/feature/geometry.rb', line 649

def eql?(other)
  if other.is_a?(RGeo::Feature::Instance)
    begin
      rep_equals?(other)
    rescue Error::UnsupportedOperation
      equal?(other)
    end
  else
    false
  end
end

#equals?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object is “spatially equal” to another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



296
297
298
# File 'lib/rgeo/feature/geometry.rb', line 296

def equals?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#equals? not defined."
end

#factoryObject

Returns a factory for creating features related to this one. This does not necessarily need to be the same factory that created this object, but it should create objects that are “compatible” with this one. (i.e. they should be in the same spatial reference system by default, and it should be possible to perform relational operations on them.)



91
92
93
# File 'lib/rgeo/feature/geometry.rb', line 91

def factory
  raise Error::UnsupportedOperation, "Method #{self.class}#factory not defined."
end

#geometry_typeObject

SFS 1.1 Description

Returns the instantiable subtype of Geometry of which this geometric object is an instantiable member.

Notes

Returns one of the type modules in RGeo::Feature. e.g. a point object would return RGeo::Feature::Point. Note that this is different from the SFS specification, which stipulates that the string name of the type is returned. To obtain the name string, call the type_name method of the returned module.



153
154
155
# File 'lib/rgeo/feature/geometry.rb', line 153

def geometry_type
  raise Error::UnsupportedOperation, "Method #{self.class}#geometry_type not defined."
end

#intersection(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents the Point set intersection of this geometric object with another_geometry.

Notes

Returns an object that supports the Geometry interface.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of performing operations on objects from different factories is undefined.



547
548
549
# File 'lib/rgeo/feature/geometry.rb', line 547

def intersection(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#intersection not defined."
end

#intersects?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object “spatially intersects” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



334
335
336
# File 'lib/rgeo/feature/geometry.rb', line 334

def intersects?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#intersects? not defined."
end

#is_3d?Boolean

SFS 1.2 Description

Returns 1 (TRUE) if this geometric object has z coordinate values.

Notes

Returns:

  • (Boolean)

Raises:



251
252
253
# File 'lib/rgeo/feature/geometry.rb', line 251

def is_3d?
  raise Error::UnsupportedOperation, "Method #{self.class}#is_3d? not defined."
end

#locate_alongRGeo::Feature::GeometryCollection

SFS 1.2 Description

Returns a derived geometry collection value that matches the specified m coordinate value.

Notes

Parameters:

  • m_value (Float)

    value to find matches for

Returns:

Raises:



468
469
470
# File 'lib/rgeo/feature/geometry.rb', line 468

def locate_along
  raise Error::UnsupportedOperation, "Method #{self.class}#locate_along not defined."
end

#locate_betweenRGeo::Feature::GeometryCollection

SFS 1.2 Description

Returns a derived geometry collection value that matches the specified range of m coordinate values inclusively

Notes

Parameters:

  • m_start (Float)

    lower bound of value range

  • m_end (Float)

    upper bound of value range

Returns:

Raises:



482
483
484
# File 'lib/rgeo/feature/geometry.rb', line 482

def locate_between
  raise Error::UnsupportedOperation, "Method #{self.class}#locate_between not defined."
end

#measured?Boolean

SFS 1.2 Description

Returns 1 (TRUE) if this geometric object has m coordinate values.

Notes

Returns:

  • (Boolean)

Raises:



262
263
264
# File 'lib/rgeo/feature/geometry.rb', line 262

def measured?
  raise Error::UnsupportedOperation, "Method #{self.class}#measured? not defined."
end

#overlaps?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object “spatially overlaps” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



429
430
431
# File 'lib/rgeo/feature/geometry.rb', line 429

def overlaps?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#overlaps? not defined."
end

#relate?(_another_geometry, _intersection_pattern_matrix_) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object is spatially related to another_geometry by testing for intersections between the interior, boundary and exterior of the two geometric objects as specified by the values in the intersection_pattern_matrix.

Notes

The intersection_pattern_matrix is provided as a nine-character string in row-major order, representing the dimensionalities of the different intersections in the DE-9IM. Supported characters include T, F, *, 0, 1, and 2.

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



455
456
457
# File 'lib/rgeo/feature/geometry.rb', line 455

def relate?(_another_geometry, _intersection_pattern_matrix_)
  raise Error::UnsupportedOperation, "Method #{self.class}#relate not defined."
end

#rep_equals?(_another_geometry) ⇒ Boolean

Returns true if this geometric object is representationally equivalent to the given object.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



613
614
615
# File 'lib/rgeo/feature/geometry.rb', line 613

def rep_equals?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#rep_equals? not defined."
end

#simple?Boolean

SFS 1.1 Description

Returns true if this geometric object has no anomalous geometric points, such as self intersection or self tangency. The description of each instantiable geometric class will include the specific conditions that cause an instance of that class to be classified as not simple.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Returns:

  • (Boolean)

Raises:



240
241
242
# File 'lib/rgeo/feature/geometry.rb', line 240

def simple?
  raise Error::UnsupportedOperation, "Method #{self.class}#simple? not defined."
end

#spatial_dimensionInteger

SFS 1.2 Description

The spatial dimension is the dimension of the spatial portion of the direct positions (coordinate tuples) used in the definition of this geometric object. If the direct positions do not carry a measure coordinate, this will be equal to the coordinate dimension.

Notes

Similar to coordinate_dimension except it will ignore the M component always.

Returns:

  • (Integer)

Raises:



136
137
138
# File 'lib/rgeo/feature/geometry.rb', line 136

def spatial_dimension
  raise Error::UnsupportedOperation, "Method #{self.class}#spatial_dimension not defined."
end

#sridObject

SFS 1.1 Description

Returns the Spatial Reference System ID for this geometric object.

Notes

Returns an integer.

This will normally be a foreign key to an index of reference systems stored in either the same or some other datastore.



168
169
170
# File 'lib/rgeo/feature/geometry.rb', line 168

def srid
  raise Error::UnsupportedOperation, "Method #{self.class}#srid not defined."
end

#sym_difference(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents the Point set symmetric difference of this geometric object with another_geometry.

Notes

Returns an object that supports the Geometry interface.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of performing operations on objects from different factories is undefined.



601
602
603
# File 'lib/rgeo/feature/geometry.rb', line 601

def sym_difference(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#sym_difference not defined."
end

#touches?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object “spatially touches” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



353
354
355
# File 'lib/rgeo/feature/geometry.rb', line 353

def touches?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#touches? not defined."
end

#transform(other_factory) ⇒ RGeo::Feature::Geometry

Convenience method to transform/project a geometry to a different coordinate system from the geometry itself instead of the cast method.

@note: Not an OGC SFS method

Parameters:

Returns:



722
723
724
# File 'lib/rgeo/feature/geometry.rb', line 722

def transform(other_factory)
  Feature.cast(self, factory: other_factory, project: true)
end

#unary_unionObject

Unions a collection of Geometry or a single Geometry (which may be a collection) together. By using this special-purpose operation over a collection of geometries it is possible to take advantage of various optimizations to improve performance. Heterogeneous GeometryCollections are fully supported.

This is not a standard SFS method, but when it is available in GEOS, it is a very performant way to union all the geometries in a collection. GEOS version 3.3 or greater is required. If the feature is not available, unary_union returns nil.



630
631
632
# File 'lib/rgeo/feature/geometry.rb', line 630

def unary_union
  raise Error::UnsupportedOperation, "Method #{self.class}#unary_union not defined."
end

#union(_another_geometry) ⇒ Object

SFS 1.1 Description

Returns a geometric object that represents the Point set union of this geometric object with another_geometry.

Notes

Returns an object that supports the Geometry interface.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of performing operations on objects from different factories is undefined.



565
566
567
# File 'lib/rgeo/feature/geometry.rb', line 565

def union(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#union not defined."
end

#within?(_another_geometry) ⇒ Boolean

SFS 1.1 Description

Returns true if this geometric object is “spatially within” another_geometry.

Notes

Returns a boolean value. Note that this is different from the SFS specification, which stipulates an integer return value.

Although implementations are free to attempt to handle another_geometry values that do not share the same factory as this geometry, strictly speaking, the result of comparing objects from different factories is undefined.

Returns:

  • (Boolean)

Raises:



391
392
393
# File 'lib/rgeo/feature/geometry.rb', line 391

def within?(_another_geometry)
  raise Error::UnsupportedOperation, "Method #{self.class}#within? not defined."
end