Randall Whitman
Randall Whitman
Is the dependency on #76 the reason I get near-empty `F2jFITPACK.{java,class}` when I made a brief attempt at it - as opposed to missing something other than `core/pom.xml` that would...
For my purposes I got interpolation matching SciPy output, by adapting FITPACK code translated by f2j. https://github.com/randallwhitman/netlib-java/tree/fitpack-interpolation-f2j Up to you whether to keep this issue open for more general interest...
Thanks for reporting this. I assume "version 2.0.0" refers to Spatial Framework for Hadoop. Please let us know the versions of Hive and Hadoop.
Thanks for the details. We do not have Hive-2.3.4 (nor Hadoop-2.8.5) installed, and unfortunately the testing framework has fallen behind - for which I went ahead and filed Esri/spatial-framework-for-hadoop#163. Maybe...
Under Spark-SQL-2.2.0 `SELECT ST_Bin(0.001, ST_Point(0,0));` output a large integer without error.
I wonder if the exception has anything to do with data in a header row. Note `dropoff_latitude` is an argument to `ST_Point`, not directly to `ST_Bin`.
@doublebyte1 Are you able to try out the query on a copy of `trip_data_1.csv` that omits the header row (first line), and see what happens?
Thanks for the additional details. That it reproduces with a minimal query could be very helpful - it might be possible to reproduce without a full installation.
I'm curious what Hive-2.3 will do on the following: ```sql SELECT ST_Bin(1e-3, ST_Point(0,0)); SELECT ST_Bin(1.0-0.999, ST_Point(0,0)); SELECT ST_Bin(0.001, ST_Point("Point(0 0)")); ``` Hive-0.14/HDP-2.2.6 : ``` hive> SELECT ST_Bin(1e-3, ST_Point(0,0)); 4611686015463124500 hive>...
Differing between `0.001` versus `1e-3` is really strange and makes we wonder if there's an issue with Hive's parser.