Angular:将数字转换为 WGS84 格式

发布于 2025-01-10 13:07:41 字数 131 浏览 0 评论 0原文

我正在寻找转换坐标的解决方案。有没有管子|服务 |我可以通过哪个函数将数字转换为 WGS84 格式?非常感谢您的帮助。

Longitude: 11.111111
Latitude: 22.22222

I´m looking for a solution to convert coordinates. Is there any pipe | service | function by which I am able to convert numbers to WGS84 format? Thank you very much for any help.

Longitude: 11.111111
Latitude: 22.22222

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

香橙ぽ 2025-01-17 13:07:41

转换为度、分、秒 (DMS) 的示例。一旦你有了这个,如果你愿意的话,你可以添加度、分和秒符号。您还可以将字母 (NSWE) 放置在输出字符串之前或之后。

function toDMS(LAT,LNG) {
const toDMS=coord=>{min=~~(minA=((a=Math.abs(coord))-(deg=~~a))*60);
return deg+" "+min+" "+Math.ceil((minA-min)*60);
};
return `${toDMS(LAT)} ${LAT>=0?"N":"S"} / ${toDMS(LNG)} ${LNG>=0?"E":"W"}`;
}

// examples
console.log(toDMS( 22.22222, 11.11111));
console.log(toDMS( -22.22222, -11.11111));

另一种格式是这样的:

function toDMS(LAT,LNG) {
const toDMS=coord=>{min=~~(minA=((a=Math.abs(coord))-(deg=~~a))*60);
return deg+"° "+min+"' "+Math.ceil((minA-min)*60)+'"';
};
return `${LAT>=0?"N":"S"} ${toDMS(LAT)} / ${LNG>=0?"E":"W"} ${toDMS(LNG)}`;
}

// examples
console.log(toDMS( 22.22222, 11.11111));
console.log(toDMS( -22.22222, -11.11111));

Example of converting to Degree, Minutes, Seconds (DMS). Once you have this you can then add the degree, minutes, and seconds signs if you prefer. You can also position the letters (NSWE) before or after the output string.

function toDMS(LAT,LNG) {
const toDMS=coord=>{min=~~(minA=((a=Math.abs(coord))-(deg=~~a))*60);
return deg+" "+min+" "+Math.ceil((minA-min)*60);
};
return `${toDMS(LAT)} ${LAT>=0?"N":"S"} / ${toDMS(LNG)} ${LNG>=0?"E":"W"}`;
}

// examples
console.log(toDMS( 22.22222, 11.11111));
console.log(toDMS( -22.22222, -11.11111));

Another format would be like this:

function toDMS(LAT,LNG) {
const toDMS=coord=>{min=~~(minA=((a=Math.abs(coord))-(deg=~~a))*60);
return deg+"° "+min+"' "+Math.ceil((minA-min)*60)+'"';
};
return `${LAT>=0?"N":"S"} ${toDMS(LAT)} / ${LNG>=0?"E":"W"} ${toDMS(LNG)}`;
}

// examples
console.log(toDMS( 22.22222, 11.11111));
console.log(toDMS( -22.22222, -11.11111));

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文