georuby icon indicating copy to clipboard operation
georuby copied to clipboard

This is intended as a holder for geometric data. The data model roughly follows the OGC.

Results 16 georuby issues
Sort by recently updated
recently updated
newest added

When my model refreshes, I'm getting this error sometimes: ```ruby def read_point i = @position @position += 16 fail EWKBFormatError.new('Truncated data') if @ewkb.length < @position @ewkb.unpack("@#{i}#{@double_mark}#{@double_mark}@*") end ``` I'm getting...

The code ` require 'geo_ruby/shp' GeoRuby::Shp4r::ShpFile.open(shpfile) do |shp| shp.each do |shape| geom = shape.geometry #a GeoRuby SimpleFeature att_data = shape.data #a Hash shp.fields.each do |field| puts att_data[field.name] end end end`...

first line in https://github.com/nofxx/georuby#geojson-support is rendered as > Basic GeoJSON support has been implemented per v1.0 of the {spec}[http://geojson.org/geojson-spec.html].

https://github.com/nofxx/georuby#georuby

Added proper ColumnType::Base according to updated DBF library? Works for me.

- Added null object (ESRI's 0 according to [specs](https://www.esri.com/library/whitepapers/pdfs/shapefile.pdf ) - page 4) when polygons have no outer face definition (clockwise).

`to_polygon` always closes the list of parsed GPX points inside the GPXFile object. Since it is used while parsing the GPX file it always resulted in a closed list of...

The gem changed their interface. They removed the 6th parameter (encoding) for DBF::Column See this commit in dbf project https://github.com/infused/dbf/commit/36065c0951f5be703c8ccbdd3049e51cddb72dde#diff-e0964a9a211a4a80381813c36ddf9141 Please change the Dbf::Field interface to use the changed API