Module: GeoRuby::Shp4r::Dbf

Defined in:
lib/geo_ruby/shp4r/dbf.rb

Defined Under Namespace

Classes: DBFError, DbfRecord, Field, FieldError, Reader, UnpackError

Constant Summary collapse

DBF_HEADER_SIZE =
32
DATE_REGEXP =
/([\d]{4})([\d]{2})([\d]{2})/
VERSION_DESCRIPTIONS =
{
  "02" => "FoxBase",
  "03" => "dBase III without memo file",
  "04" => "dBase IV without memo file",
  "05" => "dBase V without memo file",
  "30" => "Visual FoxPro",
  "31" => "Visual FoxPro with AutoIncrement field",
  "7b" => "dBase IV with memo file",
  "83" => "dBase III with memo file",
  "8b" => "dBase IV with memo file",
  "8e" => "dBase IV with SQL table",
  "f5" => "FoxPro with memo file",
  "fb" => "FoxPro without memo file"
}