Changes between Version 6 and Version 7 of Rules/ValidatingBuildingsInHOTTMProjects


Ignore:
Timestamp:
2023-04-05T12:05:25+02:00 (3 years ago)
Author:
Patrik_B
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Rules/ValidatingBuildingsInHOTTMProjects

    v6 v7  
    33meta
    44{
    5   title: "Validating buildings in HOT TM projects";
     5  title: "Validating tasks in HOT TM projects";
    66  version: "[[revision]]_[[date]]";
    7   description: "Few rules for checking mistakes on buildings that are usually made by beginners using ID Editor.";
     7  description: "Few rules for checking mistakes mostly made by beginners using ID Editor.";
    88  icon: "HOT_TM_logo.svg";
    99  author: "Patrik_B";
     10  link: "http://bit.ly/3zzivTi";
    1011}
    1112
    1213
    1314/*
    14 * building with layer tag. It won't flag building=roof
     15  Building with layer tag with exception for building=roof
    1516*/
    1617*[building][building!=roof][layer]{
     
    2122
    2223/*
    23 * building with different tag then yes
     24  Building with different tag then yes
    2425*/
    2526way[building][building!=yes]{
     
    3132
    3233/*
    33 * node with building tag
     34  Node with building tag
    3435*/
    3536node[building]{
     
    4041
    4142/*
    42 * bridge without layer tag
     43  Bridge without layer tag
    4344*/
    4445*[bridge][!layer]{
     
    4950
    5051/*
    51 * tunnel without layer tag. Added thanks to Filip009
     52  Tunnel without layer tag. Added thanks to Filip009
    5253*/
    5354*[tunnel][!layer]{
     
    5657group: tr("_Fix");
    5758}
     59
     60/*
     61  Highway with layer tag with exception for tunnel and bridge. Added thanks to martien-176
     62*/
     63*[highway][tunnel!=yes][bridge!=yes][layer]{
     64throwWarning: tr("Highway has layer tag");
     65fixRemove: "layer";
     66group: tr("_Fix");
     67}
     68
     69/*
     70  Waterway with layer tag. Added thanks to martien-176
     71*/
     72*[waterway][layer]{
     73throwWarning: tr("Waterway has layer tag");
     74fixRemove: "layer";
     75group: tr("_Fix");
     76}
    5877}}}