草庐IT

xml - 从 Lat Lng 到 Loop 的行驶距离

coder 2024-06-30 原文

我有数据框中两个点的纬度和经度。我在 R 中使用下面的代码来获取行驶距离。

library(XML)
library(RCurl)
latlon2ft <- function(origin,destination){
  xml.url <- paste0('http://maps.googleapis.com/maps/api/distancematrix/xml?origins=',origin,'&destinations=',destination,'&mode=driving&sensor=false')
  xmlfile <- xmlParse(getURL(xml.url))
  dist <- xmlValue(xmlChildren(xpathApply(xmlfile,"//distance")[[1]])$value)
  distance <- as.numeric(sub(" km","",dist))
  ft <- distance*3.28084 # FROM METER TO FEET
  return(ft)
}

test$origin1 = paste0("'",test$store_lat,",",test$store_lng,"'")
test$destination1 = paste0("'",test$lat,",",test$lng,"'")

distance <- list()
for(i in 1:nrow(test)){
  dat <- latlon2ft(test[i,'origin1'],test[i,'destination1'])
  distance[[i]] <- dat
}

all_distance <- do.call("rbind", distance)

但我收到以下错误。

Error in xpathApply(xmlfile, "//distance")[[1]] : subscript out of bounds 
3 xmlChildren(xpathApply(xmlfile, "//distance")[[1]]) 
2 xmlValue(xmlChildren(xpathApply(xmlfile, "//distance")[[1]])$value) 
1 latlon2ft(test[i, "origin1"], test[i, "destination1"])

这是我的数据样本:

store_lat | store_lng |     lat    |    lng 
19.21368  | 72.99034  | 19.1901094 |  72.9758546
19.10749  | 72.86444  | 19.1052534 |  72.8609213
19.01480  | 72.84545  | 18.9942502 |  72.8365256
19.01480  | 72.84545  | 19.1453449 |  72.8367015

我的代码哪里错了?据我所知,我无法在运行循环时将值正确传递到函数中。但我无法找到解决方法。在此先感谢您的帮助。

最佳答案

发生下标越界错误是因为您没有为 URL 使用正确的 API 格式。它从以下 Google 服务器生成 xmlfile 响应:

<?xml version="1.0" encoding="UTF-8"?>
<DistanceMatrixResponse>
  <status>OK</status>
  <origin_address/>
  <destination_address/>
  <row>
    <element>
      <status>NOT_FOUND</status>
    </element>
  </row>
</DistanceMatrixResponse>

其中没有有效的distance

错误是 URL 中 originsdestinations 周围的单引号。当您使用代码将它们连接在一起时

test$origin1 = paste0("'",test$store_lat,",",test$store_lng,"'")
test$destination1 = paste0("'",test$lat,",",test$lng,"'")

您在值周围添加了 ' 单引号,这是不正确的。如果你去掉单引号:

test$origin1 = paste0(test$store_lat,",",test$store_lng)
test$destination1 = paste0(test$lat,",",test$lng)

然后您的代码会生成一个正确的网址 http://maps.googleapis.com/maps/api/distancematrix/xml?origins=19.21368,72.99034&destinations=19.1901094,72.9758546&mode=driving&sensor=false" 没有单引号。Google 服务器返回的结果 XML 是:

<?xml version="1.0" encoding="UTF-8"?>
<DistanceMatrixResponse>
  <status>OK</status>
  <origin_address>External Bypass Rd, Laxmi Nagar, Balkum Pada, Majiwada, Thane, Maharashtra 400608, India</origin_address>
  <destination_address>A-5, Chhatraprati Sambhaji Rd, Ghantali, Thane West, Thane, Maharashtra 400602, India</destination_address>
  <row>
    <element>
      <status>OK</status>
      <duration>
        <value>981</value>
        <text>16 mins</text>
      </duration>
      <distance>
        <value>4908</value>
        <text>4.9 km</text>
      </distance>
    </element>
  </row>
</DistanceMatrixResponse>

现在有一个有效的距离值。

您可以找到有关 Google Maps Distance API here 的细节的更多详细信息

关于xml - 从 Lat Lng 到 Loop 的行驶距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36482506/

有关xml - 从 Lat Lng 到 Loop 的行驶距离的更多相关文章

  1. ruby-on-rails - 如何从 format.xml 中删除 <hash></hash> - 2

    我有一个对象has_many应呈现为xml的子对象。这不是问题。我的问题是我创建了一个Hash包含此数据,就像解析器需要它一样。但是rails自动将整个文件包含在.........我需要摆脱type="array"和我该如何处理?我没有在文档中找到任何内容。 最佳答案 我遇到了同样的问题;这是我的XML:我在用这个:entries.to_xml将散列数据转换为XML,但这会将条目的数据包装到中所以我修改了:entries.to_xml(root:"Contacts")但这仍然将转换后的XML包装在“联系人”中,将我的XML代码修改为

  2. ruby-on-rails - 如何在 Rails 3 中禁用 XML 解析 - 2

    我想禁用HTTP参数的自动XML解析。但我发现命令仅适用于Rails2.x,它们都不适用于3.0:config.action_controller.param_parsers.deleteMime::XML(application.rb)ActionController::Base.param_parsers.deleteMime::XMLRails3.0中的等价物是什么? 最佳答案 根据CVE-2013-0156的最新安全公告你可以将它用于Rails3.0。3.1和3.2ActionDispatch::ParamsParser::

  3. ruby - 如何使用 Nokogiri::XML::Builder 生成动态标签? - 2

    我正在遍历数组中的一组标签名称,我想使用构建器打印每个标签名称,而不是求助于“我认为:builder=Nokogiri::XML::Builder.newdo|xml|fortagintagsxml.tag!tag,somevalendend会这样做,但它只是创建名称为“tag”的标签,并将标签变量作为元素的文本值。有人可以帮忙吗?这个看起来应该比较简单,我刚刚在搜索引擎上找不到答案。我可能没有以正确的方式提问。 最佳答案 尝试以下操作。如果我没记错的话,我添加了一个根节点,因为Nokogiri需要一个。builder=Nokogi

  4. ruby - 如何让 Nokogiri 解析并返回 XML 文档? - 2

    这是一些奇怪的例子:#!/usr/bin/rubyrequire'rubygems'require'open-uri'require'nokogiri'print"withoutread:",Nokogiri(open('http://weblog.rubyonrails.org/')).class,"\n"print"withread:",Nokogiri(open('http://weblog.rubyonrails.org/').read).class,"\n"运行此返回:withoutread:Nokogiri::XML::Documentwithread:Nokogiri::

  5. 最新版人脸识别小程序 图片识别 生成二维码签到 地图上选点进行位置签到 计算签到距离 课程会议活动打卡日常考勤 上课签到打卡考勤口令签到 - 2

    技术选型1,前端小程序原生MINA框架cssJavaScriptWxml2,管理后台云开发Cms内容管理系统web网页3,数据后台小程序云开发云函数云开发数据库(基于MongoDB)云存储4,人脸识别算法基于百度智能云实现人脸识别一,用户端效果图预览老规矩我们先来看效果图,如果效果图符合你的需求,就继续往下看,如果不符合你的需求,可以跳过。1-1,登录注册页可以看到登录页有注册入口,注册页如下我们的注册,需要管理员审核,审核通过后才可以正常登录使用小程序1-2,个人中心页登录成功以后,我们会进入个人中心页我们在个人中心页可以注册人脸,因为我们做人脸识别签到,需要先注册人脸才可以进行人脸比对,进

  6. ruby - 模式加载时出现 Nokogiri::XML::Schema SyntaxError - 2

    我正在尝试加载SAML协议(protocol)架构(具体来说:https://www.oasis-open.org/committees/download.php/3407/oasis-sstc-saml-schema-protocol-1.1.xsd),但在执行此操作之后:schema=Nokogiri::XML::Schema(File.read('saml11_schema.xsd'))我得到这个输出:Nokogiri::XML::SyntaxErrorException:Element'{http://www.w3.org/2001/XMLSchema}element',att

  7. ruby - `loop{}` 与 `loop{sleep 1}` - 2

    我正在使用循环等待键盘中断,然后在多线程环境中退出之前允许进行一些清理操作。beginloop{}rescueInterruptp"Ctr-CPressed..CleaningUp&ShuttingDown"loopdobreakifexit_bool.false?endexit130end这段代码运行在主线程中。有多个线程执行多个文件和数据库操作。exit_bool是一个由其他线程设置的原子变量,表示它们正处于某个操作的中间。我检查该值并等待它变为false然后退出。我想知道loop{}相对于loop{sleepx}的成本是多少。 最佳答案

  8. No loop matching the specified signature and casting was found for ufunc greater - 2

    目录报错信息np.greater学习临时解决方法:np.greater去掉dtype报错信息pipinstallnumpy==1.24报错代码:dda=np.cumsum(np.greater(counts,0),dtype=np.int32)print(dda)Noloopmatchingthespecifiedsignatureandcastingwasfoundforufuncgreaternp.greater学习1.函数功能:判断参数一是否大于参数二。2.参数介绍  arr1:第一个参数类似一个数组  arr2:第二个参数类似一个数组  out:返回值是bool类型或者是元素为bool

  9. ruby - 在 Elasticsearch 中计算地理距离 - 2

    我在查询中使用geo_distancefilter和tire,它工作正常:search.filter:geo_distance,:distance=>"#{request.distance}km",:location=>"#{request.lat},#{request.lng}"我预计结果会以某种方式包括到我用于过滤器的地理位置的计算距离。有没有办法告诉elasticsearch在响应中包含它,这样我就不必在ruby​​中为每个结果计算它?==更新==我在谷歌群组中的foundtheanswer:search.sortdoby"_geo_distance","location"=>"

  10. ruby-on-rails - 来自 cucumber 的 HTTP POST XML 内容 - 2

    我正在尝试通过POST将XML内容发送到一个简单的Rails项目中的Controller(“解析”)方法(“索引”)。它不是RESTful,因为我的模型名称不同,比如“汽车”。我在有效的功能测试中有以下内容:deftest_index...data_file_path=File.dirname(__FILE__)+'/../../app/views/layouts/index.xml.erb'message=ERB.new(File.read(data_file_path))xml_result=message.result(binding)doc=REXML::Document.ne

随机推荐