我是一名新手程序员,致力于基于JavaScript的智能手机网络应用程序。
应用程序获得经度&纬度使用navigator.geolocation API。
我需要一个基于JavaScript的功能来将获得的位置转换为Easting& Northing使用Polyconic Transformation和“Everest - India 1830”数据,我需要支持。此外,将Easting / Northing转换为经度/纬度也需要相反的函数。
在互联网上进行研究后,我遇到了proj4js。但是,我无法清楚地了解所需转换的程序。也没有找到足够的文件。
提前致谢。
答案 0 :(得分:2)
好的,使用Spatialreference.org的REST服务,您可以获得此投影的定义(http://spatialreference.org/ref/sr-org/7345/proj4/),结果证明是
+proj=poly +lat_0=33.625 +lon_0=77.375 +x_0=0 +y_0=0 +a=6377301.243 +b=6356100.228368102 +units=m +no_defs
要使其与proj4一起使用,请在名为SRORG7345.js
的defs /文件夹中创建一个定义文件,其中包含以下内容:
Proj4js.defs["SRORG7345"] = "+proj=poly +lat_0=33.625 +lon_0=77.375 +x_0=0 +y_0=0 +a=6377301.243 +b=6356100.228368102 +units=m +no_defs";
然后执行此操作,将EPSG:4236转换为新投影:
<html>
<Script src='proj4js-compressed.js'></script>
<script src='defs/EPSG4236.js'></script>
<script src='defs/SRORG7345.js'></script>
<script>
// creating source and destination Proj4js objects
// once initialized, these may be re-used as often as needed
var source = new Proj4js.Proj('EPSG:4236'); //source coordinates will be in Longitude/Latitude
var dest = new Proj4js.Proj('SRORG7345'); //IndiaPolyConic
var p = new Proj4js.Point(-76.0,45.0); //any object will do as long as it has 'x' and 'y' properties
Proj4js.transform(source, dest, p); //do the transformation. x and y are modified in place
console.log(p);
</script>
</html>
我注意到,根据proj4js项目页面,多边形转换“尚未针对任何测试点进行验证”,因此您可能需要对这些结果进行一些检查。