Changeset 16373 in josm


Ignore:
Timestamp:
2020-04-22T19:27:11+02:00 (4 years ago)
Author:
stoecker
Message:

one more warning about bad data

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r16352 r16373  
    880880        </exec>
    881881        <exec append="false" executable="wget" failifexecutionfails="true">
    882             <arg value="https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/imagery.geojson"/>
     882            <!--<arg value="https://raw.githubusercontent.com/osmlab/editor-layer-index/gh-pages/imagery.geojson"/>-->
     883            <arg value="https://raw.githubusercontent.com/ideditor/imagery-index/master/dist/legacy/imagery.geojson"/>
    883884            <arg value="-O"/>
    884885            <arg value="imagery_eli.geojson"/>
  • trunk/scripts/SyncEditorLayerIndex.java

    r16127 r16373  
    504504                continue;
    505505            }
     506            if (isBlank(e.getDate()) && e.getDate() != null) {
     507                myprintln("+++ JOSM-Entry without empty Date: " + getDescription(e));
     508                continue;
     509            }
    506510            if (isBlank(getName(e))) {
    507511                myprintln("+++ JOSM-Entry without Name: " + getDescription(e));
Note: See TracChangeset for help on using the changeset viewer.