Lukáš Karas
Lukáš Karas
OBS build is now green: https://build.sailfishos.org/package/show/home:karry/harbour-owncloud :partying_face:
Hi. It makes sense to me. But whole process will take some time. I created merge request for upstream project: https://github.com/Framstag/libosmscout/pull/1298 I am using different import definition, but keeping it...
To be able to see English names on the map, it is required to have "name:en" tag in OpenStreetMap data for specific objects... Big cities (see Tehran https://www.openstreetmap.org/relation/6663864 ) usually...
You are right, these functions doesn't work with C locale. But it is correct, because for converting unicode characters to lower or upper, you really need to know locale. It...
You should setup global C++ locale somewhere in your application, before start using these functions ``` try { std::locale::global(std::locale("")); } catch (const std::runtime_error& e) { std::cerr
Hi @[lennonhill](https://github.com/lennonhill), are you using "Tiled rendering" (can be turn on in configuration) or plain rendering? Because with tile rendering tile image may be re-scaled and it is causing such...
Can you provide the start and target locations where routing is failing? Qt routing module should lookup routable node up to one kilometer from location. So it is weird that...
I am trying to visualize routing graph algorithm by this command: ``` ./Demos/RoutingAnimation \ --dpi 300 --width 3840 --height 2160 \ --style ../stylesheets/standard.oss \ --output animation \ --debug \ ~/Maps/asia-malaysia-singapore-brunei-20221124-224244...
So, the problem is in access=private tag on starting way. For simplicity, we are handling access values "delivery", "destination" and "private" the same way. Vehicle may access these ways, but...
Hi @janbar , you may use my hillshade server: `https://osmscout.karry.cz/hillshade/tile.php?z=%1&x=%2&y=%3`, its performance is low (when tile is not ready in cache), but it will survive few more requests :-) Or...