How can I request WFS data using GeoServer's viewparams with pyqgis?Obtaining feature using ArcGIS for Server...

How can I prove that a state of equilibrium is unstable?

Are British MPs missing the point, with these 'Indicative Votes'?

Forgetting the musical notes while performing in concert

Is it a bad idea to plug the other end of ESD strap to wall ground?

How can I deal with my CEO asking me to hire someone with a higher salary than me, a co-founder?

Why didn't Boeing produce its own regional jet?

What is the most common color to indicate the input-field is disabled?

Did 'Cinema Songs' exist during Hiranyakshipu's time?

Getting extremely large arrows with tikzcd

Why were 5.25" floppy drives cheaper than 8"?

Mathematica command that allows it to read my intentions

How to install cross-compiler on Ubuntu 18.04?

What exactly is ineptocracy?

Where would I need my direct neural interface to be implanted?

Why are UK visa biometrics appointments suspended at USCIS Application Support Centers?

Placement of More Information/Help Icon button for Radio Buttons

How to find if SQL server backup is encrypted with TDE without restoring the backup

How can saying a song's name be a copyright violation?

Does int main() need a declaration on C++?

Sums of two squares in arithmetic progressions

In the UK, is it possible to get a referendum by a court decision?

How obscure is the use of 令 in 令和?

If a warlock makes a Dancing Sword their pact weapon, is there a way to prevent it from disappearing if it's farther away for more than a minute?

How to stretch the corners of this image so that it looks like a perfect rectangle?



How can I request WFS data using GeoServer's viewparams with pyqgis?


Obtaining feature using ArcGIS for Server and WFS based on featureid?QGIS 2.16 adding certain WFS failedMapServer propertyname=fieldname only works when using gml as outputError connecting to gov.uk WFS in QGIS 2.18.15WFS: DescribeFeatureType query with typenames?issue with TYPENAME(s) in KVP for WFSBBox and KVP for WFSproblem with Bounding Box GetFeature WFSGetFeature request issue with WFSDownloading WFS data using QGIS?













0















Using pyqgis how can I request WFS data using GeoServer's viewparams request parameter?



I can use the viewparams request parameter to obtain the filtered WFS data I require via my web browser but not via pyqgis.



The below returns the results I require via a browser and this appears to be valid WFS GML
(Where <LDS_API_KEY> is the auth key generated by registered users via https://data.linz.govt.nz/. Please let me know if you can help and don't want to register and perhaps I can generate a temporary key to share)



https://data.linz.govt.nz/services;key=<LDS_API_KEY>/wfs?
SERVICE=wfs&VERSION=2.0.0&
REQUEST=GetFeature&
TYPENAMES=data.linz.govt.nz:layer-53353-changeset&
viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z


via pyqgis when trying to create a WFS vector layer with the same URL with the viewparams I get a invalid layer:



url = 'https://data.linz.govt.nz/services;key=<LINZ_API_KEY>/wfs?SERVICE=wfs&VERSION=2.0.0&REQUEST=GetFeature&TYPENAME=data.linz.govt.nz:layer-53353-changeset&viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z'
layer = QgsVectorLayer(url, 'test', 'WFS')
layer.isValid()
>>> False


How can I request my WFS data with a viewparams filter?










share|improve this question









New contributor




HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    Using pyqgis how can I request WFS data using GeoServer's viewparams request parameter?



    I can use the viewparams request parameter to obtain the filtered WFS data I require via my web browser but not via pyqgis.



    The below returns the results I require via a browser and this appears to be valid WFS GML
    (Where <LDS_API_KEY> is the auth key generated by registered users via https://data.linz.govt.nz/. Please let me know if you can help and don't want to register and perhaps I can generate a temporary key to share)



    https://data.linz.govt.nz/services;key=<LDS_API_KEY>/wfs?
    SERVICE=wfs&VERSION=2.0.0&
    REQUEST=GetFeature&
    TYPENAMES=data.linz.govt.nz:layer-53353-changeset&
    viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z


    via pyqgis when trying to create a WFS vector layer with the same URL with the viewparams I get a invalid layer:



    url = 'https://data.linz.govt.nz/services;key=<LINZ_API_KEY>/wfs?SERVICE=wfs&VERSION=2.0.0&REQUEST=GetFeature&TYPENAME=data.linz.govt.nz:layer-53353-changeset&viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z'
    layer = QgsVectorLayer(url, 'test', 'WFS')
    layer.isValid()
    >>> False


    How can I request my WFS data with a viewparams filter?










    share|improve this question









    New contributor




    HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      Using pyqgis how can I request WFS data using GeoServer's viewparams request parameter?



      I can use the viewparams request parameter to obtain the filtered WFS data I require via my web browser but not via pyqgis.



      The below returns the results I require via a browser and this appears to be valid WFS GML
      (Where <LDS_API_KEY> is the auth key generated by registered users via https://data.linz.govt.nz/. Please let me know if you can help and don't want to register and perhaps I can generate a temporary key to share)



      https://data.linz.govt.nz/services;key=<LDS_API_KEY>/wfs?
      SERVICE=wfs&VERSION=2.0.0&
      REQUEST=GetFeature&
      TYPENAMES=data.linz.govt.nz:layer-53353-changeset&
      viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z


      via pyqgis when trying to create a WFS vector layer with the same URL with the viewparams I get a invalid layer:



      url = 'https://data.linz.govt.nz/services;key=<LINZ_API_KEY>/wfs?SERVICE=wfs&VERSION=2.0.0&REQUEST=GetFeature&TYPENAME=data.linz.govt.nz:layer-53353-changeset&viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z'
      layer = QgsVectorLayer(url, 'test', 'WFS')
      layer.isValid()
      >>> False


      How can I request my WFS data with a viewparams filter?










      share|improve this question









      New contributor




      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      Using pyqgis how can I request WFS data using GeoServer's viewparams request parameter?



      I can use the viewparams request parameter to obtain the filtered WFS data I require via my web browser but not via pyqgis.



      The below returns the results I require via a browser and this appears to be valid WFS GML
      (Where <LDS_API_KEY> is the auth key generated by registered users via https://data.linz.govt.nz/. Please let me know if you can help and don't want to register and perhaps I can generate a temporary key to share)



      https://data.linz.govt.nz/services;key=<LDS_API_KEY>/wfs?
      SERVICE=wfs&VERSION=2.0.0&
      REQUEST=GetFeature&
      TYPENAMES=data.linz.govt.nz:layer-53353-changeset&
      viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z


      via pyqgis when trying to create a WFS vector layer with the same URL with the viewparams I get a invalid layer:



      url = 'https://data.linz.govt.nz/services;key=<LINZ_API_KEY>/wfs?SERVICE=wfs&VERSION=2.0.0&REQUEST=GetFeature&TYPENAME=data.linz.govt.nz:layer-53353-changeset&viewparams=from:2018-12-23T01:41:20.703998Z;to:2018-12-30T01:46:55.913620Z'
      layer = QgsVectorLayer(url, 'test', 'WFS')
      layer.isValid()
      >>> False


      How can I request my WFS data with a viewparams filter?







      qgis pyqgis wfs pyqgis-3






      share|improve this question









      New contributor




      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question









      New contributor




      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question








      edited 3 mins ago









      Vince

      14.8k32849




      14.8k32849






      New contributor




      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 11 mins ago









      HuntMasterHuntMaster

      1




      1




      New contributor




      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      HuntMaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















          0






          active

          oldest

          votes












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "79"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });






          HuntMaster is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317573%2fhow-can-i-request-wfs-data-using-geoservers-viewparams-with-pyqgis%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          HuntMaster is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          HuntMaster is a new contributor. Be nice, and check out our Code of Conduct.













          HuntMaster is a new contributor. Be nice, and check out our Code of Conduct.












          HuntMaster is a new contributor. Be nice, and check out our Code of Conduct.
















          Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317573%2fhow-can-i-request-wfs-data-using-geoservers-viewparams-with-pyqgis%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Щит и меч (фильм) Содержание Названия серий | Сюжет |...

          is 'sed' thread safeWhat should someone know about using Python scripts in the shell?Nexenta bash script uses...

          Meter-Bus Содержание Параметры шины | Стандартизация |...