You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MultyPolygon coordinates are represented by array of Polygon objects; however, according to the standard, they should be represented as array of arrays of polygon coordinates.
Am I correct? My mate has another generator of geojson, and it produces the second variant, that is why I try to understand, which variant should we use.
I do not mind fixing it on my own and pulling, if it is ok
The text was updated successfully, but these errors were encountered:
Ugh I think you are correct, I might be doing the same thing with the multi
line and multi point objects, (I'm not at a computer atm).
I'd be happy if you pulled and fixed them up however I think you will find
most of the time will be spent fixing up doctests, it will be a lot if
iterations of running tests and cutting and pasting the output back into
the code... Sorry to out you through the bother.
Sorry I was going through a doctests phase at the time I wrote this, I've
since moved back to raw quickcheck code cos I find it too tempting to flood
my test suites with unit tests rather than property tests. Makes them a
pain to maintain.
I should probably go through remove them and replace then with props
Sorry again, I'll try to make the library easier to work with
MultyPolygon coordinates are represented by array of Polygon objects; however, according to the standard, they should be represented as array of arrays of polygon coordinates.
For example, yours:
Should be:
http://geojson.org/geojson-spec.html#polygon
http://geojson.org/geojson-spec.html#id7
Am I correct? My mate has another generator of geojson, and it produces the second variant, that is why I try to understand, which variant should we use.
I do not mind fixing it on my own and pulling, if it is ok
The text was updated successfully, but these errors were encountered: