Martin Landa

Results 17 comments of Martin Landa

> This is NOT a real pull request. Rather a prototype idea. > Not extensively tested, no real tests written. You can convert PR into draft.

Still valid issue. What is the reason of python-flask to be broken for so long time?

Update: ``` pip install flask==1.1.4 werkzeug==1.0.1 pywps==4.2.11 MarkupSafe==2.0.1 ```

Please @ferreteleco can you provide functional example for WFS service? Due to https://github.com/geopython/OWSLib/commit/5392a92b9f5b4549d04a5f79ccb9e4bf02990623 is owslib >= 0.23 failing on all WFS request we have tested! Thanks a lot!

Looks nice ![modeler-wps](https://user-images.githubusercontent.com/5683186/143778378-35d34c06-5fb3-4392-ab3d-4a5cedbea0b6.png) ```py process = Model() processes = [Model()] application = Service(processes) ``` @pesekon2 Question: What is purpose of line ``` process = Model() ``` ?

Suggestion: line ```py from pywps.app.Service import Service ``` could be moved into `if __name__` block.

Also consider improving comment ``` # here you could also specify the GRASS location, for example: ``` 1. You **must** specify GRASS location 2. Either by providing path to the...

I tested PyWPS export functionality on several models. @pesekon2 There is a problem with output options which are not defined. See attached model [pywps_grass_test.zip](https://github.com/OSGeo/grass/files/8695956/pywps_grass_test.zip) (Gismentors location). ![pywps_grass](https://user-images.githubusercontent.com/5683186/168492708-d20bcae3-540a-45e1-8dba-f9b4edf4c006.png) Modeler exports all...

Great, now only relevant output parameter is included: ```py inputs.append(LiteralInput( identifier="vbuffer1_distance", title="Buffer distance along major axis in map units", data_type="float", default=1000)) outputs.append(ComplexOutput( identifier="rslopeaspect4_slope", title="Name for output slope raster map", supported_formats=sup_formats,...

@pesekon2 Unfortunately the process fails with: ```py Traceback (most recent call last): File "/home/martin/Downloads/pywps-flask-master/demo.py", line 53, in Model() File "/home/martin/Downloads/pywps-flask-master/processes/pywps_grass_test.py", line 29, in __init__ outputs.append(ComplexOutput( TypeError: __init__() got an unexpected...