Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
529 changes: 529 additions & 0 deletions src/datasure/checks/gpschecks/compute.py

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions src/datasure/checks/gpschecks/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""Constants for the gpschecks module."""

TAB_NAME: str = "gpschecks"


## Constants

MAPBOX_STYLE = "mapbox://styles/mapbox/light-v9"

# Distinct color palette (RGBA) for categorical coloring on maps
_CATEGORY_COLORS: list[list[int]] = [

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@iabaako - check this.

[31, 119, 180, 200],
[255, 127, 14, 200],
[44, 160, 44, 200],
[214, 39, 40, 200],
[148, 103, 189, 200],
[140, 86, 75, 200],
[227, 119, 194, 200],
[127, 127, 127, 200],
[188, 189, 34, 200],
[23, 190, 207, 200],
]
Loading
Loading