Filter spatially the records in a spatial index using the Hadoop API
get
/spatialviewer/api/v1/hadoop/filter
Filter spatially the records using the Hadoop API. Note that you can use the service response as data source for the Map API to display the results on map. For example:
// Default http method when fetching remote geospatial contents
OM.gv.setHttpMethod("GET");
tweetsLayer = new OM.layer.VectorLayer("Result",
{
def:{
type:OM.layer.VectorLayer.TYPE_DATAPACK,
url:'http://localhost:8045/spatialviewer/api/v1/hadoop/filter?indexName=TweetsJune&queryWindow={"type":"Polygon","coordinates":[[-106, 25, -106, 30, -104, 30, -104, 25, -106, 25]]}&heatMapResult=false&spatialOperation=None',
jsonp: true},
boundingTheme: true});
// Default http method when fetching remote geospatial contents
OM.gv.setHttpMethod("GET");
tweetsLayer = new OM.layer.VectorLayer("Result",
{
def:{
type:OM.layer.VectorLayer.TYPE_DATAPACK,
url:'http://localhost:8045/spatialviewer/api/v1/hadoop/filter?indexName=TweetsJune&queryWindow={"type":"Polygon","coordinates":[[-106, 25, -106, 30, -104, 30, -104, 25, -106, 25]]}&heatMapResult=false&spatialOperation=None',
jsonp: true},
boundingTheme: true});
Request
Query Parameters
-
asynchronous: boolean
if true the operation is runned asynchronously.Default Value:
false
-
dataPath: string
Path of the file or files in HDFS to categorize. Specify this parameter if useIndex is false.
Example: /user/oracle/spatialviewer/tweetsJune.json -
distance: number(double)
The distance is required when the spatialOperation is WithinDistance. For projected data the distance is in the same unit as the unit of projection. For geodetic data the distance is in meters.
Example: 1000 -
fullResult: boolean
if false and asynchronously is false then the response contains the location of the results in HDFS and not the actual results.Default Value:
true
-
heatMapResult: boolean
true if we want to get a heat map as result. If false then the data actual shape will be returned. False by default.Default Value:
false
-
indexName: string
The index name. Specify this parameter if useIndex is true.
Example: TweetsJune -
inputFormatClass: string
The input format class. Optional parameter that can be set if useIndex is false. If the input format class is not specified then the SparkContext's textFile is used.
Example: oracle.spatial.hadoop.vector.geojson.mapred.GeoJsonInputFormat -
jarWithNeededClasses: string
jar name with the user-defined classes like custom RecordInfoProvider or InputFormat. If the InputFormat class or the RecordInfoProvider class is not in the API, or in the hadoop API classes, then a jar with the user-defined classes must be provided. To be able to use this jar the user must add it in the /opt/oracle/oracle-spatial-graph/spatial/web-server/spatialviewer/WEB-INF/lib directory and restart the server. Optional parameter.
Example: myjar.jar -
numberOfColumns: integer(int32)
Number of columns in the heat map grid. 600 by default.
-
numberOfRows: integer(int32)
Number of rows in the heat map grid. 600 by default.
-
outputPath: string
The job output path. Specify this parameter if asynchronous is true.
Example: /user/oracle/spatialviewer/FilterResult -
queryWindow: string
The queryWindow in GeoJSON format.
Note that the query window can be created using the Map API toolbar standard tools like the Rectangle tool:
var queryWindow = toolbar.getBuiltInTool(OM.control.ToolBar.BUILTIN_RECTANGLE).getGeometry().transform(8307).toString();
Example: {"type":"Polygon","coordinates":[[-106, 25, -106, 30, -104, 30, -104, 25, -106, 25]]} -
recordInfoProviderClass: string
The class that provides the spatial information. Specify this parameter if useIndex is false.
Example: oracle.spatial.hadoop.vector.geojson.GeoJsonRecordInfoProvider -
spatialOperation: string
The spatial operation to spatially filter the records. The possible values are None, AnyInteract, IsInside, WithinDistance and Contains. The default value is AnyInteract.
Example: AnyInteract -
srid: integer(int32)
SRID of the geometries. Specify this parameter if useIndex is false.
Example: 8307 -
tolerance: number(double)
Double value that represents the tolerance used when performing spatial operations. Specify this parameter if useIndex is false.
Example: 0.05 -
useIndex: boolean
true if an index is used as input, false otherwise.Default Value:
true
Response
Supported Media Types
- application/json
200 Response
successful request
Root Schema : RecordsInfo
Type:
Show Source
object
-
copyright(optional):
string
Example:
Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
-
features(optional):
array features
-
geodetic(optional):
boolean
true if the geometries are geodetic, false otherwise.Example:
true
-
srs(optional):
integer(int32)
SRID of the geometries.Example:
8307
-
type(optional):
string
Example:
FeatureCollection
Nested Schema : Feature
Type:
Show Source
object
-
_id(optional):
string
Feature id.Example:
1
-
geometry(optional):
object Geometry
-
type(optional):
string
Example:
Feature
Nested Schema : Geometry
Type:
Show Source
object
-
coordinates(optional):
array coordinates
-
properties(optional):
object properties
Extra fields of the filtered records (see 2.8.2.1 Spatial Indexing Class Structure). For example we can have extra fields named followers_count, friends_count, location and user_id
-
type(optional):
string
Example:
Point
Nested Schema : properties
Type:
object
Extra fields of the filtered records (see 2.8.2.1 Spatial Indexing Class Structure). For example we can have extra fields named followers_count, friends_count, location and user_id
Show Source
-
followers_count(optional):
string
Example:
70
-
friends_count(optional):
string
Example:
51
-
location(optional):
string
Example:
Canada
-
user_id(optional):
string
Example:
5039703
202 Response
accepted asynchronous request
Root Schema : AsyncHadoopFilterJobResponse
Type:
Show Source
object
-
o:successCode(optional):
string
The success code.Example:
SV-05012
-
response(optional):
string
The response contains the location of the resource manager web application URL to track the job (see in the configuration the Hadoop parameter yarn.resourcemanager.webapp.address).Example:
http://resource.manager.webapp:8088
-
status(optional):
string
success or errorExample:
success
-
title(optional):
string
Service title.Example:
Spatial Hadoop filter.
Examples
The following example shows how to filter using a Hadoop index by submitting a GET request on the REST resource using cURL.
curl -v -X GET "http://localhost:8045/spatialviewer/api/v1/hadoop/filter?fullResult=true&queryWindow=\{\"type\":\"Polygon\",\"coordinates\":\[\[-106,25,-106,30,-104,30,-104,25,-106,25\]\]\}&useIndex=true&indexName=tweetsJanuary" -H "accept: application/json"
Example of Response Header
The following shows an example of the response header.
HTTP/1.1 200 OK Date: Wed, 15 Nov 2017 17:50:38 GMT Access-Control-Allow-Origin: * Access-Control-Allow-Credentials: true Access-Control-Allow-Methods: GET, POST, DELETE, PUT Access-Control-Allow-Headers: Content-Type, Accept Transfer-Encoding: chunked Content-Type: application/json
Example of Response Body
The following example shows the contents of the response body in JSON format, including one record:
{"type":"FeatureCollection", "copyright":"Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.", "srs":8307, "geodetic":true,"features":[{"type":"Feature","_id":"4789","geometry":{"type":"Point","coordinates":[-105.49998,28.19997]},"properties":{"friends_count":"199","location":"Chihuahua","user_id":"4092140","followers_count":"13"}}]}