From 70ef1befae896c986a2a980becf6208e820f5db9 Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Fri, 23 Dec 2022 11:21:39 +0100 Subject: [PATCH] Path fixing --- app/templates/usage.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/usage.html b/app/templates/usage.html index 2bb45f9..d0e7532 100644 --- a/app/templates/usage.html +++ b/app/templates/usage.html @@ -4,7 +4,7 @@ <title>Mock weather data source</title> </head> <body> - <p><a href="https://nibio.no/en/projects/malawi-digital-plant-health-service-madiphs" target="new"><img src="/static/images/MaDiPHS_logo.png" style="width: 250px;"/></a></p> + <p><a href="https://nibio.no/en/projects/malawi-digital-plant-health-service-madiphs" target="new"><img src="static/images/MaDiPHS_logo.png" style="width: 250px;"/></a></p> <h1>Mock weather data source</h1> <p>This a weather data source with no live data. It returns data from 2021 from one virtual location. It can be used for testing the API.</p> <p>The weather data source returns weather data following the <a href="https://github.com/H2020-IPM-Decisions/WeatherService/blob/develop/docs/weather_service.md" target="new">IPM Decisions weather data format</a>.</p> @@ -35,6 +35,6 @@ <li>interval is optional. The default value is 3600 (hourly values). To get daily values, set interval=86400.</li> </ul> <h2>Example</h2> - <p><a href="/weather_data?latitude=50.109&longitude=10.961&parameters=1001,2001&timeStart=2021-10-28&timeEnd=2021-11-15">/weather_data?latitude=50.109&longitude=10.961&parameters=1001,2001</a></p> + <p><a href="weather_data?latitude=50.109&longitude=10.961&parameters=1001,2001&timeStart=2021-10-28&timeEnd=2021-11-15">/weather_data?latitude=50.109&longitude=10.961&parameters=1001,2001</a></p> </body> </html> \ No newline at end of file -- GitLab