Class: Aws::SageMakerGeospatial::Types::Geometry

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb

Overview

The structure representing a Geometry in terms of Type and Coordinates as per GeoJson spec.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#coordinatesArray<Array<Array<Float>>>

The coordinates of the GeoJson Geometry.

Returns:

  • (Array<Array<Array<Float>>>)


540
541
542
543
544
545
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 540

class Geometry < Struct.new(
  :coordinates,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

GeoJson Geometry types like Polygon and MultiPolygon.

Returns:

  • (String)


540
541
542
543
544
545
# File 'gems/aws-sdk-sagemakergeospatial/lib/aws-sdk-sagemakergeospatial/types.rb', line 540

class Geometry < Struct.new(
  :coordinates,
  :type)
  SENSITIVE = []
  include Aws::Structure
end