Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Marmotta Wiki" for 
change notification.

The "GSoC/2015/MARMOTTA-584" page has been changed by Francisco Sumba:
https://wiki.apache.org/marmotta/GSoC/2015/MARMOTTA-584?action=diff&rev1=28&rev2=29

  || CONVEXHULL|| Geometry|| The convex hull of a geometry represents the 
minimum convex geometry that encloses all geometries within the set. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:convexHull(?geom1) ||  {{attachment:convexhull.PNG}} ||
  || BUFFER || Geometry|| This function returns a geometric object that 
represents all Points whose distance from geom1 is less than or equal to the 
radius measured in units.  ||<style="background-color:#008000; color:#FFFFFF;"> 
Implemented || geof:buffer(?geom1, radius, units:anyUnit) ||  
{{attachment:buffer.PNG}} ||
  || DISTANCE || Geometry || Returns the shortest distance in units between any 
two Points in the two geometric objects. ||<style="background-color:#008000; 
color:#FFFFFF;"> Implemented || geof:distance(?geom1, ?geom2,units:anyUnit)||  
{{attachment:distance.PNG}} ||
- || BOUNDARY || Geometry || This function returns the closure of the boundary 
of geom1. ||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:boundary(?geom1) || ||
+ || BOUNDARY || Geometry || This function returns the closure of the boundary 
of geom1. ||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:boundary(?geom1) || {{attachment:boundary.PNG}} ||
- || DIFFERENCE || Geometry || This function returns a geometric object that 
represents all Points in the set difference of geom1 with geom2. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:difference (geom1, geom2) || ||
+ || DIFFERENCE || Geometry || This function returns a geometric object that 
represents all Points in the set difference of geom1 with geom2. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:difference (geom1, geom2) || {{attachment:difference.PNG}} ||
- || ENVELOPE || Geometry || This function returns the minimum bounding box of 
geom1 ||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:envelope (geom1) || ||
+ || ENVELOPE || Geometry || This function returns the minimum bounding box of 
geom1 ||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:envelope (geom1) || {{attachment:envelope.PNG}} ||
- || RELATE || Boolean || ||<style="background-color:#008000; color:#FFFFFF;"> 
Implemented || geof:relate(geom1, geom2, pattern-matrix) || ||
+ || RELATE || Boolean || Returns true if the spatial relationship between 
geom1 and geom2 corresponds to one with acceptable values for the specified 
pattern-matrix. Otherwise, this function returns false. Pattern-matrix 
represents a DE-9IM intersection pattern consisting of T (true) and F (false) 
values. ||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:relate(geom1, geom2, pattern-matrix) || ||
  || SYM DIFFERENCE|| Geometry || This function returns a geometric object that 
represents all Points in the set symmetric difference of geom1 with geom2. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:symDifference(geom1, geom2) || ||
- || UNION || Geometry || This function returns a geometric object that 
represents all Points in the union of geom1 with geom2. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:union(geom1, geom2) || ||
+ || UNION || Geometry || This function returns a geometric object that 
represents all Points in the union of geom1 with geom2. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:union(geom1, geom2) || {{attachment:union.PNG}} ||
  || getSRID || INT || Returns the spatial reference system URI for geom 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:getSRID (geom) || ||
  ||||||||||||<tablestyle="width: 80%">'''EH FUNCTIONS'''||
  || EQUALS || Boolean || Returns TRUE if the given geometries represent the 
same geometry ||<style="background-color:#008000; color:#FFFFFF;"> Implemented 
|| geof:ehEquals(geom1, geom2) || {{attachment:equals.PNG}} ||
  || DISJOINT || Boolean || Returns TRUE if the Geometries do not "spatially 
intersect" - if they do not share any space together. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehDisjoint(geom1, geom2) || {{attachment:disjoint.PNG}} ||
- || MEET || Boolean || Returns TRUE if the geometries have at least one point 
in common, but their interiors do not intersect. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented 
||geof:ehMeet(geom1, geom2) || ||
+ || MEET || Boolean || Returns TRUE if the geometries have at least one point 
in common, but their interiors do not intersect. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented 
||geof:ehMeet(geom1, geom2) || {{attachment:ehmeet.PNG}} ||
- || OVERLAP || Boolean || Returns TRUE if the Geometries share space, are of 
the same dimension, but are not completely contained by each other. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehOverlap(geom1, geom2) || ||
+ || OVERLAP || Boolean || Returns TRUE if the Geometries share space, are of 
the same dimension, but are not completely contained by each other. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehOverlap(geom1, geom2) || {{attachment:ehoverlap.PNG}} ||
- || COVERS || Boolean || Exists if the subject spatialObject spatially covers 
the object spatialObject. DE-9IM: T*TFT*FF*. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehCovers(geom1, geom2) || ||
+ || COVERS || Boolean || Exists if the subject spatialObject spatially covers 
the object spatialObject. DE-9IM: T*TFT*FF*. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehCovers(geom1, geom2) || {{attachment:ehcovers.PNG}} ||
- || COVERED BY || Boolean || Exists if the subject spatialObject is spatially 
covered by the object spatialObject. DE-9IM: TFF*TFT**. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehCoveredBy(geom1, geom2) || ||
+ || COVERED BY || Boolean || Exists if the subject spatialObject is spatially 
covered by the object spatialObject. DE-9IM: TFF*TFT**. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehCoveredBy(geom1, geom2) || {{attachment:ehcoveredby.PNG}} ||
- || INSIDE || Boolean || Exists if the subject spatialObject is spatially 
inside the object spatialObject. DE-9IM: TFF*FFT**. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehInside(geom1, geom2) || ||
+ || INSIDE || Boolean || Exists if the subject spatialObject is spatially 
inside the object spatialObject. DE-9IM: TFF*FFT**. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehInside(geom1, geom2) || {{attachment:ehinside.PNG}} ||
  || CONTAINS || Boolean || Exists if the subject spatialObject spatially 
contains the object spatialObject. DE-9IM: T*TFF*FF*. 
||<style="background-color:#008000; color:#FFFFFF;"> Implemented || 
geof:ehContains(geom1, geom2) || ||
  ||||||||||||<tablestyle="width: 80%">'''RCC FUNCTIONS'''||
  || EQUALS|| Boolean || Returns TRUE if the given geometries represent the 
same geometry ||<style="background-color:#008000; color:#FFFFFF;"> Implemented 
|| geof:rcc8eq(geom1, geom2) || {{attachment:rcc8eq.png}} ||

Reply via email to