Class: GeoRuby::Shp4r::ShpRecord

Inherits:
Object
  • Object
show all
Defined in:
lib/geo_ruby/shp4r/shp_record.rb

Overview

A SHP record : contains both the geometry and the data fields (from the DBF)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(geometry, data) ⇒ ShpRecord

Returns a new instance of ShpRecord.



5
6
7
8
# File 'lib/geo_ruby/shp4r/shp_record.rb', line 5

def initialize(geometry, data)
  @geometry = geometry
  @data = data
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



3
4
5
# File 'lib/geo_ruby/shp4r/shp_record.rb', line 3

def data
  @data
end

#geometryObject (readonly)

Returns the value of attribute geometry.



3
4
5
# File 'lib/geo_ruby/shp4r/shp_record.rb', line 3

def geometry
  @geometry
end

Instance Method Details

#has_null_shape?Boolean

Tests if the geometry is a NULL SHAPE

Returns:

  • (Boolean)


11
12
13
# File 'lib/geo_ruby/shp4r/shp_record.rb', line 11

def has_null_shape?
  @geometry.nil?
end