- 1、本文档共17页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
android多点触摸(国外英文资料)
android多点触摸(国外英文资料)
In the Android can use the following code to get the distance:
Java code
Public double getDistance (double LAT1, double lon1, double lat2, double lon2) {
Float[] results=new float[1];
Location.distanceBetween (LAT1, lon1, lat2, lon2, results);
Return results[0];
}
The following code acquisition in distanceBetween method without other devices like Android Location:
Java code
Double distance (double LAT1, double lon1, double lat2, double lon2) {
Double theta = lon1 - lon2;
Double dist = Math.sin (deg2rad (LAT1) Math.sin (deg2rad) * (lat2))
+ Math.cos (deg2rad (LAT1) Math.cos (deg2rad) * (lat2))
* Math.cos (deg2rad (theta));
Dist = Math.acos (dist);
Dist = rad2deg (dist);
Double miles = dist * 60 * 1.1515;
Return miles;
}
/ / angle conversion to radians
Static double deg2rad (double degree) {
Return / degree 180 * Math.PI;
}
Converts radians to / / angle
Static double rad2deg (double radian) {
Return radian * 180 / Math.PI;
}
The results of this calculation is to be converted into miles, if need kilometers, multiplied by 1.609344, multiplied by 0.8684 if the sea needs
According to the calculation of the geometric distance between two points of latitude and longitude
According to the two points on the earth between GPS geodetic coordinates, geometric distance between two points.
The source code is as follows:
Note: the parameters of ArcGis calculated DOUBLE values, if you want the incoming parameters for the transformation requires degrees minutes. The calculation results are in m.. After verification of my own, the error is very small.
Public class Distance
{...
Private static final double EARTH_RADIUS = 6378137;
Private static double rad (double D)
{...
Return d * Math.PI / 180;
}
*//** / * *
* according to the latitude and longitude coordinates between two points (double value), calculate the distance between two points, the unit of M
* @param lng1
* @param LAT1
* @param lng2
* @param lat2
* @return
* /
Public static double GetDistance (double ln
您可能关注的文档
- 2011心理学考研-----实验心理学部分试题(国外英文资料).doc
- 2012年山东技能大赛数控车理论试题(库)含答案(国外英文资料).doc
- 2012年春季华东理工大学社会学概论(专)网上作业1(国外英文资料).doc
- 2012年巾帼文明岗先进事迹:飒爽英姿不让须眉(国外英文资料).doc
- 2012年巴西国际电子消费品展览会(国外英文资料).doc
- 2012年河南省初中学业水平暨中等学校招生考试语文试卷(国外英文资料).doc
- 2012年湖北省二级建造师考试题及答案(国外英文资料).doc
- 2012单选题满分答题技巧(国外英文资料).doc
- 2012年秋季华东理工大学基础会计学网上作业2(国外英文资料).doc
- 2012年泥南中心学校(国外英文资料).doc
- 第18讲 第17课 西晋的短暂统一和北方各族的内迁.docx
- 第15讲 第14课 沟通中外文明的“丝绸之路”.docx
- 第13课时 中东 欧洲西部.doc
- 第17讲 第16 课三国鼎立.docx
- 第17讲 第16课 三国鼎立 带解析.docx
- 2024_2025年新教材高中历史课时检测9近代西方的法律与教化含解析新人教版选择性必修1.doc
- 2024_2025学年高二数学下学期期末备考试卷文含解析.docx
- 山西版2024高考政治一轮复习第二单元生产劳动与经营第5课时企业与劳动者教案.docx
- 第16讲 第15课 两汉的科技和文化 带解析.docx
- 第13课 宋元时期的科技与中外交通.docx
文档评论(0)