Cube and EarthDistance
前言:项目中用到了postgreSQL中的earthdistance()函数功能计算地球上两点之间的距离,中文的资料太少了,我找到了一篇英文的、讲的很好的文章 ,特此翻译,希望能够帮助到以后用到earthdistance的同学。
一、两种可用的选择
当我们想用Postgres作为GEO函数使用时,我们通常有2中选择(据我所知):1.PostGIS: 为postgreSQL提供了高级GEO函数功能。我用了它一段时间,但是它对于我的需求来说太笨重了。
2.Cube和Earthdistance: 这两个拓展为轻量级的Geo关系实体提供了简单、快速的实现方法。二、为什么在数据库服务器端做计算
这是件非常明显的事。服务器存储了所有的数据,服务器拓展是用C/C++实现的,非常快。为数据表做索引也能加快计算速度。三、使用我的选择--Cube and EarthDistance
作为开始,你应该先建一个数据库(我想你知道该怎么做),然后使它们能用我们的架构。 执行:- CREATE EXTENSION cube;
- CREATE EXTENSION earthdistance;
上面的命令创建了大约40个函数,以后我们做数据查询的时候就可以用了。
在我们的例子中,我创建了名为events的表,字段有:id(serial), name(varchar 255), lat(double), lng(double)。(别忘了~~)四、计算2个坐标之间的距离
计算2个坐标之间的距离,我们要用到earth_distance(ll_to_earth($latlngcube), ll_to_earth($latlng_cube))这个函数。 earth_distance()函数接受2组坐标值,返回值一个以米为单位的的数值。这能用于很多场景,比如根据某一位置找到离其最近的发生的新闻事件的列表。
【译者注】这里要提下几个重要的函数:(参考:http://www.postgresql.org/docs/8.3/static/earthdistance.html)
Table F-3. Cube-based earthdistance functions
Function Returns Description earth()
float8 Returns the assumed radius of the Earth. sec_to_gc(float8)
float8 Converts the normal straight line (secant) distance between between two points on the surface of the Earth to the great circle distance between them. gc_to_sec(float8)
float8 Converts the great circle distance between two points on the surface of the Earth to the normal straight line (secant) distance between them. ll_to_earth(float8, float8)
earth Returns the location of a point on the surface of the Earth given its latitude (argument 1) and longitude (argument 2) in degrees. latitude(earth)
float8 Returns the latitude in degrees of a point on the surface of the Earth. longitude(earth)
float8 Returns the longitude in degrees of a point on the surface of the Earth. earth_distance(earth, earth)
float8 Returns the great circle distance between two points on the surface of the Earth. earth_box(earth, float8)
cube Returns a box suitable for an indexed search using the cube @> operator for points within a given great circle distance of a location. Some points in this box are further than the specified great circle distance from the location, so a second check using earth_distance
should be included in the query.数据库的操作可能就像下面这样:
- SELECT events.id events.name, eaerthdiatance(ll_to_earth({currentuserlat}, {currentuserlng}), llto_earth(events.lat, events.lng))
- as distancefromcurrentlocation FROM events
- ORDER BY distancefromcurretnlocation ASC;
这将给我们一个很nice的新闻事件列表,按他们的离我们当前位置的距离由近到远排序。第一个是离我们最近的。
五、找到某个半径范围内的记录
Cube和Earthdiatance拓展提供的另一个伟大的函数是earth_box(ll_to_earch($latlngcub), $radiusinmetres)。 这个函数通过简单的比较就能到找到某个半径范围内的所有记录。它是靠返回2点之间的“大圆距离”实现的。【译者注】大圆距离(Great circle disstance)指的是从球面的一点A出发到达球面上另一点B,所经过的最短路径的长度。一般说来,球面上任意两点A和B都可以与球心确定唯一的大圆,这个大圆被称为黎曼圆,而在大圆上连接这两点的较短的一条弧的长度就是大圆距离。如果想了解更多,请看wiki:大圆距离
它能用于查询我们城市中所有的新闻事件:
- SELECT events.id, events.name FROM events
- WHERE earth_box({currentuserlat}, {currentuserlng}, {radiusinmetres}) @> ll_to_earth(events.lat, events.lng);
这条查询语句仅仅会返回在radius_in_metres指定的半径范围内的记录,非常简单吧!
六、提高查询速度
你可能会发现上面的查询有不小的开销。以我的经验,最好对一些字段建立索引。 (下面这条语句假定你又events表, 同时events表有字段lat和lng)
- CREATE INDEX ${nameofindex} on events USING gits(lltoearth(lat, lng));
七、数据类型
我的应用比较简单,所以我把经纬度(lat和lng)都设成了double类型。这使得我用Node.js开发起来更加快速,而不用再去自己定制针对GIST类型的解决方案。
八、就这些!
很神奇,对么?!?我们仅仅用常用的数据类型(double)就足以去用一些GEO函数创建基于地理位置的社交app(【译者注】知乎上的一个回答)!
---------------------------
英语水平有限,如有翻译不周之处,请您指点!------------------------------
update:
我使用的postgreSQL语句总结:
- /*
- * postgreSQL之earthdistance学习笔记
- * author: wusuopubupt
- * date: 2013-03-31
- */
- /*创建表*/
- CREATE TABLE picture (
- id serial PRIMARY KEY ,
- p_uid char(12) NOT NULL,
- p_key char(23) NOT NULL,
- lat real not null,
- lng real NOT NULL,
- up int NOT NULL,
- down int NOT NULL,
- ip varchar(15) DEFAULT NULL,
- address varchar(256) DEFAULT NULL
- );
- /*插入记录*/
- INSERT INTO picture(p_uid, p_key, lat, lng, up, down, ip, address)
- VALUES('aaaabbbbcccc', '2014032008164023279.png', 40.043945, 116.413668, 0, 0, '', '');
- /*插入记录*/
- INSERT INTO picture(p_uid, p_key, lat, lng, up, down, ip, address)
- VALUES('xxxxccccmmmm', '2014032008164023111.png', 40.067183, 116.415230, 0, 0, '', '');
- /*选择记录*/
- SELECT * FROM picture;
- /*更新记录*/
- UPDATE picture SET address='LiShuiqiao' WHERE id=1;
- UPDATE picture SET address='TianTongyuan' WHERE id=2;
- /*对经纬度列创建索引*/
- CREATE INDEX ll_idx on picture USING gist(ll_to_earth(lat, lng));
- /*根据半径(1000米)选择记录*/
- SELECT * FROM picture where earth_box(ll_to_earth(40.059286,116.418773),1000) @> ll_to_earth(picture.lat, picture.lng);
- /*选择距离当前用户的距离*/
- SELECT picture.id, earth_distance(ll_to_earth(picture.lat, picture.lng), ll_to_earth(40.059286,116.418773))
- AS dis FROM picture
- ORDER BY dis ASC;
- /*
- * 以下内容是网上的一篇教程
- * 地址:http://www.cse.iitb.ac.in/dbms/Data/Courses/CS631/PostgreSQL-Resources/postgresql-9.2.4/contrib/earthdistance/expected/earthdistance.out
- */
- --
- -- Test earthdistance extension
- --
- -- In this file we also do some testing of extension create/drop scenarios.
- -- That's really exercising the core database's dependency logic, so ideally
- -- we'd do it in the core regression tests, but we can't for lack of suitable
- -- guaranteed-available extensions. earthdistance is a good test case because
- -- it has a dependency on the cube extension.
- --
- CREATE EXTENSION earthdistance; -- fail, must install cube first
- ERROR: required extension "cube" is not installed
- CREATE EXTENSION cube;
- CREATE EXTENSION earthdistance;
- --
- -- The radius of the Earth we are using.
- --
- SELECT earth()::numeric(20,5);
- earth
- ---------------
- 6378168.00000
- (1 row)
- --
- -- Convert straight line distances to great circle distances.把直线距离转成大圆距离
- --
- SELECT (pi()*earth())::numeric(20,5);
- numeric
- ----------------
- 20037605.73216
- (1 row)
- SELECT sec_to_gc(0)::numeric(20,5);
- sec_to_gc
- -----------
- 0.00000
- (1 row)
- --
- -- Convert great circle distances to straight line distances.
- --
- SELECT gc_to_sec(0)::numeric(20,5);
- gc_to_sec
- -----------
- 0.00000
- (1 row)
- SELECT gc_to_sec(sec_to_gc(2*earth()))::numeric(20,5);
- gc_to_sec
- ----------------
- 12756336.00000
- (1 row)
- --
- -- Set coordinates using latitude and longitude.
- -- Extract each coordinate separately so we can round them.
- --
- SELECT cube_ll_coord(ll_to_earth(0,0),1)::numeric(20,5),
- cube_ll_coord(ll_to_earth(0,0),2)::numeric(20,5),
- cube_ll_coord(ll_to_earth(0,0),3)::numeric(20,5);
- cube_ll_coord | cube_ll_coord | cube_ll_coord
- ---------------+---------------+---------------
- 6378168.00000 | 0.00000 | 0.00000
- (1 row)
- SELECT cube_ll_coord(ll_to_earth(360,360),1)::numeric(20,5),
- cube_ll_coord(ll_to_earth(360,360),2)::numeric(20,5),
- cube_ll_coord(ll_to_earth(360,360),3)::numeric(20,5);
- cube_ll_coord | cube_ll_coord | cube_ll_coord
- ---------------+---------------+---------------
- 6378168.00000 | 0.00000 | 0.00000
- (1 row)
- --
- -- Test getting the latitude of a location.
- --
- SELECT latitude(ll_to_earth(0,0))::numeric(20,10);
- latitude
- --------------
- 0.0000000000
- (1 row)
- SELECT latitude(ll_to_earth(45,0))::numeric(20,10);
- latitude
- ---------------
- 45.0000000000
- (1 row)
- --
- -- Test getting the longitude of a location.
- --
- SELECT longitude(ll_to_earth(0,0))::numeric(20,10);
- longitude
- --------------
- 0.0000000000
- (1 row)
- SELECT longitude(ll_to_earth(45,0))::numeric(20,10);
- longitude
- --------------
- 0.0000000000
- (1 row)
- --
- -- For the distance tests the following is some real life data.
- --
- -- Chicago has a latitude of 41.8 and a longitude of 87.6.
- -- Albuquerque has a latitude of 35.1 and a longitude of 106.7.
- -- (Note that latitude and longitude are specified differently
- -- in the cube based functions than for the point based functions.)
- --
- --
- -- Test getting the distance between two points using earth_distance.
- --
- SELECT earth_distance(ll_to_earth(0,0),ll_to_earth(0,0))::numeric(20,5);
- earth_distance
- ----------------
- 0.00000
- (1 row)
- SELECT earth_distance(ll_to_earth(0,0),ll_to_earth(0,180))::numeric(20,5);
- earth_distance
- ----------------
- 20037605.73216
- (1 row)
- --
- -- Test getting the distance between two points using geo_distance.
- --
- SELECT geo_distance('(0,0)'::point,'(0,0)'::point)::numeric(20,5);
- geo_distance
- --------------
- 0.00000
- (1 row)
- SELECT geo_distance('(0,0)'::point,'(180,0)'::point)::numeric(20,5);
- geo_distance
- --------------
- 12436.77274
- (1 row)
- --
- -- Test getting the distance between two points using the <@> operator.
- --
- SELECT ('(0,0)'::point <@> '(0,0)'::point)::numeric(20,5);
- numeric
- ---------
- 0.00000
- (1 row)
- SELECT ('(0,0)'::point <@> '(180,0)'::point)::numeric(20,5);
- numeric
- -------------
- 12436.77274
- (1 row)
- --
- -- Test for points that should be in bounding boxes.
- --
- SELECT earth_box(ll_to_earth(0,0),
- earth_distance(ll_to_earth(0,0),ll_to_earth(0,1))*1.00001) @>
- ll_to_earth(0,1);
- ?column?
- ----------
- t
- (1 row)
- SELECT earth_box(ll_to_earth(0,0),
- earth_distance(ll_to_earth(0,0),ll_to_earth(0,0.1))*1.00001) @>
- ll_to_earth(0,0.1);
- ?column?
- ----------
- t
- (1 row)
- --
- -- Test for points that shouldn't be in bounding boxes. Note that we need
- -- to make points way outside, since some points close may be in the box
- -- but further away than the distance we are testing.
- --
- SELECT earth_box(ll_to_earth(0,0),
- earth_distance(ll_to_earth(0,0),ll_to_earth(0,1))*.57735) @>
- ll_to_earth(0,1);
- ?column?
- ----------
- f
- (1 row)
- SELECT earth_box(ll_to_earth(0,0),
- earth_distance(ll_to_earth(0,0),ll_to_earth(0,0.1))*.57735) @>
- ll_to_earth(0,0.1);
- ?column?
- ----------
- f
- (1 row)
Cube and EarthDistance的更多相关文章
- 用postgreSQL做基于地理位置的app(zz)
前言:项目中用到了postgreSQL中的earthdistance()函数功能计算地球上两点之间的距离,中文的资料太少了,我找到了一篇英文的.讲的很好的文章,特此翻译,希望能够帮助到以后用到eart ...
- Searching in a Radius using Postgres[Marked]
Searching in a Radius using Postgres Creating a GEO application has never been easier. You can have ...
- 常用 PostgreSQL 脚本
数据定义 数据库 -- 创建数据库 -- https://www.postgresql.org/docs/current/static/multibyte.html -- database_name, ...
- postgresql中的CUBE函数
数据函数简介添加汇总额外信息 数据 --复杂统计函数 CREATE TABLE t3 (color_type varchar(20), in_date varchar(30),color_count ...
- HDU 3584 Cube (三维 树状数组)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3584 Cube Problem Description Given an N*N*N cube A, ...
- SQLSERVER中的ALL、PERCENT、CUBE关键字、ROLLUP关键字和GROUPING函数
SQLSERVER中的ALL.PERCENT.CUBE关键字.ROLLUP关键字和GROUPING函数 先来创建一个测试表 USE [tempdb] GO )) GO INSERT INTO [#te ...
- 轻量级OLAP(一):Cube计算
有一个数据多维分析的任务: 日志的周UV: APP的收集量及标注量,TOP 20 APP(周UV),TOP 20 APP标注分类(周UV): 手机机型的收集量及标注量,TOP 20 机型(周UV),T ...
- BI cube的前世今生:商业智能BI为什么需要cube技术
企业中常常会出现这样一幕幕尴尬的场景: 企业的决策人员需要从不同的角度来审视业务,协助他们分析业务,例如分析销售数据,可能会综合时间周期.产品类别.地理分布.客户群类等多种因素来考量.IT人员在每一个 ...
- [译]Dynamics AX 2012 R2 BI系列-Cube概览
https://msdn.microsoft.com/EN-US/library/dd252604.aspx Cube是一个多维度的结构,它是BI应用开发的基础.本文描述了cube的组成部分, ...
随机推荐
- [改善Java代码]构造函数尽量简化
建议34: 构造函数尽量简化 我们知道在通过new关键字生成对象时必然会调用构造函数,构造函数的简繁情况会直接影响实例对象的创建是否繁琐.在项目开发中,我们一般都会制订构造函数尽量简单,尽可能不抛异常 ...
- poj 3250 栈应用
#include<iostream> #include<cstring> #include<algorithm> #include<cstdio> #d ...
- hdu 4604 动态规划
思路:这题的感觉就是最长上升子序列的升级版.首先对于最长上升子序列要用n*log(n)的算法才行,这个复杂度的算法可以从hdu1025得到启发.然后就是什么情况下最优问题了.对于序列中某个数i,找出其 ...
- Servlet & JSP - Servlet API Overview
Servlet & Generic & HttpServlet 类图 Servlet 的生命周期 init.service 和 destroy 是 servlet 的生命周期方法,它们 ...
- MyBatis(3.2.3) - One-to-one mapping using nested Select
We can get Student along with the Address details using a nested Select query as follows: <result ...
- HDOJ2014青年歌手大奖赛_评委会打分
青年歌手大奖赛_评委会打分 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tot ...
- st_mode 的位定义
先前所描述的st_mode 则定义了下列数种情况: S_IFMT 0170000 文件类型的位遮罩 S_IFSOCK 0140000 scoket S_IFLNK 0120000 符号连接 S_IFR ...
- Unity 5.4大赞:HTC Vive经典The lab渲染器开源
HTC Vive提供了一个不错的免费VR demo,最近1周仔细体验了一番. 仔细看了其安装文件,竟然是Unity 5.4beta版本(通过查log,知道Valve公司用的是最新的5.4.0b11版本 ...
- 委托[delegate]_C#
委托(delegate): 委托声明定义了一种类型,它用一组特定的参数以及返回类型来封装方法.对于静态方法,委托对象封装要调用的方法.对于实例方法,委托对象同时封装一个实例和该实例上的一个方法.如果您 ...
- Linux小白最佳实践:《超容易的Linux系统管理入门书》(连载五)Linux系统的对话方式
本篇是Linux小白最佳实践第5篇,目的就是让白菜们了解Linux进程之间是如何对话的.之前连载的几篇,在微信上引起了很多的反响,有人也反映图多文字少,感觉没有干货.本篇选了大部分是实战讲解的&quo ...