Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

HARP-14678 Fix tile dependencies not working #2186

Merged
merged 3 commits into from
May 6, 2021
Merged

HARP-14678 Fix tile dependencies not working #2186

merged 3 commits into from
May 6, 2021

Commits on Apr 30, 2021

  1. HARP-14678 Reproduce bug with two data sources & tile dependencies

    Signed-off-by: Jonathan Stichbury <2533428+nzjony@users.noreply.github.com>
    nzjony committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    0d6d2b8 View commit details
    Browse the repository at this point in the history
  2. HARP-14678 Fix issue with morton codes being stored as 32 bit

    The tile dependency example wasn't working with two separate data sources because the morton code
    was stored in a Float32Array, which doesn't have enough precision and caused issues. This change
    stores the row, column and level separately and then in the decoder, the mortonCode is computed and
    stored as a `number`, which has more accuracy that a 32 bit float.
    
    Signed-off-by: Jonathan Stichbury <2533428+nzjony@users.noreply.github.com>
    nzjony committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    5b24647 View commit details
    Browse the repository at this point in the history
  3. HARP-14678 Fix prettier issue

    Signed-off-by: Jonathan Stichbury <2533428+nzjony@users.noreply.github.com>
    nzjony committed Apr 30, 2021
    Configuration menu
    Copy the full SHA
    5f703e3 View commit details
    Browse the repository at this point in the history