将二维坐标数组合并到R中的一维字符列表中
我有一个包含 118420
元素的大数组。该数组是数字,尺寸如下。
dim(Watershed_Coords)
[1] 1 59210 2
问题是该数组中的值是 [lat]
和 [lon]
已分割的坐标。我想将它们合并为一个 "[lon,lat]"
形式的单个字符列表,其中还包括 ,
。
I have a large array with 118420
elements. The array is numeric, and the dimensions are below
dim(Watershed_Coords)
[1] 1 59210 2
The problem is that the values in this array are coordinates where [lat]
and [lon]
have been split. I would like to merge these to have a single character list in the form of "[lon,lat]"
where the ,
is also included.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行以下操作:
为了证明这是正确的格式,我们可以执行以下操作:
由 reprex 包 (v2.0.1)
数据
You can do:
And to demonstrate this is the correct, format, we can do:
Created on 2022-03-02 by the reprex package (v2.0.1)
Data