com.vividsolutions.jts.geom.GeometryFactory.getDefaultCoordinateSequenceFactory()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.9k)|赞(0)|评价(0)|浏览(90)

本文整理了Java中com.vividsolutions.jts.geom.GeometryFactory.getDefaultCoordinateSequenceFactory()方法的一些代码示例,展示了GeometryFactory.getDefaultCoordinateSequenceFactory()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GeometryFactory.getDefaultCoordinateSequenceFactory()方法的具体详情如下:
包路径:com.vividsolutions.jts.geom.GeometryFactory
类名称:GeometryFactory
方法名:getDefaultCoordinateSequenceFactory

GeometryFactory.getDefaultCoordinateSequenceFactory介绍

暂无

代码示例

代码示例来源:origin: com.vividsolutions/jts

/**
 * Constructs a GeometryFactory that generates Geometries having the given
 * {@link PrecisionModel} and the default CoordinateSequence
 * implementation.
 *
 * @param precisionModel the PrecisionModel to use
 */
public GeometryFactory(PrecisionModel precisionModel) {
 this(precisionModel, 0, getDefaultCoordinateSequenceFactory());
}

代码示例来源:origin: com.vividsolutions/jts

/**
 * Constructs a GeometryFactory that generates Geometries having the given
 * {@link PrecisionModel} and spatial-reference ID, and the default CoordinateSequence
 * implementation.
 *
 * @param precisionModel the PrecisionModel to use
 * @param SRID the SRID to use
 */
public GeometryFactory(PrecisionModel precisionModel, int SRID) {
 this(precisionModel, SRID, getDefaultCoordinateSequenceFactory());
}

代码示例来源:origin: com.vividsolutions/jts-core

/**
 * Constructs a GeometryFactory that generates Geometries having the given
 * {@link PrecisionModel} and spatial-reference ID, and the default CoordinateSequence
 * implementation.
 *
 * @param precisionModel the PrecisionModel to use
 * @param SRID the SRID to use
 */
public GeometryFactory(PrecisionModel precisionModel, int SRID) {
 this(precisionModel, SRID, getDefaultCoordinateSequenceFactory());
}

代码示例来源:origin: com.vividsolutions/jts-core

/**
 * Constructs a GeometryFactory that generates Geometries having the given
 * {@link PrecisionModel} and the default CoordinateSequence
 * implementation.
 *
 * @param precisionModel the PrecisionModel to use
 */
public GeometryFactory(PrecisionModel precisionModel) {
 this(precisionModel, 0, getDefaultCoordinateSequenceFactory());
}

相关文章