本文整理匯總了Java中com.vividsolutions.jts.geom.Geometry.setSRID方法的典型用法代碼示例。如果您正苦於以下問題:Java Geometry.setSRID方法的具體用法?Java Geometry.setSRID怎麽用?Java Geometry.setSRID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.vividsolutions.jts.geom.Geometry
的用法示例。
在下文中一共展示了Geometry.setSRID方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: subGeometry
import com.vividsolutions.jts.geom.Geometry; //導入方法依賴的package包/類
/**
*
* Note: coordinate of endindex will be included
*
* @param geometry
* @param startIndex
* @param endIndex The index of the last point which shall be included in the resulting linestring !!!
* @return
*/
public static Geometry subGeometry(Geometry geometry, int startIndex,
int endIndex) {
Geometry geom = null;
Coordinate[] coords = geometry.getCoordinates();
int length = endIndex + 1 - startIndex;
if (length == 1) {
// point
Coordinate coord = coords[startIndex];
geom = gm.createPoint(coord);
geom.setSRID(geometry.getSRID());
} else if (length > 1) {
// linestring
Coordinate[] newCoords = new Coordinate[length];
System.arraycopy(coords, startIndex, newCoords, 0, length);
geom = gm.createLineString(newCoords);
geom.setSRID(geometry.getSRID());
}
return geom;
}
示例2: createGeometryFromWkt
import com.vividsolutions.jts.geom.Geometry; //導入方法依賴的package包/類
public static Geometry createGeometryFromWkt(String wkt, int srid) throws ParseException {
Geometry geom = createGeometryFromWkt(wkt);
geom.setSRID(srid);
return geom;
}
示例3: distanceOnLineStringInMeter
import com.vividsolutions.jts.geom.Geometry; //導入方法依賴的package包/類
/**
* ACHTUNG
*
* Diese Methode liefert bei Anwendung auf WGS84 Koordinaten falsche Ergebnisse, der Fehler wird
* umso größer, je weiter der zu projizierende Punkt von der Linie entfernt ist und je weiter der Punkt vom Aquator entfernt ist.
* Wenn der zu projizierende Punkt auf der Linie liegt sollte der Fehler 0 sein.
*
* Für Salzburg (ca 13E 48N) beträgt der Fehler auf einer 45° schrägen Linie 38.6% des Abstandes von der Linie. D.h. beträgt
* der Abstand des Punktes von der Linie 5m beträgt der Fehler 1,93m.
*
* @param p
* @param lineString
* @return
*/
public static double distanceOnLineStringInMeter(Point p, LineString lineString) {
if (p.getSRID() != lineString.getSRID()) {
throw new IllegalArgumentException("SRID of parameter p is not the same as from parameter lineString");
}
LocationIndexedLine indexedStartSeg = new LocationIndexedLine(lineString);
LinearLocation startLoc = indexedStartSeg.project(p.getCoordinate());
Geometry cutStartGeom = indexedStartSeg.extractLine(indexedStartSeg.getStartIndex(), startLoc);
cutStartGeom.setSRID(lineString.getSRID());
double lengthInMeter = calculateLengthMeterFromWGS84LineStringAndoyer((LineString) cutStartGeom);
return lengthInMeter;
}