Class: GeoRuby::Shp4r::ShpRecord
- Inherits:
-
Object
- Object
- GeoRuby::Shp4r::ShpRecord
- Defined in:
- lib/geo_ruby/shp4r/shp.rb
Overview
A SHP record : contains both the geometry and the data fields (from the DBF)
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#geometry ⇒ Object
readonly
Returns the value of attribute geometry.
Instance Method Summary collapse
-
#has_null_shape? ⇒ Boolean
Tests if the geometry is a NULL SHAPE.
-
#initialize(geometry, data) ⇒ ShpRecord
constructor
A new instance of ShpRecord.
Constructor Details
#initialize(geometry, data) ⇒ ShpRecord
Returns a new instance of ShpRecord.
354 355 356 357 |
# File 'lib/geo_ruby/shp4r/shp.rb', line 354 def initialize(geometry, data) @geometry = geometry @data = data end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
352 353 354 |
# File 'lib/geo_ruby/shp4r/shp.rb', line 352 def data @data end |
#geometry ⇒ Object (readonly)
Returns the value of attribute geometry.
352 353 354 |
# File 'lib/geo_ruby/shp4r/shp.rb', line 352 def geometry @geometry end |
Instance Method Details
#has_null_shape? ⇒ Boolean
Tests if the geometry is a NULL SHAPE
360 361 362 |
# File 'lib/geo_ruby/shp4r/shp.rb', line 360 def has_null_shape? @geometry.nil? end |