Ahmed Eldawy
Ahmed Eldawy
Yes, please. I need this file to write a unit test for this file.
It might be a little late but you need to get the right SpatialHadoop package based on your Hadoop version. For Hadoop 1.x, you need to download the file http://spatialhadoop.cs.umn.edu/downloads/spatialhadoop-2.3.tar.gz...
To run on Hadoop 2.x, you will have to compile it yourself from the source code. Please check the compilation guide at https://github.com/aseldawy/spatialhadoop2/wiki/Compile-SpatialHadoop-from-source
This function computes a set of rectangles that can be used to partition the input files. These rectangles (or cells) are supposed to balance the load such that each cell...
This error indicates that JTS library is not loaded by Hadoop. It happens only with large files because small files are processed using a single-machine algorithm, for efficiency, and do...
You need to provide the type of output shape as either NASAPoint or NASARectangle. For NASAPoint, each value is associated with a single latitude and longitude. To use this type,...
I looked at this error. It seems that the new HDF library I'm using does not yet support LinkedBlocks which happen to be in vegetation files. I'm working on this...
I made some updates to the HDF support in SpatialHadoop and it should now be able to read LinkedBlocks in HDF files. I tried MOD11A1 files and it worked fine....
You need to provide the type of shapes you're generating. You can use the following line for example: $ bin/shadoop generate test mbr:0,0,1000000,1000000 shape:rect I will modify the code to...
No. You don't have to write it inside the core package. You can generate a separate JAR out of it and use it in the command line. Let's say you're...