Avoid SRTM cache for HGT files

This commit is contained in:
afischerdev 2023-05-20 18:16:01 +02:00 committed by Manuel Fuhr
parent 781661ea12
commit c2400a96e7
2 changed files with 11 additions and 10 deletions

View file

@ -165,7 +165,7 @@ public class ConvertLidarTile {
String s = "E";
if (lon < 0) {
lon = -lon;
s = "E";
s = "W";
}
String n = "000" + lon;
return s + n.substring(n.length() - 3);