Uses of Class
org.geotools.grid.GridFeatureBuilder
-
Packages that use GridFeatureBuilder Package Description org.geotools.grid org.geotools.grid.hexagon org.geotools.grid.oblong org.geotools.grid.ortholine org.geotools.grid.oval -
-
Uses of GridFeatureBuilder in org.geotools.grid
Subclasses of GridFeatureBuilder in org.geotools.grid Modifier and Type Class Description class
DefaultGridFeatureBuilder
A basic implementation ofGridFeatureBuilder
which will create aSimpleFeatureType
having two properties: element - TYPE Polygon id - TYPE Integer The attribute names can also be referred to using DEFAULT_GEOMETRY_ATTRIBUTE_NAME and DefaultGridFeatureBuilder.ID_ATTRIBUTE_NAMEMethods in org.geotools.grid with parameters of type GridFeatureBuilder Modifier and Type Method Description boolean
PolygonBuilder. buildGrid(GridFeatureBuilder gridFeatureBuilder, double vertexSpacing, ListFeatureCollection fc)
static SimpleFeatureSource
Grids. createHexagonalGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, GridFeatureBuilder builder)
Creates a vector grid of hexagonal elements represented by 'densified' polygons.static SimpleFeatureSource
Lines. createOrthoLines(ReferencedEnvelope bounds, Collection<OrthoLineDef> lineDefs, double vertexSpacing, GridFeatureBuilder lineFeatureBuilder)
Creates a grid of ortho-lines.static SimpleFeatureSource
Grids. createOvalGrid(ReferencedEnvelope bounds, double sideLen, GridFeatureBuilder builder)
Creates a vector grid of square elements represented by 'densified' polygons.static SimpleFeatureSource
Grids. createSquareGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, GridFeatureBuilder builder)
Creates a vector grid of square elements represented by 'densified' polygons. -
Uses of GridFeatureBuilder in org.geotools.grid.hexagon
Methods in org.geotools.grid.hexagon with parameters of type GridFeatureBuilder Modifier and Type Method Description static SimpleFeatureSource
Hexagons. createGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, HexagonOrientation orientation, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of tesselated hexagons within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Hexagons. createGrid(ReferencedEnvelope bounds, double sideLen, HexagonOrientation orientation, GridFeatureBuilder gridBuilder)
Creates a new grid of tesselated hexagons within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons. -
Uses of GridFeatureBuilder in org.geotools.grid.oblong
Methods in org.geotools.grid.oblong with parameters of type GridFeatureBuilder Modifier and Type Method Description static SimpleFeatureSource
Oblongs. createGrid(ReferencedEnvelope bounds, double width, double height, double vertexSpacing, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Oblongs. createGrid(ReferencedEnvelope bounds, double width, double height, GridFeatureBuilder gridBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons. -
Uses of GridFeatureBuilder in org.geotools.grid.ortholine
Subclasses of GridFeatureBuilder in org.geotools.grid.ortholine Modifier and Type Class Description class
OrthoLineFeatureBuilder
A basic implementation ofLineFeatureBuilder
which will create aSimpleFeatureType
having two properties: element - TYPE LineString id - TYPE Integer The attribute names can also be referred to using LineFeatureBuilder#DEFAULT_GEOMETRY_ATTRIBUTE_NAME and OrthoLineFeatureBuilder.ID_ATTRIBUTE_NAMEMethods in org.geotools.grid.ortholine with parameters of type GridFeatureBuilder Modifier and Type Method Description void
OrthoLineBuilder. buildGrid(Collection<OrthoLineDef> lineDefs, GridFeatureBuilder lineFeatureBuilder, double vertexSpacing, ListFeatureCollection fc)
Creates line features according to the providedOrthoLineDef
objects and places them into the providedListFeatureCollection
. -
Uses of GridFeatureBuilder in org.geotools.grid.oval
Methods in org.geotools.grid.oval with parameters of type GridFeatureBuilder Modifier and Type Method Description static SimpleFeatureSource
Ovals. createGrid(ReferencedEnvelope bounds, double width, double height, double vertexSpacing, GridFeatureBuilder gridFeatureBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by densified polygons (ie. additional vertices added to each edge).static SimpleFeatureSource
Ovals. createGrid(ReferencedEnvelope bounds, double width, double height, GridFeatureBuilder gridBuilder)
Creates a new grid of oblongs within a bounding rectangle with grid elements represented by simple (ie. undensified) polygons.
-