| org.geotools.data.oracle.sdo.CoordinateAccessFactory
CoordinateAccessFactory | public interface CoordinateAccessFactory extends CoordinateSequenceFactory(Code) | | Extends CoordianteSequenceFactory with meta data information.
This allows us to determine the dimensions of a Geometry.
author: jgarnett |
Method Summary | |
public CoordinateAccess | create(double[] xyz, Object[] attributes) Create method that allows additional content.
Example: (x,y,z,t) getDimension()==2, getNumAttributes()==2
xyz:[ [ x1, x2,...,xN], [ y1, y2,...,yN] ]
attributes:[ [ z1, z2,...,zN], [ t1, t2,..., tN] ]
Parameters: xyz - an array of doubles in column major order where xyz.length == getDimension() Parameters: attributes - an array of Objects which can be null. | public int | getDimension() | public int | getNumAttributes() |
create | public CoordinateAccess create(double[] xyz, Object[] attributes)(Code) | | Create method that allows additional content.
Example: (x,y,z,t) getDimension()==2, getNumAttributes()==2
xyz:[ [ x1, x2,...,xN], [ y1, y2,...,yN] ]
attributes:[ [ z1, z2,...,zN], [ t1, t2,..., tN] ]
Parameters: xyz - an array of doubles in column major order where xyz.length == getDimension() Parameters: attributes - an array of Objects which can be null. Column major measure arrays where attributes.length == getNumAttributes() |
getDimension | public int getDimension()(Code) | | Number of spatial ordinates()
|
getNumAttributes | public int getNumAttributes()(Code) | | Number of non spatial ordinates()
|
|
|