-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Double resolution trimmed in GeoJSONWriter #140
Comments
Thanks for reporting this issue. I saw that too and forgot to file an issue to make this truncation configurable. Unfortunately, right now, it is what it is -- there is no alternative yet. A Pull Request would be gladly accepted :-) If you have to work around it... note that GeoJSONWriter is pluggable, and this particular class has it's |
This is affecting me too. Is there a plan to do anything about this? It appears that this might be the cause of the problem. Wouldn't it be better to have higher precision by default? 6 decimal places gives you an approximate accuracy of 0.11m according to this post (though it depends where the measurement is). While this is probably sufficient for most people, a 7th or 8th decimal place would certainly not hurt. And 8 decimal places would likely future proof this library further. If serialisation size is really a problem then a different format (such as a binary format) should probably be used anyway. |
I agree @SeanTasker . Again, a Pull Request would be gladly accepted :-) BTW while working on https://issues.apache.org/jira/browse/SOLR-11731?focusedCommentId=16402457&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16402457 I empirically found that 7 decimals would produce sufficient precision for an 8-bit encoding of longitude data. |
I am using this library indirectly via JanusGraph and haven't done Java development for some time. I can quite confidently make the change of the hard coded value to 7 or 8 (8 would suit me better) to create a pull request, without setting up my environment to test any change I make (I don't know how long this would take as I pretty much do not know where to start), but I expect a more desirable solution would be something configurable as you previously mentioned. I did fork and clone this repo and had a quick search for What are your thoughts @dsmiley ? |
I definitely don't believe in mutable static variables, sorry. The right place for the setting is on SpatialContextFactory, which the ShapeWriter's have access to in their constructors. The static I kinda wonder how the performance of NumberFormat compares to using BigDecimal like this (From Solr): BigDecimal latitudeDecoded = BigDecimal.valueOf(latDouble).setScale(7, CEILING);
BigDecimal longitudeDecoded = BigDecimal.valueOf(lonDouble).setScale(7, CEILING);
return latitudeDecoded.stripTrailingZeros().toPlainString() + ","
+ longitudeDecoded.stripTrailingZeros().toPlainString(); Of course some perf benchmarking isn't in scope here :-) |
I also don't like mutable statics, the suggestion was more of a slight (albeit bad) "improvement" on the magic numbers to make it configurable. Just to keep you informed. I cloned and made changes to the hard coded value (from 6 to 9) in all occurrences I found. A side note, I had to switch to tag 0.6 to make my changes as JanusGraph 0.2.0 was using that and more recent versions of spatial4j did not work. While this has resolved some of my problems with precision, I am now having problems with ElasticSearch and loss of precision when indexing, I haven't found the cause, it is exhibiting the behaviour of a fixed low precision as well. I realise this isn't this directly relevant to this project, but it looks similar in nature and hunting that down is likely to take preference over fixing this for me. I have forked this repository and if I get the time I will look into a better solution to this before committing anything. |
Hi, I have been experimenting with the WKTWriter, which is also affected by the same problem. Would not it make sense to use the same precision as defined through the precision model for JSON/WKT exports? While the precision seems to be set/used by the JtsSpatialContextFactory/JtsShapeFactory, today, it could also be added to the non Jts counterparts. By additionally using the normX/normY/normZ methods on all shape initializations, the same precision would be used for internal and external representations. EDIT: I submitted a pull request to simplify the customization of the used NumberFormat. |
+1
Yes it could. Since JTS has this capability, when I added this I just let it be a bonus reason to use the JTS context among the other reasons to use JTS.
Yes, that's a good point. Hmm; I wonder why JTS doesn't do this with it's GeometryFactory abstraction. |
If you feel this way, why is the non-JTS version maintained. If it were removed, it would greatly simplify the code, does not it? |
Spatial4j would probably have not existed as-such (as its own lib) were it not for JTS's former license. It was imperative that Spatial4j have useful functionality without depending on JTS. That's not an issue as of JTS 1.15.0 which was re-licensed. With that issue out fo the way, perhaps JTS could become a core requirement. Though there are Shape impls that don't assume JTS. This change would be a big deal and create a lot of work I think. I dunno. |
Great, thank you for the explanation! I am also not sure about this, but have been curious what reasons might exist. |
I'm wondering if there is a reason for setting the lat/lon resolution in GeoJSONWriter to 6 decimal places?
I came across the following SW, NE bounding box from a geocoder
(53.3747317, -2.2614302
53.3747324, -2.2608337)
The GeoJSONWriter (using JtsSpatialContext.GEO) returned the following:
{
"type": "Polygon",
"coordinates": [
[
[
-2.26143,
53.374732
],
[
-2.26143,
53.374732
],
[
-2.260834,
53.374732
],
[
-2.260834,
53.374732
],
[
-2.26143,
53.374732
]
]
]
}
The first and second point are identical, which threw an exception when I tried to index it within Elasticsearch.
Is there an alternative way to convert the Shape to GeoJSON so it does not trim the values?
In the meantime, I am using BigDecimal.valueOf(doubleValue).toPlainString(). Is that something that can / should be changed in Spatial4j?
The text was updated successfully, but these errors were encountered: