source: josm/trunk/scripts/SyncEditorLayerIndex.java@ 17352

Last change on this file since 17352 was 17332, checked in by Don-vip, 5 years ago

fix #20131 - fix unit tests and codestyle violations

  • Property svn:eol-style set to native
File size: 68.3 KB
RevLine 
[7726]1// License: GPL. For details, see LICENSE file.
[15034]2import static java.nio.charset.StandardCharsets.UTF_8;
[15033]3import static org.apache.commons.lang3.StringUtils.isBlank;
4import static org.apache.commons.lang3.StringUtils.isNotBlank;
5
6import java.io.BufferedReader;
[16098]7import java.io.BufferedWriter;
[15033]8import java.io.IOException;
9import java.io.OutputStreamWriter;
[16098]10import java.io.Writer;
[15033]11import java.lang.reflect.Field;
[15163]12import java.net.MalformedURLException;
13import java.net.URL;
[16098]14import java.nio.charset.Charset;
[15034]15import java.nio.file.Files;
16import java.nio.file.Paths;
[15033]17import java.text.DecimalFormat;
18import java.text.ParseException;
19import java.text.SimpleDateFormat;
20import java.util.ArrayList;
21import java.util.Arrays;
22import java.util.Calendar;
23import java.util.Collection;
24import java.util.Collections;
25import java.util.Date;
26import java.util.HashMap;
27import java.util.LinkedList;
28import java.util.List;
29import java.util.Locale;
30import java.util.Map;
31import java.util.Map.Entry;
32import java.util.Objects;
[15082]33import java.util.Set;
[15692]34import java.util.function.BiConsumer;
[15082]35import java.util.function.Function;
[15033]36import java.util.regex.Matcher;
37import java.util.regex.Pattern;
38import java.util.stream.Collectors;
39
40import javax.json.Json;
41import javax.json.JsonArray;
42import javax.json.JsonNumber;
43import javax.json.JsonObject;
44import javax.json.JsonReader;
45import javax.json.JsonString;
46import javax.json.JsonValue;
47
48import org.openstreetmap.gui.jmapviewer.Coordinate;
49import org.openstreetmap.josm.data.Preferences;
50import org.openstreetmap.josm.data.imagery.ImageryInfo;
51import org.openstreetmap.josm.data.imagery.ImageryInfo.ImageryBounds;
52import org.openstreetmap.josm.data.imagery.Shape;
53import org.openstreetmap.josm.data.preferences.JosmBaseDirectories;
[15478]54import org.openstreetmap.josm.data.preferences.JosmUrls;
[15033]55import org.openstreetmap.josm.data.projection.Projections;
[16650]56import org.openstreetmap.josm.data.sources.SourceInfo;
[15033]57import org.openstreetmap.josm.data.validation.routines.DomainValidator;
58import org.openstreetmap.josm.io.imagery.ImageryReader;
59import org.openstreetmap.josm.spi.preferences.Config;
[15439]60import org.openstreetmap.josm.tools.ImageProvider;
[15692]61import org.openstreetmap.josm.tools.JosmRuntimeException;
[15034]62import org.openstreetmap.josm.tools.Logging;
[15033]63import org.openstreetmap.josm.tools.OptionParser;
64import org.openstreetmap.josm.tools.OptionParser.OptionCount;
65import org.openstreetmap.josm.tools.ReflectionUtils;
66import 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]86public 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("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;")+"</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("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;")+"</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("&", "&amp;").replaceAll("<", "&lt;").replaceAll(">", "&gt;");
[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
[17328]541 // catch reordered arguments and switches to WMS version 1.3.0
542 String unifyWMS(String url) {
[17332]543 String[] x = url.replaceAll("(?i)VERSION=[0-9.]+", "VERSION=x").replaceAll("(?i)SRS=", "CRS=").split("\\?");
544 String[] a = x[1].split("&");
[17328]545 Arrays.sort(a);
[17332]546 url = x[0]+"?"+String.join("&", a);
[17328]547 return url;
548 }
549
[15692]550 void checkInOneButNotTheOther() {
[15033]551 List<String> le = new LinkedList<>(eliUrls.keySet());
552 List<String> lj = new LinkedList<>(josmUrls.keySet());
[13593]553
[15033]554 List<String> ke = new LinkedList<>(le);
555 for (String url : ke) {
556 if (lj.contains(url)) {
557 le.remove(url);
558 lj.remove(url);
[13593]559 }
560 }
561
[15033]562 if (!le.isEmpty() && !lj.isEmpty()) {
563 ke = new LinkedList<>(le);
564 for (String urle : ke) {
565 JsonObject e = eliUrls.get(urle);
566 String ide = getId(e);
[15034]567 String urlhttps = urle.replace("http:", "https:");
[15033]568 if (lj.contains(urlhttps)) {
569 myprintln("+ Missing https: "+getDescription(e));
570 eliUrls.put(urlhttps, eliUrls.get(urle));
571 eliUrls.remove(urle);
572 le.remove(urle);
573 lj.remove(urlhttps);
574 } else if (isNotBlank(ide)) {
575 List<String> kj = new LinkedList<>(lj);
576 for (String urlj : kj) {
577 ImageryInfo j = josmUrls.get(urlj);
578 String idj = getId(j);
[13714]579
[15033]580 if (ide.equals(idj) && Objects.equals(getType(j), getType(e))) {
[17332]581 if (getType(j).equals("wms") && unifyWMS(urle).equals(unifyWMS(urlj))) {
[17329]582 myprintln("# WMS-URL for id "+idj+" modified: "+getDescription(j));
[17328]583 } else {
[17329]584 myprintln("* URL for id "+idj+" differs ("+urle+"): "+getDescription(j));
[17328]585 }
[15033]586 le.remove(urle);
587 lj.remove(urlj);
588 // replace key for this entry with JOSM URL
589 eliUrls.remove(urle);
[15034]590 eliUrls.put(urlj, e);
[15033]591 break;
[13593]592 }
[17332]593 Collection<String> old = j.getOldIds();
594 if (old != null) {
[17329]595 for (String oidj : old) {
596 if (ide.equals(oidj) && Objects.equals(getType(j), getType(e))) {
[17332]597 if (getType(j).equals("wms") && unifyWMS(urle).equals(unifyWMS(urlj))) {
[17329]598 myprintln("# WMS-URL for oldid "+idj+" modified: "+getDescription(j));
599 } else {
600 myprintln("* URL for oldid "+idj+" differs ("+urle+"): "+getDescription(j));
601 }
602 le.remove(urle);
603 lj.remove(urlj);
604 // replace key for this entry with JOSM URL
605 eliUrls.remove(urle);
606 eliUrls.put(urlj, e);
607 break;
608 }
609 }
610 }
[13593]611 }
[13517]612 }
[7726]613 }
614 }
[13714]615
[15033]616 myprintln("*** URLs found in ELI but not in JOSM ("+le.size()+"): ***");
617 Collections.sort(le);
[13593]618 if (!le.isEmpty()) {
[15033]619 for (String l : le) {
620 myprintln("- " + getDescription(eliUrls.get(l)));
[11412]621 }
[7726]622 }
[15033]623 myprintln("*** URLs found in JOSM but not in ELI ("+lj.size()+"): ***");
624 Collections.sort(lj);
[13593]625 if (!lj.isEmpty()) {
[15033]626 for (String l : lj) {
627 myprintln("+ " + getDescription(josmUrls.get(l)));
[11412]628 }
[7726]629 }
630 }
[9667]631
[15692]632 void checkCommonEntries() {
[15034]633 doSameUrlButDifferentName();
634 doSameUrlButDifferentId();
635 doSameUrlButDifferentType();
636 doSameUrlButDifferentZoomBounds();
637 doSameUrlButDifferentCountryCode();
638 doSameUrlButDifferentQuality();
639 doSameUrlButDifferentDates();
640 doSameUrlButDifferentInformation();
641 doMismatchingShapes();
642 doMismatchingIcons();
[15692]643 doMismatchingCategories();
[15034]644 doMiscellaneousChecks();
645 }
646
[15692]647 void doSameUrlButDifferentName() {
[15033]648 myprintln("*** Same URL, but different name: ***");
649 for (String url : eliUrls.keySet()) {
650 JsonObject e = eliUrls.get(url);
651 if (!josmUrls.containsKey(url)) continue;
652 ImageryInfo j = josmUrls.get(url);
[15034]653 String ename = getName(e).replace("'", "\u2019");
654 String jname = getName(j).replace("'", "\u2019");
[11951]655 if (!ename.equals(jname)) {
[15033]656 myprintln("* Name differs ('"+getName(e)+"' != '"+getName(j)+"'): "+getUrl(j));
[7726]657 }
658 }
[15034]659 }
[9667]660
[15692]661 void doSameUrlButDifferentId() {
[15033]662 myprintln("*** Same URL, but different Id: ***");
663 for (String url : eliUrls.keySet()) {
664 JsonObject e = eliUrls.get(url);
665 if (!josmUrls.containsKey(url)) continue;
666 ImageryInfo j = josmUrls.get(url);
667 String ename = getId(e);
668 String jname = getId(j);
669 if (!Objects.equals(ename, jname)) {
670 myprintln("# Id differs ('"+getId(e)+"' != '"+getId(j)+"'): "+getUrl(j));
[12126]671 }
[12226]672 }
[15034]673 }
[12126]674
[15692]675 void doSameUrlButDifferentType() {
[15033]676 myprintln("*** Same URL, but different type: ***");
677 for (String url : eliUrls.keySet()) {
678 JsonObject e = eliUrls.get(url);
679 if (!josmUrls.containsKey(url)) continue;
680 ImageryInfo j = josmUrls.get(url);
681 if (!Objects.equals(getType(e), getType(j))) {
682 myprintln("* Type differs ("+getType(e)+" != "+getType(j)+"): "+getName(j)+" - "+getUrl(j));
[7726]683 }
684 }
[15034]685 }
[9667]686
[15692]687 void doSameUrlButDifferentZoomBounds() {
[15033]688 myprintln("*** Same URL, but different zoom bounds: ***");
689 for (String url : eliUrls.keySet()) {
690 JsonObject e = eliUrls.get(url);
691 if (!josmUrls.containsKey(url)) continue;
692 ImageryInfo j = josmUrls.get(url);
[7726]693
[15033]694 Integer eMinZoom = getMinZoom(e);
695 Integer jMinZoom = getMinZoom(j);
[13997]696 /* dont warn for entries copied from the base of the mirror */
[15033]697 if (eMinZoom == null && "wms".equals(getType(j)) && j.getName().contains(" mirror"))
[13997]698 jMinZoom = null;
[15033]699 if (!Objects.equals(eMinZoom, jMinZoom) && !(Objects.equals(eMinZoom, 0) && jMinZoom == null)) {
700 myprintln("* Minzoom differs ("+eMinZoom+" != "+jMinZoom+"): "+getDescription(j));
[7726]701 }
[15033]702 Integer eMaxZoom = getMaxZoom(e);
703 Integer jMaxZoom = getMaxZoom(j);
[13997]704 /* dont warn for entries copied from the base of the mirror */
[15033]705 if (eMaxZoom == null && "wms".equals(getType(j)) && j.getName().contains(" mirror"))
[13997]706 jMaxZoom = null;
[15033]707 if (!Objects.equals(eMaxZoom, jMaxZoom)) {
708 myprintln("* Maxzoom differs ("+eMaxZoom+" != "+jMaxZoom+"): "+getDescription(j));
[7726]709 }
710 }
[15034]711 }
[9667]712
[15692]713 void doSameUrlButDifferentCountryCode() {
[15033]714 myprintln("*** Same URL, but different country code: ***");
715 for (String url : eliUrls.keySet()) {
716 JsonObject e = eliUrls.get(url);
717 if (!josmUrls.containsKey(url)) continue;
718 ImageryInfo j = josmUrls.get(url);
719 String cce = getCountryCode(e);
[13931]720 if ("ZZ".equals(cce)) { /* special ELI country code */
[15033]721 cce = null;
[13931]722 }
[15033]723 if (cce != null && !cce.equals(getCountryCode(j))) {
724 myprintln("* Country code differs ("+getCountryCode(e)+" != "+getCountryCode(j)+"): "+getDescription(j));
[7726]725 }
726 }
[15034]727 }
728
[15692]729 void doSameUrlButDifferentQuality() {
[15033]730 myprintln("*** Same URL, but different quality: ***");
731 for (String url : eliUrls.keySet()) {
732 JsonObject e = eliUrls.get(url);
[9515]733 if (!josmUrls.containsKey(url)) {
[15033]734 String q = getQuality(e);
735 if ("eli-best".equals(q)) {
736 myprintln("- Quality best entry not in JOSM for "+getDescription(e));
[9515]737 }
[15033]738 continue;
[9515]739 }
[15033]740 ImageryInfo j = josmUrls.get(url);
741 if (!Objects.equals(getQuality(e), getQuality(j))) {
742 myprintln("* Quality differs ("+getQuality(e)+" != "+getQuality(j)+"): "+getDescription(j));
[9505]743 }
[11599]744 }
[15034]745 }
746
[15692]747 void doSameUrlButDifferentDates() {
[15033]748 myprintln("*** Same URL, but different dates: ***");
749 Pattern pattern = Pattern.compile("^(.*;)(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?$");
750 for (String url : eliUrls.keySet()) {
751 String ed = getDate(eliUrls.get(url));
752 if (!josmUrls.containsKey(url)) continue;
753 ImageryInfo j = josmUrls.get(url);
754 String jd = getDate(j);
[11612]755 // The forms 2015;- or -;2015 or 2015;2015 are handled equal to 2015
[15034]756 String ef = ed.replaceAll("\\A-;", "").replaceAll(";-\\z", "").replaceAll("\\A([0-9-]+);\\1\\z", "$1");
[11639]757 // ELI has a strange and inconsistent used end_date definition, so we try again with subtraction by one
[15033]758 String ed2 = ed;
759 Matcher m = pattern.matcher(ed);
760 if (m.matches()) {
761 Calendar cal = Calendar.getInstance();
762 cal.set(Integer.valueOf(m.group(2)),
763 m.group(4) == null ? 0 : Integer.valueOf(m.group(4))-1,
764 m.group(6) == null ? 1 : Integer.valueOf(m.group(6)));
765 cal.add(Calendar.DAY_OF_MONTH, -1);
766 ed2 = m.group(1) + cal.get(Calendar.YEAR);
767 if (m.group(4) != null)
768 ed2 += "-" + String.format("%02d", cal.get(Calendar.MONTH)+1);
769 if (m.group(6) != null)
770 ed2 += "-" + String.format("%02d", cal.get(Calendar.DAY_OF_MONTH));
[11639]771 }
[15034]772 String ef2 = ed2.replaceAll("\\A-;", "").replaceAll(";-\\z", "").replaceAll("\\A([0-9-]+);\\1\\z", "$1");
[11639]773 if (!ed.equals(jd) && !ef.equals(jd) && !ed2.equals(jd) && !ef2.equals(jd)) {
[15033]774 String t = "'"+ed+"'";
[11612]775 if (!ed.equals(ef)) {
[15033]776 t += " or '"+ef+"'";
[11612]777 }
[11666]778 if (jd.isEmpty()) {
[15033]779 myprintln("- Missing JOSM date ("+t+"): "+getDescription(j));
[11668]780 } else if (!ed.isEmpty()) {
[15033]781 myprintln("* Date differs ('"+t+"' != '"+jd+"'): "+getDescription(j));
782 } else if (!optionNoEli) {
783 myprintln("+ Missing ELI date ('"+jd+"'): "+getDescription(j));
[11666]784 }
[11573]785 }
[11665]786 }
[15034]787 }
788
[15692]789 void doSameUrlButDifferentInformation() {
[15033]790 myprintln("*** Same URL, but different information: ***");
791 for (String url : eliUrls.keySet()) {
792 if (!josmUrls.containsKey(url)) continue;
793 JsonObject e = eliUrls.get(url);
794 ImageryInfo j = josmUrls.get(url);
[11981]795
[15082]796 compareDescriptions(e, j);
[16127]797 comparePrivacyPolicyUrls(e, j);
[15082]798 comparePermissionReferenceUrls(e, j);
799 compareAttributionUrls(e, j);
800 compareAttributionTexts(e, j);
801 compareProjections(e, j);
802 compareDefaults(e, j);
803 compareOverlays(e, j);
804 compareNoTileHeaders(e, j);
805 }
806 }
807
[15692]808 void compareDescriptions(JsonObject e, ImageryInfo j) {
[15082]809 String et = getDescriptions(e).getOrDefault("en", "");
810 String jt = getDescriptions(j).getOrDefault("en", "");
811 if (!et.equals(jt)) {
812 if (jt.isEmpty()) {
813 myprintln("- Missing JOSM description ("+et+"): "+getDescription(j));
814 } else if (!et.isEmpty()) {
815 myprintln("* Description differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
816 } else if (!optionNoEli) {
817 myprintln("+ Missing ELI description ('"+jt+"'): "+getDescription(j));
[11981]818 }
[15082]819 }
820 }
[11981]821
[16127]822 void comparePrivacyPolicyUrls(JsonObject e, ImageryInfo j) {
823 String et = getPrivacyPolicyUrl(e);
824 String jt = getPrivacyPolicyUrl(j);
825 if (!Objects.equals(et, jt)) {
826 if (isBlank(jt)) {
827 myprintln("- Missing JOSM privacy policy URL ("+et+"): "+getDescription(j));
828 } else if (isNotBlank(et)) {
[17053]829 myprintln("* Privacy policy URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
[16127]830 } else if (!optionNoEli) {
831 myprintln("+ Missing ELI privacy policy URL ('"+jt+"'): "+getDescription(j));
832 }
833 }
834 }
835
[15692]836 void comparePermissionReferenceUrls(JsonObject e, ImageryInfo j) {
[15082]837 String et = getPermissionReferenceUrl(e);
838 String jt = getPermissionReferenceUrl(j);
839 String jt2 = getTermsOfUseUrl(j);
840 if (isBlank(jt)) jt = jt2;
841 if (!Objects.equals(et, jt)) {
842 if (isBlank(jt)) {
843 myprintln("- Missing JOSM license URL ("+et+"): "+getDescription(j));
844 } else if (isNotBlank(et)) {
845 String ethttps = et.replace("http:", "https:");
846 if (isBlank(jt2) || !(jt2.equals(ethttps) || jt2.equals(et+"/") || jt2.equals(ethttps+"/"))) {
847 if (jt.equals(ethttps) || jt.equals(et+"/") || jt.equals(ethttps+"/")) {
848 myprintln("+ License URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
849 } else {
850 String ja = getAttributionUrl(j);
851 if (ja != null && (ja.equals(et) || ja.equals(ethttps) || ja.equals(et+"/") || ja.equals(ethttps+"/"))) {
852 myprintln("+ ELI License URL in JOSM Attribution: "+getDescription(j));
[13578]853 } else {
[15082]854 myprintln("* License URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
[13578]855 }
[13551]856 }
[11981]857 }
[15082]858 } else if (!optionNoEli) {
859 myprintln("+ Missing ELI license URL ('"+jt+"'): "+getDescription(j));
[11981]860 }
[15082]861 }
862 }
[11981]863
[15692]864 void compareAttributionUrls(JsonObject e, ImageryInfo j) {
[15082]865 String et = getAttributionUrl(e);
866 String jt = getAttributionUrl(j);
867 if (!Objects.equals(et, jt)) {
868 if (isBlank(jt)) {
869 myprintln("- Missing JOSM attribution URL ("+et+"): "+getDescription(j));
870 } else if (isNotBlank(et)) {
871 String ethttps = et.replace("http:", "https:");
872 if (jt.equals(ethttps) || jt.equals(et+"/") || jt.equals(ethttps+"/")) {
873 myprintln("+ Attribution URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
874 } else {
875 myprintln("* Attribution URL differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
[11981]876 }
[15082]877 } else if (!optionNoEli) {
878 myprintln("+ Missing ELI attribution URL ('"+jt+"'): "+getDescription(j));
[11981]879 }
[15082]880 }
881 }
[11981]882
[15692]883 void compareAttributionTexts(JsonObject e, ImageryInfo j) {
[15082]884 String et = getAttributionText(e);
885 String jt = getAttributionText(j);
886 if (!Objects.equals(et, jt)) {
887 if (isBlank(jt)) {
888 myprintln("- Missing JOSM attribution text ("+et+"): "+getDescription(j));
889 } else if (isNotBlank(et)) {
890 myprintln("* Attribution text differs ('"+et+"' != '"+jt+"'): "+getDescription(j));
891 } else if (!optionNoEli) {
892 myprintln("+ Missing ELI attribution text ('"+jt+"'): "+getDescription(j));
[11981]893 }
[15082]894 }
895 }
[11981]896
[15692]897 void compareProjections(JsonObject e, ImageryInfo j) {
[15082]898 String et = getProjections(e).stream().sorted().collect(Collectors.joining(" "));
899 String jt = getProjections(j).stream().sorted().collect(Collectors.joining(" "));
900 if (!Objects.equals(et, jt)) {
901 if (isBlank(jt)) {
902 String t = getType(e);
903 if ("wms_endpoint".equals(t) || "tms".equals(t)) {
904 myprintln("+ ELI projections for type "+t+": "+getDescription(j));
905 } else {
906 myprintln("- Missing JOSM projections ("+et+"): "+getDescription(j));
[11981]907 }
[15082]908 } else if (isNotBlank(et)) {
909 if ("EPSG:3857 EPSG:4326".equals(et) || "EPSG:3857".equals(et) || "EPSG:4326".equals(et)) {
910 myprintln("+ ELI has minimal projections ('"+et+"' != '"+jt+"'): "+getDescription(j));
911 } else {
912 myprintln("* Projections differ ('"+et+"' != '"+jt+"'): "+getDescription(j));
913 }
914 } else if (!optionNoEli && !"tms".equals(getType(e))) {
915 myprintln("+ Missing ELI projections ('"+jt+"'): "+getDescription(j));
[11981]916 }
[15082]917 }
918 }
[12226]919
[15692]920 void compareDefaults(JsonObject e, ImageryInfo j) {
[15082]921 boolean ed = getDefault(e);
922 boolean jd = getDefault(j);
923 if (ed != jd) {
924 if (!jd) {
925 myprintln("- Missing JOSM default: "+getDescription(j));
926 } else if (!optionNoEli) {
927 myprintln("+ Missing ELI default: "+getDescription(j));
[12226]928 }
[15082]929 }
930 }
931
[15692]932 void compareOverlays(JsonObject e, ImageryInfo j) {
[15082]933 boolean eo = getOverlay(e);
934 boolean jo = getOverlay(j);
935 if (eo != jo) {
936 if (!jo) {
937 myprintln("- Missing JOSM overlay flag: "+getDescription(j));
938 } else if (!optionNoEli) {
939 myprintln("+ Missing ELI overlay flag: "+getDescription(j));
[13536]940 }
[11981]941 }
[15034]942 }
943
[15692]944 void compareNoTileHeaders(JsonObject e, ImageryInfo j) {
[15082]945 Map<String, Set<String>> eh = getNoTileHeader(e);
946 Map<String, Set<String>> jh = getNoTileHeader(j);
947 if (!Objects.equals(eh, jh)) {
948 if (jh == null || jh.isEmpty()) {
949 myprintln("- Missing JOSM no tile headers ("+eh+"): "+getDescription(j));
950 } else if (eh != null && !eh.isEmpty()) {
951 myprintln("* No tile headers differ ('"+eh+"' != '"+jh+"'): "+getDescription(j));
952 } else if (!optionNoEli) {
953 myprintln("+ Missing ELI no tile headers ('"+jh+"'): "+getDescription(j));
954 }
955 }
956 }
957
[15692]958 void doMismatchingShapes() {
[15033]959 myprintln("*** Mismatching shapes: ***");
960 for (String url : josmUrls.keySet()) {
961 ImageryInfo j = josmUrls.get(url);
962 int num = 1;
963 for (Shape shape : getShapes(j)) {
964 List<Coordinate> p = shape.getPoints();
[15034]965 if (!p.get(0).equals(p.get(p.size()-1))) {
[15033]966 myprintln("+++ JOSM shape "+num+" unclosed: "+getDescription(j));
[11410]967 }
[15033]968 for (int nump = 1; nump < p.size(); ++nump) {
969 if (Objects.equals(p.get(nump-1), p.get(nump))) {
970 myprintln("+++ JOSM shape "+num+" double point at "+(nump-1)+": "+getDescription(j));
[11964]971 }
972 }
[15033]973 ++num;
[11410]974 }
975 }
[15033]976 for (String url : eliUrls.keySet()) {
977 JsonObject e = eliUrls.get(url);
978 int num = 1;
979 List<Shape> s = null;
[13771]980 try {
[15033]981 s = getShapes(e);
982 for (Shape shape : s) {
983 List<Coordinate> p = shape.getPoints();
[15034]984 if (!p.get(0).equals(p.get(p.size()-1)) && !optionNoEli) {
[15033]985 myprintln("+++ ELI shape "+num+" unclosed: "+getDescription(e));
[11964]986 }
[15033]987 for (int nump = 1; nump < p.size(); ++nump) {
988 if (Objects.equals(p.get(nump-1), p.get(nump))) {
989 myprintln("+++ ELI shape "+num+" double point at "+(nump-1)+": "+getDescription(e));
[13771]990 }
991 }
[15033]992 ++num;
[11964]993 }
[15033]994 } catch (IllegalArgumentException err) {
995 String desc = getDescription(e);
[17301]996 myprintln("+++ ELI shape contains invalid data for "+desc+": "+err.getMessage());
[11410]997 }
[13780]998 if (s == null || !josmUrls.containsKey(url)) {
[15033]999 continue;
[11410]1000 }
[15033]1001 ImageryInfo j = josmUrls.get(url);
1002 List<Shape> js = getShapes(j);
1003 if (s.isEmpty() && !js.isEmpty()) {
1004 if (!optionNoEli) {
1005 myprintln("+ No ELI shape: "+getDescription(j));
[11414]1006 }
[15034]1007 } else if (js.isEmpty() && !s.isEmpty()) {
[11415]1008 // don't report boundary like 5 point shapes as difference
[15033]1009 if (s.size() != 1 || s.get(0).getPoints().size() != 5) {
1010 myprintln("- No JOSM shape: "+getDescription(j));
[11415]1011 }
[15034]1012 } else if (s.size() != js.size()) {
[15033]1013 myprintln("* Different number of shapes ("+s.size()+" != "+js.size()+"): "+getDescription(j));
[11413]1014 } else {
[15033]1015 boolean[] edone = new boolean[s.size()];
1016 boolean[] jdone = new boolean[js.size()];
1017 for (int enums = 0; enums < s.size(); ++enums) {
1018 List<Coordinate> ep = s.get(enums).getPoints();
1019 for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
1020 List<Coordinate> jp = js.get(jnums).getPoints();
1021 if (ep.size() == jp.size() && !jdone[jnums]) {
[14576]1022 boolean err = false;
[15034]1023 for (int nump = 0; nump < ep.size() && !err; ++nump) {
[15033]1024 Coordinate ept = ep.get(nump);
1025 Coordinate jpt = jp.get(nump);
[15034]1026 if (Math.abs(ept.getLat()-jpt.getLat()) > 0.00001 || Math.abs(ept.getLon()-jpt.getLon()) > 0.00001)
[15033]1027 err = true;
[11413]1028 }
[15034]1029 if (!err) {
[15033]1030 edone[enums] = true;
1031 jdone[jnums] = true;
1032 break;
[14576]1033 }
[11413]1034 }
1035 }
[11411]1036 }
[15033]1037 for (int enums = 0; enums < s.size(); ++enums) {
1038 List<Coordinate> ep = s.get(enums).getPoints();
1039 for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
1040 List<Coordinate> jp = js.get(jnums).getPoints();
1041 if (ep.size() == jp.size() && !jdone[jnums]) {
[14576]1042 boolean err = false;
[15033]1043 for (int nump = 0; nump < ep.size() && !err; ++nump) {
1044 Coordinate ept = ep.get(nump);
1045 Coordinate jpt = jp.get(nump);
1046 if (Math.abs(ept.getLat()-jpt.getLat()) > 0.00001 || Math.abs(ept.getLon()-jpt.getLon()) > 0.00001) {
1047 String numtxt = Integer.toString(enums+1);
1048 if (enums != jnums) {
1049 numtxt += '/' + Integer.toString(jnums+1);
1050 }
1051 myprintln("* Different coordinate for point "+(nump+1)+" of shape "+numtxt+": "+getDescription(j));
1052 break;
[14576]1053 }
1054 }
[15033]1055 edone[enums] = true;
1056 jdone[jnums] = true;
1057 break;
[14576]1058 }
1059 }
1060 }
[15033]1061 for (int enums = 0; enums < s.size(); ++enums) {
1062 List<Coordinate> ep = s.get(enums).getPoints();
1063 for (int jnums = 0; jnums < js.size() && !edone[enums]; ++jnums) {
1064 List<Coordinate> jp = js.get(jnums).getPoints();
1065 if (!jdone[jnums]) {
1066 String numtxt = Integer.toString(enums+1);
1067 if (enums != jnums) {
1068 numtxt += '/' + Integer.toString(jnums+1);
1069 }
[15699]1070 myprintln("* Different number of points for shape "+numtxt+" ("+ep.size()+" ! = "+jp.size()+"): "
[15034]1071 + getDescription(j));
[15033]1072 edone[enums] = true;
1073 jdone[jnums] = true;
1074 break;
[14576]1075 }
1076 }
1077 }
[11410]1078 }
1079 }
[15034]1080 }
1081
[15692]1082 void doMismatchingIcons() {
[15033]1083 myprintln("*** Mismatching icons: ***");
[15692]1084 doMismatching(this::compareIcons);
1085 }
1086
1087 void doMismatchingCategories() {
1088 myprintln("*** Mismatching categories: ***");
1089 doMismatching(this::compareCategories);
1090 }
1091
1092 void doMismatching(BiConsumer<ImageryInfo, JsonObject> comparator) {
[15033]1093 for (String url : eliUrls.keySet()) {
[15692]1094 if (josmUrls.containsKey(url)) {
1095 comparator.accept(josmUrls.get(url), eliUrls.get(url));
[11420]1096 }
[15692]1097 }
1098 }
1099
1100 void compareIcons(ImageryInfo j, JsonObject e) {
1101 String ij = getIcon(j);
1102 String ie = getIcon(e);
1103 boolean ijok = isNotBlank(ij);
1104 boolean ieok = isNotBlank(ie);
1105 if (ijok && !ieok) {
1106 if (!optionNoEli) {
1107 myprintln("+ No ELI icon: "+getDescription(j));
[11420]1108 }
[15692]1109 } else if (!ijok && ieok) {
1110 myprintln("- No JOSM icon: "+getDescription(j));
1111 } else if (ijok && ieok && !Objects.equals(ij, ie) && !(
1112 (ie.startsWith("https://osmlab.github.io/editor-layer-index/")
1113 || ie.startsWith("https://raw.githubusercontent.com/osmlab/editor-layer-index/")) &&
1114 ij.startsWith("data:"))) {
1115 String iehttps = ie.replace("http:", "https:");
1116 if (ij.equals(iehttps)) {
1117 myprintln("+ Different icons: "+getDescription(j));
1118 } else {
1119 myprintln("* Different icons: "+getDescription(j));
1120 }
[11420]1121 }
[15034]1122 }
1123
[15692]1124 void compareCategories(ImageryInfo j, JsonObject e) {
1125 String cj = getCategory(j);
1126 String ce = getCategory(e);
1127 boolean cjok = isNotBlank(cj);
1128 boolean ceok = isNotBlank(ce);
1129 if (cjok && !ceok) {
1130 if (!optionNoEli) {
1131 myprintln("+ No ELI category: "+getDescription(j));
1132 }
1133 } else if (!cjok && ceok) {
1134 myprintln("- No JOSM category: "+getDescription(j));
1135 } else if (cjok && ceok && !Objects.equals(cj, ce)) {
[15699]1136 myprintln("* Different categories ('"+ce+"' != '"+cj+"'): "+getDescription(j));
[15692]1137 }
1138 }
1139
1140 void doMiscellaneousChecks() {
[15033]1141 myprintln("*** Miscellaneous checks: ***");
1142 Map<String, ImageryInfo> josmIds = new HashMap<>();
1143 Collection<String> all = Projections.getAllProjectionCodes();
[13551]1144 DomainValidator dv = DomainValidator.getInstance();
[15033]1145 for (String url : josmUrls.keySet()) {
1146 ImageryInfo j = josmUrls.get(url);
1147 String id = getId(j);
1148 if ("wms".equals(getType(j))) {
1149 String urlLc = url.toLowerCase(Locale.ENGLISH);
1150 if (getProjections(j).isEmpty()) {
1151 myprintln("* WMS without projections: "+getDescription(j));
[13526]1152 } else {
[15033]1153 List<String> unsupported = new LinkedList<>();
1154 List<String> old = new LinkedList<>();
1155 for (String p : getProjectionsUnstripped(j)) {
1156 if ("CRS:84".equals(p)) {
1157 if (!urlLc.contains("version=1.3")) {
1158 myprintln("* CRS:84 without WMS 1.3: "+getDescription(j));
[13526]1159 }
[15033]1160 } else if (oldproj.containsKey(p)) {
1161 old.add(p);
1162 } else if (!all.contains(p) && !ignoreproj.contains(p)) {
1163 unsupported.add(p);
[13526]1164 }
1165 }
[15033]1166 if (!unsupported.isEmpty()) {
1167 myprintln("* Projections "+String.join(", ", unsupported)+" not supported by JOSM: "+getDescription(j));
[13526]1168 }
[15033]1169 for (String o : old) {
[15034]1170 myprintln("* Projection "+o+" is an old unsupported code and has been replaced by "+oldproj.get(o)+": "
1171 + getDescription(j));
[13527]1172 }
[13526]1173 }
[15033]1174 if (urlLc.contains("version=1.3") && !urlLc.contains("crs={proj}")) {
1175 myprintln("* WMS 1.3 with strange CRS specification: "+getDescription(j));
1176 } else if (urlLc.contains("version=1.1") && !urlLc.contains("srs={proj}")) {
1177 myprintln("* WMS 1.1 with strange SRS specification: "+getDescription(j));
[13526]1178 }
[13511]1179 }
[15033]1180 List<String> urls = new LinkedList<>();
1181 if (!"scanex".equals(getType(j))) {
1182 urls.add(url);
[13532]1183 }
[15033]1184 String jt = getPermissionReferenceUrl(j);
1185 if (isNotBlank(jt) && !"Public Domain".equalsIgnoreCase(jt))
1186 urls.add(jt);
1187 jt = getTermsOfUseUrl(j);
1188 if (isNotBlank(jt))
1189 urls.add(jt);
1190 jt = getAttributionUrl(j);
1191 if (isNotBlank(jt))
1192 urls.add(jt);
1193 jt = getIcon(j);
[15439]1194 if (isNotBlank(jt)) {
[15440]1195 if (!jt.startsWith("data:image/"))
[15439]1196 urls.add(jt);
1197 else {
[15440]1198 try {
1199 new ImageProvider(jt).get();
1200 } catch (RuntimeException e) {
[15439]1201 myprintln("* Strange Icon: "+getDescription(j));
1202 }
1203 }
1204 }
[15163]1205 Pattern patternU = Pattern.compile("^https?://([^/]+?)(:\\d+)?(/.*)?");
[15033]1206 for (String u : urls) {
[15163]1207 if (!patternU.matcher(u).matches() || u.matches(".*[ \t]+$")) {
[15033]1208 myprintln("* Strange URL '"+u+"': "+getDescription(j));
1209 } else {
[15163]1210 try {
1211 URL jurl = new URL(u.replaceAll("\\{switch:[^\\}]*\\}", "x"));
1212 String domain = jurl.getHost();
1213 int port = jurl.getPort();
1214 if (!(domain.matches("^\\d+\\.\\d+\\.\\d+\\.\\d+$")) && !dv.isValid(domain))
1215 myprintln("* Strange Domain '"+domain+"': "+getDescription(j));
1216 else if (80 == port || 443 == port) {
1217 myprintln("* Useless port '"+port+"': "+getDescription(j));
1218 }
1219 } catch (MalformedURLException e) {
1220 myprintln("* Malformed URL '"+u+"': "+getDescription(j)+" => "+e.getMessage());
[13554]1221 }
[13551]1222 }
1223 }
1224
[15033]1225 if (josmMirrors.containsKey(url)) {
1226 continue;
[11420]1227 }
[15033]1228 if (isBlank(id)) {
1229 myprintln("* No JOSM-ID: "+getDescription(j));
1230 } else if (josmIds.containsKey(id)) {
1231 myprintln("* JOSM-ID "+id+" not unique: "+getDescription(j));
[11420]1232 } else {
[15033]1233 josmIds.put(id, j);
[11420]1234 }
[15033]1235 String d = getDate(j);
1236 if (isNotBlank(d)) {
1237 Pattern patternD = Pattern.compile("^(-|(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?)(;(-|(\\d\\d\\d\\d)(-(\\d\\d)(-(\\d\\d))?)?))?$");
1238 Matcher m = patternD.matcher(d);
1239 if (!m.matches()) {
1240 myprintln("* JOSM-Date '"+d+"' is strange: "+getDescription(j));
[11572]1241 } else {
1242 try {
[15033]1243 Date first = verifyDate(m.group(2), m.group(4), m.group(6));
1244 Date second = verifyDate(m.group(9), m.group(11), m.group(13));
1245 if (second.compareTo(first) < 0) {
1246 myprintln("* JOSM-Date '"+d+"' is strange (second earlier than first): "+getDescription(j));
[11572]1247 }
[15034]1248 } catch (Exception e) {
[15033]1249 myprintln("* JOSM-Date '"+d+"' is strange ("+e.getMessage()+"): "+getDescription(j));
[11572]1250 }
1251 }
[11603]1252 }
[15033]1253 if (isNotBlank(getAttributionUrl(j)) && isBlank(getAttributionText(j))) {
1254 myprintln("* Attribution link without text: "+getDescription(j));
[12261]1255 }
[15033]1256 if (isNotBlank(getLogoUrl(j)) && isBlank(getLogoImage(j))) {
1257 myprintln("* Logo link without image: "+getDescription(j));
[12261]1258 }
[15033]1259 if (isNotBlank(getTermsOfUseText(j)) && isBlank(getTermsOfUseUrl(j))) {
1260 myprintln("* Terms of Use text without link: "+getDescription(j));
[12261]1261 }
[15033]1262 List<Shape> js = getShapes(j);
1263 if (!js.isEmpty()) {
1264 double minlat = 1000;
1265 double minlon = 1000;
1266 double maxlat = -1000;
1267 double maxlon = -1000;
1268 for (Shape s: js) {
1269 for (Coordinate p: s.getPoints()) {
1270 double lat = p.getLat();
1271 double lon = p.getLon();
[15034]1272 if (lat > maxlat) maxlat = lat;
1273 if (lon > maxlon) maxlon = lon;
1274 if (lat < minlat) minlat = lat;
1275 if (lon < minlon) minlon = lon;
[11422]1276 }
1277 }
[15033]1278 ImageryBounds b = j.getBounds();
1279 if (b.getMinLat() != minlat || b.getMinLon() != minlon || b.getMaxLat() != maxlat || b.getMaxLon() != maxlon) {
1280 myprintln("* Bounds do not match shape (is "+b.getMinLat()+","+b.getMinLon()+","+b.getMaxLat()+","+b.getMaxLon()
[15034]1281 + ", calculated <bounds min-lat='"+minlat+"' min-lon='"+minlon+"' max-lat='"+maxlat+"' max-lon='"+maxlon+"'>): "
1282 + getDescription(j));
[11422]1283 }
1284 }
[15658]1285 List<String> knownCategories = Arrays.asList(
1286 "photo", "elevation", "map", "historicmap", "osmbasedmap", "historicphoto", "qa", "other");
[15033]1287 String cat = getCategory(j);
1288 if (isBlank(cat)) {
1289 myprintln("* No category: "+getDescription(j));
1290 } else if (!knownCategories.contains(cat)) {
1291 myprintln("* Strange category "+cat+": "+getDescription(j));
[13792]1292 }
[11420]1293 }
[7726]1294 }
[9667]1295
[15033]1296 /*
[7726]1297 * Utility functions that allow uniform access for both ImageryInfo and JsonObject.
1298 */
[15033]1299
[7726]1300 static String getUrl(Object e) {
[15033]1301 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getUrl();
1302 return ((Map<String, JsonObject>) e).get("properties").getString("url");
[7726]1303 }
[15033]1304
[12242]1305 static String getUrlStripped(Object e) {
[15034]1306 return getUrl(e).replaceAll("\\?(apikey|access_token)=.*", "");
[12242]1307 }
[15033]1308
[11572]1309 static String getDate(Object e) {
[15033]1310 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getDate() != null ? ((ImageryInfo) e).getDate() : "";
1311 JsonObject p = ((Map<String, JsonObject>) e).get("properties");
1312 String start = p.containsKey("start_date") ? p.getString("start_date") : "";
1313 String end = p.containsKey("end_date") ? p.getString("end_date") : "";
[15034]1314 if (!start.isEmpty() && !end.isEmpty())
[15033]1315 return start+";"+end;
[15034]1316 else if (!start.isEmpty())
[15033]1317 return start+";-";
[15034]1318 else if (!end.isEmpty())
[15033]1319 return "-;"+end;
1320 return "";
[11572]1321 }
[15033]1322
1323 static Date verifyDate(String year, String month, String day) throws ParseException {
1324 String date;
[15034]1325 if (year == null) {
[15033]1326 date = "3000-01-01";
[11854]1327 } else {
[15033]1328 date = year + "-" + (month == null ? "01" : month) + "-" + (day == null ? "01" : day);
[11854]1329 }
[15033]1330 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
1331 df.setLenient(false);
1332 return df.parse(date);
[11572]1333 }
[15033]1334
[11420]1335 static String getId(Object e) {
[15033]1336 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getId();
1337 return ((Map<String, JsonObject>) e).get("properties").getString("id");
[11420]1338 }
[15033]1339
[7726]1340 static String getName(Object e) {
[15033]1341 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getOriginalName();
1342 return ((Map<String, JsonObject>) e).get("properties").getString("name");
[7726]1343 }
[15033]1344
1345 static List<ImageryInfo> getMirrors(Object e) {
1346 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getMirrors();
1347 return Collections.emptyList();
[11967]1348 }
[15033]1349
1350 static List<String> getProjections(Object e) {
1351 List<String> r = new ArrayList<>();
1352 List<String> u = getProjectionsUnstripped(e);
1353 if (u != null) {
1354 for (String p : u) {
1355 if (!oldproj.containsKey(p) && !("CRS:84".equals(p) && !(getUrlStripped(e).matches("(?i)version=1\\.3")))) {
1356 r.add(p);
[13530]1357 }
1358 }
1359 }
[15033]1360 return r;
[13530]1361 }
[15033]1362
1363 static List<String> getProjectionsUnstripped(Object e) {
1364 List<String> r = null;
[11975]1365 if (e instanceof ImageryInfo) {
[15033]1366 r = ((ImageryInfo) e).getServerProjections();
[11975]1367 } else {
[15033]1368 JsonValue s = ((Map<String, JsonObject>) e).get("properties").get("available_projections");
1369 if (s != null) {
1370 r = new ArrayList<>();
1371 for (JsonValue p : s.asJsonArray()) {
1372 r.add(((JsonString) p).getString());
[13530]1373 }
[11981]1374 }
[11975]1375 }
[15033]1376 return r != null ? r : Collections.emptyList();
[11975]1377 }
[15033]1378
[16740]1379 static void addJsonShapes(List<Shape> l, JsonArray a) {
1380 if (a.get(0).asJsonArray().get(0) instanceof JsonArray) {
1381 for (JsonValue sub: a.asJsonArray()) {
1382 addJsonShapes(l, sub.asJsonArray());
1383 }
1384 } else {
1385 Shape s = new Shape();
1386 for (JsonValue point: a.asJsonArray()) {
1387 JsonArray ar = point.asJsonArray();
1388 String lon = ar.getJsonNumber(0).toString();
1389 String lat = ar.getJsonNumber(1).toString();
1390 s.addPoint(lat, lon);
1391 }
1392 l.add(s);
1393 }
1394 }
[16750]1395
[11410]1396 static List<Shape> getShapes(Object e) {
1397 if (e instanceof ImageryInfo) {
[15033]1398 ImageryBounds bounds = ((ImageryInfo) e).getBounds();
[15034]1399 if (bounds != null) {
[15033]1400 return bounds.getShapes();
[11411]1401 }
[15033]1402 return Collections.emptyList();
[11410]1403 }
[15033]1404 JsonValue ex = ((Map<String, JsonValue>) e).get("geometry");
1405 if (ex != null && !JsonValue.NULL.equals(ex) && !ex.asJsonObject().isNull("coordinates")) {
1406 JsonArray poly = ex.asJsonObject().getJsonArray("coordinates");
1407 List<Shape> l = new ArrayList<>();
1408 for (JsonValue shapes: poly) {
[16740]1409 addJsonShapes(l, shapes.asJsonArray());
[11410]1410 }
[15033]1411 return l;
[11410]1412 }
[15033]1413 return Collections.emptyList();
[11410]1414 }
[15033]1415
[7726]1416 static String getType(Object e) {
[15033]1417 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getImageryType().getTypeString();
1418 return ((Map<String, JsonObject>) e).get("properties").getString("type");
[7726]1419 }
[15033]1420
[7726]1421 static Integer getMinZoom(Object e) {
1422 if (e instanceof ImageryInfo) {
[15033]1423 int mz = ((ImageryInfo) e).getMinZoom();
1424 return mz == 0 ? null : mz;
[7726]1425 } else {
[15033]1426 JsonNumber num = ((Map<String, JsonObject>) e).get("properties").getJsonNumber("min_zoom");
1427 if (num == null) return null;
1428 return num.intValue();
[7726]1429 }
1430 }
[15033]1431
[7726]1432 static Integer getMaxZoom(Object e) {
1433 if (e instanceof ImageryInfo) {
[15033]1434 int mz = ((ImageryInfo) e).getMaxZoom();
1435 return mz == 0 ? null : mz;
[7726]1436 } else {
[15033]1437 JsonNumber num = ((Map<String, JsonObject>) e).get("properties").getJsonNumber("max_zoom");
1438 if (num == null) return null;
1439 return num.intValue();
[7726]1440 }
1441 }
[15033]1442
[7726]1443 static String getCountryCode(Object e) {
[15033]1444 if (e instanceof ImageryInfo) return "".equals(((ImageryInfo) e).getCountryCode()) ? null : ((ImageryInfo) e).getCountryCode();
1445 return ((Map<String, JsonObject>) e).get("properties").getString("country_code", null);
[7726]1446 }
[15033]1447
[9505]1448 static String getQuality(Object e) {
[15033]1449 if (e instanceof ImageryInfo) return ((ImageryInfo) e).isBestMarked() ? "eli-best" : null;
1450 return (((Map<String, JsonObject>) e).get("properties").containsKey("best")
1451 && ((Map<String, JsonObject>) e).get("properties").getBoolean("best")) ? "eli-best" : null;
[9505]1452 }
[15033]1453
1454 static boolean getOverlay(Object e) {
1455 if (e instanceof ImageryInfo) return ((ImageryInfo) e).isOverlay();
1456 return (((Map<String, JsonObject>) e).get("properties").containsKey("overlay")
1457 && ((Map<String, JsonObject>) e).get("properties").getBoolean("overlay"));
[13536]1458 }
[15033]1459
[11420]1460 static String getIcon(Object e) {
[15033]1461 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getIcon();
1462 return ((Map<String, JsonObject>) e).get("properties").getString("icon", null);
[11420]1463 }
[15033]1464
[11975]1465 static String getAttributionText(Object e) {
[15033]1466 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionText(0, null, null);
1467 try {
1468 return ((Map<String, JsonObject>) e).get("properties").getJsonObject("attribution").getString("text", null);
1469 } catch (NullPointerException ex) {
1470 return null;
1471 }
[11975]1472 }
[15033]1473
[11975]1474 static String getAttributionUrl(Object e) {
[15033]1475 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionLinkURL();
1476 try {
1477 return ((Map<String, JsonObject>) e).get("properties").getJsonObject("attribution").getString("url", null);
1478 } catch (NullPointerException ex) {
1479 return null;
1480 }
[11975]1481 }
[15033]1482
[11975]1483 static String getTermsOfUseText(Object e) {
[15033]1484 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getTermsOfUseText();
1485 return null;
[11975]1486 }
[15033]1487
[11975]1488 static String getTermsOfUseUrl(Object e) {
[15033]1489 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getTermsOfUseURL();
1490 return null;
[11975]1491 }
[15033]1492
[13792]1493 static String getCategory(Object e) {
1494 if (e instanceof ImageryInfo) {
[15033]1495 return ((ImageryInfo) e).getImageryCategoryOriginalString();
[13792]1496 }
[15692]1497 return ((Map<String, JsonObject>) e).get("properties").getString("category", null);
[13792]1498 }
[15033]1499
[12261]1500 static String getLogoImage(Object e) {
[15033]1501 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionImageRaw();
1502 return null;
[12261]1503 }
[15033]1504
[12261]1505 static String getLogoUrl(Object e) {
[15033]1506 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getAttributionImageURL();
1507 return null;
[12261]1508 }
[15033]1509
[11975]1510 static String getPermissionReferenceUrl(Object e) {
[15033]1511 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getPermissionReferenceURL();
1512 return ((Map<String, JsonObject>) e).get("properties").getString("license_url", null);
[11975]1513 }
[15033]1514
[16127]1515 static String getPrivacyPolicyUrl(Object e) {
1516 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getPrivacyPolicyURL();
1517 return ((Map<String, JsonObject>) e).get("properties").getString("privacy_policy_url", null);
1518 }
1519
[15082]1520 static Map<String, Set<String>> getNoTileHeader(Object e) {
1521 if (e instanceof ImageryInfo) return ((ImageryInfo) e).getNoTileHeaders();
1522 JsonObject nth = ((Map<String, JsonObject>) e).get("properties").getJsonObject("no_tile_header");
1523 return nth == null ? null : nth.keySet().stream().collect(Collectors.toMap(
1524 Function.identity(),
1525 k -> nth.getJsonArray(k).stream().map(x -> ((JsonString) x).getString()).collect(Collectors.toSet())));
1526 }
1527
[15034]1528 static Map<String, String> getDescriptions(Object e) {
[15082]1529 Map<String, String> res = new HashMap<>();
[11975]1530 if (e instanceof ImageryInfo) {
[15033]1531 String a = ((ImageryInfo) e).getDescription();
1532 if (a != null) res.put("en", a);
[11975]1533 } else {
[15033]1534 String a = ((Map<String, JsonObject>) e).get("properties").getString("description", null);
[15034]1535 if (a != null) res.put("en", a.replaceAll("''", "'"));
[11975]1536 }
[15033]1537 return res;
[11975]1538 }
[15033]1539
1540 static boolean getValidGeoreference(Object e) {
1541 if (e instanceof ImageryInfo) return ((ImageryInfo) e).isGeoreferenceValid();
1542 return false;
[11975]1543 }
[15033]1544
1545 static boolean getDefault(Object e) {
1546 if (e instanceof ImageryInfo) return ((ImageryInfo) e).isDefaultEntry();
1547 return ((Map<String, JsonObject>) e).get("properties").getBoolean("default", false);
[12226]1548 }
[15033]1549
[7726]1550 String getDescription(Object o) {
[15033]1551 String url = getUrl(o);
1552 String cc = getCountryCode(o);
[7726]1553 if (cc == null) {
[15033]1554 ImageryInfo j = josmUrls.get(url);
1555 if (j != null) cc = getCountryCode(j);
[7726]1556 if (cc == null) {
[15033]1557 JsonObject e = eliUrls.get(url);
1558 if (e != null) cc = getCountryCode(e);
[7726]1559 }
1560 }
1561 if (cc == null) {
[15033]1562 cc = "";
[7726]1563 } else {
[15033]1564 cc = "["+cc+"] ";
[7726]1565 }
[15878]1566 String name = getName(o);
1567 String id = getId(o);
1568 String d = cc;
[15879]1569 if (name != null && !name.isEmpty()) {
[15878]1570 d += name;
[15879]1571 if (id != null && !id.isEmpty())
[15878]1572 d += " ["+id+"]";
[15879]1573 } else if (url != null && !url.isEmpty())
[15878]1574 d += url;
[15033]1575 if (optionShorten) {
1576 if (d.length() > MAXLEN) d = d.substring(0, MAXLEN-1) + "...";
[7726]1577 }
[15033]1578 return d;
[7726]1579 }
1580}
Note: See TracBrowser for help on using the repository browser.