Home
last modified time | relevance | path

Searched defs:geoms (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/dports/graphics/geos/geos-3.9.1/tests/unit/operation/geounion/
H A DCoverageUnionTest.cpp47 std::vector<std::unique_ptr<Geometry>> geoms; in checkCoverageUnionEquivalentToUnaryUnion() local
91 std::vector<std::string> geoms{ in test() local
104 std::vector<std::string> geoms{ in test() local
117 std::vector<std::string> geoms{ in test() local
130 std::vector<std::string> geoms{ in test() local
143 std::vector<std::string> geoms{ in test() local
156 std::vector<std::string> geoms{ in test() local
169 std::vector<std::string> geoms{ in test() local
187 std::vector<std::string> geoms { in test() local
200 std::vector<std::string> geoms { in test() local
[all …]
H A DUnaryUnionOpTest.cpp90 std::vector<Geom*> geoms; in doTest() local
119 static char const* const geoms[] = { nullptr }; in test() local
128 static char const* const geoms[] = { in test() local
140 static char const* const geoms[] = { in test() local
153 static char const* const geoms[] = { in test() local
172 static char const* const geoms[] = { in test() local
188 static char const* const geoms[] = { in test() local
200 static char const* const geoms[] = { in test() local
/dports/devel/py-shapely/Shapely-1.8.0/tests/
H A Dtest_strtree.py28 def test_query(geoms, query_geom, num_results): argument
40 def test_query_enumeration_idx(geoms, query_geom, expected): argument
54 def test_query_items(geoms, items, query_geom, expected): argument
167 def test_nearest_geom(geoms, query_geom): argument
188 def test_nearest_item(geoms, items, query_geom): argument
194 def test_nearest_empty(geoms, items): argument
200 def test_nearest_items(geoms, items): argument
218 def test_nearest_item_exclusive(geoms, items, query_geom): argument
/dports/graphics/geos/geos-3.9.1/src/geom/util/
H A DGeometryCombiner.cpp29 GeometryCombiner::combine(std::vector<std::unique_ptr<Geometry>> const& geoms) in combine()
40 GeometryCombiner::combine(std::vector<const Geometry*> const& geoms) in combine()
49 std::vector<const Geometry*> geoms; in combine() local
61 std::vector<const Geometry*> geoms; in combine() local
70 GeometryCombiner::GeometryCombiner(std::vector<const Geometry*> const& geoms) in GeometryCombiner()
76 GeometryCombiner::extractFactory(std::vector<const Geometry*> const& geoms) in extractFactory()
/dports/graphics/py-pygeos/pygeos-0.10.2/pygeos/tests/
H A Dtest_coordinates.py51 def test_count_coords(geoms, count): argument
78 def test_get_coords(geoms, x, y, include_z): argument
103 def test_get_coords_index(geoms, index): argument
128 def test_get_coords_3d(geoms, x, y, z, include_z): argument
163 def test_set_coords(geoms, count, has_ring, include_z): argument
212 def test_apply(geoms, include_z): argument
/dports/graphics/geos/geos-3.9.1/include/geos/operation/union/
H A DUnaryUnionOp.h94 Union(const T& geoms) in Union()
102 Union(const T& geoms, in Union()
117 UnaryUnionOp(const T& geoms, geom::GeometryFactory& geomFactIn) in UnaryUnionOp()
125 UnaryUnionOp(const T& geoms) in UnaryUnionOp()
160 extractGeoms(const T& geoms) in extractGeoms()
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/function/
H A DSortingFunctions.java31 List<Geometry> geoms = components(g); in sortByLength() local
42 List<Geometry> geoms = components(g); in sortByArea() local
53 List<Geometry> geoms = components(g); in sortByMinX() local
64 List<Geometry> geoms = components(g); in sortByMinY() local
84 List<Geometry> geoms = components(g); in sortByHilbertCode() local
108 List<Geometry> geoms = components(g); in sortByMortonCode() local
H A DSpatialIndexFunctions.java87 public static Geometry strTreeBounds(Geometry geoms) in strTreeBounds()
113 public static Geometry hprTreeQuery(Geometry geoms, Geometry queryEnv) in hprTreeQuery()
126 public static Geometry hprTreeQueryCached(Geometry geoms, Geometry queryEnv) in hprTreeQueryCached()
151 public static Geometry hprTreeBounds(Geometry geoms) in hprTreeBounds()
168 public static Geometry strTreeQueryCached(Geometry geoms, Geometry queryEnv) in strTreeQueryCached()
181 public static Geometry strTreeQuery(Geometry geoms, Geometry queryEnv) in strTreeQuery()
191 public static Geometry strTreeNN(Geometry geoms, Geometry geom) in strTreeNN()
199 public static Geometry strTreeNNInSet(Geometry geoms) in strTreeNNInSet()
208 public static Geometry strTreeNNk(Geometry geoms, Geometry geom, int k) in strTreeNNk()
218 public static Geometry quadTreeQuery(Geometry geoms, Geometry queryEnv) in quadTreeQuery()
H A DFunctionsUtil.java74 public static Geometry buildGeometry(List geoms, Geometry parentGeom) in buildGeometry()
87 public static Geometry buildGeometry(Geometry[] geoms) in buildGeometry()
97 Geometry[] geoms = toGeometryArray(a, b); in buildGeometry() local
104 Geometry[] geoms = new Geometry[size]; in toGeometryArray() local
H A DConversionFunctions.java46 Geometry geoms = FunctionsUtil.buildGeometry(g1, g2); in toPoints() local
53 Geometry geoms = FunctionsUtil.buildGeometry(g1, g2); in toLines() local
60 Geometry geoms = FunctionsUtil.buildGeometry(g1, g2); in toMultiPolygon() local
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/operation/union/
H A DCascadedPolygonUnionTest.java60 Collection geoms = createDiscs(5, 0.7); in testDiscs1() local
72 Collection geoms = createDiscs(5, 0.55); in testDiscs2() local
85 private void runTest(Collection geoms, double minimumMeasure) in runTest()
92 List geoms = new ArrayList(); in createDiscs() local
H A DCascadedPolygonUnionTester.java46 public boolean test(Collection geoms, double minimumMeasure) in test()
87 public Geometry unionIterated(Collection geoms) in unionIterated()
110 public Geometry unionCascaded(Collection geoms) in unionCascaded()
/dports/graphics/geos/geos-3.9.1/tests/unit/capi/
H A DGEOSPolygonizeTest.cpp60 GEOSGeometry* geoms[size] = { nullptr }; in test() local
83 GEOSGeometry* geoms[size] = { nullptr }; in test() local
111 GEOSGeometry* geoms[size]; in test() local
141 GEOSGeometry* geoms[size]; in test() local
162 GEOSGeometry* geoms[size]; in test() local
H A DGEOSGeom_createCollectionTest.cpp70 GEOSGeom geoms[geom_size]; in test() local
86 std::array<GEOSGeom, geom_size> geoms = { in test() local
104 std::vector<GEOSGeom> geoms; in test() local
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/operation/union/
H A DUnaryUnionOp.java72 public static Geometry union(Collection geoms) in union()
90 public static Geometry union(Collection geoms, GeometryFactory geomFact) in union()
122 public UnaryUnionOp(Collection geoms, GeometryFactory geomFact) in UnaryUnionOp()
135 public UnaryUnionOp(Collection geoms) in UnaryUnionOp()
154 private void extract(Collection geoms) in extract()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/perf/operation/distance/
H A DTestPerfFastDistanceFile.java48 List geoms = loadWKT("C:\\data\\martin\\proj\\jts\\sandbox\\jts\\testdata\\world.wkt"); in test() local
68 void testAllDistances(List geoms, int maxToScan) in testAllDistances()
80 void computeAllDistances(List geoms, int maxToScan) { in computeAllDistances()
113 void computePairDistance(List geoms, int i, int j) in computePairDistance()
/dports/math/jts/jts-jts-1.18.1/modules/lab/src/main/java/org/locationtech/jts/operation/union/
H A DSpatialPartition.java34 private Geometry[] geoms; field in SpatialPartition
36 public SpatialPartition(Geometry[] geoms, Relation rel) { in SpatialPartition()
57 private Subsets build(Geometry[] geoms, Relation rel) { in build()
90 private STRtree createIndex(Geometry[] geoms) { in createIndex()
/dports/databases/postgis31/postgis-3.1.4/liblwgeom/
H A Dlwgeom_geos_cluster.c81 make_strtree(void** geoms, uint32_t num_geoms, char is_lwgeom) in make_strtree()
159 union_intersecting_pairs(GEOSGeometry** geoms, uint32_t num_geoms, UNIONFIND* uf) in union_intersecting_pairs()
247 cluster_intersecting(GEOSGeometry** geoms, uint32_t num_geoms, GEOSGeometry*** clusterGeoms, uint32… in cluster_intersecting()
264 dbscan_update_context(GEOSSTRtree* tree, struct QueryContext* cxt, LWGEOM** geoms, uint32_t p, doub… in dbscan_update_context()
318 union_dbscan_minpoints_1(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, char** in_a… in union_dbscan_minpoints_1()
382 union_dbscan_general(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_po… in union_dbscan_general()
514 int union_dbscan(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_points… in union_dbscan()
526 cluster_within_distance(LWGEOM** geoms, uint32_t num_geoms, double tolerance, LWGEOM*** clusterGeom… in cluster_within_distance()
546 combine_geometries(UNIONFIND* uf, void** geoms, uint32_t num_geoms, void*** clusterGeoms, uint32_t*… in combine_geometries()
/dports/databases/postgis32/postgis-3.2.0/liblwgeom/
H A Dlwgeom_geos_cluster.c81 make_strtree(void** geoms, uint32_t num_geoms, char is_lwgeom) in make_strtree()
159 union_intersecting_pairs(GEOSGeometry** geoms, uint32_t num_geoms, UNIONFIND* uf) in union_intersecting_pairs()
247 cluster_intersecting(GEOSGeometry** geoms, uint32_t num_geoms, GEOSGeometry*** clusterGeoms, uint32… in cluster_intersecting()
264 dbscan_update_context(GEOSSTRtree* tree, struct QueryContext* cxt, LWGEOM** geoms, uint32_t p, doub… in dbscan_update_context()
318 union_dbscan_minpoints_1(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, char** in_a… in union_dbscan_minpoints_1()
382 union_dbscan_general(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_po… in union_dbscan_general()
514 int union_dbscan(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_points… in union_dbscan()
526 cluster_within_distance(LWGEOM** geoms, uint32_t num_geoms, double tolerance, LWGEOM*** clusterGeom… in cluster_within_distance()
546 combine_geometries(UNIONFIND* uf, void** geoms, uint32_t num_geoms, void*** clusterGeoms, uint32_t*… in combine_geometries()
/dports/databases/postgis30/postgis-3.0.4/liblwgeom/
H A Dlwgeom_geos_cluster.c81 make_strtree(void** geoms, uint32_t num_geoms, char is_lwgeom) in make_strtree()
159 union_intersecting_pairs(GEOSGeometry** geoms, uint32_t num_geoms, UNIONFIND* uf) in union_intersecting_pairs()
247 cluster_intersecting(GEOSGeometry** geoms, uint32_t num_geoms, GEOSGeometry*** clusterGeoms, uint32… in cluster_intersecting()
264 dbscan_update_context(GEOSSTRtree* tree, struct QueryContext* cxt, LWGEOM** geoms, uint32_t p, doub… in dbscan_update_context()
318 union_dbscan_minpoints_1(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, char** in_a… in union_dbscan_minpoints_1()
382 union_dbscan_general(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_po… in union_dbscan_general()
514 int union_dbscan(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_points… in union_dbscan()
526 cluster_within_distance(LWGEOM** geoms, uint32_t num_geoms, double tolerance, LWGEOM*** clusterGeom… in cluster_within_distance()
546 combine_geometries(UNIONFIND* uf, void** geoms, uint32_t num_geoms, void*** clusterGeoms, uint32_t*… in combine_geometries()
/dports/databases/postgis25/postgis-2.5.5/liblwgeom/
H A Dlwgeom_geos_cluster.c81 make_strtree(void** geoms, uint32_t num_geoms, char is_lwgeom) in make_strtree()
159 union_intersecting_pairs(GEOSGeometry** geoms, uint32_t num_geoms, UNIONFIND* uf) in union_intersecting_pairs()
247 cluster_intersecting(GEOSGeometry** geoms, uint32_t num_geoms, GEOSGeometry*** clusterGeoms, uint32… in cluster_intersecting()
264 dbscan_update_context(GEOSSTRtree* tree, struct QueryContext* cxt, LWGEOM** geoms, uint32_t p, doub… in dbscan_update_context()
318 union_dbscan_minpoints_1(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, char** in_a… in union_dbscan_minpoints_1()
382 union_dbscan_general(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_po… in union_dbscan_general()
514 int union_dbscan(LWGEOM** geoms, uint32_t num_geoms, UNIONFIND* uf, double eps, uint32_t min_points… in union_dbscan()
526 cluster_within_distance(LWGEOM** geoms, uint32_t num_geoms, double tolerance, LWGEOM*** clusterGeom… in cluster_within_distance()
546 combine_geometries(UNIONFIND* uf, void** geoms, uint32_t num_geoms, void*** clusterGeoms, uint32_t*… in combine_geometries()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/perf/operation/overlayng/
H A DOverlayCaseDumper.java90 List<Geometry> geoms = flatten(geomsIn); in run() local
107 private List<Geometry> flatten(List<Geometry> geoms) { in flatten()
120 private void doIntersections(List<Geometry> geoms) { in doIntersections()
179 private List<Geometry> filter(List<Geometry> geoms) { in filter()
/dports/devel/py-shapely/Shapely-1.8.0/shapely/geometry/
H A Dcollection.py23 def __init__(self, geoms=None): argument
55 def geoms(self): member in GeometryCollection
/dports/graphics/geos/geos-3.9.1/src/operation/union/
H A DCascadedPolygonUnion.cpp181 std::unique_ptr<GeometryListHolder> geoms(reduceToGeometries(geomTree)); in unionTree() local
186 CascadedPolygonUnion::binaryUnion(GeometryListHolder* geoms) in binaryUnion()
192 CascadedPolygonUnion::binaryUnion(GeometryListHolder* geoms, in binaryUnion()
213 std::unique_ptr<GeometryListHolder> geoms(new GeometryListHolder()); in reduceToGeometries() local
325 std::vector<std::unique_ptr<geom::Geometry>> geoms; in unionPolygonsByBuffer() local
H A DCascadedUnion.cpp78 std::unique_ptr<GeometryListHolder> geoms(reduceToGeometries(geomTree)); in unionTree() local
83 CascadedUnion::binaryUnion(GeometryListHolder* geoms) in binaryUnion()
89 CascadedUnion::binaryUnion(GeometryListHolder* geoms, in binaryUnion()
110 std::unique_ptr<GeometryListHolder> geoms(new GeometryListHolder()); in reduceToGeometries() local

12345678910>>...14