Open crawfoal opened 6 years ago
That would be great. The tests in the rgeo
gem have a lot of examples for creating features, so that's a good place to look. For example: https://github.com/rgeo/rgeo/blob/master/test/simple_mercator/point_test.rb
Basically, use rgeo factories (ex: RGeo::Cartesian.simple_factory
, RGeo::Geographic.simple_mercator_factory
) to create the features. Then you can pass the feature to RGeo::GeoJSON.encode(feature)
point = RGeo::Cartesian.simple_factory.point(1, 2)
RGeo::GeoJSON.encode(point)
Frankly, I'm not sure what the purpose of EntityFactory
is either.
I guess the EntityFactory is what you said....to allow you to define your own Features/FeatureCollections or to decode other formats.
I started off extending Feature, but soon found I wanted to make small changes to how it handles property keys, etc. and wanted to avoid overcomplicated monkey patches.
In my case I have lots of properties that I want to refer to in my code. I redefined Feature to fix property names that come in mixed-case, with spaces, or with colons. I use method_missing to treat anything unknown with no args as a property request so I can write myfeature.prop1 instead of myfeature.properties[:prop1]. My geojson is a returned resultset with a precalculated 'distance' property so I sort my collection into nearest first order and have some other helper methods.
@crawfoal would you still be encline to write documentation ? That is one of our current milestones and you could be of a great help!
I would like to use this gem but am having trouble finding information on how to use it. I've read the README for this and rgeo, and most of the documentation for this gem. I've also started looking through the source code and have some questions.
If you're open to it, I'd like to add a getting started wiki. I can get a PR together but would need a little help. Here are some of my questions:
EntityFactory
orFeature
, what type of object do I need to pass in as thegeometry
object (first argument)? I see thatCoder#_encode_geometry
checks to see if it is one of manyRGeo::Feature
objects, but when I looked atRGeo::Feature::Point
I realized that it was a module, not an object. Does thegeometry
object just need to respond to interface laid out inRGeo::Feature::Point
? And maybecoordinates
too, sinceCoder#_encode_geometry
will call that method?EntityFactory
? To me, it doesn't seem any easier to useEntityFactory
to build a feature than it is to just use the feature class itself (i.e.Feature.new(...)
). Is it maybe supposed to serve as a base class for your own customized factories?RGeo::GeoJSON.encode
accept bothEntityFactory
andFeature
/FeatureCollection
objects?I can play around with things in a pry console and try to answer some of my own questions, but I thought it would be helpful to document these here and keep them in mind when writing a getting started guide.
It might also be helpful for me to look at the source code of an application that is using this gem. I found a list of projects that are using the gem (I think it was in an issue somewhere), but it was too hard to find the corresponding source code repos (maybe they're private). Do you have a recommendation for a repo to look at?