Hannes Riebl

Results 9 comments of Hannes Riebl

Actually, I was a bit surprised it didn't work, because there is usually no type checking in R. I was trying to write a "template class" with a lot of...

Interfaces seem like the proper way to implement what I was trying to achieve. Anyway, I think it would be a good idea to make the "field → method", "method...

Thank you, @jayqi, I ended up doing something like that. The whole bug is not a big deal, you can definitely work around it, but it's a bit weird...

This is not yet implemented on the German server, right? Or am I using the wrong URL? - https://umap.openstreetmap.de/de/map/entsorgungsbetriebe-lubeck_49064 ➡️ works - https://umap.openstreetmap.de/map/49064/download/ ➡️ doesn't work

Thanks for the detailed write-up of our discussion! I'm not sure if improving the graph visualization is worth the effort, but if we decide to do this, I think splitting...

Maybe this problem is best solved by splitting `Var.all_input_vars()` into `Var.all_value_input_vars()` and `Var.all_dist_input_vars()`. Then [this check](https://github.com/liesel-devs/liesel/blob/main/liesel/model/viz.py#L168-L170) can be reduced to `if edge[0] in edge[1].all_dist_input_vars(): ...` etc. Otherwise too much complex...

Also, display math seems to require newlines after the first `$$` and before the second `$$`. `example.md`: ``` $$ \exp(x) $$ $$\exp(x)$$ ``` R code: ```r x

No worries! Thank you for looking into it!

Alright, thank you! I was hoping for a quicker solution by just enabling CORS for the existing DataLayerView, but I agree that from a strategic point of view, a general,...