有没有办法将geojson坐标转换为经纬度?

Is there a way to convert geojson coordinates to latitude and longitude?

我正在从 USGS 接收这个点数据

coordinates: Array(3)
0: -100.8913
1: 18.4634
2: 81.41

当我尝试分别使用 [0] 和 [1] 作为纬度/经度时,它们出现在错误的位置

Lat 和 Lon 在 geojson 中颠倒了。这是我的例子

coordinates: Array(3)
0: -100.8913 <- Lon
1: 18.4634 <- Lat
2: 81.41