After some time a new technical post and this time even the start of a series. Lately I started to work a lot on and with geographical data for a new project. In this series I try to cover all aspects I hit during that project that relate to geographical data.
Disclaimer: I won't do any comparisons or anything special for these posts, only cover what I have done anyway.
Node php class Node { /** * @param array $tags */ public function __construct( public readonly int $id, public readonly float $lat, public readonly float $lon, public readonly array $tags = [], ) { }}