- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个折线形状文件,它代表城市道路网的一部分。我的 shapefile 包含多个线路/街道段(在我的例子中为 58)。通过使用 R-cran,我想进一步将折线段划分为具有相同长度(例如 10 m)的较小部分。
提供一个想法:
当我将折线形状文件导入 R 并创建一个数据框时,它看起来像:
# Import the polyline shapefile into a SpatialLinesDataFrame object:
# library(sp)
sp.roads <- readOGR(dsn="/Users/mgv/Documents/project",layer="roads_sr_corr")
# Create a dataframe from the SpatialLinesDataFrame
# library(stplanr)
linedf <- line2df(sp.roads)
str(linedf)
> str(linedf)
'data.frame': 58 obs. of 4 variables:
$ fx: num 13.39991 13.40138 13.40606 13.40232 13.40177 ...
$ fy: num 42.35066 42.35412 42.35599 42.34514 42.34534 ...
$ tx: num 13.40150 13.40119 13.40591 13.40246 13.40182 ...
$ ty: num 42.35026 42.35386 42.35602 42.34530 42.34525 ...
其中 (fx, fy, tx, ty) 分别是点 (x,y)_from 和 (x,y)_to 的经度和纬度,界定每个线段(此处为 5 个)。
这个想法是获得一个更密集的折线形状文件,我可以将其用作“某种网格”进行空间分析,以将沿道路收集的地理引用数据点与每个路段相关联。
非常感谢您的帮助以及解决此问题的任何建议。
最佳答案
以下函数将空间线对象的每条线划分为 split_length 长度加上剩余线段的段。它使用线段的向量表示法,创建一个单位长度和要分割的线方向的向量u,可以将其相乘以创建由许多线段组成的更长的线(here和here引用文献我用过)。
SplitLines = function(spatial_line,
split_length = 20,
return.dataframe = F,
plot.results = F) {
# The function splits each line of the spatial line object into segments of a given length
# spatial_line: a spatial line object
# split_length: the length of the segments to split the lines into, in units of the SpatialLine object
# return.dataframe: if true it returns the segments in the form of a dataframe, otherwise in a SpatialLine object
# plot.results:
require(sp)
#### Define support functions ####
# SpatialLines2df extracts start and end point coordinates of each segment of a SpatialLine object
# spatial_line: an object class SpatialLinesDataFrame of the package sp
SpatialLines2df = function(spatial_line) {
df = data.frame(
id = character(),
mline_id = character(),
segment_id = character(),
fx = numeric(),
fy = numeric(),
tx = numeric(),
ty = numeric(),
stringsAsFactors = FALSE
)
for (i in 1:length(spatial_line)) {
coords = spatial_line@lines[[i]]@Lines[[1]]@coords # For each line takes the coords of the vertex
row_nums = 1:(nrow(coords) - 1)
mline_id = formatC(i, width = 9, flag = '0') # Creates id for the line
segment_id = formatC(row_nums, width = 3, flag = '0') # Creates id for each single segment belonging to the line
id = paste0(mline_id, '_', segment_id) # Creates a composite id
for (j in row_nums) {
# For each segment stores ids and coordinates
df[nrow(df) + 1, ] = c(id[j],
mline_id,
segment_id[j],
coords[j, 1],
coords[j, 2],
coords[j + 1, 1],
coords[j + 1, 2])
}
}
row.names(df) = NULL
df$fx = as.numeric(df$fx)
df$fy = as.numeric(df$fy)
df$tx = as.numeric(df$tx)
df$ty = as.numeric(df$ty)
return(df)
}
# linedf2SpatialLines converts a dataframe of IDs and coordinates into a spatial line
# linedf: a data.frame with columns as:
# id = generic ids of the lines,
# fx = coordinates x of the first point of the line
# fy = coordinates y of the first point of the line
# tx = coordinates x of the second point of the line
# tx = coordinates y of the second point of the line
require(sp)
linedf2SpatialLines = function(linedf) {
sl = list()
for (i in 1:nrow(linedf)) {
c1 = cbind(rbind(linedf$fx[i], linedf$tx[i]),
rbind(linedf$fy[i], linedf$ty[i]))
l1 = Line(c1)
sl[[i]] = Lines(list(l1), ID = linedf$id[i])
}
SL = SpatialLines(sl)
return(SL)
}
#### Split the lines ####
# Convert the input SpatialLine object into a dataframe and create an empty output dataframe
linedf = SpatialLines2df(spatial_line)
df = data.frame(
id = character(),
fx = numeric(),
fy = numeric(),
tx = numeric(),
ty = numeric(),
stringsAsFactors = FALSE
)
for (i in 1:nrow(linedf)) {
# For each line of the dataframe, corresponding to a single line of the spatial object
# skips if length is less then split_length
v_seg = linedf[i, ]
seg_length = sqrt((v_seg$fx - v_seg$tx) ^ 2 + (v_seg$fy - v_seg$ty) ^
2) # segment length
if (seg_length <= split_length) {
df[nrow(df) + 1,] = c(paste0(v_seg$id, '_', '0000'),
v_seg$fx,
v_seg$fy,
v_seg$tx,
v_seg$ty)
next()
}
# Create a vector of direction as the line and unit length
# vector v corresponding to the line
v = c(v_seg$tx - v_seg$fx,
v_seg$ty - v_seg$fy)
# vector of direction v and unit length
u = c(v[1] / sqrt(v[1] ^ 2 + v[2] ^ 2), v[2] / sqrt(v[1] ^ 2 + v[2] ^ 2))
# Calculates how many segment the line is split into and the leftover
num_seg = floor(seg_length / split_length)
seg_left = seg_length - (num_seg * split_length)
# Add to the output dataframe each segment plus the leftover
for (i in 0:(num_seg - 1)) {
# Add num_seg segments
df[nrow(df) + 1,] = c(
paste0(v_seg$id, '_', formatC(i, width = 4, flag = '0')),
v_seg$fx + u[1] * split_length * i,
v_seg$fy + u[2] * split_length * i,
v_seg$fx + u[1] * split_length * (i + 1),
v_seg$fy + u[2] * split_length * (i + 1)
)
}
df[nrow(df) + 1,] = c(
paste0(v_seg$id, '_', formatC(
num_seg, width = 4, flag = '0'
)),
# Add leftover segment
v_seg$fx + u[1] * split_length * num_seg,
v_seg$fy + u[2] * split_length * num_seg,
v_seg$tx,
v_seg$ty
)
}
#### Visualise the results to check ####
if (plot.results) {
plot(spatial_line)
coords = cbind(as.numeric(df$fx), as.numeric(df$fy))
coords = rbind(coords, as.numeric(df$tx[nrow(df)]), as.numeric(df$ty)[nrow(df)])
sp_points = SpatialPoints(coords)
plot(sp_points, col = 'red', add = T)
}
#### Output ####
df$fx = as.numeric(df$fx)
df$fy = as.numeric(df$fy)
df$tx = as.numeric(df$tx)
df$ty = as.numeric(df$ty)
if (return.dataframe) {
return(df)
} # Return a dataframe
sl = linedf2SpatialLines(df)
return(sl) # Return a SpatialLine object
}
您可以使用以下命令测试该功能:
Sl = SpatialLines(list(Lines(list(Line(cbind(c(1,2,3, 4),c(3,2,2,4)))), ID="a")))
plot(Sl)
Sl_split = SplitLines(Sl, split_length = 0.1, return.dataframe = FALSE, plot.results = TRUE)
我相信这个函数可以写得更加简洁和高效。我在 git repository 中创建了一个包,以防有人愿意贡献。
关于r - 如何将折线形状文件分割为等长的较小段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38700246/
实际上我只需要用JAVA编写一个简单的程序来将MySQL INSERTS行转换为CSV文件(每个mysql表等于一个CSV文件) 在JAVA中使用正则表达式是最好的解决方案吗? 我的主要问题是如何正确
我有一个 txt 文件,其格式为: Key:value Key:value Key:value ... 我想将所有键及其值放入我创建的 hashMap 中。如何让 FileReader(file) 或
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度的了解。包括尝试的解决方案、为什么它们不起作用以及预期结果
我每周都会从我的主机下载数据库的备份。它生成一个 .sql 文件,当前大小约为 800mb。此 .sql 文件包含 44 个表。 有什么方法可以通过某些软件将 .sql 文件与所有表分开,以便单独导出
在 iOS 4.0 及更高版本中,有没有一种方法可以在不将整个图像加载到内存的情况下对 CGImage 进行分割?我试图做的是*以编程方式*分割图像,以便在使用大图像的 CATiledLayer 应用
我的 .split() 函数有问题,我有以下字符串: var imageUrl = "Images\Products\randomImage.jpg"; 我想用字符“\”分割,但是,这种情况发生了:
是否可以使用正则表达式将字符串拆分两次?例如,假设我有字符串: example=email@address.com|fname|lname 如何拆分结果为: email@address.com,fna
我正在寻找一种在线程系统(主从)中使用数组的解决方案,它允许我通过用户输入在多个线程上划分矩阵的计算,并将其通过 1 个主线程引导到多个从属线程,这些从属线程计算矩阵的 1 个字段。 我尝试运用我的知
我建立了一个系统来分割包含手写符号的二值图像并对它们进行分类(专门用于音乐)。我知道有商业应用程序可以执行此操作,但这是我尝试将其作为一个项目从头开始。 为了简单起见,假设我的整个图像中有两个元素:
我正在尝试找到一种可接受的复杂性的有效方法 检测图像中的对象,以便将其与周围环境隔离 将该对象分割成它的子部分并标记它们,这样我就可以随意获取它们 我进入图像处理世界已经 3 周了,我已经阅读了很多算
我有一组3D 空间中的点。下图是一个示例: 我想把这些点变成一个面。我只知道点的 X、Y 和 Z 值。例如,查看下图,它显示了从 3D 空间中的点生成的人脸网格。 我在谷歌上搜索了很多,但我找到的是一
我有一个字符串 String placeStr="place1*place2*place3"我想获取包含 place1、place2、place3 的数组,如下所示: String[] places=
我在 Python 中有一个类似于 google.com 的字符串,我想将其分成两部分:google 和 .com。问题是我有一个 URL,例如 subdomain.google.com,我想将其拆分
朋友需要对一个pdf文件进行分割,在网上查了查发现这个pypdf2可以完成这些操作,所以就研究了下这个库,并做一些记录。首先pypdf2是python3版本的,在之前的2版本有一个对应pypdf库。
伙计们,这是一个难以解决的问题,因为它涉及很多硬件细节,所以我想把它放到 EE.SE,但它的主要重点是编程,所以我决定坚持在这里。 我最近怀旧(以及渴望回到 CPU 内在函数),所以我决定自制一个 8
给定 haskell 中的排序列表,我如何获得分段列表,其中连续数字位于同一列表中。例如,如果我有一个排序列表 [1,2,3,4,7,8,10,12,13,15] 结果将是 [[1,2,3 ,4],[
如果我添加三个分割 View ,如下图所示,第三个分割 View (称为 splitView-3)将自动为该分割 View 中的自定义 View 生成约束,例如 customview1 的 Heigh
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 6 年前。 Improve th
如何为馈送给映射器的文件的每一行提供相同文件的拆分? 基本上我想做的是 for each line in file-split { for each line in file{
带有Snappy压缩功能的ORC文件是否可拆分成条形? 据我所知,Snappy Compressed File是不可拆分的。 但我在博客中读到,快速压缩的文件可以在 strip 上拆分。 真的吗? 最
我是一名优秀的程序员,十分优秀!