I was trying to find the link to the one we bought, I remember I labeled the CD "ProZip", the one we bought had all kinds of info. We got the one with longitude and latitude for possible future "search near" features.
-Greg
Waterlogged posted this at 22:37 — 23rd September 2004.
I'm not aware of any, but it should be pretty trivial to convert the format if necessary. For instance, the Zipwise products are in CSV format. I would imagine most database programs should be able to import a CSV file, or a tab-delimited file which would be easily created from the CSV.
"In theory, there's no difference between theory and practice. In practice, there is." -- Yogi Berra
Politicalgatewa posted this at 10:57 — 8th October 2004.
I did this about a year ago - let me look for it but I know I found a free one somewhere in .CSV format and it imported fine through Enterprise Manger (MSSQL). I've also got asp code that calculates radius in miles given you have the longitude and latitude coords, it uses pi to compensate for the natural curvature of earth. Hopefully I can find it and I'll post it up here asap.
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
OtterBob posted this at 10:22 — 23rd September 2004.
He has: 46 posts
Joined: Jun 2004
Give http://www.usps.com a try. They've got a CD you might be able to use.
Greg K posted this at 19:43 — 23rd September 2004.
He has: 2,145 posts
Joined: Nov 2003
You can try something like:
http://www.zipwise.com/zip-code-downloads.php
I was trying to find the link to the one we bought, I remember I labeled the CD "ProZip", the one we bought had all kinds of info. We got the one with longitude and latitude for possible future "search near" features.
-Greg
Waterlogged posted this at 22:37 — 23rd September 2004.
They have: 6 posts
Joined: Sep 2004
Thanks guys I will look into those any SQL databases you guys might know about?
OtterBob posted this at 13:14 — 24th September 2004.
He has: 46 posts
Joined: Jun 2004
I'm not aware of any, but it should be pretty trivial to convert the format if necessary. For instance, the Zipwise products are in CSV format. I would imagine most database programs should be able to import a CSV file, or a tab-delimited file which would be easily created from the CSV.
"In theory, there's no difference between theory and practice. In practice, there is." -- Yogi Berra
Politicalgatewa posted this at 10:57 — 8th October 2004.
He has: 24 posts
Joined: May 2004
get teh 29 dollar one, comes in excel format or cvs....zip + 5..
works great
http://www.zipinfo.com/products/z5/z5.htm
Greg K posted this at 19:02 — 8th October 2004.
He has: 2,145 posts
Joined: Nov 2003
I just recieved an e-mail today from the company that we purchased our data from. Here is their link: http://www.zipinfo.com/products/products.htm
-Greg
forwardtrends posted this at 03:34 — 27th October 2004.
He has: 52 posts
Joined: Feb 2003
I did this about a year ago - let me look for it but I know I found a free one somewhere in .CSV format and it imported fine through Enterprise Manger (MSSQL). I've also got asp code that calculates radius in miles given you have the longitude and latitude coords, it uses pi to compensate for the natural curvature of earth. Hopefully I can find it and I'll post it up here asap.
Aaron Elliott
forwardtrends.com
eBlush_Hector posted this at 15:33 — 2nd December 2004.
He has: 51 posts
Joined: Jan 2004
In perl:
sub great_circle_distance {
my $lon_1=shift;
my $lat_1=shift;
my $lon_2=shift;
my $lat_2=shift;
# Convert all the degrees to radians
$lat_1 = °_to_rad($lat_1);
$lon_1 = °_to_rad($lon_1);
$lat_2 = °_to_rad($lat_2);
$lon_2 = °_to_rad($lon_2);
# Find the deltas
my $delta_lat = $lat_2 - $lat_1;
my $delta_lon = $lon_2 - $lon_1;
# Find the Great Circle distance
my $temp = sin($delta_lat/2.0)**2 + cos($lat_1) * cos($lat_2) * sin($delta_lon/2.0)**2;
# EARTH_RADIUS = 3956
my $distance = 3956 * 2 * atan2(sqrt($temp),sqrt(1-$temp));
return($distance);
}
sub deg_to_rad {
my $deg_2 = shift;
my $radians = 0.0;
my $pi = atan2(1,1) * 4;
$radians = $deg_2 * $pi/180.0;
return($radians);
}
http://www.eblush.com/
Where you can get personal, online!
NEW: Honor your heroes at ThisIsMyHero.com!
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.