Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
6698c76
Implement initial metadata endpoint, moving functionality from V1 cal…
nick-nlb Mar 9, 2026
783b4ce
Entities now being passed up from the highlight tile.
nick-nlb Mar 9, 2026
6ca71c1
Merge branch 'master' into metadata_v2_tiles
nick-nlb Mar 9, 2026
e311505
Merge branch 'master' into metadata_v2_tiles
nick-nlb Mar 10, 2026
7dd1613
Merge branch 'master' into metadata_v2_tiles
nick-nlb Mar 11, 2026
4c4e1d0
Update facet handling so that the frontend metadata entries sent to t…
nick-nlb Mar 12, 2026
21c4618
Update the metadata endpoint to accept a list of facet ids rather tha…
nick-nlb Mar 12, 2026
c27b0ba
Cleanup of some of the entity collation code to dedup.
nick-nlb Mar 12, 2026
b77fa0d
Apply lint to metadata endpoint and small improvements.
nick-nlb Mar 12, 2026
fc2ece2
Remove need for sleep via a wrapper function
nick-nlb Mar 12, 2026
bcc0c07
Add type hints to metadata.py
nick-nlb Mar 12, 2026
73e04fc
Update the scatter tile so that all plotted entities are collated int…
nick-nlb Mar 13, 2026
6663c89
Move the max depth stopgap to a constant and increased it (10 seemed …
nick-nlb Mar 13, 2026
aa405cf
Add safety check on license type get.
nick-nlb Mar 13, 2026
6940c22
Remove unused deconstructed variable.
nick-nlb Mar 13, 2026
f5d8674
Merge branch 'master' into metadata_v2_tiles
nick-nlb Mar 16, 2026
963800e
Remove stray items that was causing issues.
nick-nlb Mar 16, 2026
b52c3e6
Merge branch 'master' into metadata_v2_tiles
nick-nlb Mar 16, 2026
4347460
Remove the "shared" from the route, refactor the traverse to top func…
nick-nlb Mar 16, 2026
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
3 changes: 3 additions & 0 deletions server/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ def register_routes_common(app):
from server.routes.shared_api import variable_group as shared_variable_group
app.register_blueprint(shared_variable_group.bp)

from server.routes.shared_api import metadata as shared_metadata
app.register_blueprint(shared_metadata.bp)

from server.routes.shared_api.observation import date as observation_date
app.register_blueprint(observation_date.bp)

Expand Down
Loading
Loading