本文整理了Java中org.locationtech.jts.geom.Geometry.difference()
方法的一些代码示例,展示了Geometry.difference()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.difference()
方法的具体详情如下:
包路径:org.locationtech.jts.geom.Geometry
类名称:Geometry
方法名:difference
[英]Computes a Geometry
representing the closure of the point-set of the points contained in this Geometry
that are not contained in the other
Geometry.
If the result is empty, it is an atomic geometry with the dimension of the left-hand input.
Non-empty GeometryCollection arguments are not supported.
[中]计算一个Geometry
,表示此Geometry
中包含的点集的闭合,该点集不包含在other
几何图形中。
如果结果为空,则它是具有左手输入尺寸的原子几何体。
不支持非空GeometryCollection参数。
代码示例来源:origin: geotools/geotools
public static Geometry difference(Geometry arg0, Geometry arg1) {
if (arg0 == null || arg1 == null) return null;
Geometry _this = arg0;
return _this.difference(arg1);
}
代码示例来源:origin: geotools/geotools
public Geometry difference(Geometry other) {
return geometry.difference(other);
}
代码示例来源:origin: geotools/geotools
@DescribeProcess(
title = "Difference",
description =
"Returns a geometry representing the points that are contained in a geometry but not contained in a second geometry. The result may be a heterogeneous geometry collection."
)
@DescribeResult(description = "Geometry representing the difference of the input geometries")
public static Geometry difference(
@DescribeParameter(name = "a", description = "First input geometry") Geometry a,
@DescribeParameter(name = "b", description = "Second input geometry") Geometry b) {
return a.difference(b);
}
代码示例来源:origin: geotools/geotools
@Override
public Geometry applyInset(Geometry footprint, Geometry granuleBounds, double inset) {
if (footprint != null) {
// we buffer only the portions of the footprint that are not overlapping with
// the granule bounds, and remove them from the footprint
List<LinearRing> boundRings = getRings(granuleBounds);
List<LinearRing> footprintRings = getRings(footprint);
Geometry bufferedOuterRings = buffer(boundRings, Math.max(inset / 100, 1e-9));
List<LineString> internalBorders = filterRings(footprintRings, bufferedOuterRings);
if (!internalBorders.isEmpty()) {
Geometry bufferedInternalRings = buffer(internalBorders, inset);
Geometry difference = footprint.difference(bufferedInternalRings);
footprint = collectPolygons(difference);
}
}
return footprint;
}
代码示例来源:origin: geotools/geotools
bufferCache.set(i, buffer);
g = g.difference(buffer);
代码示例来源:origin: orbisgis/h2gis
/**
* @param a Geometry instance.
* @param b Geometry instance
* @return the difference between two geometries
*/
public static Geometry difference(Geometry a,Geometry b) {
if(a==null || b==null) {
return null;
}
return a.difference(b);
}
}
代码示例来源:origin: locationtech/jts
public static Geometry differenceBA(Geometry a, Geometry b) { return b.difference(a); }
public static Geometry unaryUnion(Geometry a) { return a.union(); }
代码示例来源:origin: locationtech/jts
public static Geometry difference(Geometry a, Geometry b) { return a.difference(b); }
public static Geometry differenceBA(Geometry a, Geometry b) { return b.difference(a); }
代码示例来源:origin: locationtech/jts
public static Geometry difference(Geometry geomA, Geometry geomB, double scaleFactor) {
Geometry[] geom = snapClean(geomA, geomB, scaleFactor);
return geom[0].difference(geom[1]);
}
代码示例来源:origin: locationtech/jts
(new FailureChecker() { void operation() {
b.difference(a);
} }).check(IllegalArgumentException.class);
}
代码示例来源:origin: locationtech/jts
(new FailureChecker() { void operation() {
a.difference(b);
} }).check(IllegalArgumentException.class);
代码示例来源:origin: locationtech/jts
/**
* Computes the set-theoretic difference of two {@link Geometry}s, using enhanced precision.
* @param geom0 the first Geometry
* @param geom1 the second Geometry, to be subtracted from the first
* @return the Geometry representing the set-theoretic difference of the input Geometries.
*/
public Geometry difference(Geometry geom0, Geometry geom1)
{
Geometry[] geom = removeCommonBits(geom0, geom1);
return computeResultPrecision(geom[0].difference(geom[1]));
}
代码示例来源:origin: locationtech/jts
public void difference(String wktA, String wktB, PrecisionModel pm)
throws ParseException
{
System.out.println("-------------------------------------------");
System.out.println("Running example using Precision Model = " + pm);
GeometryFactory fact = new GeometryFactory(pm);
WKTReader wktRdr = new WKTReader(fact);
Geometry A = wktRdr.read(wktA);
Geometry B = wktRdr.read(wktB);
Geometry C = A.difference(B);
System.out.println("A intersection B = " + C);
}
}
代码示例来源:origin: locationtech/jts
public static Geometry invokeGeometryOverlayMethod(int opCode, Geometry g0, Geometry g1)
{
switch (opCode) {
case OverlayOp.INTERSECTION: return g0.intersection(g1);
case OverlayOp.UNION: return g0.union(g1);
case OverlayOp.DIFFERENCE: return g0.difference(g1);
case OverlayOp.SYMDIFFERENCE: return g0.symDifference(g1);
}
throw new IllegalArgumentException("Unknown overlay op code");
}
代码示例来源:origin: locationtech/jts
public static Geometry bufferByChains(Geometry g, double distance,
@Metadata(title="Max Chain Size")
int maxChainSize)
{
if (maxChainSize <= 0)
throw new IllegalArgumentException("Maximum Chain Size must be specified as an input parameter");
Geometry segs = LineHandlingFunctions.extractChains(g, maxChainSize);
double posDist = Math.abs(distance);
Geometry segBuf = bufferByComponents(segs, posDist);
if (distance < 0.0)
return g.difference(segBuf);
return g.union(segBuf);
}
}
代码示例来源:origin: locationtech/jts
public static Geometry lineStringSelfIntersections(LineString line)
{
Geometry lineEndPts = getEndPoints(line);
Geometry nodedLine = line.union(lineEndPts);
Geometry nodedEndPts = getEndPoints(nodedLine);
Geometry selfIntersections = nodedEndPts.difference(lineEndPts);
return selfIntersections;
}
代码示例来源:origin: locationtech/jts
public static double areaDiff(Geometry g0, Geometry g1)
{
double areaA = g0.getArea();
double areaAdiffB = g0.difference(g1).getArea();
double areaAintB = g0.intersection(g1).getArea();
return areaA - areaAdiffB - areaAintB;
}
代码示例来源:origin: locationtech/jts
public void testNoOutgoingDirEdgeFoundException() throws Exception {
Geometry a = new WKTReader().read("MULTIPOLYGON (((1668033.7441322226 575074.5372325261, 1668043.6526485088 575601.4901441064, 1668049.5076808596 575876.2262774946, 1668054.4619390026 576155.4662819218, 1668057.61464873 576428.4008668943, 1668059.8665842495 576711.2439681528, 1668063.9200681846 576991.3847467878, 1668071.576648951 577269.7239770072, 1668075.630132886 577547.1624330188, 1668077.8820684056 577825.5016632382, 1668081.935552341 578102.9401192497, 1668087.7905846918 578380.3785752613, 1668094.5463912506 578650.6108376103, 1668097.699100978 578919.9423257514, 1668103.5541333288 579191.0753623082, 1668111.2107140953 579455.9029794101, 1668112.5230371233 579490.6388405386, 1668120.62746972 579490.4954984378, 1668113.4626496148 579183.8691686456, 1668108.5083914716 578916.3392289202, 1668104.4549075365 578642.50386974, 1668100.401423601 578368.6685105597, 1668094.54639125 578095.7339255873, 1668088.6913588992 577822.7993406148, 1668085.5386491718 577548.9639814346, 1668082.3859394444 577275.1286222544, 1668076.5309070935 577002.1940372819, 1668072.4774231582 576729.2594523095, 1668066.6223908074 576456.324867337, 1668063.46968108 576183.3902823646, 1668059.416197145 575910.4556973921, 1668055.3627132094 575637.5211124197, 1668052.210003482 575366.3880758629, 1668046.354971131 575097.9573619296, 1668046.805358235 575068.2318130712, 1668033.7441322226 575074.5372325261)))");
Geometry b = new WKTReader().read("MULTIPOLYGON (((1665830.62 580116.54, 1665859.44 580115.84, 1666157.24 580108.56, 1666223.3 580107.1, 1666313 580105.12, 1666371.1 580103.62, 1666402 580102.78, 1666452.1 580101.42, 1666491.02 580100.36, 1666613.94 580097.02, 1666614.26 580097.02, 1666624 580096.74, 1666635.14 580096.42, 1666676.16 580095.28, 1666722.42 580093.94, 1666808.26 580091.44, 1666813.42 580091.3, 1666895.02 580088.78, 1666982.06 580086.1, 1667067.9 580083.46, 1667151.34 580080.88, 1667176.8 580080.1, 1667273.72 580077.14, 1667354.54 580074.68, 1667392.4 580073.88, 1667534.24 580070.9, 1667632.7 580068.82, 1667733.94 580066.68, 1667833.62 580064.58, 1667933.24 580062.5, 1667985 580061.4, 1668033.12 580060.14, 1668143.7 580057.24, 1668140.64 579872.78, 1668134.7548600042 579519.7278276943, 1668104.737250423 579518.9428425882, 1668110.64 579873.68, 1668113.18 580025.46, 1668032.4 580027.46, 1667932.66 580030.08, 1667832.8 580032.58, 1667632.28 580037.78, 1667392.14 580043.78, 1667273.4 580046.72, 1667150.62 580049.46, 1667067.14 580051.78, 1666981.14 580053.84, 1666807.4 580057.96, 1666613.64 580062.58, 1666490.14 580065.78, 1666400.9 580067.78, 1666312.18 580070.36, 1666222.1 580072.6, 1665859.28 580079.52, 1665830.28 580080.14, 1665830.62 580116.54)), ((1668134.2639058917 579490.2543124713, 1668130.62 579270.86, 1668125.86 578984.78, 1668117.3 578470.2, 1668104.02 577672.06, 1668096.78 577237.18, 1668093.4 577033.64, 1668087.28 576666.92, 1668085.24 576543.96, 1668083.32 576428.36, 1668081.28 576305.86, 1668075.38 575950.9, 1668061.12 575018.44, 1666745.6 575072.62, 1665835.48 575109.72, 1665429.26 575126.26, 1664940.66 575148.86, 1664365.4 575170.64, 1664116.02 575181.78, 1662804.22 575230.32, 1662804.780409841 575260.319992344, 1664086.52 575208.92, 1664150.3090003466 579072.2660557877, 1664180.345101783 579073.7529915024, 1664174.46 578717.2, 1664204.44 578716.82, 1664173.3 576830.12, 1664146.48 575206.52, 1665410.98 575155.82, 1665439.18 576784.24, 1665441.16 576899.44, 1665441.88 576940.4, 1665478.5547472103 579058.5389785315, 1665518.6155320513 579061.3502616781, 1665450.98 575156.2, 1668030.38 575050.3, 1668104.2687072477 579490.7848338542, 1668134.2639058917 579490.2543124713)), ((1664150.7710040906 579100.2470608585, 1664160.68 579700.38, 1664165.68 579987.66, 1664195.2 579986.98, 1664190.68 579699.9, 1664180.7918241904 579100.8179797827, 1664150.7710040906 579100.2470608585)), ((1665478.9532824333 579081.5562602862, 1665483.38 579337.22, 1665503.38 579336.64, 1665505.06 579443.26, 1665525.22 579442.68, 1665522.9750161383 579313.0587927903, 1665513.4612495075 579308.8304520656, 1665510.9439672586 579258.4848070825, 1665510.9439672586 579114.9997188805, 1665503.392120511 579082.2750496415, 1665478.9532824333 579081.5562602862)))");
a.difference(b);
b.difference(a);
}
代码示例来源:origin: org.eclipse.rdf4j/rdf4j-queryalgebra-geosparql
public Shape difference(Shape s1, Shape s2) {
Geometry difference = shapeFactory.getGeometryFrom(s1).difference(shapeFactory.getGeometryFrom(s2));
if (difference.isEmpty()) {
return shapeFactory.pointXY(Double.NaN, Double.NaN);
}
return shapeFactory.makeShapeFromGeometry(difference);
}
代码示例来源:origin: de.tudarmstadt.ukp.inception.rdf4j/rdf4j-queryalgebra-geosparql
public Shape difference(Shape s1, Shape s2) {
Geometry difference = shapeFactory.getGeometryFrom(s1).difference(shapeFactory.getGeometryFrom(s2));
if (difference.isEmpty()) {
return shapeFactory.pointXY(Double.NaN, Double.NaN);
}
return shapeFactory.makeShapeFromGeometry(difference);
}
内容来源于网络,如有侵权,请联系作者删除!