The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
24 views

Geohash Oracle implementation

I found lots of implementations of Geohash, for lots of technologies. But I wasn't be able to find anyone for Oracle. Does anyone know how to use Geohash in Oracle? Is there any Geohash ...
0
votes
0answers
14 views

geoHash -ing for close points on each side of the equator

I am working on a project (java using NetBeans) which at some point needs to process map data. I have got Esri shape files for whole UK and need to create one dimensional index using geoHash as ...
0
votes
1answer
70 views

Searching CoreData with the maps visibleRegion

I have several thousand locations stored in CoreData and I would like to search for locations that are within a Google Maps visibleRegion. I was previously doing a search with a bounding box but the ...
0
votes
0answers
45 views

How does MongoDB handle range and nearest neighbor queries?

How does MongoDB handle range and nearest neighbor queries? what algorithms used? I know MongoDB use GeoHash and B-Tree to index spatial data but how it handle the range and nearest neighbor queries ...
0
votes
0answers
45 views

How does geohash index work in Lucene

In lucene spatial 4 I'm wondering how the geohash index works behind the scenes. I understand the concept of the geohash which basically takes 2 points (lat, lon) and creates a single "string" hash. ...
-1
votes
2answers
48 views

calculate the probablity of having no collision when two elements are hashed h(x)=(x^2+1)mod3 [closed]

How can I calculate the probability of having no collision after inserting 2 elements. answer is 4/9, but I do not see it how it is 4/9
0
votes
0answers
100 views

Split Spatial Polygon/line into smaller Polygons/line by geohash or another gridded system

Is anyone aware of any logic or algorithm that would allow me to split a single polygon or single line into multiple polygons/lines based on a geohash (32) or possibly another similar type gridding ...
2
votes
1answer
373 views

geohash and max distance

Two geohash with first 6 characters matching, distance between two geohash is max 0.61km Two geohash with first 5 characters matching, distance between two geohash is max 2.5km Q : What is the max ...
1
vote
2answers
346 views

geohash string length and accuracy

if length of geohash string is more, it is more accurate. But is there any direct relationship like if length is 7 it is providing 100 meter accuracy, i.e. if two geohash (and either of their ...
1
vote
1answer
376 views

Get Distance from geohash field in solr 3.6

Is it possible to get distance returned from a geodist() filter, on a geohash field that has multiple values? The geosort and the geodist filter are working fine, but I'm trying to get the distance ...
1
vote
1answer
340 views

Geohash in redis with php

I am using Redis with php and its library phpredis. I have the following structure: city:1 { lat->14.02, lon->10.00, hash->sp2f1h60w5j } city:2 { lat->14.03, lon->10.1, ...
0
votes
1answer
175 views

App Engine Full Text Search vs Geohashing for location queries

I'm thinking of porting an application from RoR to Python App Engine that is heavily geo search centric. I've been using one of the open source GeoModel (i.e. geohashing) libraries to allow the ...
2
votes
3answers
697 views

Converting a number string into MD5 with python

Inspired by the XKCD geohashing comic (http://imgs.xkcd.com/comics/geohashing.png), I thought I'd have a go at coding a generator in Python. I've hit a block with the major part of it, though: The ...
4
votes
1answer
306 views

Why Bounding Box Search executes too long?

I'm using GeoModel to do Bounding Box Search. There are about 350 events in datastore but it executes >5 sec. The same results on my development environment and on google app engine. Why so long ? Do ...
0
votes
1answer
285 views

Solr - Using facets to sum documents based on variable precision geohashes

Is there a way to get facet counts based on a substring of a facet field, akin to an EdgeNGram? I'm using solr to store geohash strings at a high precision, and want to count the number of ...
2
votes
3answers
163 views

Distance between N images: incrementally! (same crop, but re-compressed/adjusted)

I'm trying to figure out a geo-hashing method for images. It is hard because the space of possible images is of much higher dimensionality than lat/lng. (geo-hashing converts a location to a string ...
2
votes
2answers
783 views

How to calculate the geohash of the viewable area/bounding box?

I've recently start working on a personal project involving geo locations, maps (Google Maps V3) etc. The project is developed in Python and is intended to run on Google App Engine. I've learned that ...
3
votes
3answers
622 views

In solr dih import two double in one location

What I have now is the two double filds: <field name="x_geo_x_coordinate" type="double" indexed="true" stored="true" default="0"/> <field name="x_geo_y_coordinate" type="double" ...
9
votes
1answer
3k views

Spatial data with mongodb or cassandra

I am considering a Proof of concept for handling large volumes of data like > 10 G which requires atleast 200+ writes per second and about 50+ reads per second of spatial related data. This is a ...
5
votes
1answer
386 views

Sunspot Spatial Search Not Returning Results

I've just implemented the Sunspot gem into my application and I really like it except for the fact that when I do a location search it seems to be excluding some results. For example: I live in ...
0
votes
1answer
158 views

Empty bounding box result with geomodel in GAE

I'm attempting to do a bounding box fetch in the GAE using geomodel in python. It is my understanding that you define a box and then the geomodel fetch will return all results with co-ordinates that ...
1
vote
0answers
202 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 ...
6
votes
3answers
877 views

Python GeoModel alternative

I'm looking for an alternative library for the app engine datastore that will do nearest-n or boxed geo-queries, currently i'm using GeoModel 0.2 and it runs quite slow ( > 1.5s in some cases). Does ...
2
votes
2answers
332 views

Use GIS to get geographic info for a single point

I am not quite sure where to start with this. I only just started looking into this in the past week, but hopefully someone can help point me in the right direction. The goal of my project is to be ...
6
votes
1answer
736 views

Geohashing - recursively find neighbors of neighbors

I am now looking for an elegant algorithm to recursively find neighbors of neighbors with the geohashing algorithm (http://www.geohash.org). Basically take a central geohash, and then get the first ...
1
vote
1answer
471 views

App Engine - Precomputing bounding boxes for proximity search

I'm trying to do a location-based search on App Engine, but since the data store doesn't support multiple inequality operators, I can't search "where lat between a and b and lon between c and d". One ...
0
votes
1answer
436 views

Geohashing format

Is there any specific format for a geohash value? Can I use Geohash.encode(latitude,longitude,precision="8") in ruby script? What is the maximum value that precision attribute can take? Thanks in ...
9
votes
7answers
6k views

Google App Engine Geohashing

I am writing a web application using GWT and App Engine. My application will need to post and query items based on their latitude, longitude. As a result of google's distributed database design you ...
0
votes
1answer
243 views

avoiding geocode range collisions

I am in the process of extracting location entities ('Madison Square Garden', 'San Diego Zoo', etc.) from a large table of non-uniform location. I'm trying to avoid multiple entities in my new table. ...