<feed xmlns='http://www.w3.org/2005/Atom'>
<title>hittekaart, branch osmand-sqlite</title>
<subtitle>A GPX track heatmap renderer.</subtitle>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/'/>
<entry>
<title>implement OsmAnd/MbTiles in python interface</title>
<updated>2026-04-05T15:26:06+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-05T15:26:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=83f9dc870c15493c62a1aaf08802d11c4c11f82c'/>
<id>83f9dc870c15493c62a1aaf08802d11c4c11f82c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>run CI on non-master branch</title>
<updated>2026-04-05T15:18:34+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-05T15:18:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=1dd019bd986e6ce0fbe2394e154c6e37f1738c35'/>
<id>1dd019bd986e6ce0fbe2394e154c6e37f1738c35</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>update docs</title>
<updated>2026-04-05T15:11:25+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-05T15:11:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=4ef21714fa2d1c0fd79839294950eb464b036891'/>
<id>4ef21714fa2d1c0fd79839294950eb464b036891</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>implement mb-tiles output format</title>
<updated>2026-04-05T14:58:13+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-05T14:58:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=f6f5f3c42545a1beb15e93bc29d405c601fe106a'/>
<id>f6f5f3c42545a1beb15e93bc29d405c601fe106a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>replace space with =</title>
<updated>2026-04-04T17:49:24+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-04T17:49:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=f20581dea3ef7f20d177e227109b95f93c1d6041'/>
<id>f20581dea3ef7f20d177e227109b95f93c1d6041</id>
<content type='text'>
to make it consistent with the other options
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
to make it consistent with the other options
</pre>
</div>
</content>
</entry>
<entry>
<title>add osmand sqlite output format (lib &amp; cli)</title>
<updated>2026-04-04T17:44:07+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2026-04-04T17:44:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=38118611513deced3617e3f581920125484923f0'/>
<id>38118611513deced3617e3f581920125484923f0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>lazily load tile in blit_nonzero</title>
<updated>2025-12-14T20:52:39+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2025-12-14T20:52:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=a3b378fd66342ecf9a44f814acf1b18a49a05c42'/>
<id>a3b378fd66342ecf9a44f814acf1b18a49a05c42</id>
<content type='text'>
In the benchmarks, this gives a quite good speed increase, but in
real-life workloads, the speedup is not as stark (from ~66s to ~61s
here).

What is maybe a neat secondary effect here is that we don't end up with
empty tiles, as we only allocate (in tile_mut) when there is a nonzero
pixel to blit. This decreases the number of saved tiles, especially on
larger zooms.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the benchmarks, this gives a quite good speed increase, but in
real-life workloads, the speedup is not as stark (from ~66s to ~61s
here).

What is maybe a neat secondary effect here is that we don't end up with
empty tiles, as we only allocate (in tile_mut) when there is a nonzero
pixel to blit. This decreases the number of saved tiles, especially on
larger zooms.
</pre>
</div>
</content>
</entry>
<entry>
<title>update dependencies</title>
<updated>2025-11-29T18:38:14+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2025-11-29T18:38:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=79c600652df850bc8b9f90185d2dc4b39c9599cb'/>
<id>79c600652df850bc8b9f90185d2dc4b39c9599cb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix license expression</title>
<updated>2025-11-29T16:21:56+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2025-11-29T16:21:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=31fae8e52a491b9daf5b4da4db1083292a2a93bc'/>
<id>31fae8e52a491b9daf5b4da4db1083292a2a93bc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>slight readme adjustments</title>
<updated>2025-11-29T16:20:13+00:00</updated>
<author>
<name>Daniel Schadt</name>
<email>kingdread@gmx.de</email>
</author>
<published>2025-11-29T16:20:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.kingdread.de/cgit.cgi/hittekaart/commit/?id=1e8ac49b86596233c2e1b8d56a088b8cf68286b4'/>
<id>1e8ac49b86596233c2e1b8d56a088b8cf68286b4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
