Class: ActiveRecord::ConnectionAdapters::RawGeomInfo

Inherits:
Struct
  • Object
show all
Defined in:
lib/postgis_adapter.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#dimensionObject

Returns the value of attribute dimension

Returns:

  • (Object)

    the current value of dimension



288
289
290
# File 'lib/postgis_adapter.rb', line 288

def dimension
  @dimension
end

#sridObject

Returns the value of attribute srid

Returns:

  • (Object)

    the current value of srid



288
289
290
# File 'lib/postgis_adapter.rb', line 288

def srid
  @srid
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



288
289
290
# File 'lib/postgis_adapter.rb', line 288

def type
  @type
end

#with_mObject

Returns the value of attribute with_m

Returns:

  • (Object)

    the current value of with_m



288
289
290
# File 'lib/postgis_adapter.rb', line 288

def with_m
  @with_m
end

#with_zObject

Returns the value of attribute with_z

Returns:

  • (Object)

    the current value of with_z



288
289
290
# File 'lib/postgis_adapter.rb', line 288

def with_z
  @with_z
end

Instance Method Details

#convert!Object



289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
# File 'lib/postgis_adapter.rb', line 289

def convert!
  self.type = "geometry" if self.type.nil? #if geometry the geometrytype constraint is not present : need to set the type here then

  if dimension == 4
    self.with_m = true
    self.with_z = true
  elsif dimension == 3
    if with_m
      self.with_z = false
      self.with_m = true
    else
      self.with_z = true
      self.with_m = false
    end
  else
    self.with_z = false
    self.with_m = false
  end
end