I am working with a huge 2d dataset and need a range query for every point, returning the neighbours within a range as a set I already have tested using an index with KD Tree form sk learn, but the problem is, it returns the index as a list and the converting to a set takes too long. Is there a data structure, which returns the points from a range query as a set and not as a list?
2D data point range query
399 Views Asked by Felix Ha At
1
There are 1 best solutions below
Related Questions in INDEXING
- Why does mysql stop using indexes when date ranges are added to the query?
- MySQL: Using natural primary index or adding surrogate when tables are given
- How does MongoDB process unsupported languages?
- Error in indicies while unsetting Sessions
- How to index a field with mongodb-erlang
- How to force use of indices in MongoDB?
- Hint indexes to mysql on Join
- Lucene get all non deleted document from index file
- Querydsl generated sql query wrong sql type (nvarchar instead of varchar)
- Numpy Indexing: Get every second coloumn for each even row
- Simpler, safer string manipulation Python
- Understanding "ValueError: need more than 1 value to unpack" w/without enumerate()
- Poor performance with mongo array index
- Is it possible to skip IndexRebuilder in the startup process of mongodb 2.6?
- Does PostgreSQL self join ignore indexes?
Related Questions in KDTREE
- Partition large amount of 3D point data
- KDTree double type integers
- kdtree for geospatial point search
- Local maxima in a point cloud
- Unsure of which multidimensional nearest neighbour algorithm to use
- How to choose the cutting dimension properly in building a kd-tree?
- kd-tree construction very slow
- Could kd-tree build with dot-product?
- Is kdtree used for speeding k-means clustering or not?
- Performance of RTree vs kd-trees
- A data structure to handle moving points contact and containment within bounding boxes?
- Nearest neighbor searches in non-metric spaces
- Geospatial to count NN within Radius - in Big Data
- Constructing a KD-Tree from a cube-based world
- Searching in KD-tree slow
Related Questions in SPATIAL-QUERY
- SQL, Trying to get opposite result
- SQL Server : spatial query result are not showing
- Comparing geography column using STContains slow down the query in SQL Server
- Manipulating Entity Framework sql query
- MS SQL Server STIntersects OR STIntersects is too slow
- find which circle areas in db contain specific point on map
- LINQ to Entities - How to Convert SQL query (UnionAggregate) into LINQ
- SQL server display two different spatial columns at once
- Find the points using Oracle spatial directly in front of a polgon
- RavenDB - How to can one make a WithinRadiusOf(radius,lat,lng) query where radius is a document property?
- SQL-Server 2008 R2 geoSpatial query error for Circular String
- How to Load Spatial Data using the Hadoop GIS framework
- Can't get a simple Entity Framework spatial query to work
- rgeos gIntersection in loop takes too long to clip path network
- Why Is My Spatial Hash So Slow?
Related Questions in SPATIAL-INDEX
- Cluster on a spatial index
- MDSYS.SPATIAL_INDEX syntax error
- Query Optimization Problems (spatial)
- OrientDB : Is it possible to maintain lucene spatial index availability during rebuild?
- Comparing geography column using STContains slow down the query in SQL Server
- geometry::UnionAggregate call causes SQL Server to crash
- Spatial database, strange index behavior
- Complex MySQL join from old table to new
- MongoDB $near returns duplicate records
- Sql Server Geometry Column causing query to take long time to run
- Can I store WGS84 latitude / longitude directly as spatial data in MySQL?
- Efficient algorithms for building an immutable bounding voume hierarchy?
- 2D Spatial Data Structure suitable for Flocking Boids in Java
- Spatial query w/o spatial data
- Spatial index on a sorted set
Related Questions in RANGE-QUERY
- Range query with elasticsearch for string
- numbers not divisible by all array elements
- How to increment all values in an array interval by a given amount
- Finding the minimum element in a given range greater than a given number
- tsrange range error on DST transition values
- Storage and efficient lookup for range data
- Range Queries in Cassandra (CQL 3.0)
- R-tree Range Query and Nearest Neighbor Search in Python
- Nested Query with Date Range
- Efficient query for finding an element in a range
- Number of elements less than 'x' in a range (l, r) both inclusive
- Ranged query with Java Client API for Elasticseach 8.0+
- mysql range query , use index judge range large
- 2D data point range query
- Lucene query language and numeric range
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The result is not natively a list.
Get the source code of the k-d-tree, and modify so it directly writes to a set, instead of a list.
But I highly doubt this will solve your actual problem. Converting a small list to a set should barely be a performance issue... but well, you are using python. A traditional python set() will be a lot lot lot slower than an numpy array. But don't blame the data structure for not using a slow set.