pesekon2 / GRASS-GIS-SOS-tools

My Google Summer of Code 2017 project. This is just development part. Intended GRASS GIS modules and final code will be at https://svn.osgeo.org/grass/grass-addons/
GNU General Public License v2.0
3 stars 1 forks source link

broken when proxy server defined #53

Open pesekon2 opened 2 years ago

pesekon2 commented 2 years ago

If there is any proxy configuration set, the request fails. The problem is that the request URL is then being changed in owslib.sos100 with lines:

           base_url = next((m.get('url') for m in self.getOperationByName('GetObservation').methods
                            if m.get('type').lower() == method.lower()))

Probably more of an issue of OWSlib/istSOS rather than of these addons - should dive deeper to that.