implemented a naive approach to stacking analysis via StackedUpperLimitView

This commit is contained in:
2025-09-25 18:18:00 +03:00
parent a2c528644c
commit 5edb153e38
4 changed files with 675 additions and 29 deletions

11
urls.py
View File

@@ -1,10 +1,19 @@
# uplim/urls.py
from django.urls import path
from .views import PixelAggregateView, UpperLimitView # , PixelDetailView
from .views import (
PixelAggregateView,
UpperLimitView,
StackedUpperLimitView,
) # , PixelDetailView
urlpatterns = [
# path('pixel/<int:hpid>/', PixelDetailView.as_view(), name='pixel-detail'),
path("pixel-aggregate/", PixelAggregateView.as_view(), name="pixel-aggregate"),
path("upper-limit/", UpperLimitView.as_view(), name="upper-limit"),
path(
"stacked-upper-limit/",
StackedUpperLimitView.as_view(),
name="stacked-upper-limit",
),
]