From c7e0d07fc3b1c548ce8be87a415bf8cb1f4ce174 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Mon, 3 Oct 2016 13:25:43 -0600 Subject: [PATCH] Add terrain type names --- terrain.php | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/terrain.php b/terrain.php index 6a8d9bd..5fe312c 100644 --- a/terrain.php +++ b/terrain.php @@ -43,6 +43,23 @@ if ($database->has('terrain', ["AND" => ["latitude" => $lat, "longitude" => $lon } } +$terrainstrings = [ + 0 => "Water", + 1 => "Evergreen Needleleaf Forest", + 2 => "Evergreen Broadleaf Forest", + 3 => "Deciduous Needleleaf Forest", + 4 => "Deciduous Broadleaf Forest", + 5 => "Mixed Forest", + 6 => "Woodland", + 7 => "Wooded Grassland", + 8 => "Closed Shrubland", + 9 => "Open Shrubland", + 10 => "Grassland", + 11 => "Cropland", + 12 => "Bare Ground", + 13 => "Urban and Built" +]; + $terrainid = $database->select('terrain', 'type', ["AND" => ["latitude" => $finallat, "longitude" => $finallong]])[0]; -$out = ["status" => "OK", "type" => $terrainid, "latitude" => $finallat, "longitude" => $finallong]; +$out = ["status" => "OK", "type" => $terrainid, "latitude" => $finallat, "longitude" => $finallong, "name" => $terrainstrings[$terrainid]]; echo json_encode($out);