From 49e9f188df11695a61b6610a1c4c84d05ce9ab37 Mon Sep 17 00:00:00 2001
From: Dean Holzworth
Date: Fri, 24 Oct 2025 13:22:49 +1000
Subject: [PATCH] Fix url links so that KML works correctly.
---
API/README.md | 2 +-
API/Services/KML.cs | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/API/README.md b/API/README.md
index b0cee5e..72c8029 100644
--- a/API/README.md
+++ b/API/README.md
@@ -34,4 +34,4 @@ To get a graph of the soil with the full name __Soils/Africa/Generic/Clay_Deep_
To get a Google Earth KMZ spatial layer of soils for a country:
-```https://apsoil.apsim.info/xml/search?country=Australia&output=KML```
\ No newline at end of file
+```https://apsoil.apsim.info/search?country=Australia&output=KML```
\ No newline at end of file
diff --git a/API/Services/KML.cs b/API/Services/KML.cs
index 44126ed..71bbbe7 100644
--- a/API/Services/KML.cs
+++ b/API/Services/KML.cs
@@ -91,8 +91,8 @@ private static Placemark ToPlacemark(this Models.Soil soil)
{
Text = $"{soil.Name}
" +
$"{soil.DataSource}
" +
- $"Download soil
" +
- $"
"
+ $"Download soil
" +
+ $"
"
}
};
}