Constructor SpatialBuffer
- Namespace
- YndigoBlue.Velocity.Functions
- Assembly
- YndigoBlue.Velocity.dll
SpatialBuffer(Geometry, float)
Initializes a new instance of ST_Buffer with a geometry literal and distance.
public SpatialBuffer(Geometry geometryLiteral, float distance)
Parameters
geometryLiteralGeometryThe geometry to buffer.
distancefloatThe buffer distance in coordinate system units.
SpatialBuffer(Geometry, Expression)
Initializes a new instance of ST_Buffer with a geometry literal and distance expression.
public SpatialBuffer(Geometry geometryLiteral, Expression distanceExpression)
Parameters
geometryLiteralGeometryThe geometry to buffer.
distanceExpressionExpressionThe expression that evaluates to the buffer distance.
SpatialBuffer(Column, float)
Initializes a new instance of ST_Buffer with a geometry column and distance.
public SpatialBuffer(Column geometryColumn, float distance)
Parameters
geometryColumnColumnThe geometry column to buffer.
distancefloatThe buffer distance in coordinate system units.
SpatialBuffer(Column, Expression)
Initializes a new instance of ST_Buffer with a geometry column and distance expression.
public SpatialBuffer(Column geometryColumn, Expression distanceExpression)
Parameters
geometryColumnColumnThe geometry column to buffer.
distanceExpressionExpressionThe expression that evaluates to the buffer distance.
SpatialBuffer(Geography, float, UnitOfMeasure)
Initializes a new instance of ST_Buffer with a geography literal, distance, and unit of measure.
public SpatialBuffer(Geography geographyLiteral, float distance, UnitOfMeasure uom)
Parameters
geographyLiteralGeographyThe geography to buffer.
distancefloatThe buffer distance.
uomUnitOfMeasureThe unit of measure for the distance (e.g., meters, kilometers).
SpatialBuffer(Geography, Expression, UnitOfMeasure)
Initializes a new instance of ST_Buffer with a geography literal, distance expression, and unit of measure.
public SpatialBuffer(Geography geographyLiteral, Expression distanceExpression, UnitOfMeasure uom)
Parameters
geographyLiteralGeographyThe geography to buffer.
distanceExpressionExpressionThe expression that evaluates to the buffer distance.
uomUnitOfMeasureThe unit of measure for the distance (e.g., meters, kilometers).
SpatialBuffer(Column, float, UnitOfMeasure)
Initializes a new instance of ST_Buffer with a geography column, distance, and unit of measure.
public SpatialBuffer(Column geographyColumn, float distance, UnitOfMeasure uom)
Parameters
geographyColumnColumnThe geography column to buffer.
distancefloatThe buffer distance.
uomUnitOfMeasureThe unit of measure for the distance (e.g., meters, kilometers).
SpatialBuffer(Column, Expression, UnitOfMeasure)
Initializes a new instance of ST_Buffer with a geography column, distance expression, and unit of measure.
public SpatialBuffer(Column geographyColumn, Expression distanceExpression, UnitOfMeasure uom)
Parameters
geographyColumnColumnThe geography column to buffer.
distanceExpressionExpressionThe expression that evaluates to the buffer distance.
uomUnitOfMeasureThe unit of measure for the distance (e.g., meters, kilometers).