This commit is contained in:
2026-05-11 04:38:44 +03:30
parent 17628f503f
commit c2b6052e5c
69 changed files with 3073 additions and 57 deletions
+18
View File
@@ -3,6 +3,9 @@ from django.urls import path
from .views import (
NdviHealthView,
RemoteSensingAnalysisView,
RemoteSensingClusterBlockLiveView,
RemoteSensingSubdivisionOptionActivateView,
RemoteSensingSubdivisionOptionListView,
RemoteSensingRunStatusView,
SoilDataView,
)
@@ -10,6 +13,21 @@ from .views import (
urlpatterns = [
path("", SoilDataView.as_view(), name="soil-data"),
path("remote-sensing/", RemoteSensingAnalysisView.as_view(), name="remote-sensing"),
path(
"remote-sensing/cluster-blocks/<uuid:cluster_uuid>/live/",
RemoteSensingClusterBlockLiveView.as_view(),
name="remote-sensing-cluster-block-live",
),
path(
"remote-sensing/results/<int:result_id>/k-options/",
RemoteSensingSubdivisionOptionListView.as_view(),
name="remote-sensing-k-options",
),
path(
"remote-sensing/results/<int:result_id>/k-options/activate/",
RemoteSensingSubdivisionOptionActivateView.as_view(),
name="remote-sensing-k-options-activate",
),
path("remote-sensing/runs/<uuid:run_id>/status/", RemoteSensingRunStatusView.as_view(), name="remote-sensing-run-status"),
path("ndvi-health/", NdviHealthView.as_view(), name="ndvi-health"),
]