[7726] | 1 | // License: GPL. For details, see LICENSE file.
|
---|
[15034] | 2 | import static java.nio.charset.StandardCharsets.UTF_8;
|
---|
[15033] | 3 | import static org.apache.commons.lang3.StringUtils.isBlank;
|
---|
| 4 | import static org.apache.commons.lang3.StringUtils.isNotBlank;
|
---|
| 5 |
|
---|
| 6 | import java.io.BufferedReader;
|
---|
[16098] | 7 | import java.io.BufferedWriter;
|
---|
[15033] | 8 | import java.io.IOException;
|
---|
| 9 | import java.io.OutputStreamWriter;
|
---|
[16098] | 10 | import java.io.Writer;
|
---|
[15033] | 11 | import java.lang.reflect.Field;
|
---|
[15163] | 12 | import java.net.MalformedURLException;
|
---|
| 13 | import java.net.URL;
|
---|
[16098] | 14 | import java.nio.charset.Charset;
|
---|
[15034] | 15 | import java.nio.file.Files;
|
---|
| 16 | import java.nio.file.Paths;
|
---|
[15033] | 17 | import java.text.DecimalFormat;
|
---|
| 18 | import java.text.ParseException;
|
---|
| 19 | import java.text.SimpleDateFormat;
|
---|
| 20 | import java.util.ArrayList;
|
---|
| 21 | import java.util.Arrays;
|
---|
| 22 | import java.util.Calendar;
|
---|
| 23 | import java.util.Collection;
|
---|
| 24 | import java.util.Collections;
|
---|
| 25 | import java.util.Date;
|
---|
| 26 | import java.util.HashMap;
|
---|
| 27 | import java.util.LinkedList;
|
---|
| 28 | import java.util.List;
|
---|
| 29 | import java.util.Locale;
|
---|
| 30 | import java.util.Map;
|
---|
| 31 | import java.util.Map.Entry;
|
---|
| 32 | import java.util.Objects;
|
---|
[15082] | 33 | import java.util.Set;
|
---|
[15692] | 34 | import java.util.function.BiConsumer;
|
---|
[15082] | 35 | import java.util.function.Function;
|
---|
[15033] | 36 | import java.util.regex.Matcher;
|
---|
| 37 | import java.util.regex.Pattern;
|
---|
| 38 | import java.util.stream.Collectors;
|
---|
| 39 |
|
---|
| 40 | import javax.json.Json;
|
---|
| 41 | import javax.json.JsonArray;
|
---|
| 42 | import javax.json.JsonNumber;
|
---|
| 43 | import javax.json.JsonObject;
|
---|
| 44 | import javax.json.JsonReader;
|
---|
| 45 | import javax.json.JsonString;
|
---|
| 46 | import javax.json.JsonValue;
|
---|
| 47 |
|
---|
| 48 | import org.openstreetmap.gui.jmapviewer.Coordinate;
|
---|
| 49 | import org.openstreetmap.josm.data.Preferences;
|
---|
| 50 | import org.openstreetmap.josm.data.imagery.ImageryInfo;
|
---|
| 51 | import org.openstreetmap.josm.data.imagery.ImageryInfo.ImageryBounds;
|
---|
| 52 | import org.openstreetmap.josm.data.imagery.Shape;
|
---|
| 53 | import org.openstreetmap.josm.data.preferences.JosmBaseDirectories;
|
---|
[15478] | 54 | import org.openstreetmap.josm.data.preferences.JosmUrls;
|
---|
[15033] | 55 | import org.openstreetmap.josm.data.projection.Projections;
|
---|
[16650] | 56 | import org.openstreetmap.josm.data.sources.SourceInfo;
|
---|
[15033] | 57 | import org.openstreetmap.josm.data.validation.routines.DomainValidator;
|
---|
| 58 | import org.openstreetmap.josm.io.imagery.ImageryReader;
|
---|
| 59 | import org.openstreetmap.josm.spi.preferences.Config;
|
---|
[15439] | 60 | import org.openstreetmap.josm.tools.ImageProvider;
|
---|
[15692] | 61 | import org.openstreetmap.josm.tools.JosmRuntimeException;
|
---|
[15034] | 62 | import org.openstreetmap.josm.tools.Logging;
|
---|
[15033] | 63 | import org.openstreetmap.josm.tools.OptionParser;
|
---|
| 64 | import org.openstreetmap.josm.tools.OptionParser.OptionCount;
|
---|
| 65 | import org.openstreetmap.josm.tools.ReflectionUtils;
|
---|
| 66 | import org.xml.sax.SAXException;
|
---|
| 67 |
|
---|
[7726] | 68 | /**
|
---|
[11854] | 69 | * Compare and analyse the differences of the editor layer index and the JOSM imagery list.
|
---|
[7726] | 70 | * The goal is to keep both lists in sync.
|
---|
| 71 | *
|
---|
[11854] | 72 | * The editor layer index project (https://github.com/osmlab/editor-layer-index)
|
---|
[11694] | 73 | * provides also a version in the JOSM format, but the GEOJSON is the original source
|
---|
[7726] | 74 | * format, so we read that.
|
---|
| 75 | *
|
---|
| 76 | * How to run:
|
---|
| 77 | * -----------
|
---|
| 78 | *
|
---|
| 79 | * Main JOSM binary needs to be in classpath, e.g.
|
---|
| 80 | *
|
---|
[15033] | 81 | * $ java -cp ../dist/josm-custom.jar SyncEditorLayerIndex
|
---|
[9667] | 82 | *
|
---|
[7726] | 83 | * Add option "-h" to show the available command line flags.
|
---|
| 84 | */
|
---|
[15037] | 85 | @SuppressWarnings("unchecked")
|
---|
[15033] | 86 | public class SyncEditorLayerIndex {
|
---|
[14019] | 87 |
|
---|
[15034] | 88 | private static final int MAXLEN = 140;
|
---|
| 89 |
|
---|
[15033] | 90 | private List<ImageryInfo> josmEntries;
|
---|
| 91 | private JsonArray eliEntries;
|
---|
[7726] | 92 |
|
---|
[15034] | 93 | private final Map<String, JsonObject> eliUrls = new HashMap<>();
|
---|
| 94 | private final Map<String, ImageryInfo> josmUrls = new HashMap<>();
|
---|
| 95 | private final Map<String, ImageryInfo> josmMirrors = new HashMap<>();
|
---|
| 96 | private static final Map<String, String> oldproj = new HashMap<>();
|
---|
| 97 | private static final List<String> ignoreproj = new LinkedList<>();
|
---|
[7726] | 98 |
|
---|
[15033] | 99 | private static String eliInputFile = "imagery_eli.geojson";
|
---|
| 100 | private static String josmInputFile = "imagery_josm.imagery.xml";
|
---|
| 101 | private static String ignoreInputFile = "imagery_josm.ignores.txt";
|
---|
[16098] | 102 | private static Writer outputStream;
|
---|
[15033] | 103 | private static String optionOutput;
|
---|
| 104 | private static boolean optionShorten;
|
---|
| 105 | private static boolean optionNoSkip;
|
---|
| 106 | private static boolean optionXhtmlBody;
|
---|
| 107 | private static boolean optionXhtml;
|
---|
| 108 | private static String optionEliXml;
|
---|
| 109 | private static String optionJosmXml;
|
---|
| 110 | private static String optionEncoding;
|
---|
| 111 | private static boolean optionNoEli;
|
---|
| 112 | private Map<String, String> skip = new HashMap<>();
|
---|
[15850] | 113 | private Map<String, String> skipStart = new HashMap<>();
|
---|
[7726] | 114 |
|
---|
| 115 | /**
|
---|
| 116 | * Main method.
|
---|
[15033] | 117 | * @param args program arguments
|
---|
| 118 | * @throws IOException if any I/O error occurs
|
---|
| 119 | * @throws ReflectiveOperationException if any reflective operation error occurs
|
---|
| 120 | * @throws SAXException if any SAX error occurs
|
---|
[7726] | 121 | */
|
---|
[15033] | 122 | public static void main(String[] args) throws IOException, SAXException, ReflectiveOperationException {
|
---|
| 123 | Locale.setDefault(Locale.ROOT);
|
---|
[15034] | 124 | parseCommandLineArguments(args);
|
---|
[15478] | 125 | Config.setUrlsProvider(JosmUrls.getInstance());
|
---|
[15033] | 126 | Preferences pref = new Preferences(JosmBaseDirectories.getInstance());
|
---|
| 127 | Config.setPreferencesInstance(pref);
|
---|
| 128 | pref.init(false);
|
---|
| 129 | SyncEditorLayerIndex script = new SyncEditorLayerIndex();
|
---|
| 130 | script.setupProj();
|
---|
| 131 | script.loadSkip();
|
---|
| 132 | script.start();
|
---|
| 133 | script.loadJosmEntries();
|
---|
| 134 | if (optionJosmXml != null) {
|
---|
[16098] | 135 | try (BufferedWriter writer = Files.newBufferedWriter(Paths.get(optionJosmXml), UTF_8)) {
|
---|
| 136 | script.printentries(script.josmEntries, writer);
|
---|
[15034] | 137 | }
|
---|
[11964] | 138 | }
|
---|
[15033] | 139 | script.loadELIEntries();
|
---|
| 140 | if (optionEliXml != null) {
|
---|
[16098] | 141 | try (BufferedWriter writer = Files.newBufferedWriter(Paths.get(optionEliXml), UTF_8)) {
|
---|
| 142 | script.printentries(script.eliEntries, writer);
|
---|
[15034] | 143 | }
|
---|
[11964] | 144 | }
|
---|
[15033] | 145 | script.checkInOneButNotTheOther();
|
---|
| 146 | script.checkCommonEntries();
|
---|
| 147 | script.end();
|
---|
| 148 | if (outputStream != null) {
|
---|
| 149 | outputStream.close();
|
---|
[9505] | 150 | }
|
---|
[7726] | 151 | }
|
---|
[9653] | 152 |
|
---|
[7726] | 153 | /**
|
---|
[15033] | 154 | * Displays help on the console
|
---|
| 155 | */
|
---|
| 156 | private static void showHelp() {
|
---|
| 157 | System.out.println(getHelp());
|
---|
| 158 | System.exit(0);
|
---|
| 159 | }
|
---|
| 160 |
|
---|
| 161 | static String getHelp() {
|
---|
| 162 | return "usage: java -cp build SyncEditorLayerIndex\n" +
|
---|
| 163 | "-c,--encoding <encoding> output encoding (defaults to UTF-8 or cp850 on Windows)\n" +
|
---|
[15034] | 164 | "-e,--eli_input <eli_input> Input file for the editor layer index (geojson). " +
|
---|
| 165 | "Default is imagery_eli.geojson (current directory).\n" +
|
---|
[15033] | 166 | "-h,--help show this help\n" +
|
---|
| 167 | "-i,--ignore_input <ignore_input> Input file for the ignore list. Default is imagery_josm.ignores.txt (current directory).\n" +
|
---|
[15034] | 168 | "-j,--josm_input <josm_input> Input file for the JOSM imagery list (xml). " +
|
---|
| 169 | "Default is imagery_josm.imagery.xml (current directory).\n" +
|
---|
[15033] | 170 | "-m,--noeli don't show output for ELI problems\n" +
|
---|
| 171 | "-n,--noskip don't skip known entries\n" +
|
---|
| 172 | "-o,--output <output> Output file, - prints to stdout (default: -)\n" +
|
---|
| 173 | "-p,--elixml <elixml> ELI entries for use in JOSM as XML file (incomplete)\n" +
|
---|
| 174 | "-q,--josmxml <josmxml> JOSM entries reoutput as XML file (incomplete)\n" +
|
---|
| 175 | "-s,--shorten shorten the output, so it is easier to read in a console window\n" +
|
---|
| 176 | "-x,--xhtmlbody create XHTML body for display in a web page\n" +
|
---|
| 177 | "-X,--xhtml create XHTML for display in a web page\n";
|
---|
| 178 | }
|
---|
| 179 |
|
---|
| 180 | /**
|
---|
[7726] | 181 | * Parse command line arguments.
|
---|
[15033] | 182 | * @param args program arguments
|
---|
[15034] | 183 | * @throws IOException in case of I/O error
|
---|
[7726] | 184 | */
|
---|
[15034] | 185 | static void parseCommandLineArguments(String[] args) throws IOException {
|
---|
[15033] | 186 | new OptionParser("JOSM/ELI synchronization script")
|
---|
| 187 | .addFlagParameter("help", SyncEditorLayerIndex::showHelp)
|
---|
| 188 | .addShortAlias("help", "h")
|
---|
| 189 | .addArgumentParameter("output", OptionCount.OPTIONAL, x -> optionOutput = x)
|
---|
| 190 | .addShortAlias("output", "o")
|
---|
| 191 | .addArgumentParameter("eli_input", OptionCount.OPTIONAL, x -> eliInputFile = x)
|
---|
| 192 | .addShortAlias("eli_input", "e")
|
---|
| 193 | .addArgumentParameter("josm_input", OptionCount.OPTIONAL, x -> josmInputFile = x)
|
---|
| 194 | .addShortAlias("josm_input", "j")
|
---|
| 195 | .addArgumentParameter("ignore_input", OptionCount.OPTIONAL, x -> ignoreInputFile = x)
|
---|
| 196 | .addShortAlias("ignore_input", "i")
|
---|
| 197 | .addFlagParameter("shorten", () -> optionShorten = true)
|
---|
| 198 | .addShortAlias("shorten", "s")
|
---|
| 199 | .addFlagParameter("noskip", () -> optionNoSkip = true)
|
---|
| 200 | .addShortAlias("noskip", "n")
|
---|
| 201 | .addFlagParameter("xhtmlbody", () -> optionXhtmlBody = true)
|
---|
| 202 | .addShortAlias("xhtmlbody", "x")
|
---|
| 203 | .addFlagParameter("xhtml", () -> optionXhtml = true)
|
---|
| 204 | .addShortAlias("xhtml", "X")
|
---|
| 205 | .addArgumentParameter("elixml", OptionCount.OPTIONAL, x -> optionEliXml = x)
|
---|
| 206 | .addShortAlias("elixml", "p")
|
---|
| 207 | .addArgumentParameter("josmxml", OptionCount.OPTIONAL, x -> optionJosmXml = x)
|
---|
| 208 | .addShortAlias("josmxml", "q")
|
---|
| 209 | .addFlagParameter("noeli", () -> optionNoEli = true)
|
---|
| 210 | .addShortAlias("noeli", "m")
|
---|
| 211 | .addArgumentParameter("encoding", OptionCount.OPTIONAL, x -> optionEncoding = x)
|
---|
| 212 | .addShortAlias("encoding", "c")
|
---|
| 213 | .parseOptionsOrExit(Arrays.asList(args));
|
---|
[7726] | 214 |
|
---|
[15034] | 215 | if (optionOutput != null && !"-".equals(optionOutput)) {
|
---|
[16098] | 216 | outputStream = Files.newBufferedWriter(Paths.get(optionOutput), optionEncoding != null ? Charset.forName(optionEncoding) : UTF_8);
|
---|
[15033] | 217 | } else if (optionEncoding != null) {
|
---|
| 218 | outputStream = new OutputStreamWriter(System.out, optionEncoding);
|
---|
[7726] | 219 | }
|
---|
| 220 | }
|
---|
| 221 |
|
---|
[13530] | 222 | void setupProj() {
|
---|
[15033] | 223 | oldproj.put("EPSG:3359", "EPSG:3404");
|
---|
| 224 | oldproj.put("EPSG:3785", "EPSG:3857");
|
---|
| 225 | oldproj.put("EPSG:31297", "EPGS:31287");
|
---|
| 226 | oldproj.put("EPSG:31464", "EPSG:31468");
|
---|
| 227 | oldproj.put("EPSG:54004", "EPSG:3857");
|
---|
| 228 | oldproj.put("EPSG:102100", "EPSG:3857");
|
---|
| 229 | oldproj.put("EPSG:102113", "EPSG:3857");
|
---|
| 230 | oldproj.put("EPSG:900913", "EPGS:3857");
|
---|
| 231 | ignoreproj.add("EPSG:4267");
|
---|
| 232 | ignoreproj.add("EPSG:5221");
|
---|
| 233 | ignoreproj.add("EPSG:5514");
|
---|
| 234 | ignoreproj.add("EPSG:32019");
|
---|
| 235 | ignoreproj.add("EPSG:102066");
|
---|
| 236 | ignoreproj.add("EPSG:102067");
|
---|
| 237 | ignoreproj.add("EPSG:102685");
|
---|
| 238 | ignoreproj.add("EPSG:102711");
|
---|
[13530] | 239 | }
|
---|
| 240 |
|
---|
[15033] | 241 | void loadSkip() throws IOException {
|
---|
| 242 | final Pattern pattern = Pattern.compile("^\\|\\| *(ELI|Ignore) *\\|\\| *\\{\\{\\{(.+)\\}\\}\\} *\\|\\|");
|
---|
[16098] | 243 | try (BufferedReader fr = Files.newBufferedReader(Paths.get(ignoreInputFile), UTF_8)) {
|
---|
[15033] | 244 | String line;
|
---|
[11238] | 245 |
|
---|
[15033] | 246 | while ((line = fr.readLine()) != null) {
|
---|
| 247 | Matcher res = pattern.matcher(line);
|
---|
| 248 | if (res.matches()) {
|
---|
[15850] | 249 | String s = res.group(2);
|
---|
[15851] | 250 | if (s.endsWith("...")) {
|
---|
[15850] | 251 | s = s.substring(0, s.length() - 3);
|
---|
| 252 | if ("Ignore".equals(res.group(1))) {
|
---|
| 253 | skipStart.put(s, "green");
|
---|
| 254 | } else {
|
---|
| 255 | skipStart.put(s, "darkgoldenrod");
|
---|
| 256 | }
|
---|
[15851] | 257 | } else {
|
---|
[15850] | 258 | if ("Ignore".equals(res.group(1))) {
|
---|
| 259 | skip.put(s, "green");
|
---|
| 260 | } else {
|
---|
| 261 | skip.put(s, "darkgoldenrod");
|
---|
| 262 | }
|
---|
| 263 | }
|
---|
[11238] | 264 | }
|
---|
| 265 | }
|
---|
[11234] | 266 | }
|
---|
[11238] | 267 | }
|
---|
[9653] | 268 |
|
---|
[15692] | 269 | void myprintlnfinal(String s) {
|
---|
[15033] | 270 | if (outputStream != null) {
|
---|
[15692] | 271 | try {
|
---|
| 272 | outputStream.write(s + System.getProperty("line.separator"));
|
---|
| 273 | } catch (IOException e) {
|
---|
| 274 | throw new JosmRuntimeException(e);
|
---|
| 275 | }
|
---|
[9658] | 276 | } else {
|
---|
[15033] | 277 | System.out.println(s);
|
---|
[9658] | 278 | }
|
---|
| 279 | }
|
---|
| 280 |
|
---|
[15850] | 281 | String isSkipString(String s) {
|
---|
| 282 | if (skip.containsKey(s))
|
---|
| 283 | return skip.get(s);
|
---|
| 284 | for (Entry<String, String> str : skipStart.entrySet()) {
|
---|
[15878] | 285 | if (s.startsWith(str.getKey())) {
|
---|
| 286 | skipStart.remove(str.getKey());
|
---|
[15850] | 287 | return str.getValue();
|
---|
[15878] | 288 | }
|
---|
[15850] | 289 | }
|
---|
| 290 | return null;
|
---|
| 291 | }
|
---|
[15851] | 292 |
|
---|
[15692] | 293 | void myprintln(String s) {
|
---|
[15850] | 294 | String color;
|
---|
| 295 | if ((color = isSkipString(s)) != null) {
|
---|
[15033] | 296 | skip.remove(s);
|
---|
| 297 | if (optionXhtmlBody || optionXhtml) {
|
---|
[15034] | 298 | s = "<pre style=\"margin:3px;color:"+color+"\">"
|
---|
| 299 | + s.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">")+"</pre>";
|
---|
[9658] | 300 | }
|
---|
[15033] | 301 | if (!optionNoSkip) {
|
---|
| 302 | return;
|
---|
[9662] | 303 | }
|
---|
[15034] | 304 | } else if (optionXhtmlBody || optionXhtml) {
|
---|
[15850] | 305 | color =
|
---|
[15033] | 306 | s.startsWith("***") ? "black" :
|
---|
| 307 | ((s.startsWith("+ ") || s.startsWith("+++ ELI")) ? "blue" :
|
---|
| 308 | (s.startsWith("#") ? "indigo" :
|
---|
| 309 | (s.startsWith("!") ? "orange" : "red")));
|
---|
[15034] | 310 | s = "<pre style=\"margin:3px;color:"+color+"\">"+s.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">")+"</pre>";
|
---|
[9505] | 311 | }
|
---|
[15033] | 312 | if ((s.startsWith("+ ") || s.startsWith("+++ ELI") || s.startsWith("#")) && optionNoEli) {
|
---|
| 313 | return;
|
---|
[11965] | 314 | }
|
---|
[15033] | 315 | myprintlnfinal(s);
|
---|
[9658] | 316 | }
|
---|
| 317 |
|
---|
[15692] | 318 | void start() {
|
---|
[15033] | 319 | if (optionXhtml) {
|
---|
[15034] | 320 | myprintlnfinal(
|
---|
| 321 | "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n");
|
---|
| 322 | myprintlnfinal(
|
---|
| 323 | "<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"/>"+
|
---|
| 324 | "<title>JOSM - ELI differences</title></head><body>\n");
|
---|
[9505] | 325 | }
|
---|
| 326 | }
|
---|
[9653] | 327 |
|
---|
[15692] | 328 | void end() {
|
---|
[15033] | 329 | for (String s : skip.keySet()) {
|
---|
| 330 | myprintln("+++ Obsolete skip entry: " + s);
|
---|
[9658] | 331 | }
|
---|
[15878] | 332 | for (String s : skipStart.keySet()) {
|
---|
| 333 | myprintln("+++ Obsolete skip entry: " + s + "...");
|
---|
| 334 | }
|
---|
[15033] | 335 | if (optionXhtml) {
|
---|
| 336 | myprintlnfinal("</body></html>\n");
|
---|
[9658] | 337 | }
|
---|
| 338 | }
|
---|
| 339 |
|
---|
[15033] | 340 | void loadELIEntries() throws IOException {
|
---|
[16098] | 341 | try (JsonReader jr = Json.createReader(Files.newBufferedReader(Paths.get(eliInputFile), UTF_8))) {
|
---|
[15033] | 342 | eliEntries = jr.readObject().getJsonArray("features");
|
---|
| 343 | }
|
---|
[9653] | 344 |
|
---|
[15033] | 345 | for (JsonValue e : eliEntries) {
|
---|
| 346 | String url = getUrlStripped(e);
|
---|
[9653] | 347 | if (url.contains("{z}")) {
|
---|
[15878] | 348 | myprintln("+++ ELI-URL uses {z} instead of {zoom}: "+getDescription(e));
|
---|
[15034] | 349 | url = url.replace("{z}", "{zoom}");
|
---|
[9653] | 350 | }
|
---|
[11582] | 351 | if (eliUrls.containsKey(url)) {
|
---|
[15033] | 352 | myprintln("+++ ELI-URL is not unique: "+url);
|
---|
[9505] | 353 | } else {
|
---|
[15033] | 354 | eliUrls.put(url, e.asJsonObject());
|
---|
[9505] | 355 | }
|
---|
[15033] | 356 | JsonArray s = e.asJsonObject().get("properties").asJsonObject().getJsonArray("available_projections");
|
---|
| 357 | if (s != null) {
|
---|
| 358 | String urlLc = url.toLowerCase(Locale.ENGLISH);
|
---|
| 359 | List<String> old = new LinkedList<>();
|
---|
| 360 | for (JsonValue p : s) {
|
---|
| 361 | String proj = ((JsonString) p).getString();
|
---|
| 362 | if (oldproj.containsKey(proj) || ("CRS:84".equals(proj) && !urlLc.contains("version=1.3"))) {
|
---|
| 363 | old.add(proj);
|
---|
[13530] | 364 | }
|
---|
| 365 | }
|
---|
[15033] | 366 | if (!old.isEmpty()) {
|
---|
| 367 | myprintln("+ ELI Projections "+String.join(", ", old)+" not useful: "+getDescription(e));
|
---|
[13530] | 368 | }
|
---|
| 369 | }
|
---|
[7726] | 370 | }
|
---|
[15033] | 371 | myprintln("*** Loaded "+eliEntries.size()+" entries (ELI). ***");
|
---|
[7726] | 372 | }
|
---|
[15033] | 373 |
|
---|
| 374 | String cdata(String s) {
|
---|
| 375 | return cdata(s, false);
|
---|
[11968] | 376 | }
|
---|
[7726] | 377 |
|
---|
[15033] | 378 | String cdata(String s, boolean escape) {
|
---|
| 379 | if (escape) {
|
---|
| 380 | return s.replaceAll("&", "&").replaceAll("<", "<").replaceAll(">", ">");
|
---|
[15712] | 381 | } else if (s.matches(".*[<>&].*"))
|
---|
[15033] | 382 | return "<![CDATA["+s+"]]>";
|
---|
| 383 | return s;
|
---|
| 384 | }
|
---|
| 385 |
|
---|
| 386 | String maininfo(Object entry, String offset) {
|
---|
| 387 | String t = getType(entry);
|
---|
| 388 | String res = offset + "<type>"+t+"</type>\n";
|
---|
| 389 | res += offset + "<url>"+cdata(getUrl(entry))+"</url>\n";
|
---|
| 390 | if (getMinZoom(entry) != null)
|
---|
| 391 | res += offset + "<min-zoom>"+getMinZoom(entry)+"</min-zoom>\n";
|
---|
| 392 | if (getMaxZoom(entry) != null)
|
---|
| 393 | res += offset + "<max-zoom>"+getMaxZoom(entry)+"</max-zoom>\n";
|
---|
| 394 | if ("wms".equals(t)) {
|
---|
| 395 | List<String> p = getProjections(entry);
|
---|
| 396 | if (p != null) {
|
---|
| 397 | res += offset + "<projections>\n";
|
---|
[15034] | 398 | for (String c : p) {
|
---|
[15033] | 399 | res += offset + " <code>"+c+"</code>\n";
|
---|
[15034] | 400 | }
|
---|
[15033] | 401 | res += offset + "</projections>\n";
|
---|
[11975] | 402 | }
|
---|
[11967] | 403 | }
|
---|
[15033] | 404 | return res;
|
---|
[11967] | 405 | }
|
---|
[12061] | 406 |
|
---|
[16098] | 407 | void printentries(List<?> entries, Writer stream) throws IOException {
|
---|
[15033] | 408 | DecimalFormat df = new DecimalFormat("#.#######");
|
---|
| 409 | df.setRoundingMode(java.math.RoundingMode.CEILING);
|
---|
| 410 | stream.write("<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n");
|
---|
| 411 | stream.write("<imagery xmlns=\"http://josm.openstreetmap.de/maps-1.0\">\n");
|
---|
| 412 | for (Object e : entries) {
|
---|
[13536] | 413 | stream.write(" <entry"
|
---|
[15034] | 414 | + ("eli-best".equals(getQuality(e)) ? " eli-best=\"true\"" : "")
|
---|
| 415 | + (getOverlay(e) ? " overlay=\"true\"" : "")
|
---|
[15033] | 416 | + ">\n");
|
---|
| 417 | String t;
|
---|
| 418 | if (isNotBlank(t = getName(e)))
|
---|
| 419 | stream.write(" <name>"+cdata(t, true)+"</name>\n");
|
---|
| 420 | if (isNotBlank(t = getId(e)))
|
---|
| 421 | stream.write(" <id>"+t+"</id>\n");
|
---|
| 422 | if (isNotBlank(t = getCategory(e)))
|
---|
| 423 | stream.write(" <category>"+t+"</category>\n");
|
---|
| 424 | if (isNotBlank(t = getDate(e)))
|
---|
| 425 | stream.write(" <date>"+t+"</date>\n");
|
---|
| 426 | if (isNotBlank(t = getCountryCode(e)))
|
---|
| 427 | stream.write(" <country-code>"+t+"</country-code>\n");
|
---|
| 428 | if ((getDefault(e)))
|
---|
| 429 | stream.write(" <default>true</default>\n");
|
---|
| 430 | stream.write(maininfo(e, " "));
|
---|
| 431 | if (isNotBlank(t = getAttributionText(e)))
|
---|
| 432 | stream.write(" <attribution-text mandatory=\"true\">"+cdata(t, true)+"</attribution-text>\n");
|
---|
| 433 | if (isNotBlank(t = getAttributionUrl(e)))
|
---|
| 434 | stream.write(" <attribution-url>"+cdata(t)+"</attribution-url>\n");
|
---|
| 435 | if (isNotBlank(t = getLogoImage(e)))
|
---|
| 436 | stream.write(" <logo-image>"+cdata(t, true)+"</logo-image>\n");
|
---|
| 437 | if (isNotBlank(t = getLogoUrl(e)))
|
---|
| 438 | stream.write(" <logo-url>"+cdata(t)+"</logo-url>\n");
|
---|
| 439 | if (isNotBlank(t = getTermsOfUseText(e)))
|
---|
| 440 | stream.write(" <terms-of-use-text>"+cdata(t, true)+"</terms-of-use-text>\n");
|
---|
| 441 | if (isNotBlank(t = getTermsOfUseUrl(e)))
|
---|
| 442 | stream.write(" <terms-of-use-url>"+cdata(t)+"</terms-of-use-url>\n");
|
---|
| 443 | if (isNotBlank(t = getPermissionReferenceUrl(e)))
|
---|
| 444 | stream.write(" <permission-ref>"+cdata(t)+"</permission-ref>\n");
|
---|
[16127] | 445 | if (isNotBlank(t = getPrivacyPolicyUrl(e)))
|
---|
| 446 | stream.write(" <privacy-policy-url>"+cdata(t)+"</privacy-policy-url>\n");
|
---|
[15033] | 447 | if ((getValidGeoreference(e)))
|
---|
| 448 | stream.write(" <valid-georeference>true</valid-georeference>\n");
|
---|
| 449 | if (isNotBlank(t = getIcon(e)))
|
---|
| 450 | stream.write(" <icon>"+cdata(t)+"</icon>\n");
|
---|
| 451 | for (Entry<String, String> d : getDescriptions(e).entrySet()) {
|
---|
| 452 | stream.write(" <description lang=\""+d.getKey()+"\">"+d.getValue()+"</description>\n");
|
---|
[11975] | 453 | }
|
---|
[15033] | 454 | for (ImageryInfo m : getMirrors(e)) {
|
---|
| 455 | stream.write(" <mirror>\n"+maininfo(m, " ")+" </mirror>\n");
|
---|
[11967] | 456 | }
|
---|
[15033] | 457 | double minlat = 1000;
|
---|
| 458 | double minlon = 1000;
|
---|
| 459 | double maxlat = -1000;
|
---|
| 460 | double maxlon = -1000;
|
---|
| 461 | String shapes = "";
|
---|
| 462 | String sep = "\n ";
|
---|
[13771] | 463 | try {
|
---|
[15033] | 464 | for (Shape s: getShapes(e)) {
|
---|
| 465 | shapes += " <shape>";
|
---|
| 466 | int i = 0;
|
---|
| 467 | for (Coordinate p: s.getPoints()) {
|
---|
| 468 | double lat = p.getLat();
|
---|
| 469 | double lon = p.getLon();
|
---|
| 470 | if (lat > maxlat) maxlat = lat;
|
---|
| 471 | if (lon > maxlon) maxlon = lon;
|
---|
| 472 | if (lat < minlat) minlat = lat;
|
---|
| 473 | if (lon < minlon) minlon = lon;
|
---|
[15034] | 474 | if ((i++ % 3) == 0) {
|
---|
[15033] | 475 | shapes += sep + " ";
|
---|
[13771] | 476 | }
|
---|
[15033] | 477 | shapes += "<point lat='"+df.format(lat)+"' lon='"+df.format(lon)+"'/>";
|
---|
[11964] | 478 | }
|
---|
[15033] | 479 | shapes += sep + "</shape>\n";
|
---|
[11964] | 480 | }
|
---|
[15034] | 481 | } catch (IllegalArgumentException ignored) {
|
---|
| 482 | Logging.trace(ignored);
|
---|
[11964] | 483 | }
|
---|
[15033] | 484 | if (!shapes.isEmpty()) {
|
---|
[15034] | 485 | stream.write(" <bounds min-lat='"+df.format(minlat)
|
---|
| 486 | +"' min-lon='"+df.format(minlon)
|
---|
| 487 | +"' max-lat='"+df.format(maxlat)
|
---|
| 488 | +"' max-lon='"+df.format(maxlon)+"'>\n");
|
---|
[15033] | 489 | stream.write(shapes + " </bounds>\n");
|
---|
[11964] | 490 | }
|
---|
[15033] | 491 | stream.write(" </entry>\n");
|
---|
[11964] | 492 | }
|
---|
[15033] | 493 | stream.write("</imagery>\n");
|
---|
| 494 | stream.close();
|
---|
[11964] | 495 | }
|
---|
| 496 |
|
---|
[15033] | 497 | void loadJosmEntries() throws IOException, SAXException, ReflectiveOperationException {
|
---|
| 498 | try (ImageryReader reader = new ImageryReader(josmInputFile)) {
|
---|
| 499 | josmEntries = reader.parse();
|
---|
| 500 | }
|
---|
[9667] | 501 |
|
---|
[15033] | 502 | for (ImageryInfo e : josmEntries) {
|
---|
| 503 | if (isBlank(getUrl(e))) {
|
---|
| 504 | myprintln("+++ JOSM-Entry without URL: " + getDescription(e));
|
---|
| 505 | continue;
|
---|
[14554] | 506 | }
|
---|
[16373] | 507 | if (isBlank(e.getDate()) && e.getDate() != null) {
|
---|
[16374] | 508 | myprintln("+++ JOSM-Entry with empty Date: " + getDescription(e));
|
---|
[16373] | 509 | continue;
|
---|
| 510 | }
|
---|
[15033] | 511 | if (isBlank(getName(e))) {
|
---|
| 512 | myprintln("+++ JOSM-Entry without Name: " + getDescription(e));
|
---|
| 513 | continue;
|
---|
[14554] | 514 | }
|
---|
[15033] | 515 | String url = getUrlStripped(e);
|
---|
[9658] | 516 | if (url.contains("{z}")) {
|
---|
[15878] | 517 | myprintln("+++ JOSM-URL uses {z} instead of {zoom}: "+getDescription(e));
|
---|
[15034] | 518 | url = url.replace("{z}", "{zoom}");
|
---|
[9658] | 519 | }
|
---|
[9505] | 520 | if (josmUrls.containsKey(url)) {
|
---|
[15033] | 521 | myprintln("+++ JOSM-URL is not unique: "+url);
|
---|
[9505] | 522 | } else {
|
---|
[15033] | 523 | josmUrls.put(url, e);
|
---|
[7726] | 524 | }
|
---|
[15033] | 525 | for (ImageryInfo m : e.getMirrors()) {
|
---|
| 526 | url = getUrlStripped(m);
|
---|
[16650] | 527 | Field origNameField = SourceInfo.class.getDeclaredField("origName");
|
---|
[15033] | 528 | ReflectionUtils.setObjectsAccessible(origNameField);
|
---|
[15034] | 529 | origNameField.set(m, m.getOriginalName().replaceAll(" mirror server( \\d+)?", ""));
|
---|
[9658] | 530 | if (josmUrls.containsKey(url)) {
|
---|
[15033] | 531 | myprintln("+++ JOSM-Mirror-URL is not unique: "+url);
|
---|
[9658] | 532 | } else {
|
---|
[15033] | 533 | josmUrls.put(url, m);
|
---|
| 534 | josmMirrors.put(url, m);
|
---|
[9658] | 535 | }
|
---|
| 536 | }
|
---|
[7726] | 537 | }
|
---|
[15033] | 538 | myprintln("*** Loaded "+josmEntries.size()+" entries (JOSM). ***");
|
---|
[7726] | 539 | }
|
---|
| 540 |
|
---|
[17453] | 541 | // catch reordered arguments, make them uppercase, and switches to WMS version 1.3.0
|
---|
[17328] | 542 | String unifyWMS(String url) {
|
---|
[17453] | 543 | String[] x = url.replaceAll("(?i)VERSION=[0-9.]+", "VERSION=x")
|
---|
| 544 | .replaceAll("(?i)SRS=", "CRS=")
|
---|
| 545 | .replaceAll("(?i)BBOX=", "BBOX=")
|
---|
| 546 | .replaceAll("(?i)FORMAT=", "FORMAT=")
|
---|
| 547 | .replaceAll("(?i)LAYERS=", "LAYERS=")
|
---|
| 548 | .replaceAll("(?i)MAP=", "MAP=")
|
---|
| 549 | .replaceAll("(?i)REQUEST=", "REQUEST=")
|
---|
| 550 | .replaceAll("(?i)SERVICE=", "SERVICE=")
|
---|
| 551 | .replaceAll("(?i)STYLES=", "STYLES=")
|
---|
| 552 | .replaceAll("(?i)TRANSPARENT=FALSE", "TRANSPARENT=FALSE")
|
---|
| 553 | .replaceAll("(?i)TRANSPARENT=TRUE", "TRANSPARENT=TRUE")
|
---|
| 554 | .replaceAll("(?i)WIDTH=", "WIDTH=")
|
---|
| 555 | .replaceAll("(?i)HEIGHT=", "HEIGHT=")
|
---|
| 556 | .split("\\?");
|
---|
[17454] | 557 | return x[0] +"?" + Arrays.stream(x[1].split("&"))
|
---|
| 558 | .filter(s -> !s.endsWith("=")) // filter empty params
|
---|
| 559 | .sorted()
|
---|
| 560 | .collect(Collectors.joining("&"));
|
---|
[17328] | 561 | }
|
---|
| 562 |
|
---|
[15692] | 563 | void checkInOneButNotTheOther() {
|
---|
[15033] | 564 | List<String> le = new LinkedList<>(eliUrls.keySet());
|
---|
| 565 | List<String> lj = new LinkedList<>(josmUrls.keySet());
|
---|
[13593] | 566 |
|
---|
[17453] | 567 | for (String url : new LinkedList<>(le)) {
|
---|
[15033] | 568 | if (lj.contains(url)) {
|
---|
| 569 | le.remove(url);
|
---|
| 570 | lj.remove(url);
|
---|
[13593] | 571 | }
|
---|
| 572 | }
|
---|
| 573 |
|
---|
[15033] | 574 | if (!le.isEmpty() && !lj.isEmpty()) {
|
---|
[17453] | 575 | List<String> ke = new LinkedList<>(le);
|
---|
[15033] | 576 | for (String urle : ke) {
|
---|
| 577 | JsonObject e = eliUrls.get(urle);
|
---|
| 578 | String ide = getId(e);
|
---|
[15034] | 579 | String urlhttps = urle.replace("http:", "https:");
|
---|
[15033] | 580 | if (lj.contains(urlhttps)) {
|
---|
| 581 | myprintln("+ Missing https: "+getDescription(e));
|
---|
| 582 | eliUrls.put(urlhttps, eliUrls.get(urle));
|
---|
| 583 | eliUrls.remove(urle);
|
---|
| 584 | le.remove(urle);
|
---|
| 585 | lj.remove(urlhttps);
|
---|
| 586 | } else if (isNotBlank(ide)) {
|
---|
[17453] | 587 | checkUrlsEquality(ide, e, urle, le, lj);
|
---|
[13517] | 588 | }
|
---|
[7726] | 589 | }
|
---|
| 590 | }
|
---|
[13714] | 591 |
|
---|
[15033] | 592 | myprintln("*** URLs found in ELI but not in JOSM ("+le.size()+"): ***");
|
---|
| 593 | Collections.sort(le);
|
---|
[13593] | 594 | if (!le.isEmpty()) {
|
---|
[15033] | 595 | for (String l : le) {
|
---|
| 596 | myprintln("- " + getDescription(eliUrls.get(l)));
|
---|
[11412] | 597 | }
|
---|
[7726] | 598 | }
|
---|
[15033] | 599 | myprintln("*** URLs found in JOSM but not in ELI ("+lj.size()+"): ***");
|
---|
| 600 | Collections.sort(lj);
|
---|
[13593] | 601 | if (!lj.isEmpty()) {
|
---|
[15033] | 602 | for (String l : lj) {
|
---|
| 603 | myprintln("+ " + getDescription(josmUrls.get(l)));
|
---|
[11412] | 604 | }
|
---|
[7726] | 605 | }
|
---|
| 606 | }
|
---|
[9667] | 607 |
|
---|
[17453] | 608 | void checkUrlsEquality(String ide, JsonObject e, String urle, List<String> le, List<String> lj) {
|
---|
| 609 | for (String urlj : new LinkedList<>(lj)) {
|
---|
| 610 | ImageryInfo j = josmUrls.get(urlj);
|
---|
| 611 | String idj = getId(j);
|
---|
| 612 |
|
---|
| 613 | if (checkUrlEquality(ide, "id", idj, e, j, urle, urlj, le, lj)) {
|
---|
| 614 | return;
|
---|
| 615 | }
|
---|
| 616 | Collection<String> old = j.getOldIds();
|
---|
| 617 | if (old != null) {
|
---|
| 618 | for (String oidj : old) {
|
---|
| 619 | if (checkUrlEquality(ide, "oldid", oidj, e, j, urle, urlj, le, lj)) {
|
---|
| 620 | return;
|
---|
| 621 | }
|
---|
| 622 | }
|
---|
| 623 | }
|
---|
| 624 | }
|
---|
| 625 | }
|
---|
| 626 |
|
---|
| 627 | boolean checkUrlEquality(
|
---|
| 628 | String ide, String idtype, String idj, JsonObject e, ImageryInfo j, String urle, String urlj, List<String> le, List<String> lj) {
|
---|
| 629 | if (ide.equals(idj) && Objects.equals(getType(j), getType(e))) {
|
---|
| 630 | if (getType(j).equals("wms") && unifyWMS(urle).equals(unifyWMS(urlj))) {
|
---|
| 631 | myprintln("# WMS-URL for "+idtype+" "+idj+" modified: "+getDescription(j));
|
---|
| 632 | } else {
|
---|
| 633 | myprintln("* URL for "+idtype+" "+idj+" differs ("+urle+"): "+getDescription(j));
|
---|
| 634 | }
|
---|
| 635 | le.remove(urle);
|
---|
| 636 | lj.remove(urlj);
|
---|
| 637 | // replace key for this entry with JOSM URL
|
---|
| 638 | eliUrls.remove(urle);
|
---|
| 639 | eliUrls.put(urlj, e);
|
---|
| 640 | return true;
|
---|
| 641 | }
|
---|
| 642 | return false;
|
---|
| 643 | }
|
---|
| 644 |
|
---|
[15692] | 645 | void checkCommonEntries() {
|
---|
[15034] | 646 | doSameUrlButDifferentName();
|
---|
| 647 | doSameUrlButDifferentId();
|
---|
| 648 | doSameUrlButDifferentType();
|
---|
| 649 | doSameUrlButDifferentZoomBounds();
|
---|
| 650 | doSameUrlButDifferentCountryCode();
|
---|
| 651 | doSameUrlButDifferentQuality();
|
---|
| 652 | doSameUrlButDifferentDates();
|
---|
| 653 | doSameUrlButDifferentInformation();
|
---|
| 654 | doMismatchingShapes();
|
---|
| 655 | doMismatchingIcons();
|
---|
[15692] | 656 | doMismatchingCategories();
|
---|
[15034] | 657 | doMiscellaneousChecks();
|
---|
| 658 | }
|
---|
| 659 |
|
---|
[15692] | 660 | void doSameUrlButDifferentName() {
|
---|
[15033] | 661 | myprintln("*** Same URL, but different name: ***");
|
---|
| 662 | for (String url : eliUrls.keySet()) {
|
---|
| 663 | JsonObject e = eliUrls.get(url);
|
---|
| 664 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 665 | ImageryInfo j = josmUrls.get(url);
|
---|
[15034] | 666 | String ename = getName(e).replace("'", "\u2019");
|
---|
| 667 | String jname = getName(j).replace("'", "\u2019");
|
---|
[11951] | 668 | if (!ename.equals(jname)) {
|
---|
[15033] | 669 | myprintln("* Name differs ('"+getName(e)+"' != '"+getName(j)+"'): "+getUrl(j));
|
---|
[7726] | 670 | }
|
---|
| 671 | }
|
---|
[15034] | 672 | }
|
---|
[9667] | 673 |
|
---|
[15692] | 674 | void doSameUrlButDifferentId() {
|
---|
[15033] | 675 | myprintln("*** Same URL, but different Id: ***");
|
---|
| 676 | for (String url : eliUrls.keySet()) {
|
---|
| 677 | JsonObject e = eliUrls.get(url);
|
---|
| 678 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 679 | ImageryInfo j = josmUrls.get(url);
|
---|
| 680 | String ename = getId(e);
|
---|
| 681 | String jname = getId(j);
|
---|
| 682 | if (!Objects.equals(ename, jname)) {
|
---|
| 683 | myprintln("# Id differs ('"+getId(e)+"' != '"+getId(j)+"'): "+getUrl(j));
|
---|
[12126] | 684 | }
|
---|
[12226] | 685 | }
|
---|
[15034] | 686 | }
|
---|
[12126] | 687 |
|
---|
[15692] | 688 | void doSameUrlButDifferentType() {
|
---|
[15033] | 689 | myprintln("*** Same URL, but different type: ***");
|
---|
| 690 | for (String url : eliUrls.keySet()) {
|
---|
| 691 | JsonObject e = eliUrls.get(url);
|
---|
| 692 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 693 | ImageryInfo j = josmUrls.get(url);
|
---|
| 694 | if (!Objects.equals(getType(e), getType(j))) {
|
---|
| 695 | myprintln("* Type differs ("+getType(e)+" != "+getType(j)+"): "+getName(j)+" - "+getUrl(j));
|
---|
[7726] | 696 | }
|
---|
| 697 | }
|
---|
[15034] | 698 | }
|
---|
[9667] | 699 |
|
---|
[15692] | 700 | void doSameUrlButDifferentZoomBounds() {
|
---|
[15033] | 701 | myprintln("*** Same URL, but different zoom bounds: ***");
|
---|
| 702 | for (String url : eliUrls.keySet()) {
|
---|
| 703 | JsonObject e = eliUrls.get(url);
|
---|
| 704 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 705 | ImageryInfo j = josmUrls.get(url);
|
---|
[7726] | 706 |
|
---|
[15033] | 707 | Integer eMinZoom = getMinZoom(e);
|
---|
| 708 | Integer jMinZoom = getMinZoom(j);
|
---|
[13997] | 709 | /* dont warn for entries copied from the base of the mirror */
|
---|
[15033] | 710 | if (eMinZoom == null && "wms".equals(getType(j)) && j.getName().contains(" mirror"))
|
---|
[13997] | 711 | jMinZoom = null;
|
---|
[15033] | 712 | if (!Objects.equals(eMinZoom, jMinZoom) && !(Objects.equals(eMinZoom, 0) && jMinZoom == null)) {
|
---|
| 713 | myprintln("* Minzoom differs ("+eMinZoom+" != "+jMinZoom+"): "+getDescription(j));
|
---|
[7726] | 714 | }
|
---|
[15033] | 715 | Integer eMaxZoom = getMaxZoom(e);
|
---|
| 716 | Integer jMaxZoom = getMaxZoom(j);
|
---|
[13997] | 717 | /* dont warn for entries copied from the base of the mirror */
|
---|
[15033] | 718 | if (eMaxZoom == null && "wms".equals(getType(j)) && j.getName().contains(" mirror"))
|
---|
[13997] | 719 | jMaxZoom = null;
|
---|
[15033] | 720 | if (!Objects.equals(eMaxZoom, jMaxZoom)) {
|
---|
| 721 | myprintln("* Maxzoom differs ("+eMaxZoom+" != "+jMaxZoom+"): "+getDescription(j));
|
---|
[7726] | 722 | }
|
---|
| 723 | }
|
---|
[15034] | 724 | }
|
---|
[9667] | 725 |
|
---|
[15692] | 726 | void doSameUrlButDifferentCountryCode() {
|
---|
[15033] | 727 | myprintln("*** Same URL, but different country code: ***");
|
---|
| 728 | for (String url : eliUrls.keySet()) {
|
---|
| 729 | JsonObject e = eliUrls.get(url);
|
---|
| 730 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 731 | ImageryInfo j = josmUrls.get(url);
|
---|
| 732 | String cce = getCountryCode(e);
|
---|
[13931] | 733 | if ("ZZ".equals(cce)) { /* special ELI country code */
|
---|
[15033] | 734 | cce = null;
|
---|
[13931] | 735 | }
|
---|
[15033] | 736 | if (cce != null && !cce.equals(getCountryCode(j))) {
|
---|
| 737 | myprintln("* Country code differs ("+getCountryCode(e)+" != "+getCountryCode(j)+"): "+getDescription(j));
|
---|
[7726] | 738 | }
|
---|
| 739 | }
|
---|
[15034] | 740 | }
|
---|
| 741 |
|
---|
[15692] | 742 | void doSameUrlButDifferentQuality() {
|
---|
[15033] | 743 | myprintln("*** Same URL, but different quality: ***");
|
---|
| 744 | for (String url : eliUrls.keySet()) {
|
---|
| 745 | JsonObject e = eliUrls.get(url);
|
---|
[9515] | 746 | if (!josmUrls.containsKey(url)) {
|
---|
[15033] | 747 | String q = getQuality(e);
|
---|
| 748 | if ("eli-best".equals(q)) {
|
---|
| 749 | myprintln("- Quality best entry not in JOSM for "+getDescription(e));
|
---|
[9515] | 750 | }
|
---|
[15033] | 751 | continue;
|
---|
[9515] | 752 | }
|
---|
[15033] | 753 | ImageryInfo j = josmUrls.get(url);
|
---|
| 754 | if (!Objects.equals(getQuality(e), getQuality(j))) {
|
---|
| 755 | myprintln("* Quality differs ("+getQuality(e)+" != "+getQuality(j)+"): "+getDescription(j));
|
---|
[9505] | 756 | }
|
---|
[11599] | 757 | }
|
---|
[15034] | 758 | }
|
---|
| 759 |
|
---|
[15692] | 760 | void doSameUrlButDifferentDates() {
|
---|
[15033] | 761 | myprintln("*** Same URL, but different dates: ***");
|
---|
| 762 | Pattern pattern = Pattern.compile("^(.*;)(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?$");
|
---|
| 763 | for (String url : eliUrls.keySet()) {
|
---|
| 764 | String ed = getDate(eliUrls.get(url));
|
---|
| 765 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 766 | ImageryInfo j = josmUrls.get(url);
|
---|
| 767 | String jd = getDate(j);
|
---|
[11612] | 768 | // The forms 2015;- or -;2015 or 2015;2015 are handled equal to 2015
|
---|
[15034] | 769 | String ef = ed.replaceAll("\\A-;", "").replaceAll(";-\\z", "").replaceAll("\\A([0-9-]+);\\1\\z", "$1");
|
---|
[11639] | 770 | // ELI has a strange and inconsistent used end_date definition, so we try again with subtraction by one
|
---|
[15033] | 771 | String ed2 = ed;
|
---|
| 772 | Matcher m = pattern.matcher(ed);
|
---|
| 773 | if (m.matches()) {
|
---|
| 774 | Calendar cal = Calendar.getInstance();
|
---|
| 775 | cal.set(Integer.valueOf(m.group(2)),
|
---|
| 776 | m.group(4) == null ? 0 : Integer.valueOf(m.group(4))-1,
|
---|
| 777 | m.group(6) == null ? 1 : Integer.valueOf(m.group(6)));
|
---|
| 778 | cal.add(Calendar.DAY_OF_MONTH, -1);
|
---|
| 779 | ed2 = m.group(1) + cal.get(Calendar.YEAR);
|
---|
| 780 | if (m.group(4) != null)
|
---|
| 781 | ed2 += "-" + String.format("%02d", cal.get(Calendar.MONTH)+1);
|
---|
| 782 | if (m.group(6) != null)
|
---|
| 783 | ed2 += "-" + String.format("%02d", cal.get(Calendar.DAY_OF_MONTH));
|
---|
[11639] | 784 | }
|
---|
[15034] | 785 | String ef2 = ed2.replaceAll("\\A-;", "").replaceAll(";-\\z", "").replaceAll("\\A([0-9-]+);\\1\\z", "$1");
|
---|
[11639] | 786 | if (!ed.equals(jd) && !ef.equals(jd) && !ed2.equals(jd) && !ef2.equals(jd)) {
|
---|
[15033] | 787 | String t = "'"+ed+"'";
|
---|
[11612] | 788 | if (!ed.equals(ef)) {
|
---|
[15033] | 789 | t += " or '"+ef+"'";
|
---|
[11612] | 790 | }
|
---|
[11666] | 791 | if (jd.isEmpty()) {
|
---|
[15033] | 792 | myprintln("- Missing JOSM date ("+t+"): "+getDescription(j));
|
---|
[11668] | 793 | } else if (!ed.isEmpty()) {
|
---|
[15033] | 794 | myprintln("* Date differs ('"+t+"' != '"+jd+"'): "+getDescription(j));
|
---|
| 795 | } else if (!optionNoEli) {
|
---|
| 796 | myprintln("+ Missing ELI date ('"+jd+"'): "+getDescription(j));
|
---|
[11666] | 797 | }
|
---|
[11573] | 798 | }
|
---|
[11665] | 799 | }
|
---|
[15034] | 800 | }
|
---|
| 801 |
|
---|
[15692] | 802 | void doSameUrlButDifferentInformation() {
|
---|
[15033] | 803 | myprintln("*** Same URL, but different information: ***");
|
---|
| 804 | for (String url : eliUrls.keySet()) {
|
---|
| 805 | if (!josmUrls.containsKey(url)) continue;
|
---|
| 806 | JsonObject e = eliUrls.get(url);
|
---|
| 807 | ImageryInfo j = josmUrls.get(url);
|
---|
[11981] | 808 |
|
---|
[15082] | 809 | compareDescriptions(e, j);
|
---|
[16127] | 810 | comparePrivacyPolicyUrls(e, j);
|
---|
[15082] | 811 | comparePermissionReferenceUrls(e, j);
|
---|
| 812 | compareAttributionUrls(e, j);
|
---|
| 813 | compareAttributionTexts(e, j);
|
---|
| 814 | compareProjections(e, j);
|
---|
| 815 | compareDefaults(e, j);
|
---|
| 816 | compareOverlays(e, j);
|
---|
| 817 | compareNoTileHeaders(e, j);
|
---|
| 818 | }
|
---|
| 819 | }
|
---|
| 820 |
|
---|
[15692] | 821 | void compareDescriptions(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 822 | String et = getDescriptions(e).getOrDefault("en", "");
|
---|
| 823 | String jt = getDescriptions(j).getOrDefault("en", "");
|
---|
| 824 | if (!et.equals(jt)) {
|
---|
| 825 | if (jt.isEmpty()) {
|
---|
| 826 | myprintln("- Missing JOSM description ("+et+"): "+getDescription(j));
|
---|
| 827 | } else if (!et.isEmpty()) {
|
---|
| 828 | myprintln("* Description differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 829 | } else if (!optionNoEli) {
|
---|
| 830 | myprintln("+ Missing ELI description ('"+jt+"'): "+getDescription(j));
|
---|
[11981] | 831 | }
|
---|
[15082] | 832 | }
|
---|
| 833 | }
|
---|
[11981] | 834 |
|
---|
[16127] | 835 | void comparePrivacyPolicyUrls(JsonObject e, ImageryInfo j) {
|
---|
| 836 | String et = getPrivacyPolicyUrl(e);
|
---|
| 837 | String jt = getPrivacyPolicyUrl(j);
|
---|
| 838 | if (!Objects.equals(et, jt)) {
|
---|
| 839 | if (isBlank(jt)) {
|
---|
| 840 | myprintln("- Missing JOSM privacy policy URL ("+et+"): "+getDescription(j));
|
---|
| 841 | } else if (isNotBlank(et)) {
|
---|
[17053] | 842 | myprintln("* Privacy policy URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
[16127] | 843 | } else if (!optionNoEli) {
|
---|
| 844 | myprintln("+ Missing ELI privacy policy URL ('"+jt+"'): "+getDescription(j));
|
---|
| 845 | }
|
---|
| 846 | }
|
---|
| 847 | }
|
---|
| 848 |
|
---|
[15692] | 849 | void comparePermissionReferenceUrls(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 850 | String et = getPermissionReferenceUrl(e);
|
---|
| 851 | String jt = getPermissionReferenceUrl(j);
|
---|
| 852 | String jt2 = getTermsOfUseUrl(j);
|
---|
| 853 | if (isBlank(jt)) jt = jt2;
|
---|
| 854 | if (!Objects.equals(et, jt)) {
|
---|
| 855 | if (isBlank(jt)) {
|
---|
| 856 | myprintln("- Missing JOSM license URL ("+et+"): "+getDescription(j));
|
---|
| 857 | } else if (isNotBlank(et)) {
|
---|
| 858 | String ethttps = et.replace("http:", "https:");
|
---|
| 859 | if (isBlank(jt2) || !(jt2.equals(ethttps) || jt2.equals(et+"/") || jt2.equals(ethttps+"/"))) {
|
---|
| 860 | if (jt.equals(ethttps) || jt.equals(et+"/") || jt.equals(ethttps+"/")) {
|
---|
| 861 | myprintln("+ License URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 862 | } else {
|
---|
| 863 | String ja = getAttributionUrl(j);
|
---|
| 864 | if (ja != null && (ja.equals(et) || ja.equals(ethttps) || ja.equals(et+"/") || ja.equals(ethttps+"/"))) {
|
---|
| 865 | myprintln("+ ELI License URL in JOSM Attribution: "+getDescription(j));
|
---|
[13578] | 866 | } else {
|
---|
[15082] | 867 | myprintln("* License URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
[13578] | 868 | }
|
---|
[13551] | 869 | }
|
---|
[11981] | 870 | }
|
---|
[15082] | 871 | } else if (!optionNoEli) {
|
---|
| 872 | myprintln("+ Missing ELI license URL ('"+jt+"'): "+getDescription(j));
|
---|
[11981] | 873 | }
|
---|
[15082] | 874 | }
|
---|
| 875 | }
|
---|
[11981] | 876 |
|
---|
[15692] | 877 | void compareAttributionUrls(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 878 | String et = getAttributionUrl(e);
|
---|
| 879 | String jt = getAttributionUrl(j);
|
---|
| 880 | if (!Objects.equals(et, jt)) {
|
---|
| 881 | if (isBlank(jt)) {
|
---|
| 882 | myprintln("- Missing JOSM attribution URL ("+et+"): "+getDescription(j));
|
---|
| 883 | } else if (isNotBlank(et)) {
|
---|
| 884 | String ethttps = et.replace("http:", "https:");
|
---|
| 885 | if (jt.equals(ethttps) || jt.equals(et+"/") || jt.equals(ethttps+"/")) {
|
---|
| 886 | myprintln("+ Attribution URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 887 | } else {
|
---|
| 888 | myprintln("* Attribution URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
[11981] | 889 | }
|
---|
[15082] | 890 | } else if (!optionNoEli) {
|
---|
| 891 | myprintln("+ Missing ELI attribution URL ('"+jt+"'): "+getDescription(j));
|
---|
[11981] | 892 | }
|
---|
[15082] | 893 | }
|
---|
| 894 | }
|
---|
[11981] | 895 |
|
---|
[15692] | 896 | void compareAttributionTexts(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 897 | String et = getAttributionText(e);
|
---|
| 898 | String jt = getAttributionText(j);
|
---|
| 899 | if (!Objects.equals(et, jt)) {
|
---|
| 900 | if (isBlank(jt)) {
|
---|
| 901 | myprintln("- Missing JOSM attribution text ("+et+"): "+getDescription(j));
|
---|
| 902 | } else if (isNotBlank(et)) {
|
---|
| 903 | myprintln("* Attribution text differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 904 | } else if (!optionNoEli) {
|
---|
| 905 | myprintln("+ Missing ELI attribution text ('"+jt+"'): "+getDescription(j));
|
---|
[11981] | 906 | }
|
---|
[15082] | 907 | }
|
---|
| 908 | }
|
---|
[11981] | 909 |
|
---|
[15692] | 910 | void compareProjections(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 911 | String et = getProjections(e).stream().sorted().collect(Collectors.joining(" "));
|
---|
| 912 | String jt = getProjections(j).stream().sorted().collect(Collectors.joining(" "));
|
---|
| 913 | if (!Objects.equals(et, jt)) {
|
---|
| 914 | if (isBlank(jt)) {
|
---|
| 915 | String t = getType(e);
|
---|
| 916 | if ("wms_endpoint".equals(t) || "tms".equals(t)) {
|
---|
| 917 | myprintln("+ ELI projections for type "+t+": "+getDescription(j));
|
---|
| 918 | } else {
|
---|
| 919 | myprintln("- Missing JOSM projections ("+et+"): "+getDescription(j));
|
---|
[11981] | 920 | }
|
---|
[15082] | 921 | } else if (isNotBlank(et)) {
|
---|
| 922 | if ("EPSG:3857 EPSG:4326".equals(et) || "EPSG:3857".equals(et) || "EPSG:4326".equals(et)) {
|
---|
| 923 | myprintln("+ ELI has minimal projections ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 924 | } else {
|
---|
| 925 | myprintln("* Projections differ ('"+et+"' != '"+jt+"'): "+getDescription(j));
|
---|
| 926 | }
|
---|
| 927 | } else if (!optionNoEli && !"tms".equals(getType(e))) {
|
---|
| 928 | myprintln("+ Missing ELI projections ('"+jt+"'): "+getDescription(j));
|
---|
[11981] | 929 | }
|
---|
[15082] | 930 | }
|
---|
| 931 | }
|
---|
[12226] | 932 |
|
---|
[15692] | 933 | void compareDefaults(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 934 | boolean ed = getDefault(e);
|
---|
| 935 | boolean jd = getDefault(j);
|
---|
| 936 | if (ed != jd) {
|
---|
| 937 | if (!jd) {
|
---|
| 938 | myprintln("- Missing JOSM default: "+getDescription(j));
|
---|
| 939 | } else if (!optionNoEli) {
|
---|
| 940 | myprintln("+ Missing ELI default: "+getDescription(j));
|
---|
[12226] | 941 | }
|
---|
[15082] | 942 | }
|
---|
| 943 | }
|
---|
| 944 |
|
---|
[15692] | 945 | void compareOverlays(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 946 | boolean eo = getOverlay(e);
|
---|
| 947 | boolean jo = getOverlay(j);
|
---|
| 948 | if (eo != jo) {
|
---|
| 949 | if (!jo) {
|
---|
| 950 | myprintln("- Missing JOSM overlay flag: "+getDescription(j));
|
---|
| 951 | } else if (!optionNoEli) {
|
---|
| 952 | myprintln("+ Missing ELI overlay flag: "+getDescription(j));
|
---|
[13536] | 953 | }
|
---|
[11981] | 954 | }
|
---|
[15034] | 955 | }
|
---|
| 956 |
|
---|
[15692] | 957 | void compareNoTileHeaders(JsonObject e, ImageryInfo j) {
|
---|
[15082] | 958 | Map<String, Set<String>> eh = getNoTileHeader(e);
|
---|
| 959 | Map<String, Set<String>> jh = getNoTileHeader(j);
|
---|
| 960 | if (!Objects.equals(eh, jh)) {
|
---|
| 961 | if (jh == null || jh.isEmpty()) {
|
---|
| 962 | myprintln("- Missing JOSM no tile headers ("+eh+"): "+getDescription(j));
|
---|
| 963 | } else if (eh != null && !eh.isEmpty()) {
|
---|
| 964 | myprintln("* No tile headers differ ('"+eh+"' != '"+jh+"'): "+getDescription(j));
|
---|
| 965 | } else if (!optionNoEli) {
|
---|
| 966 | myprintln("+ Missing ELI no tile headers ('"+jh+"'): "+getDescription(j));
|
---|
| 967 | }
|
---|
| 968 | }
|
---|
| 969 | }
|
---|
| 970 |
|
---|
[15692] | 971 | void doMismatchingShapes() {
|
---|
[15033] | 972 | myprintln("*** Mismatching shapes: ***");
|
---|
| 973 | for (String url : josmUrls.keySet()) {
|
---|
| 974 | ImageryInfo j = josmUrls.get(url);
|
---|
| 975 | int num = 1;
|
---|
| 976 | for (Shape shape : getShapes(j)) {
|
---|
| 977 | List<Coordinate> p = shape.getPoints();
|
---|
[15034] | 978 | if (!p.get(0).equals(p.get(p.size()-1))) {
|
---|
[15033] | 979 | myprintln("+++ JOSM shape "+num+" unclosed: "+getDescription(j));
|
---|
[11410] | 980 | }
|
---|
[15033] | 981 | for (int nump = 1; nump < p.size(); ++nump) {
|
---|
| 982 | if (Objects.equals(p.get(nump-1), p.get(nump))) {
|
---|
| 983 | myprintln("+++ JOSM shape "+num+" double point at "+(nump-1)+": "+getDescription(j));
|
---|
[11964] | 984 | }
|
---|
| 985 | }
|
---|
[15033] | 986 | ++num;
|
---|
[11410] | 987 | }
|
---|
| 988 | }
|
---|
[15033] | 989 | for (String url : eliUrls.keySet()) {
|
---|
| 990 | JsonObject e = eliUrls.get(url);
|
---|
| 991 | int num = 1;
|
---|
| 992 | List<Shape> s = null;
|
---|
[13771] | 993 | try {
|
---|
[15033] | 994 | s = getShapes(e);
|
---|
| 995 | for (Shape shape : s) {
|
---|
| 996 | List<Coordinate> p = shape.getPoints();
|
---|
[15034] | 997 | if (!p.get(0).equals(p.get(p.size()-1)) && !optionNoEli) {
|
---|
[15033] | 998 | myprintln("+++ ELI shape "+num+" unclosed: "+getDescription(e));
|
---|
[11964] | 999 | }
|
---|
[15033] | 1000 | for (int nump = 1; nump < p.size(); ++nump) {
|
---|
| 1001 | if (Objects.equals(p.get(nump-1), p.get(nump))) {
|
---|
| 1002 | myprintln("+++ ELI shape "+num+" double point at "+(nump-1)+": "+getDescription(e));
|
---|
[13771] | 1003 | }
|
---|
| 1004 | }
|
---|
[15033] | 1005 | ++num;
|
---|
[11964] | 1006 | }
|
---|
[15033] | 1007 | } catch (IllegalArgumentException err) {
|
---|
| 1008 | String desc = getDescription(e);
|
---|
[17301] | 1009 | myprintln("+++ ELI shape contains invalid data for "+desc+": "+err.getMessage());
|
---|
[11410] | 1010 | }
|
---|
[13780] | 1011 | if (s == null || !josmUrls.containsKey(url)) {
|
---|
[15033] | 1012 | continue;
|
---|
[11410] | 1013 | }
|
---|
[15033] | 1014 | ImageryInfo j = josmUrls.get(url);
|
---|
| 1015 | List<Shape> js = getShapes(j);
|
---|
| 1016 | if (s.isEmpty() && !js.isEmpty()) {
|
---|
| 1017 | if (!optionNoEli) {
|
---|
| 1018 | myprintln("+ No ELI shape: "+getDescription(j));
|
---|
[11414] | 1019 | }
|
---|
[15034] | 1020 | } else if (js.isEmpty() && !s.isEmpty()) {
|
---|
[11415] | 1021 | // don't report boundary like 5 point shapes as difference
|
---|
[15033] | 1022 | if (s.size() != 1 || s.get(0).getPoints().size() != 5) {
|
---|
| 1023 | myprintln("- No JOSM shape: "+getDescription(j));
|
---|
[11415] | 1024 | }
|
---|
[15034] | 1025 | } else if (s.size() != js.size()) {
|
---|
[15033] | 1026 | myprintln("* Different number of shapes ("+s.size()+" != "+js.size()+"): "+getDescription(j));
|
---|
[11413] | 1027 | } else {
|
---|
[15033] | 1028 | boolean[] edone = new boolean[s.size()];
|
---|
| 1029 | boolean[] jdone = new boolean[js.size()];
|
---|
| 1030 | for (int enums = 0; enums < s.size(); ++enums) {
|
---|
| 1031 | List<Coordinate> ep = s.get(enums).getPoints();
|
---|
| 1032 | for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
|
---|
| 1033 | List<Coordinate> jp = js.get(jnums).getPoints();
|
---|
| 1034 | if (ep.size() == jp.size() && !jdone[jnums]) {
|
---|
[14576] | 1035 | boolean err = false;
|
---|
[15034] | 1036 | for (int nump = 0; nump < ep.size() && !err; ++nump) {
|
---|
[15033] | 1037 | Coordinate ept = ep.get(nump);
|
---|
| 1038 | Coordinate jpt = jp.get(nump);
|
---|
[17737] | 1039 | if (differentCoordinate(ept.getLat(), jpt.getLat()) || differentCoordinate(ept.getLon(), jpt.getLon()))
|
---|
[15033] | 1040 | err = true;
|
---|
[11413] | 1041 | }
|
---|
[15034] | 1042 | if (!err) {
|
---|
[15033] | 1043 | edone[enums] = true;
|
---|
| 1044 | jdone[jnums] = true;
|
---|
| 1045 | break;
|
---|
[14576] | 1046 | }
|
---|
[11413] | 1047 | }
|
---|
| 1048 | }
|
---|
[11411] | 1049 | }
|
---|
[15033] | 1050 | for (int enums = 0; enums < s.size(); ++enums) {
|
---|
| 1051 | List<Coordinate> ep = s.get(enums).getPoints();
|
---|
| 1052 | for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
|
---|
| 1053 | List<Coordinate> jp = js.get(jnums).getPoints();
|
---|
| 1054 | if (ep.size() == jp.size() && !jdone[jnums]) {
|
---|
[14576] | 1055 | boolean err = false;
|
---|
[15033] | 1056 | for (int nump = 0; nump < ep.size() && !err; ++nump) {
|
---|
| 1057 | Coordinate ept = ep.get(nump);
|
---|
| 1058 | Coordinate jpt = jp.get(nump);
|
---|
[17737] | 1059 | if (differentCoordinate(ept.getLat(), jpt.getLat()) || differentCoordinate(ept.getLon(), jpt.getLon())) {
|
---|
[15033] | 1060 | String numtxt = Integer.toString(enums+1);
|
---|
| 1061 | if (enums != jnums) {
|
---|
| 1062 | numtxt += '/' + Integer.toString(jnums+1);
|
---|
| 1063 | }
|
---|
| 1064 | myprintln("* Different coordinate for point "+(nump+1)+" of shape "+numtxt+": "+getDescription(j));
|
---|
| 1065 | break;
|
---|
[14576] | 1066 | }
|
---|
| 1067 | }
|
---|
[15033] | 1068 | edone[enums] = true;
|
---|
| 1069 | jdone[jnums] = true;
|
---|
| 1070 | break;
|
---|
[14576] | 1071 | }
|
---|
| 1072 | }
|
---|
| 1073 | }
|
---|
[15033] | 1074 | for (int enums = 0; enums < s.size(); ++enums) {
|
---|
| 1075 | List<Coordinate> ep = s.get(enums).getPoints();
|
---|
| 1076 | for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
|
---|
| 1077 | List<Coordinate> jp = js.get(jnums).getPoints();
|
---|
| 1078 | if (!jdone[jnums]) {
|
---|
| 1079 | String numtxt = Integer.toString(enums+1);
|
---|
| 1080 | if (enums != jnums) {
|
---|
| 1081 | numtxt += '/' + Integer.toString(jnums+1);
|
---|
| 1082 | }
|
---|
[15699] | 1083 | myprintln("* Different number of points for shape "+numtxt+" ("+ep.size()+" ! = "+jp.size()+"): "
|
---|
[15034] | 1084 | + getDescription(j));
|
---|
[15033] | 1085 | edone[enums] = true;
|
---|
| 1086 | jdone[jnums] = true;
|
---|
| 1087 | break;
|
---|
[14576] | 1088 | }
|
---|
| 1089 | }
|
---|
| 1090 | }
|
---|
[11410] | 1091 | }
|
---|
| 1092 | }
|
---|
[15034] | 1093 | }
|
---|
| 1094 |
|
---|
[17737] | 1095 | private boolean differentCoordinate(double v1, double v2) {
|
---|
| 1096 | double epsilon = 0.00001;
|
---|
| 1097 | return Math.abs(v1 - v2) > epsilon;
|
---|
| 1098 | }
|
---|
| 1099 |
|
---|
[15692] | 1100 | void doMismatchingIcons() {
|
---|
[15033] | 1101 | myprintln("*** Mismatching icons: ***");
|
---|
[15692] | 1102 | doMismatching(this::compareIcons);
|
---|
| 1103 | }
|
---|
| 1104 |
|
---|
| 1105 | void doMismatchingCategories() {
|
---|
| 1106 | myprintln("*** Mismatching categories: ***");
|
---|
| 1107 | doMismatching(this::compareCategories);
|
---|
| 1108 | }
|
---|
| 1109 |
|
---|
| 1110 | void doMismatching(BiConsumer<ImageryInfo, JsonObject> comparator) {
|
---|
[15033] | 1111 | for (String url : eliUrls.keySet()) {
|
---|
[15692] | 1112 | if (josmUrls.containsKey(url)) {
|
---|
| 1113 | comparator.accept(josmUrls.get(url), eliUrls.get(url));
|
---|
[11420] | 1114 | }
|
---|
[15692] | 1115 | }
|
---|
| 1116 | }
|
---|
| 1117 |
|
---|
| 1118 | void compareIcons(ImageryInfo j, JsonObject e) {
|
---|
| 1119 | String ij = getIcon(j);
|
---|
| 1120 | String ie = getIcon(e);
|
---|
| 1121 | boolean ijok = isNotBlank(ij);
|
---|
| 1122 | boolean ieok = isNotBlank(ie);
|
---|
| 1123 | if (ijok && !ieok) {
|
---|
| 1124 | if (!optionNoEli) {
|
---|
| 1125 | myprintln("+ No ELI icon: "+getDescription(j));
|
---|
[11420] | 1126 | }
|
---|
[15692] | 1127 | } else if (!ijok && ieok) {
|
---|
| 1128 | myprintln("- No JOSM icon: "+getDescription(j));
|
---|
| 1129 | } else if (ijok && ieok && !Objects.equals(ij, ie) && !(
|
---|
| 1130 | (ie.startsWith("https://osmlab.github.io/editor-layer-index/")
|
---|
| 1131 | || ie.startsWith("https://raw.githubusercontent.com/osmlab/editor-layer-index/")) &&
|
---|
| 1132 | ij.startsWith("data:"))) {
|
---|
| 1133 | String iehttps = ie.replace("http:", "https:");
|
---|
| 1134 | if (ij.equals(iehttps)) {
|
---|
| 1135 | myprintln("+ Different icons: "+getDescription(j));
|
---|
| 1136 | } else {
|
---|
| 1137 | myprintln("* Different icons: "+getDescription(j));
|
---|
| 1138 | }
|
---|
[11420] | 1139 | }
|
---|
[15034] | 1140 | }
|
---|
| 1141 |
|
---|
[15692] | 1142 | void compareCategories(ImageryInfo j, JsonObject e) {
|
---|
| 1143 | String cj = getCategory(j);
|
---|
| 1144 | String ce = getCategory(e);
|
---|
| 1145 | boolean cjok = isNotBlank(cj);
|
---|
| 1146 | boolean ceok = isNotBlank(ce);
|
---|
| 1147 | if (cjok && !ceok) {
|
---|
| 1148 | if (!optionNoEli) {
|
---|
| 1149 | myprintln("+ No ELI category: "+getDescription(j));
|
---|
| 1150 | }
|
---|
| 1151 | } else if (!cjok && ceok) {
|
---|
| 1152 | myprintln("- No JOSM category: "+getDescription(j));
|
---|
| 1153 | } else if (cjok && ceok && !Objects.equals(cj, ce)) {
|
---|
[15699] | 1154 | myprintln("* Different categories ('"+ce+"' != '"+cj+"'): "+getDescription(j));
|
---|
[15692] | 1155 | }
|
---|
| 1156 | }
|
---|
| 1157 |
|
---|
| 1158 | void doMiscellaneousChecks() {
|
---|
[15033] | 1159 | myprintln("*** Miscellaneous checks: ***");
|
---|
| 1160 | Map<String, ImageryInfo> josmIds = new HashMap<>();
|
---|
| 1161 | Collection<String> all = Projections.getAllProjectionCodes();
|
---|
[13551] | 1162 | DomainValidator dv = DomainValidator.getInstance();
|
---|
[15033] | 1163 | for (String url : josmUrls.keySet()) {
|
---|
| 1164 | ImageryInfo j = josmUrls.get(url);
|
---|
| 1165 | String id = getId(j);
|
---|
| 1166 | if ("wms".equals(getType(j))) {
|
---|
| 1167 | String urlLc = url.toLowerCase(Locale.ENGLISH);
|
---|
| 1168 | if (getProjections(j).isEmpty()) {
|
---|
| 1169 | myprintln("* WMS without projections: "+getDescription(j));
|
---|
[13526] | 1170 | } else {
|
---|
[15033] | 1171 | List<String> unsupported = new LinkedList<>();
|
---|
| 1172 | List<String> old = new LinkedList<>();
|
---|
| 1173 | for (String p : getProjectionsUnstripped(j)) {
|
---|
| 1174 | if ("CRS:84".equals(p)) {
|
---|
| 1175 | if (!urlLc.contains("version=1.3")) {
|
---|
| 1176 | myprintln("* CRS:84 without WMS 1.3: "+getDescription(j));
|
---|
[13526] | 1177 | }
|
---|
[15033] | 1178 | } else if (oldproj.containsKey(p)) {
|
---|
| 1179 | old.add(p);
|
---|
| 1180 | } else if (!all.contains(p) && !ignoreproj.contains(p)) {
|
---|
| 1181 | unsupported.add(p);
|
---|
[13526] | 1182 | }
|
---|
| 1183 | }
|
---|
[15033] | 1184 | if (!unsupported.isEmpty()) {
|
---|
| 1185 | myprintln("* Projections "+String.join(", ", unsupported)+" not supported by JOSM: "+getDescription(j));
|
---|
[13526] | 1186 | }
|
---|
[15033] | 1187 | for (String o : old) {
|
---|
[15034] | 1188 | myprintln("* Projection "+o+" is an old unsupported code and has been replaced by "+oldproj.get(o)+": "
|
---|
| 1189 | + getDescription(j));
|
---|
[13527] | 1190 | }
|
---|
[13526] | 1191 | }
|
---|
[15033] | 1192 | if (urlLc.contains("version=1.3") && !urlLc.contains("crs={proj}")) {
|
---|
| 1193 | myprintln("* WMS 1.3 with strange CRS specification: "+getDescription(j));
|
---|
| 1194 | } else if (urlLc.contains("version=1.1") && !urlLc.contains("srs={proj}")) {
|
---|
| 1195 | myprintln("* WMS 1.1 with strange SRS specification: "+getDescription(j));
|
---|
[13526] | 1196 | }
|
---|
[13511] | 1197 | }
|
---|
[15033] | 1198 | List<String> urls = new LinkedList<>();
|
---|
| 1199 | if (!"scanex".equals(getType(j))) {
|
---|
| 1200 | urls.add(url);
|
---|
[13532] | 1201 | }
|
---|
[15033] | 1202 | String jt = getPermissionReferenceUrl(j);
|
---|
| 1203 | if (isNotBlank(jt) && !"Public Domain".equalsIgnoreCase(jt))
|
---|
| 1204 | urls.add(jt);
|
---|
| 1205 | jt = getTermsOfUseUrl(j);
|
---|
| 1206 | if (isNotBlank(jt))
|
---|
| 1207 | urls.add(jt);
|
---|
| 1208 | jt = getAttributionUrl(j);
|
---|
| 1209 | if (isNotBlank(jt))
|
---|
| 1210 | urls.add(jt);
|
---|
| 1211 | jt = getIcon(j);
|
---|
[15439] | 1212 | if (isNotBlank(jt)) {
|
---|
[15440] | 1213 | if (!jt.startsWith("data:image/"))
|
---|
[15439] | 1214 | urls.add(jt);
|
---|
| 1215 | else {
|
---|
[15440] | 1216 | try {
|
---|
| 1217 | new ImageProvider(jt).get();
|
---|
| 1218 | } catch (RuntimeException e) {
|
---|
[15439] | 1219 | myprintln("* Strange Icon: "+getDescription(j));
|
---|
| 1220 | }
|
---|
| 1221 | }
|
---|
| 1222 | }
|
---|
[15163] | 1223 | Pattern patternU = Pattern.compile("^https?://([^/]+?)(:\\d+)?(/.*)?");
|
---|
[15033] | 1224 | for (String u : urls) {
|
---|
[15163] | 1225 | if (!patternU.matcher(u).matches() || u.matches(".*[ \t]+$")) {
|
---|
[15033] | 1226 | myprintln("* Strange URL '"+u+"': "+getDescription(j));
|
---|
| 1227 | } else {
|
---|
[15163] | 1228 | try {
|
---|
| 1229 | URL jurl = new URL(u.replaceAll("\\{switch:[^\\}]*\\}", "x"));
|
---|
| 1230 | String domain = jurl.getHost();
|
---|
| 1231 | int port = jurl.getPort();
|
---|
| 1232 | if (!(domain.matches("^\\d+\\.\\d+\\.\\d+\\.\\d+$")) && !dv.isValid(domain))
|
---|
| 1233 | myprintln("* Strange Domain '"+domain+"': "+getDescription(j));
|
---|
| 1234 | else if (80 == port || 443 == port) {
|
---|
| 1235 | myprintln("* Useless port '"+port+"': "+getDescription(j));
|
---|
| 1236 | }
|
---|
| 1237 | } catch (MalformedURLException e) {
|
---|
| 1238 | myprintln("* Malformed URL '"+u+"': "+getDescription(j)+" => "+e.getMessage());
|
---|
[13554] | 1239 | }
|
---|
[13551] | 1240 | }
|
---|
| 1241 | }
|
---|
| 1242 |
|
---|
[15033] | 1243 | if (josmMirrors.containsKey(url)) {
|
---|
| 1244 | continue;
|
---|
[11420] | 1245 | }
|
---|
[15033] | 1246 | if (isBlank(id)) {
|
---|
| 1247 | myprintln("* No JOSM-ID: "+getDescription(j));
|
---|
| 1248 | } else if (josmIds.containsKey(id)) {
|
---|
| 1249 | myprintln("* JOSM-ID "+id+" not unique: "+getDescription(j));
|
---|
[11420] | 1250 | } else {
|
---|
[15033] | 1251 | josmIds.put(id, j);
|
---|
[11420] | 1252 | }
|
---|
[15033] | 1253 | String d = getDate(j);
|
---|
| 1254 | if (isNotBlank(d)) {
|
---|
| 1255 | Pattern patternD = Pattern.compile("^(-|(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?)(;(-|(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?))?$");
|
---|
| 1256 | Matcher m = patternD.matcher(d);
|
---|
| 1257 | if (!m.matches()) {
|
---|
| 1258 | myprintln("* JOSM-Date '"+d+"' is strange: "+getDescription(j));
|
---|
[11572] | 1259 | } else {
|
---|
| 1260 | try {
|
---|
[15033] | 1261 | Date first = verifyDate(m.group(2), m.group(4), m.group(6));
|
---|
| 1262 | Date second = verifyDate(m.group(9), m.group(11), m.group(13));
|
---|
| 1263 | if (second.compareTo(first) < 0) {
|
---|
| 1264 | myprintln("* JOSM-Date '"+d+"' is strange (second earlier than first): "+getDescription(j));
|
---|
[11572] | 1265 | }
|
---|
[15034] | 1266 | } catch (Exception e) {
|
---|
[15033] | 1267 | myprintln("* JOSM-Date '"+d+"' is strange ("+e.getMessage()+"): "+getDescription(j));
|
---|
[11572] | 1268 | }
|
---|
| 1269 | }
|
---|
[11603] | 1270 | }
|
---|
[15033] | 1271 | if (isNotBlank(getAttributionUrl(j)) && isBlank(getAttributionText(j))) {
|
---|
| 1272 | myprintln("* Attribution link without text: "+getDescription(j));
|
---|
[12261] | 1273 | }
|
---|
[15033] | 1274 | if (isNotBlank(getLogoUrl(j)) && isBlank(getLogoImage(j))) {
|
---|
| 1275 | myprintln("* Logo link without image: "+getDescription(j));
|
---|
[12261] | 1276 | }
|
---|
[15033] | 1277 | if (isNotBlank(getTermsOfUseText(j)) && isBlank(getTermsOfUseUrl(j))) {
|
---|
| 1278 | myprintln("* Terms of Use text without link: "+getDescription(j));
|
---|
[12261] | 1279 | }
|
---|
[15033] | 1280 | List<Shape> js = getShapes(j);
|
---|
| 1281 | if (!js.isEmpty()) {
|
---|
| 1282 | double minlat = 1000;
|
---|
| 1283 | double minlon = 1000;
|
---|
| 1284 | double maxlat = -1000;
|
---|
| 1285 | double maxlon = -1000;
|
---|
| 1286 | for (Shape s: js) {
|
---|
| 1287 | for (Coordinate p: s.getPoints()) {
|
---|
| 1288 | double lat = p.getLat();
|
---|
| 1289 | double lon = p.getLon();
|
---|
[15034] | 1290 | if (lat > maxlat) maxlat = lat;
|
---|
| 1291 | if (lon > maxlon) maxlon = lon;
|
---|
| 1292 | if (lat < minlat) minlat = lat;
|
---|
| 1293 | if (lon < minlon) minlon = lon;
|
---|
[11422] | 1294 | }
|
---|
| 1295 | }
|
---|
[15033] | 1296 | ImageryBounds b = j.getBounds();
|
---|
[17737] | 1297 | if (differentCoordinate(b.getMinLat(), minlat)
|
---|
| 1298 | || differentCoordinate(b.getMinLon(), minlon)
|
---|
| 1299 | || differentCoordinate(b.getMaxLat(), maxlat)
|
---|
| 1300 | || differentCoordinate(b.getMaxLon(), maxlon)) {
|
---|
[15033] | 1301 | myprintln("* Bounds do not match shape (is "+b.getMinLat()+","+b.getMinLon()+","+b.getMaxLat()+","+b.getMaxLon()
|
---|
[15034] | 1302 | + ", calculated <bounds min-lat='"+minlat+"' min-lon='"+minlon+"' max-lat='"+maxlat+"' max-lon='"+maxlon+"'>): "
|
---|
| 1303 | + getDescription(j));
|
---|
[11422] | 1304 | }
|
---|
| 1305 | }
|
---|
[15658] | 1306 | List<String> knownCategories = Arrays.asList(
|
---|
| 1307 | "photo", "elevation", "map", "historicmap", "osmbasedmap", "historicphoto", "qa", "other");
|
---|
[15033] | 1308 | String cat = getCategory(j);
|
---|
| 1309 | if (isBlank(cat)) {
|
---|
| 1310 | myprintln("* No category: "+getDescription(j));
|
---|
| 1311 | } else if (!knownCategories.contains(cat)) {
|
---|
| 1312 | myprintln("* Strange category "+cat+": "+getDescription(j));
|
---|
[13792] | 1313 | }
|
---|
[11420] | 1314 | }
|
---|
[7726] | 1315 | }
|
---|
[9667] | 1316 |
|
---|
[15033] | 1317 | /*
|
---|
[7726] | 1318 | * Utility functions that allow uniform access for both ImageryInfo and JsonObject.
|
---|
| 1319 | */
|
---|
[15033] | 1320 |
|
---|
[7726] | 1321 | static String getUrl(Object e) {
|
---|
[15033] | 1322 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getUrl();
|
---|
| 1323 | return ((Map<String, JsonObject>) e).get("properties").getString("url");
|
---|
[7726] | 1324 | }
|
---|
[15033] | 1325 |
|
---|
[12242] | 1326 | static String getUrlStripped(Object e) {
|
---|
[15034] | 1327 | return getUrl(e).replaceAll("\\?(apikey|access_token)=.*", "");
|
---|
[12242] | 1328 | }
|
---|
[15033] | 1329 |
|
---|
[11572] | 1330 | static String getDate(Object e) {
|
---|
[15033] | 1331 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getDate() != null ? ((ImageryInfo) e).getDate() : "";
|
---|
| 1332 | JsonObject p = ((Map<String, JsonObject>) e).get("properties");
|
---|
| 1333 | String start = p.containsKey("start_date") ? p.getString("start_date") : "";
|
---|
| 1334 | String end = p.containsKey("end_date") ? p.getString("end_date") : "";
|
---|
[15034] | 1335 | if (!start.isEmpty() && !end.isEmpty())
|
---|
[15033] | 1336 | return start+";"+end;
|
---|
[15034] | 1337 | else if (!start.isEmpty())
|
---|
[15033] | 1338 | return start+";-";
|
---|
[15034] | 1339 | else if (!end.isEmpty())
|
---|
[15033] | 1340 | return "-;"+end;
|
---|
| 1341 | return "";
|
---|
[11572] | 1342 | }
|
---|
[15033] | 1343 |
|
---|
| 1344 | static Date verifyDate(String year, String month, String day) throws ParseException {
|
---|
| 1345 | String date;
|
---|
[15034] | 1346 | if (year == null) {
|
---|
[15033] | 1347 | date = "3000-01-01";
|
---|
[11854] | 1348 | } else {
|
---|
[15033] | 1349 | date = year + "-" + (month == null ? "01" : month) + "-" + (day == null ? "01" : day);
|
---|
[11854] | 1350 | }
|
---|
[15033] | 1351 | SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
|
---|
| 1352 | df.setLenient(false);
|
---|
| 1353 | return df.parse(date);
|
---|
[11572] | 1354 | }
|
---|
[15033] | 1355 |
|
---|
[11420] | 1356 | static String getId(Object e) {
|
---|
[15033] | 1357 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getId();
|
---|
| 1358 | return ((Map<String, JsonObject>) e).get("properties").getString("id");
|
---|
[11420] | 1359 | }
|
---|
[15033] | 1360 |
|
---|
[7726] | 1361 | static String getName(Object e) {
|
---|
[15033] | 1362 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getOriginalName();
|
---|
| 1363 | return ((Map<String, JsonObject>) e).get("properties").getString("name");
|
---|
[7726] | 1364 | }
|
---|
[15033] | 1365 |
|
---|
| 1366 | static List<ImageryInfo> getMirrors(Object e) {
|
---|
| 1367 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getMirrors();
|
---|
| 1368 | return Collections.emptyList();
|
---|
[11967] | 1369 | }
|
---|
[15033] | 1370 |
|
---|
| 1371 | static List<String> getProjections(Object e) {
|
---|
| 1372 | List<String> r = new ArrayList<>();
|
---|
| 1373 | List<String> u = getProjectionsUnstripped(e);
|
---|
| 1374 | if (u != null) {
|
---|
| 1375 | for (String p : u) {
|
---|
| 1376 | if (!oldproj.containsKey(p) && !("CRS:84".equals(p) && !(getUrlStripped(e).matches("(?i)version=1\\.3")))) {
|
---|
| 1377 | r.add(p);
|
---|
[13530] | 1378 | }
|
---|
| 1379 | }
|
---|
| 1380 | }
|
---|
[15033] | 1381 | return r;
|
---|
[13530] | 1382 | }
|
---|
[15033] | 1383 |
|
---|
| 1384 | static List<String> getProjectionsUnstripped(Object e) {
|
---|
| 1385 | List<String> r = null;
|
---|
[11975] | 1386 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1387 | r = ((ImageryInfo) e).getServerProjections();
|
---|
[11975] | 1388 | } else {
|
---|
[15033] | 1389 | JsonValue s = ((Map<String, JsonObject>) e).get("properties").get("available_projections");
|
---|
| 1390 | if (s != null) {
|
---|
| 1391 | r = new ArrayList<>();
|
---|
| 1392 | for (JsonValue p : s.asJsonArray()) {
|
---|
| 1393 | r.add(((JsonString) p).getString());
|
---|
[13530] | 1394 | }
|
---|
[11981] | 1395 | }
|
---|
[11975] | 1396 | }
|
---|
[15033] | 1397 | return r != null ? r : Collections.emptyList();
|
---|
[11975] | 1398 | }
|
---|
[15033] | 1399 |
|
---|
[16740] | 1400 | static void addJsonShapes(List<Shape> l, JsonArray a) {
|
---|
| 1401 | if (a.get(0).asJsonArray().get(0) instanceof JsonArray) {
|
---|
| 1402 | for (JsonValue sub: a.asJsonArray()) {
|
---|
| 1403 | addJsonShapes(l, sub.asJsonArray());
|
---|
| 1404 | }
|
---|
| 1405 | } else {
|
---|
| 1406 | Shape s = new Shape();
|
---|
| 1407 | for (JsonValue point: a.asJsonArray()) {
|
---|
| 1408 | JsonArray ar = point.asJsonArray();
|
---|
| 1409 | String lon = ar.getJsonNumber(0).toString();
|
---|
| 1410 | String lat = ar.getJsonNumber(1).toString();
|
---|
| 1411 | s.addPoint(lat, lon);
|
---|
| 1412 | }
|
---|
| 1413 | l.add(s);
|
---|
| 1414 | }
|
---|
| 1415 | }
|
---|
[16750] | 1416 |
|
---|
[11410] | 1417 | static List<Shape> getShapes(Object e) {
|
---|
| 1418 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1419 | ImageryBounds bounds = ((ImageryInfo) e).getBounds();
|
---|
[15034] | 1420 | if (bounds != null) {
|
---|
[15033] | 1421 | return bounds.getShapes();
|
---|
[11411] | 1422 | }
|
---|
[15033] | 1423 | return Collections.emptyList();
|
---|
[11410] | 1424 | }
|
---|
[15033] | 1425 | JsonValue ex = ((Map<String, JsonValue>) e).get("geometry");
|
---|
| 1426 | if (ex != null && !JsonValue.NULL.equals(ex) && !ex.asJsonObject().isNull("coordinates")) {
|
---|
| 1427 | JsonArray poly = ex.asJsonObject().getJsonArray("coordinates");
|
---|
| 1428 | List<Shape> l = new ArrayList<>();
|
---|
| 1429 | for (JsonValue shapes: poly) {
|
---|
[16740] | 1430 | addJsonShapes(l, shapes.asJsonArray());
|
---|
[11410] | 1431 | }
|
---|
[15033] | 1432 | return l;
|
---|
[11410] | 1433 | }
|
---|
[15033] | 1434 | return Collections.emptyList();
|
---|
[11410] | 1435 | }
|
---|
[15033] | 1436 |
|
---|
[7726] | 1437 | static String getType(Object e) {
|
---|
[15033] | 1438 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getImageryType().getTypeString();
|
---|
| 1439 | return ((Map<String, JsonObject>) e).get("properties").getString("type");
|
---|
[7726] | 1440 | }
|
---|
[15033] | 1441 |
|
---|
[7726] | 1442 | static Integer getMinZoom(Object e) {
|
---|
| 1443 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1444 | int mz = ((ImageryInfo) e).getMinZoom();
|
---|
| 1445 | return mz == 0 ? null : mz;
|
---|
[7726] | 1446 | } else {
|
---|
[15033] | 1447 | JsonNumber num = ((Map<String, JsonObject>) e).get("properties").getJsonNumber("min_zoom");
|
---|
| 1448 | if (num == null) return null;
|
---|
| 1449 | return num.intValue();
|
---|
[7726] | 1450 | }
|
---|
| 1451 | }
|
---|
[15033] | 1452 |
|
---|
[7726] | 1453 | static Integer getMaxZoom(Object e) {
|
---|
| 1454 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1455 | int mz = ((ImageryInfo) e).getMaxZoom();
|
---|
| 1456 | return mz == 0 ? null : mz;
|
---|
[7726] | 1457 | } else {
|
---|
[15033] | 1458 | JsonNumber num = ((Map<String, JsonObject>) e).get("properties").getJsonNumber("max_zoom");
|
---|
| 1459 | if (num == null) return null;
|
---|
| 1460 | return num.intValue();
|
---|
[7726] | 1461 | }
|
---|
| 1462 | }
|
---|
[15033] | 1463 |
|
---|
[7726] | 1464 | static String getCountryCode(Object e) {
|
---|
[15033] | 1465 | if (e instanceof ImageryInfo) return "".equals(((ImageryInfo) e).getCountryCode()) ? null : ((ImageryInfo) e).getCountryCode();
|
---|
| 1466 | return ((Map<String, JsonObject>) e).get("properties").getString("country_code", null);
|
---|
[7726] | 1467 | }
|
---|
[15033] | 1468 |
|
---|
[9505] | 1469 | static String getQuality(Object e) {
|
---|
[15033] | 1470 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).isBestMarked() ? "eli-best" : null;
|
---|
| 1471 | return (((Map<String, JsonObject>) e).get("properties").containsKey("best")
|
---|
| 1472 | && ((Map<String, JsonObject>) e).get("properties").getBoolean("best")) ? "eli-best" : null;
|
---|
[9505] | 1473 | }
|
---|
[15033] | 1474 |
|
---|
| 1475 | static boolean getOverlay(Object e) {
|
---|
| 1476 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).isOverlay();
|
---|
| 1477 | return (((Map<String, JsonObject>) e).get("properties").containsKey("overlay")
|
---|
| 1478 | && ((Map<String, JsonObject>) e).get("properties").getBoolean("overlay"));
|
---|
[13536] | 1479 | }
|
---|
[15033] | 1480 |
|
---|
[11420] | 1481 | static String getIcon(Object e) {
|
---|
[15033] | 1482 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getIcon();
|
---|
| 1483 | return ((Map<String, JsonObject>) e).get("properties").getString("icon", null);
|
---|
[11420] | 1484 | }
|
---|
[15033] | 1485 |
|
---|
[11975] | 1486 | static String getAttributionText(Object e) {
|
---|
[15033] | 1487 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionText(0, null, null);
|
---|
| 1488 | try {
|
---|
| 1489 | return ((Map<String, JsonObject>) e).get("properties").getJsonObject("attribution").getString("text", null);
|
---|
| 1490 | } catch (NullPointerException ex) {
|
---|
| 1491 | return null;
|
---|
| 1492 | }
|
---|
[11975] | 1493 | }
|
---|
[15033] | 1494 |
|
---|
[11975] | 1495 | static String getAttributionUrl(Object e) {
|
---|
[15033] | 1496 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionLinkURL();
|
---|
| 1497 | try {
|
---|
| 1498 | return ((Map<String, JsonObject>) e).get("properties").getJsonObject("attribution").getString("url", null);
|
---|
| 1499 | } catch (NullPointerException ex) {
|
---|
| 1500 | return null;
|
---|
| 1501 | }
|
---|
[11975] | 1502 | }
|
---|
[15033] | 1503 |
|
---|
[11975] | 1504 | static String getTermsOfUseText(Object e) {
|
---|
[15033] | 1505 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getTermsOfUseText();
|
---|
| 1506 | return null;
|
---|
[11975] | 1507 | }
|
---|
[15033] | 1508 |
|
---|
[11975] | 1509 | static String getTermsOfUseUrl(Object e) {
|
---|
[15033] | 1510 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getTermsOfUseURL();
|
---|
| 1511 | return null;
|
---|
[11975] | 1512 | }
|
---|
[15033] | 1513 |
|
---|
[13792] | 1514 | static String getCategory(Object e) {
|
---|
| 1515 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1516 | return ((ImageryInfo) e).getImageryCategoryOriginalString();
|
---|
[13792] | 1517 | }
|
---|
[15692] | 1518 | return ((Map<String, JsonObject>) e).get("properties").getString("category", null);
|
---|
[13792] | 1519 | }
|
---|
[15033] | 1520 |
|
---|
[12261] | 1521 | static String getLogoImage(Object e) {
|
---|
[15033] | 1522 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionImageRaw();
|
---|
| 1523 | return null;
|
---|
[12261] | 1524 | }
|
---|
[15033] | 1525 |
|
---|
[12261] | 1526 | static String getLogoUrl(Object e) {
|
---|
[15033] | 1527 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionImageURL();
|
---|
| 1528 | return null;
|
---|
[12261] | 1529 | }
|
---|
[15033] | 1530 |
|
---|
[11975] | 1531 | static String getPermissionReferenceUrl(Object e) {
|
---|
[15033] | 1532 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getPermissionReferenceURL();
|
---|
| 1533 | return ((Map<String, JsonObject>) e).get("properties").getString("license_url", null);
|
---|
[11975] | 1534 | }
|
---|
[15033] | 1535 |
|
---|
[16127] | 1536 | static String getPrivacyPolicyUrl(Object e) {
|
---|
| 1537 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getPrivacyPolicyURL();
|
---|
| 1538 | return ((Map<String, JsonObject>) e).get("properties").getString("privacy_policy_url", null);
|
---|
| 1539 | }
|
---|
| 1540 |
|
---|
[15082] | 1541 | static Map<String, Set<String>> getNoTileHeader(Object e) {
|
---|
| 1542 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).getNoTileHeaders();
|
---|
| 1543 | JsonObject nth = ((Map<String, JsonObject>) e).get("properties").getJsonObject("no_tile_header");
|
---|
| 1544 | return nth == null ? null : nth.keySet().stream().collect(Collectors.toMap(
|
---|
| 1545 | Function.identity(),
|
---|
| 1546 | k -> nth.getJsonArray(k).stream().map(x -> ((JsonString) x).getString()).collect(Collectors.toSet())));
|
---|
| 1547 | }
|
---|
| 1548 |
|
---|
[15034] | 1549 | static Map<String, String> getDescriptions(Object e) {
|
---|
[15082] | 1550 | Map<String, String> res = new HashMap<>();
|
---|
[11975] | 1551 | if (e instanceof ImageryInfo) {
|
---|
[15033] | 1552 | String a = ((ImageryInfo) e).getDescription();
|
---|
| 1553 | if (a != null) res.put("en", a);
|
---|
[11975] | 1554 | } else {
|
---|
[15033] | 1555 | String a = ((Map<String, JsonObject>) e).get("properties").getString("description", null);
|
---|
[15034] | 1556 | if (a != null) res.put("en", a.replaceAll("''", "'"));
|
---|
[11975] | 1557 | }
|
---|
[15033] | 1558 | return res;
|
---|
[11975] | 1559 | }
|
---|
[15033] | 1560 |
|
---|
| 1561 | static boolean getValidGeoreference(Object e) {
|
---|
| 1562 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).isGeoreferenceValid();
|
---|
| 1563 | return false;
|
---|
[11975] | 1564 | }
|
---|
[15033] | 1565 |
|
---|
| 1566 | static boolean getDefault(Object e) {
|
---|
| 1567 | if (e instanceof ImageryInfo) return ((ImageryInfo) e).isDefaultEntry();
|
---|
| 1568 | return ((Map<String, JsonObject>) e).get("properties").getBoolean("default", false);
|
---|
[12226] | 1569 | }
|
---|
[15033] | 1570 |
|
---|
[7726] | 1571 | String getDescription(Object o) {
|
---|
[15033] | 1572 | String url = getUrl(o);
|
---|
| 1573 | String cc = getCountryCode(o);
|
---|
[7726] | 1574 | if (cc == null) {
|
---|
[15033] | 1575 | ImageryInfo j = josmUrls.get(url);
|
---|
| 1576 | if (j != null) cc = getCountryCode(j);
|
---|
[7726] | 1577 | if (cc == null) {
|
---|
[15033] | 1578 | JsonObject e = eliUrls.get(url);
|
---|
| 1579 | if (e != null) cc = getCountryCode(e);
|
---|
[7726] | 1580 | }
|
---|
| 1581 | }
|
---|
| 1582 | if (cc == null) {
|
---|
[15033] | 1583 | cc = "";
|
---|
[7726] | 1584 | } else {
|
---|
[15033] | 1585 | cc = "["+cc+"] ";
|
---|
[7726] | 1586 | }
|
---|
[15878] | 1587 | String name = getName(o);
|
---|
| 1588 | String id = getId(o);
|
---|
| 1589 | String d = cc;
|
---|
[15879] | 1590 | if (name != null && !name.isEmpty()) {
|
---|
[15878] | 1591 | d += name;
|
---|
[15879] | 1592 | if (id != null && !id.isEmpty())
|
---|
[15878] | 1593 | d += " ["+id+"]";
|
---|
[15879] | 1594 | } else if (url != null && !url.isEmpty())
|
---|
[15878] | 1595 | d += url;
|
---|
[15033] | 1596 | if (optionShorten) {
|
---|
| 1597 | if (d.length() > MAXLEN) d = d.substring(0, MAXLEN-1) + "...";
|
---|
[7726] | 1598 | }
|
---|
[15033] | 1599 | return d;
|
---|
[7726] | 1600 | }
|
---|
| 1601 | }
|
---|