Hi guys,
I'm not fluent in database programming languages, but I am trying to auto-generate some numbers to put in a .sql file.
The numbers I am trying to auto-generate refer to something that are called rad_latitude and rad_longitude in this particular .SQL file.
See example below:
INSERT INTO `dsb_loc_zips` (`zip_id`, `zipcode`, `fk_country_id`, `fk_state_id`, `fk_city_id`, `latitude`, `rad_latitude`, `longitude`, `rad_longitude`) VALUES
(42789, 'OX1', 217, 63, 212310, 51.729639, 0.9028525214180669, -1.28049, -0.02234876653886219),
51.729639 latitude
0.9028525214180669 rad_latitude
-1.28049 longitude
-0.02234876653886219 rad_longitude
I was able to generate the above code by "manually" entering some location info, including the latitude and longitude numbers into a Admin/CMS area of a website.
... I did not know the "rad_" numbers. The site auto-generated them.
Do you know of any Program, Website or Excel file etc, that by entering a long list of "latitude" and "longitude" numbers... can auto-generate the relevant "rad_latitude" and "rad_longitude" numbers?
Thank you for reading :)