Stefan Brand

Results 91 comments of Stefan Brand

Ok, I understand. At the moment I can't even swipe the notification away when Red Moon is off. Also my question still stands: If I swipe the notification away, will...

It doesn't on my phone. The notification is displayed always, although I have automatich turn on enabled. Am 14.11.2016 um 16:12 schrieb smichel17: > If automatic turn on is enabled,...

Would more information from my part be helpful, for example some kind of log? Am 18.11.2016 um 20:47 schrieb smichel17: > I can't b reproduce any of this in an...

I don't have a build system set up, so please send me that debug build and I will then make a log. Am 18.11.2016 um 20:54 schrieb smichel17: > If...

> I've found the "ScreenCam" app on f-droid to work pretty well. Haha, only works with Lollipop and above... ;) This is my result of your steps above: > -...

Cool, didn't know that I can do screecapture with adb. That's not a problem at all then! (I have tried GravityBox, which produced mp4s that couldn't be played.) Edit: Turns...

For context, this is my current style: Details ```json { "style": [ { "filter": [ "=", ["get", "crop_cover_vegetation_ratio"], 0.1 ], [ "=", ["get", "crop_cover_vegetation_ratio"], 0.2 ], [ "=", ["get", "crop_cover_vegetation_ratio"],...

Please share some more information. It is difficult to imagine what you are trying to accomplish. 1. Are you trying to combine multiple querysets? 2. How do your models look...

Union should work to combine querysets: https://docs.djangoproject.com/en/4.2/ref/models/querysets/#union ```python vector_tile_queryset = Layer1.objects.all().union(Layer2.objects.all(), Layer3.objects.all()) ``` For the fields, you must be attentive to the documentation of `Queryset.union`: The first queryset defines the...

Indeed, Web Mercator is not defined in the pole regions. In theory, it should be possible to transform geometry and envelope to a polar CRS like [WGS 84 / Antarctic...