XML导入INSPIRE GIS数据


Just do it
2024-12-17 07:36:24 (3月前)


我有一个非常具体的数据导入问题,我对XML数据集相当新,所以我的问题可能是由于我缺乏理解。
我想阅读德国的轨道网络……

2 条回复
  1. 0# 甲基蓝 | 2019-08-31 10-32



    这是一个GML文件,因此它可以被嵌入到的OGR驱动程序读取

    rgdal



    sf

    包。因此:



    1.   > sf::st_layers("./DB-Netz_INSPIRE_20171116.xml")
    2. Driver: GML
      Available layers:
      layer_name geometry_type features fields
      1 Network NA 1 12
      2 ConditionOfFacility NA 7072 15
      3 MarkerPost Point 34325 11
      4 TrafficFlowDirection NA 7072 15
      5 VerticalPosition NA 1313 15
      [etc]

    3. </code>


    可以读取其中的空间数据(即具有非NA几何类型的层)

    sf::st_read




    1.   > nodes = sf::st_read("./DB-Netz_INSPIRE_20171116.xml","RailwayNode")
    2. Reading layer RailwayNode' from data source/home/rowlings/Downloads/SO/train/DB-Netz_INSPIRE_20171116.xml’ using driver `GML’
      Simple feature collection with 21457 features and 20 fields
      geometry type: POINT
      dimension: XY
      bbox: xmin: 6.021325 ymin: 47.39779 xmax: 15.03196 ymax: 54.90462
      epsg (SRID): 4258
      proj4string: +proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs

    3. plot(nodes$geom)

    4. </code>


    这产生了一组我可以看到德国很好的点。



    也可以使用读取非空间数据

    st_read

    并在可能的情况下返回数据框:



    1.   > ds = sf::st_read("./DB-Netz_INSPIRE_20171116.xml","DesignSpeed")
    2. Reading layer DesignSpeed' from data source/home/rowlings/Downloads/SO/train/DB-Netz_INSPIRE_20171116.xml’ using driver `GML’
      Warning message:
      no simple feature geometries present: returning a data.frame or tbl_df

    3. </code>


    我想这是各个轨道部分的速度限制 - 您必须查找元数据以查看ID如何在这样的表和地理数据之间匹配:



    1.   > head(ds)
    2.    gml_id                    identifier applicableDirection fromPosition
    3. 1 Spd-2046676 urn:x-dbnetze:oid:Spd-2046676 0
      2 Spd-2046677 urn:x-dbnetze:oid:Spd-2046677 0
      3 Spd-2046678 urn:x-dbnetze:oid:Spd-2046678 0
      4 Spd-2046679 urn:x-dbnetze:oid:Spd-2046679 0
      5 Spd-2046680 urn:x-dbnetze:oid:Spd-2046680 0
      6 Spd-2046681 urn:x-dbnetze:oid:Spd-2046681 0
      [etc etc etc etc]

    4. </code>

登录 后才能参与评论