Update Example.java
1 file changed
tree: e580c304bc8d980ca0de558822b70cf7c47d8da4
  1. doc/
  2. src/
  3. .gitignore
  4. .travis.yml
  5. dependency-reduced-pom.xml
  6. LICENSE
  7. pom.xml
  8. README.md
README.md

GeoSpark Logo

Build Status

Version information

VersionSummary
0.1Support spatial range, join and Knn
0.2Improve code structure and refactor API
0.3Support load balanced spatial partitioning methods (also serve as the global index); Optimize code for iterative spatial data mining
mastereven with 0.3

GeoSpark is a cluster computing system for processing large-scale spatial data. GeoSpark extends Apache Spark with a set of out-of-the-box Spatial Resilient Distributed Datasets (SRDDs) that efficiently load, process, and analyze large-scale spatial data across machines. This problem is quite challenging due to the fact that (1) spatial data may be quite complex, e.g., rivers' and cities' geometrical boundaries, (2) spatial (and geometric) operations (e.g., Overlap, Intersect, Convex Hull, Cartographic Distances) cannot be easily and efficiently expressed using regular RDD transformations and actions. GeoSpark provides APIs for Apache Spark programmer to easily develop their spatial analysis programs with Spatial Resilient Distributed Datasets (SRDDs) which have in house support for geometrical and distance operations. Experiments show that GeoSpark is scalable and exhibits faster run-time performance than Hadoop-based systems in spatial analysis applications like spatial join, spatial aggregation, spatial autocorrelation analysis and spatial co-location pattern recognition.

How to get started (For Scala and Java developers)

Prerequisites

  1. Apache Hadoop 2.4.0 and later
  2. Apache Spark 1.2.1 and later
  3. JDK 1.7

Note: GeoSpark has been tested on Apache Spark 1.2, 1.3, 1.4, 1.5 and Apache Hadoop 2.4, 2.6.

Steps

  1. Create your own Apache Spark project
  2. Add GeoSpark.jar into your Apache Spark build environment
  3. You can now use GeoSpark spatial RDDs in your Apache Spark program to store spatial data and call needed functions!

GeoSpark Programming Examples (Java)

Spatial queries Java example in “org.datasyslab.geospark.showcase” folder: Spatial range, join and KNN.

GeoSpark Programming Examples (Scala)

####Spatial range query

var objectRDD = new RectangleRDD(sc, inputLocation, offset, splitter);

var resultSize = RangeQuery.SpatialRangeQuery(objectRDD, queryEnvelope, 0).getRawRectangleRDD().count();

####Spatial KNN query

var objectRDD = new RectangleRDD(sc, inputLocation, offset, splitter);

var result = KNNQuery.SpatialKnnQuery(objectRDD, queryPoint, 1000); ####Spatial join query with index var rectangleRDD = new RectangleRDD(sc, inputLocation2, offset2, splitter2);

var objectRDD = new RectangleRDD(sc, inputLocation, offset ,splitter,gridType,numPartitions);

objectRDD.buildIndex("rtree");

var joinQuery = new JoinQuery(sc,objectRDD,rectangleRDD);

var resultSize = joinQuery.SpatialJoinQueryUsingIndex(objectRDD,rectangleRDD).count();

Scala and Java API usage

Please refer GeoSpark Scala and Java API Usage

Spatial Resilient Distributed Datasets (SRDDs)

GeoSpark extends RDDs to form Spatial RDDs (SRDDs) and efficiently partitions SRDD data elements across machines and introduces novel parallelized spatial (geometric operations that follows the Open Geosptial Consortium (OGC) standard) transformations and actions (for SRDD) that provide a more intuitive interface for users to write spatial data analytics programs. Moreover, GeoSpark extends the SRDD layer to execute spatial queries (e.g., Range query, KNN query, and Join query) on large-scale spatial datasets. After geometrical objects are retrieved in the Spatial RDD layer, users can invoke spatial query processing operations provided in the Spatial Query Processing Layer of GeoSpark which runs over the in-memory cluster, decides how spatial object-relational tuples could be stored, indexed, and accessed using SRDDs, and returns the spatial query results required by user.

GeoSpark supports either Comma-Separated Values (CSV) or Tab-separated values (TSV) as the input format. Users only need to specify input format as Splitter and the start column of spatial info in one tuple as Offset when call Constructors.

PointRDD

(column, column,..., Longitude, Latitude, column, column,...)

RectangleRDD

(column, column,...,Longitude 1, Longitude 2, Latitude 1, Latitude 2,column, column,...)

Two pairs of longitude and latitude present the vertexes lie on the diagonal of one rectangle.

PolygonRDD

(column, column,...,Longitude 1, Latitude 1, Longitude 2, Latitude 2, ...)

Each tuple contains unlimited points.

Spatial partitioning

GeoSpark supports equal size, R-Tree and Voronoi diagram spatial partitioning methods. Spatial partitioning is to repartition RDD according to objects' spatial locations. Spatial join on spatial paritioned RDD will be very fast.

Spatial Index

GeoSpark supports two Spatial Indexes, Quad-Tree and R-Tree.

Geometrical operation

GeoSpark currently provides native support for Inside, Overlap, DatasetBoundary, Minimum Bounding Rectangle and Polygon Union in SRDDS following Open Geospatial Consortium (OGC) standard.

Spatial Operation

GeoSpark so far provides spatial range query, join query and KNN query in SRDDs.

Publication

Jia Yu, Jinxuan Wu, Mohamed Sarwat. “A Demonstration of GeoSpark: A Cluster Computing Framework for Processing Big Spatial Data”. (demo paper) In Proceeding of IEEE International Conference on Data Engineering ICDE 2016, Helsinki, FI, May 2016

Jia Yu, Jinxuan Wu, Mohamed Sarwat. “GeoSpark: A Cluster Computing Framework for Processing Large-Scale Spatial Data”. (short paper) In Proceeding of the ACM International Conference on Advances in Geographic Information Systems ACM SIGSPATIAL GIS 2015, Seattle, WA, USA November 2015

Acknowledgement

GeoSaprk makes use of JTS Plus (An extended JTS Topology Suite Version 1.14) for some geometrical computations.

Please refer to JTS Topology Suite website and JTS Plus for more details.

Contact

Contributors

###Project website Please visit GeoSpark project wesbite for latest news and releases.

DataSys Lab

GeoSpark is one of the projects under DataSys Lab at Arizona State University. The mission of DataSys Lab is designing and developing experimental data management systems (e.g., database systems).