Files
Ai/location_data/urls.py
T

18 lines
674 B
Python
Raw Normal View History

from django.urls import path
2026-05-09 16:55:06 +03:30
from .views import (
NdviHealthView,
RemoteSensingAnalysisView,
RemoteSensingRunResultView,
RemoteSensingRunStatusView,
SoilDataView,
)
urlpatterns = [
path("", SoilDataView.as_view(), name="soil-data"),
2026-05-09 16:55:06 +03:30
path("remote-sensing/", RemoteSensingAnalysisView.as_view(), name="remote-sensing"),
path("remote-sensing/runs/<int:run_id>/status/", RemoteSensingRunStatusView.as_view(), name="remote-sensing-run-status"),
path("remote-sensing/runs/<int:run_id>/result/", RemoteSensingRunResultView.as_view(), name="remote-sensing-run-result"),
2026-04-25 17:22:41 +03:30
path("ndvi-health/", NdviHealthView.as_view(), name="ndvi-health"),
]