hot questions tagged proximity - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T04:52:02Zhttp://stackoverflow.com/feeds/tag?tagnames=proximity&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916953/filter-zipcodes-by-proximity-in-django-with-the-haversine-formula1Filter zipcodes by proximity in Django with the Haversine formulaspiffytech2009-12-16T19:12:28Z2009-12-16T19:38:23Z
<p>I'm trying to handle proximity search for a basic store locater in Django. Rather than haul PostGIS around with my app just so I can use GeoDjango's distance filter, I'd like to use the Haversine distance formula in a model query. I'd like all of the calculations to be done in the database in one query, for efficiency. </p>
<p>An example MySQL query from The Internet implementing the Haversine forumla like this:</p>
<pre><code>SELECT id, (
3959 * acos( cos( radians(37) ) * cos( radians( lat ) ) *
cos( radians( lng ) - radians(-122) ) + sin( radians(37) ) *
sin( radians( lat ) ) )
)
AS distance FROM stores HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;
</code></pre>
<p>The query needs to reference the Zipcode ForeignKey for each store's lat/lng values. How can I make all of this work in a Django model query?</p>
http://stackoverflow.com/questions/1830900/how-to-implement-proximity-search-with-postcode0How to implement proximity search with postcode?unknown (google)2009-12-02T05:49:47Z2009-12-02T12:13:29Z
<p>Hi,
I have to use proximity search with postcode for Australia. Going through some links like
<a href="http://www.randommouse.com/rms/about/product/FNDRY/docs/tutorial/08/how-to-add-google-maps-to-your-review-site-intro.html" rel="nofollow">http://www.randommouse.com/rms/about/product/FNDRY/docs/tutorial/08/how-to-add-google-maps-to-your-review-site-intro.html</a> </p>
<p>I found that I have to manage the the post codes with latitude and longitude if I am not mistaken. But i could not find how to implement this. Can anyone suggest me how to do this with php or give some links so that i could see more on this. </p>
<p>Thanks in advance. </p>
<p><strong>Edited:</strong></p>
<p>I have edited my question: </p>
<p>Can I use google api for this i.e. to get the post codes within given range. I have found a link that is for the drupal. So can I use google api just to get postcodes. The link have followed is <a href="http://svendecabooter.be/blog/implementing-location-proximity-search-for-belgium-with-drupal-and-google-maps" rel="nofollow">http://svendecabooter.be/blog/implementing-location-proximity-search-for-belgium-with-drupal-and-google-maps</a> </p>
http://stackoverflow.com/questions/1372047/how-to-test-proximity-of-lines-hough-transform-in-opencv0How to test proximity of lines (Hough transform) in OpenCVbambax2009-09-03T08:07:21Z2009-10-14T09:24:57Z
<p>(This is a follow-up from <a href="http://stackoverflow.com/questions/1238085/">this previous question</a>).</p>
<p>I was able to successfully use OpenCV / Hough transforms to detect lines in pictures (scanned text); at first it would detect many many lines (at least one line per line of text), but by adjusting the 'threshold' parameter via trial-and-error, it now only detects "real" lines.</p>
<p>(The 'threshold' parameter is dependant on image size, which is a bit of a problem if one has to deal with images of different resolutions, but that's another story).</p>
<p>My problem is that the Hough transform sometimes detects two lines where there is only one; those two lines are very near one another and (apparently) parallel.</p>
<p>=> How can I identify that two lines are almost parallel and very near one another? (so that I can keep only one).</p>
http://stackoverflow.com/questions/165539/iphone-proximity-sensor5iPhone Proximity SensorGreg2008-10-03T03:06:11Z2009-12-13T01:51:28Z
<p>Can the iPhone SDK take advantage of the iPhone's proximity sensors? If so, why hasn't anyone taken advantage of them? I could picture a few decent uses.</p>
<p>For example, in a racing game, you could put your finger on the proximity sensor to go instead of taking up screen real-estate with your thumb. Of course though, if this was your only option, then iPod touch users wouldn't be able to use the application.</p>
<p>Does the proximity sensor tell how close you are, or just that something is in front of it?</p>
http://stackoverflow.com/questions/1510746/proximity-search-with-google-maps1Proximity search with Google mapsSteven2009-10-02T17:02:15Z2009-10-03T00:12:05Z
<p>I'm developing a store location application.</p>
<p>Looking up a store, it currently shows the location in googlemaps based on address and zip code.</p>
<p>Now I want to build a function which also shows other shops within 500 meter radius.
To do this, I have to do a proximity search / calculation.</p>
<p>My biggest question, is how I should approach this.</p>
<p>I did <a href="http://forums.digitalpoint.com/showthread.php?t=61822" rel="nofollow">find this link</a>, which has some example code. But I'm unsure if I can use the code (and which of the codes I should use). Does anyone have better examples?</p>
<p>Also I'm thinking of adding a new table to the database, which stores the geo code for each store. Do I need more fields than 'id', 'latitude' and 'longitude' ?</p>
<p><strong>UPDATE</strong><br />
I just found <a href="http://www.phpro.org/tutorials/Geo-Targetting-With-PHP-And-MySQL.html" rel="nofollow">this link</a> at phpro.org. It looks like it's just what I need! Has anyone used their examples and can comment upon it?</p>
http://stackoverflow.com/questions/635421/toggling-proximity-sensor-on-iphone-loses-an-event1toggling proximity sensor on iPhone loses an eventslugolicious2009-03-11T16:54:43Z2009-03-11T17:54:43Z
<p>I'm using setProximitySensingEnabled and implemented proximityStateChanged in my UIApplication subclass. It looks like if sensing is toggled, that the first "off" event is being lost.</p>
<p>My UIApplication class is pretty basic...</p>
<pre><code> -(void)proximityStateChanged:(BOOL)state { NSLog(state ? @"ON" : @"OFF"); }
</code></pre>
<p>In my application delegate, I have a UISwitch that enables/disables the proximity sensor.</p>
<pre><code>-(IBAction)toggleProxy:(id)sender { [UIApplication sharedApplication].proximitySensingEnabled = prox.on; }
</code></pre>
<p>"prox" is my UISwitch. The test works fine when it first starts. I tap the switch to turn it on and then put my hand over the sensor for a second then move it away and get:</p>
<pre><code>2009-03-11 12:43:00.465 Proximity[324:20b] ON
2009-03-11 12:43:02.514 Proximity[324:20b] OFF
2009-03-11 12:43:04.046 Proximity[324:20b] ON
2009-03-11 12:43:05.621 Proximity[324:20b] OFF
</code></pre>
<p>I then tap the switch to turn it off then tap again to turn it on. Now I get:</p>
<pre><code>2009-03-11 12:43:12.005 Proximity[324:20b] ON
2009-03-11 12:43:14.789 Proximity[324:20b] ON
2009-03-11 12:43:16.467 Proximity[324:20b] OFF
2009-03-11 12:43:17.516 Proximity[324:20b] ON
2009-03-11 12:43:19.077 Proximity[324:20b] OFF
</code></pre>
<p>Notice I get two ON's before an OFF. The OFF is lost somewhere. I can't replicate this behavior using Google's mobile app so I'm wondering if they're resetting something in between proximity enabling. They don't have the proximity sensor on all the time because if you cover the sensor, the screen doesn't go blank. You have to tilt the phone up and angle it back (to simulate the position it would be in at your ear) and then covering the sensor works.</p>
<p>Anyone else playing with the sensor?</p>
<p>In my particular app, I'm recording a voice message and when you move the phone away from your ear, I want to pause the recording (when I get an OFF). The first time I move the phone away from my ear, the recording is not paused. However, if I put it to my ear and move it away again, it <em>is</em> paused.</p>
http://stackoverflow.com/questions/613144/regional-proximity-ui0Regional Proximity UIMark Hurd2009-03-05T00:32:28Z2009-03-05T14:35:06Z
<p>I'm developing a UI (AJAX-enabled; LAMP server) which will allow a user to designate regions in which a company operates. A "region" in this case may be a state (if dealing with the US) a province (Canada), or entire country (everyone else).</p>
<p>As there are 195 countries in the world, I would like to avoid a multi-select box or list of checkboxes. In the workflow leading to this particular screen, the user will have already entered the full address of the company, so I have a starting region to work from.</p>
<p>Since the majority of companies only operate out of their own region, and those covering multiple regions tend not to branch out too far, I am considering displaying the list of regions gradually based on proximity. I realize at some point (I'm using 3 passes for now) the full list will need to be displayed; I'm just trying to delay the user from reaching that point as it's a definite edge case.</p>
<p><a href="http://mark-hurd.com/temp/region-proximity.png" rel="nofollow">Here is a PNG mockup that explains this concept a bit more clearly</a>. (196kb)</p>
<p><strong>Questions:</strong></p>
<ul>
<li>What suggestions do you have for the actual form interaction? This has not been presented to representative end users yet, but I'm open to all suggestions during the prototyping stage.</li>
<li>Do you think 'rolling up' US states and/or Canadian provinces between transitions will negatively affect the user's spatial memory?
<ul>
<li>More clearly: after the 3rd pass, the company will operate in every US state - so convert those 50 inputs into one.</li>
</ul></li>
<li>Are there any existing applications that have utilized this approach to use as a baseline or demo?</li>
<li>And, since I know my developer will want to know - what would be the easiest way to store each region's proximity? Lat/long of the center? Lat/long of each corner of a 'bounding box' (more accurate)? I'm assuming we will end up writing some proximity calculations based on the lat/long of the company's actual address.</li>
</ul>
http://stackoverflow.com/questions/260335/proximity-search6Proximity SearchJohn2008-11-03T23:33:14Z2008-11-04T00:32:50Z
<p>How does an application perform a proximity search? For example, a user types in a postal code, then the application lists all the businesses within 20 miles ordered by proximity.</p>
<p>I want to build something like that in php and mysql. Is this approach correct?</p>
<p>1) get the addresses for locations I'm interested in and store in my database
2) geocode all the addresses with google's geocoding service
3) write a database query that includes Haversine formula to do the proximity search and ordering </p>
<p>Is this ok? In step 3, I'm going to calculate the proximity for every query. Is it better to have a PROXIMITY table that lists the distance between every business and a few reference locations?</p>
http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor3How best to perform corridor range search over a set of latitude / longitude coordinateshooli2009-01-14T23:35:21Z2009-01-24T04:02:11Z
<p>Hi,</p>
<p>What would be the best approach to finding the set of coordinates, from say
about 5,00, which lie within a path of points, given a specified width.
eg an aircraft following several waypoints.</p>
<p>Is there a good way to also sort them in the same order as the route.</p>
<p>Calculation speed would be more important than accuracy, since I'm looking at
producing a list of suggestions.</p>
<p>From what I've looked at, I presume it's not straightforward, and the question is
a bit broad, but any suggestions/pointers would be welcome, eg for:</p>
<ol>
<li>Best way to store lat / long, or use spherical coordinates</li>
<li>Having additional clustering info in the coordinate set</li>
<li>Can a transform of some kind be use to simplify the range check</li>
<li>What is the best way to order the points</li>
</ol>
<p>Is here a better approach than doing a circular/square check on several equi-distant
points along the path.</p>