2026-02-27 13:09:00 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-05-09 16:55:06 +03:30
|
|
|
from .views import (
|
|
|
|
|
NdviHealthView,
|
|
|
|
|
RemoteSensingAnalysisView,
|
|
|
|
|
RemoteSensingRunResultView,
|
|
|
|
|
RemoteSensingRunStatusView,
|
|
|
|
|
SoilDataView,
|
|
|
|
|
)
|
2026-02-27 13:09:00 +03:30
|
|
|
|
|
|
|
|
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"),
|
2026-02-27 13:09:00 +03:30
|
|
|
]
|