I need a data structure in python similar to a matrix with fast access to nearby cells but with floating point indices.The Data size(number of points) is pretty large so I cannot scale the data to make it integral.
Note: The data is 3-dimentional coordinates ex: -3.4561 5.5985 0.3249
This is one cell.Similarly there are other cells. Each cell has an integral value inside it with range 0-100. I don't need full precision,two digits after decimal point are sufficient.