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

Last change on this file since 18432 was 18382, checked in by stoecker, 3 years ago

separate ELI from validity checks

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