Tagged Questions
The hilbert-curve tag has no wiki summary.
19
votes
3answers
541 views
Hilbert sort by divide and conquer algorithm?
I'm trying to sort d-dimensional data vectors by their Hilbert order, for bulk-loading a spatial index.
However, I do not want to compute the Hilbert value for each point explicitly, which in ...
10
votes
5answers
753 views
Implementing a Hilbert map of the Internet
In the XKCD comic 195 a design for a map of the Internet address space is suggested using a Hilbert curve so that items from a similar IP adresses will be clustered together.
Given an IP address, how ...
6
votes
1answer
1k views
Mapping Hilbert values to 3D points
I have a set of Hilbert values (length from the start of the Hilbert curve to the given point).
What is the best way to convert these values to 3D points? Original Hilbert curve was not in 3D, so I ...
5
votes
8answers
671 views
“Absolute” string metric
I have a huge (but finite) set of natural language strings.
I need a way to convert each string to a numeric value. For any given string the value must be the same every time.
The more "different" ...
3
votes
4answers
2k views
Mapping N-dimensional value to a point on Hilbert curve
I have a huge set of N-dimensional points (tens of millions; N is close to 100).
I need to map these points to a single dimension while preserving spatial locality. I want to use Hilbert ...
2
votes
2answers
181 views
3d Hilbert Curve for a sparse geometry
I have a 3d array containing the non-cubic bounding box of a sparse geometry.
The array geometry[x][y][z] contains the value 0 if (x,y,z) is part of the computational domain and otherwise 1.
In an ...
1
vote
2answers
270 views
Indexing based on Peano-hilbert curve?
I have a x,y,z 3D points stored in MySQL,
I would like to ask the regions, slices or point neighbours.
Are there way to index the points using Peano-Hilbert curves to accelerate the queries?
Or are ...
0
votes
0answers
55 views
Hilbert Curve in PHP GD
I have a large amount of data that I'd like to be able to read out, pixel by pixel, into a Hilbert Curve using PHP's GD library.
The aim is to create a lookup table of an arbitrary size mapping an ...
0
votes
0answers
77 views
Dividing Query on Geospatial Index
I'm looking into storing geospatial information using a geohash-like index, perhaps using Hilbert curves. My question is regarding how best to split up area queries on such an index.
This article for ...
0
votes
0answers
216 views
Converting C hilbert's curve implementation into PHP [closed]
Couple of years ago i found a space filling curve implementation (Hilbert's) written in C designed to plot IP addresses. (I can't seem to find it again). I would like to convert this into PHP, ...