Home
last modified time | relevance | path

Searched refs:strtree (Results 1 – 25 of 115) sorted by relevance

12345

/dports/devel/py-shapely/Shapely-1.8.0/tests/
H A Dunpickle-strtree.py16 strtree = pickle.loads(pickled_strtree) variable
19 strtree.query(Point(0, 0))
22 strtree.nearest(Point(0, 0))
H A Dtest_strtree.py11 from shapely import strtree
12 from shapely.strtree import STRtree
129 _lgeos = strtree.lgeos
130 strtree.lgeos = None
134 strtree.lgeos = _lgeos
/dports/graphics/geos/geos-3.9.1/src/operation/union/
H A DCascadedUnion.cpp56 index::strtree::STRtree index(STRTREE_NODE_CAPACITY); in Union()
65 std::unique_ptr<index::strtree::ItemsList> itemTree(index.itemsTree()); in Union()
72 index::strtree::ItemsList* geomTree) in unionTree()
108 CascadedUnion::reduceToGeometries(index::strtree::ItemsList* geomTree) in reduceToGeometries()
112 typedef index::strtree::ItemsList::iterator iterator_type; in reduceToGeometries()
115 if((*i).get_type() == index::strtree::ItemsListItem::item_is_list) { in reduceToGeometries()
120 else if((*i).get_type() == index::strtree::ItemsListItem::item_is_geometry) { in reduceToGeometries()
H A DCascadedPolygonUnion.cpp159 index::strtree::STRtree index(STRTREE_NODE_CAPACITY); in Union()
168 std::unique_ptr<index::strtree::ItemsList> itemTree(index.itemsTree()); in Union()
175 index::strtree::ItemsList* geomTree) in unionTree()
211 CascadedPolygonUnion::reduceToGeometries(index::strtree::ItemsList* geomTree) in reduceToGeometries()
215 typedef index::strtree::ItemsList::iterator iterator_type; in reduceToGeometries()
218 if((*i).get_type() == index::strtree::ItemsListItem::item_is_list) { in reduceToGeometries()
223 else if((*i).get_type() == index::strtree::ItemsListItem::item_is_geometry) { in reduceToGeometries()
/dports/graphics/geos/geos-3.9.1/tests/unit/index/strtree/
H A DSimpleSTRtreeTest.cpp32 index::strtree::SimpleSTRtree t(10); in test()
84 index::strtree::SimpleSTRtree t1(10); in test()
85 index::strtree::SimpleSTRtree t2(10); in test()
103 index::strtree::GeometryItemDistance gi; in test()
126 index::strtree::SimpleSTRtree t(10); in test()
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/org/locationtech/jts/index/strtree/
H A DSTRtreeNearestNeighbourTest.java13 package org.locationtech.jts.index.strtree;
169 STRtree strtree = new STRtree(); in testKNearestNeighbors() local
171 strtree.insert(testDataset.get(i).getEnvelopeInternal(), testDataset.get(i)); in testKNearestNeighbors()
176 strtree.query(new Envelope(1 + 0.1, 1 + 0.1, 2 + 0.1, 2 + 0.1)); in testKNearestNeighbors()
180 …Object[] testTopK = (Object[]) strtree.nearestNeighbour(queryCenter.getEnvelopeInternal(), queryCe… in testKNearestNeighbors()
/dports/graphics/geos/geos-3.9.1/include/geos/operation/union/
H A DCascadedUnion.h38 namespace strtree {
120 geom::Geometry* unionTree(index::strtree::ItemsList* geomTree);
148 GeometryListHolder* reduceToGeometries(index::strtree::ItemsList* geomTree);
H A DCascadedPolygonUnion.h43 namespace strtree {
214 geom::Geometry* unionTree(index::strtree::ItemsList* geomTree);
242 GeometryListHolder* reduceToGeometries(index::strtree::ItemsList* geomTree);
/dports/graphics/geos/geos-3.9.1/src/index/
H A DMakefile.am10 strtree \ subdir
23 strtree/libindexstrtree.la \
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/operation/distance/
H A DIndexedFacetDistance.java20 import org.locationtech.jts.index.strtree.ItemBoundable;
21 import org.locationtech.jts.index.strtree.ItemDistance;
22 import org.locationtech.jts.index.strtree.STRtree;
/dports/graphics/geos/geos-3.9.1/include/geos/operation/distance/
H A DFacetSequenceTreeBuilder.h44 class FacetSequenceTree : public geos::index::strtree::STRtree {
63 static std::unique_ptr<geos::index::strtree::STRtree> build(const geom::Geometry* g);
/dports/devel/ncc/ncc-2.8/
H A Dspace.C25 static dbsTree<stringtmp> strtree; variable
39 stringtmp (int I) : dbsNodeStr (), ID (I) { strtree.addself (this); } in stringtmp()
63 stringtmp *S = (stringtmp*) strtree.dbsFind (); in enter_string()
232 C_Strings = new char* [C_Nstrings = strtree.nnodes]; in make_norm()
233 strtree.deltree (strtoarray); in make_norm()
/dports/biology/treepuzzle/tree-puzzle-5.2/src/
H A Dml2.c465 chp = strtree; in constructtree()
544 if (strtree[n] == '(') brak++; in removebasalbif()
545 if (strtree[n] == ')') brak--; in removebasalbif()
550 } while (strtree[n] != '\0'); in removebasalbif()
580 } while (strtree[n+h] != ')' && strtree[n+h] != ','); in removebasalbif()
584 if (cutflag == 1) strtree[n] = strtree[n+1]; in removebasalbif()
585 if (cutflag == 2) strtree[n-1] = strtree[n+h]; in removebasalbif()
588 } while (strtree[n] != '\0'); in removebasalbif()
595 cvector strtree; in makeusertree() local
599 removebasalbif(strtree); in makeusertree()
[all …]
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/precision/
H A DMinimumClearance.java23 import org.locationtech.jts.index.strtree.ItemBoundable;
24 import org.locationtech.jts.index.strtree.ItemDistance;
25 import org.locationtech.jts.index.strtree.STRtree;
/dports/math/jts/jts-jts-1.18.1/modules/core/src/test/java/test/jts/index/
H A DSTRtreeDemo.java25 import org.locationtech.jts.index.strtree.AbstractNode;
26 import org.locationtech.jts.index.strtree.Boundable;
27 import org.locationtech.jts.index.strtree.STRtree;
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/function/
H A DSpatialIndexFunctions.java34 import org.locationtech.jts.index.strtree.AbstractNode;
35 import org.locationtech.jts.index.strtree.Boundable;
36 import org.locationtech.jts.index.strtree.GeometryItemDistance;
37 import org.locationtech.jts.index.strtree.STRtree;
/dports/graphics/geos/geos-3.9.1/include/geos/index/strtree/
H A DSTRtree.h39 namespace strtree {
47 namespace strtree { // geos::index::strtree
H A DSimpleSTRtree.h39 namespace strtree {
48 namespace strtree { // geos::index::strtree
H A DAbstractSTRtree.h32 namespace strtree {
41 namespace strtree { // geos::index::strtree
H A DBoundable.h22 namespace strtree { // geos::index::strtree
H A DItemDistance.h26 namespace strtree {
H A DEnvelopeUtil.h21 namespace strtree { // geos::index::strtree
/dports/math/jts/jts-jts-1.18.1/modules/core/src/main/java/org/locationtech/jts/index/strtree/
H A DBoundable.java13 package org.locationtech.jts.index.strtree;
H A DItemDistance.java13 package org.locationtech.jts.index.strtree;
/dports/graphics/geos/geos-3.9.1/include/geos/index/
H A DMakefile.am7 strtree \ subdir

12345