ถ้าคุณเพิ่มเขตข้อมูลตัวช่วยในตารางพิกัดคุณสามารถปรับปรุงเวลาตอบสนองของแบบสอบถาม
แบบนี้:
CREATE TABLE `Coordinates` (
`id` INT(10) UNSIGNED NOT NULL COMMENT 'id for the object',
`type` TINYINT(4) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'type',
`sin_lat` FLOAT NOT NULL COMMENT 'sin(lat) in radians',
`cos_cos` FLOAT NOT NULL COMMENT 'cos(lat)*cos(lon) in radians',
`cos_sin` FLOAT NOT NULL COMMENT 'cos(lat)*sin(lon) in radians',
`lat` FLOAT NOT NULL COMMENT 'latitude in degrees',
`lon` FLOAT NOT NULL COMMENT 'longitude in degrees',
INDEX `lat_lon_idx` (`lat`, `lon`)
)
หากคุณใช้ TokuDB คุณจะได้รับประสิทธิภาพที่ดียิ่งขึ้นถ้าคุณเพิ่มดัชนีการจัดกลุ่มในภาคแสดงผลเช่นนี้:
alter table Coordinates add clustering index c_lat(lat);
alter table Coordinates add clustering index c_lon(lon);
คุณจะต้องใช้ lat และ lon พื้นฐานเป็นองศารวมถึง sin (lat) ในเรเดียน, cos (lat) * cos (lon) ในเรเดียนและ cos (lat) * sin (lon) ในเรเดียนสำหรับแต่ละจุด จากนั้นคุณสร้างฟังก์ชั่น mysql, smth ดังนี้:
CREATE FUNCTION `geodistance`(`sin_lat1` FLOAT,
`cos_cos1` FLOAT, `cos_sin1` FLOAT,
`sin_lat2` FLOAT,
`cos_cos2` FLOAT, `cos_sin2` FLOAT)
RETURNS float
LANGUAGE SQL
DETERMINISTIC
CONTAINS SQL
SQL SECURITY INVOKER
BEGIN
RETURN acos(sin_lat1*sin_lat2 + cos_cos1*cos_cos2 + cos_sin1*cos_sin2);
END
มันให้ระยะทาง
อย่าลืมเพิ่มดัชนีบน lat / lon เพื่อให้การล้อมรอบมวยช่วยในการค้นหาแทนที่จะชะลอความเร็วลง (ดัชนีจะถูกเพิ่มเข้าไปในเคียวรี CREATE TABLE ด้านบน)
INDEX `lat_lon_idx` (`lat`, `lon`)
ด้วยตารางเก่าที่มีพิกัดละติจูด / ลองจิจูดเท่านั้นคุณสามารถตั้งค่าสคริปต์เพื่ออัปเดตดังนี้: (php ใช้ meekrodb)
$users = DB::query('SELECT id,lat,lon FROM Old_Coordinates');
foreach ($users as $user)
{
$lat_rad = deg2rad($user['lat']);
$lon_rad = deg2rad($user['lon']);
DB::replace('Coordinates', array(
'object_id' => $user['id'],
'object_type' => 0,
'sin_lat' => sin($lat_rad),
'cos_cos' => cos($lat_rad)*cos($lon_rad),
'cos_sin' => cos($lat_rad)*sin($lon_rad),
'lat' => $user['lat'],
'lon' => $user['lon']
));
}
จากนั้นคุณปรับการค้นหาจริงเพื่อทำการคำนวณระยะทางเมื่อจำเป็นจริง ๆ เท่านั้นตัวอย่างเช่นโดยการผูกวงกลม (ดีวงรี) จากภายในและภายนอก ในการนั้นคุณจะต้องคำนวณหลายตัวชี้วัดสำหรับแบบสอบถามเอง:
// assuming the search center coordinates are $lat and $lon in degrees
// and radius in km is given in $distance
$lat_rad = deg2rad($lat);
$lon_rad = deg2rad($lon);
$R = 6371; // earth's radius, km
$distance_rad = $distance/$R;
$distance_rad_plus = $distance_rad * 1.06; // ovality error for outer bounding box
$dist_deg_lat = rad2deg($distance_rad_plus); //outer bounding box
$dist_deg_lon = rad2deg($distance_rad_plus/cos(deg2rad($lat)));
$dist_deg_lat_small = rad2deg($distance_rad/sqrt(2)); //inner bounding box
$dist_deg_lon_small = rad2deg($distance_rad/cos(deg2rad($lat))/sqrt(2));
จากการเตรียมการเหล่านั้นการสืบค้นจะเป็นดังนี้ (php):
$neighbors = DB::query("SELECT id, type, lat, lon,
geodistance(sin_lat,cos_cos,cos_sin,%d,%d,%d) as distance
FROM Coordinates WHERE
lat BETWEEN %d AND %d AND lon BETWEEN %d AND %d
HAVING (lat BETWEEN %d AND %d AND lon BETWEEN %d AND %d) OR distance <= %d",
// center radian values: sin_lat, cos_cos, cos_sin
sin($lat_rad),cos($lat_rad)*cos($lon_rad),cos($lat_rad)*sin($lon_rad),
// min_lat, max_lat, min_lon, max_lon for the outside box
$lat-$dist_deg_lat,$lat+$dist_deg_lat,
$lon-$dist_deg_lon,$lon+$dist_deg_lon,
// min_lat, max_lat, min_lon, max_lon for the inside box
$lat-$dist_deg_lat_small,$lat+$dist_deg_lat_small,
$lon-$dist_deg_lon_small,$lon+$dist_deg_lon_small,
// distance in radians
$distance_rad);
อธิบายเกี่ยวกับข้อความค้นหาข้างต้นอาจบอกว่าไม่ได้ใช้ดัชนียกเว้นว่ามีผลลัพธ์เพียงพอที่จะทริกเกอร์ ดัชนีจะถูกใช้เมื่อมีข้อมูลเพียงพอในตารางพิกัด คุณสามารถเพิ่ม FORCE INDEX (lat_lon_idx) ใน SELECT เพื่อให้ใช้ดัชนีโดยไม่คำนึงถึงขนาดของตารางดังนั้นคุณสามารถตรวจสอบด้วยอธิบายว่าทำงานได้อย่างถูกต้อง
ด้วยตัวอย่างโค้ดข้างต้นคุณควรมีการทำงานและปรับใช้การค้นหาวัตถุตามระยะทางโดยมีข้อผิดพลาดน้อยที่สุด