Uses of Class
org.geotools.grid.GridFeatureBuilder
-
Packages that use GridFeatureBuilder Package Description org.geotools.data.graticule.gridsupport 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.data.graticule.gridsupport
Subclasses of GridFeatureBuilder in org.geotools.data.graticule.gridsupport Modifier and Type Class Description classLineFeatureBuilder -
Uses of GridFeatureBuilder in org.geotools.grid
Subclasses of GridFeatureBuilder in org.geotools.grid Modifier and Type Class Description classDefaultGridFeatureBuilderA basic implementation ofGridFeatureBuilderwhich will create aSimpleFeatureTypehaving 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 booleanPolygonBuilder. buildGrid(GridFeatureBuilder gridFeatureBuilder, double vertexSpacing, ListFeatureCollection fc)static SimpleFeatureSourceGrids. createHexagonalGrid(ReferencedEnvelope bounds, double sideLen, double vertexSpacing, GridFeatureBuilder builder)Creates a vector grid of hexagonal elements represented by 'densified' polygons.static SimpleFeatureSourceLines. createOrthoLines(ReferencedEnvelope bounds, Collection<OrthoLineDef> lineDefs, double vertexSpacing, GridFeatureBuilder lineFeatureBuilder)Creates a grid of ortho-lines.static SimpleFeatureSourceGrids. createOvalGrid(ReferencedEnvelope bounds, double sideLen, GridFeatureBuilder builder)Creates a vector grid of square elements represented by 'densified' polygons.static SimpleFeatureSourceGrids. 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 SimpleFeatureSourceHexagons. 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 SimpleFeatureSourceHexagons. 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 SimpleFeatureSourceOblongs. 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 SimpleFeatureSourceOblongs. 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. -
Uses of GridFeatureBuilder in org.geotools.grid.ortholine
Subclasses of GridFeatureBuilder in org.geotools.grid.ortholine Modifier and Type Class Description classOrthoLineFeatureBuilderA basic implementation ofLineFeatureBuilderwhich will create aSimpleFeatureTypehaving 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 voidOrthoLineBuilder. buildGrid(Collection<OrthoLineDef> lineDefs, GridFeatureBuilder lineFeatureBuilder, double vertexSpacing, ListFeatureCollection fc)Creates line features according to the providedOrthoLineDefobjects 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 SimpleFeatureSourceOvals. 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 SimpleFeatureSourceOvals. 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.
-