Hi
How do I get a nearest distance of a point? For example, I have two tables A and B and I want to find the nearest distance between the records of the two tables. In addition, one of the tables should also give me the distance. The data I have geo spatial data. Can this be done in SQL
Help will be appreciatedThey talk about something like that here, in their database section...
http://skyserver.fnal.gov/en/
As far as understanding it....I have enough trouble tieing my shoes...|||Hi
I looked through the site but is not of much help..can you elaborate
thanks
Originally posted by Brett Kaiser
They talk about something like that here, in their database section...
http://skyserver.fnal.gov/en/
As far as understanding it....I have enough trouble tieing my shoes...|||Originally posted by Brett Kaiser
As far as understanding it....I have enough trouble tieing my shoes...
You didn't get this part, huh...
What are you trying to do...maybe it's a simple answer...
"Distance" is a relative thing...
Got indexes?|||Hi
I need the nearest distance in miles of one point from the other.
Originally posted by namitao
Hi
How do I get a nearest distance of a point? For example, I have two tables A and B and I want to find the nearest distance between the records of the two tables. In addition, one of the tables should also give me the distance. The data I have geo spatial data. Can this be done in SQL
Help will be appreciated|||Nearest distance between two values? A distance can only be "nearest" to one point (in the general case), because you can't optimize for more than one criteria. Are you talking about some kind of linear regression between the points?
I think you need to post some sample data and an example of the result you are looking for.|||I'm confused...I originally thought you wanted the distance between rows of data...
Do you want the distance between points on a map?
I did this once for a delivery system...
You want to google the "Great Circle" trig function...I can't find the math...but here's someone who built something...
http://williams.best.vwh.net/gccalc.htm
But you need longitude and latitude of the addresses...
Is that what you're looking for?|||Hi
For Example I have 2 tables
Table A
Number Latitude Longitude Time total
1 48.2951 -122.276 1:22:49 -87
2 48.2952 -122.292 1:17:35 -92
3 48.2952 -122.292 1:16:35 -91
4 48.2952 -122.276 1:21:59 -86
5 48.2952 -122.276 1:22:48 -91
6 48.2953 -122.292 1:17:34 -87
Table B
Number Latitude Longitude Time total_c
1 48.2904 -122.271 1:24:30 -87
2 48.2904 -122.271 1:23:51 -88
3 48.2904 -122.271 1:24:29 -87
4 48.2904 -122.271 1:23:52 -85
5 48.2904 -122.271 1:24:28 -86.5
6 48.2904 -122.271 1:23:53 -86
I need to find the shortest distance between the points of the 2 tables.
I need to find the shortest distance of points in Table B to point in Table A.
I hope this can help someone answer my question
:(
Thanks
Originally posted by Brett Kaiser
I'm confused...I originally thought you wanted the distance between rows of data...
Do you want the distance between points on a map?
I did this once for a delivery system...
You want to google the "Great Circle" trig function...I can't find the math...but here's someone who built something...
http://williams.best.vwh.net/gccalc.htm
But you need longitude and latitude of the addresses...
Is that what you're looking for?|||I did this in Access once...
You need the formual
http://en2.wikipedia.org/wiki/Great_circle_distance
Then create it as a udf and join the tables passing the 2 ponts in...
Have to udf return the distance...
I should rewrite this in sql server...I'll have to dig it up...
It was actually a lot of fun building it (...geez what a geek)
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment