如何以编程方式更新WFS地理服务器层中的数据

时间:2016-07-13 18:01:24

标签: python geoserver

我正在构建一个应用程序,用户可以在其中检索地理服务器层(store:postgres)的所有功能并将其显示在表中。为此,我使用OWSLib(get_feature)。

现在我需要添加编辑数据的功能(WFS-T)。据我所知,OWSLib没有提供添加/更新功能。

实现这种功能的方法是什么?

正如我所建议的那样,我使用python请求lib来实现WFS-T和层上更新的值:

这是我的代码的一部分:

      import requests
      url = 'http://localhost:8080/geoserver/wfs'


      xml = """<wfs:Transaction service="WFS" version="1.0.0"
      xmlns:ogc="http://www.opengis.net/ogc"
  xmlns:wfs="http://www.opengis.net/wfs">
  <wfs:Update typeName="geonode:tjk_nhr_shockriskscore">
    <wfs:Property>
      <wfs:Name>Adm2_NAME</wfs:Name>
      <wfs:Value>test_2dsfdsfsdfdsfds</wfs:Value>
    </wfs:Property>
    <ogc:Filter>
      <ogc:FeatureId fid="tjk_nhr_shockriskscore.1"/>
    </ogc:Filter>
  </wfs:Update>
</wfs:Transaction>"""
      headers = {'Content-Type': 'application/xml'} # set what your server accepts
      print requests.post(url, data=xml, headers=headers).text

当我通过geoserver Demo页面运行这个xml时,它运行正常。图层的属性得到更新。 当我通过我的python脚本执行它时,我得到一个服务异常:

   <?xml version="1.0" ?>
   <ServiceExceptionReport
     version="1.2.0"
     xmlns="http://www.opengis.net/ogc"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://www.opengis.net/ogc http://schemas.opengis.net/wfs/1.0.0/OGC-exception.xsd">
  <ServiceException>
   {http://www.geonode.org/}tjk_nhr_shockriskscore is read-only
  </ServiceException></ServiceExceptionReport>

1 个答案:

答案 0 :(得分:1)

错误消息(异常)在这里实际上很有用 - 如果图层是只读的,您可以对它运行更新。那么问题就变成了为什么图层只读?最可能的原因(特别是如果事务在演示页面中工作)是你的python脚本没有与服务器进行身份验证。从this page开始,您需要添加:

auth=("admin","geoserver") 

根据您的要求(假设您没有更改默认密码)。