Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 06-11-2003, 06:59 PM   #1 (permalink)
Tilted
 
Location: ...Anywhere but Here
Question for Java/PHP Programmers

Does anyone know how I can incorporate, using SQL, Java, and PHP, a function that, when 2 zip codes are entered, it gives an approximate distance between the 2 zip codes. Like, somewhere within 20 miles or so?

I know UPS does it to give estimates on shipping costs. Also places like mapquest use it to give directions. I dont' need something that complex, just an approximation between 2 area codes.
RatherThanWords is offline  
Old 06-11-2003, 07:52 PM   #2 (permalink)
Crazy
 
In order to do that you need some kind of database that has locational information of all the zip codes. In short you need some kind of geographical database like GIS (I'm not sure of the name of the company that makes the big one Arcview I think it's EMSI?).

They also make an internet mapping one that can power a mapquest like application. I'm not sure if it's tied to a specific platform or if there is any web service associated with it or not.
twister002 is offline  
Old 06-11-2003, 11:25 PM   #3 (permalink)
Upright
 
Well, here's a website where you can get the latitude an longitude (which i suspect you could easily translate into miles) of a specified zip code http://www.census.gov/cgi-bin/gazetteer/

Now, getting all the zip codes in this database manually would be pretty tedious... The remedies I can think of are:

1) Write a script that checks all zip codes (00001 through 99999) and use a Regular Expression to extract the coordinates from the page when it comes back, then store these coordinates to your database.

2) Have your script check your database to see if you already have the info for the submitted zip code, and if not, do the same thing as in #1 above, only for that code. Eventually you would build up a pretty complete library of zip codes.

3) Find another way to get the zip codes. Writing the regular expression for this could be a little tricky.

Once you have the latitude and longitude for your two zip codes, you could subtract them to get the north-south difference and the east-west difference. Using those and the pythagorean theorem you could find the distance between the two points. Find a conversion factor for degrees (distance, lat. & long.) to miles and you're set



This could all be a little more work than you want to put into it though. It would be a cool webapp when you're done though. If you need / want more help, just let me know
fox128 is offline  
Old 06-12-2003, 05:15 AM   #4 (permalink)
Essen meine kurze Hosen
 
Location: NY Burbs
Don't build your own table. Go here, <b>Census Tables </b>, and download the zip table used by this service. This is a page off of the one recommended by fox128 above.

The other thing you could do is search for a SOAP service that does what you want. Not sure if there are any here, but <b>XMethods </b> is a good place to start.
__________________
Out the 10Base-T, through the router, down the T1, over the leased line, off the bridge, past the firewall...nothing but Net.

Last edited by platypus; 06-12-2003 at 05:17 AM..
platypus is offline  
Old 06-12-2003, 06:54 AM   #5 (permalink)
Tilted
 
Location: ...Anywhere but Here
Hey fox 128. I found a text file (about 1.8 meg) of many cities with their zip codes, population, and lat/long. Thanks a lot for your help in this matter. I'm gonna start working with the sql now and see if I can get a demo up here within the next week or so. I'll keep you informed

Thank you also platypus
RatherThanWords is offline  
Old 06-12-2003, 10:41 AM   #6 (permalink)
Upright
 
Ah, that table makes things much simpler.
Can't wait to see how your project develops, good luck.
fox128 is offline  
Old 07-12-2003, 12:15 PM   #7 (permalink)
Upright
 
Location: Rapid City, SD
Why use java - PHP and MySQL can do the same thing but much quicker, and do you realy want to have your viewers to have to download the java script every time the view or refresh the page. PHP's math functions are more powerfull anyway.

As for the zip code formula - ask UPS they will give it to you.
__________________
What Did One Women Say To Another Women?

Who Cares They Both Are Full Of Shit Anyway!
sloedough is offline  
Old 07-12-2003, 01:12 PM   #8 (permalink)
Junkie
 
Location: North Hollywood
Code:
diff_miles = 3963.0 * acos( sin( zip1_lattitude_rad ) * sin ( zip2_lattitude_rad ) + cos( zip1_lattitude_rad ) * cos ( zip2_lattitude_rad ) * cos( zip2_longitude_rad - zip1.longitude_rad ) )
charliex is offline  
Old 07-13-2003, 09:13 PM   #9 (permalink)
Upright
 
Or you could use: (Probably less cpu intensive)

Code:
$diff_miles = $conversion * sqrt( pow( $zip1_lattitude_rad - $zip2_lattitude_rad, 2 ) + pow( $zip1_longitude_rad - $zip2_longitude_rad, 2 );
$conversion being the conversion factor for whatever unit the latitude and longitude are in to miles.

Last edited by fox128; 07-13-2003 at 09:18 PM..
fox128 is offline  
 

Tags
java or php, programmers, question


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 12:34 AM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360