Ondrej Pesek

Results 20 comments of Ondrej Pesek

I believe that the right fix is to change this: `file_list = [f for f in os.listdir(img_dir) if os.path.isfile(os.path.join(img_dir, f))]` into that: `file_list = sorted([f for f in os.listdir(img_dir) if...

@Firefishy Hi Grant, is it possible to provide some tiles to be compatible with Jason's approach? It would be very useful even for me. As [my master thesis](https://github.com/ctu-geoforall-lab-projects/dp-pesek-2018), I work...

I was facing the same issue. Have found a local workaround with the following versions. However, now I am not sure if the tested stuff will work with the newest...

Figures containing screenshots of the Python editor should be updated - is there anyone who has the same visual as those that are already there? The GUI looks a bit...

> > ```python > process = Model() > > processes = [Model()] > application = Service(processes) > ``` > > @pesekon2 Question: What is purpose of line > > ```...

> Suggestion: line > > ```python > from pywps.app.Service import Service > ``` > > could be moved into `if __name__` block. @landam: Moved in bdc5f35a9438e1c1607f53d8d325d0382c418211

> Also consider improving comment > > ``` > # here you could also specify the GRASS location, for example: > ``` > > 1. You **must** specify GRASS location...

@landam The code has been changed (see 7028d12) in the following way: Output options are skipped if they are intermediate or (blank and unparameterized).

@landam According to the PyWPS documenatation, PyWPS 4.x does not support parameter `default` for `ComplexOutput` objects. Updated in 2fc8692 to skip this parameter for `ComplexOutput` objects - fortunately the code...

@landam: Thanks for noticing that. The origin of this bug is actually sort of funny. The latest state of this PR wasn't cool enough according to the Black code style...