- Timestamp:
- 2014-02-17T19:21:41+01:00 (11 years ago)
- Location:
- trunk/data/validator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/data/validator/geometry.mapcss
r6790 r6861 13 13 14 14 /* Building inside building (spatial test) */ 15 *[building!~/no|entrance/][coalesce(tag("layer"),"0") = coalesce(parent_tag("layer"),"0")] ∈ 16 *[building!~/no|entrance/] { 15 *[building][building!~/no|entrance/][coalesce(tag("layer"),"0") = coalesce(parent_tag("layer"),"0")] ∈ 16 *[building][building!~/no|entrance/] { 17 17 throwWarning: tr("Building inside building"); 18 18 } … … 32 32 33 33 /* see ticket #9311 */ 34 node[amenity=parking][!"capacity:disabled"] ∈ *[amenity=parking],35 34 node[amenity=parking]["capacity:disabled" !~ /^(yes|[0-9]+)$/] ∈ *[amenity=parking] { 36 35 throwWarning: tr("{0} inside {1}", "amenity=parking", "amenity=parking"); -
trunk/data/validator/numeric.mapcss
r6769 r6861 15 15 } 16 16 17 *[layer !~ /^0$|^(-|\+)?[1-5]$/] { 17 *[layer][layer !~ /^0$|^(-|\+)?[1-5]$/] { 18 18 throwWarning: tr("layer should be between -5 and 5"); 19 19 assertMatch: "node layer=-50"; … … 26 26 } 27 27 28 *[level !~ /^((([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)(;(([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)*$|^-0\.5$/] { 28 *[level][level !~ /^((([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)(;(([0-9]|-[1-9])|[1-9][0-9]*)(\.5)?)*$|^-0\.5$/] { 29 29 throwWarning: tr("level should be numbers with optional .5 increments"); 30 30 assertMatch: "node level=one"; … … 36 36 } 37 37 38 *[height !~ /^(([0-9]+\.?[0-9]*( (m|ft))?)|([1-9][0-9]*\'((10|11|[0-9])((\.[0-9]+)?)\")?))$/] { 38 *[height][height !~ /^(([0-9]+\.?[0-9]*( (m|ft))?)|([1-9][0-9]*\'((10|11|[0-9])((\.[0-9]+)?)\")?))$/] { 39 39 throwWarning: tr("{0}: meters is default; period is separator; if units, put space then unit", "height"); 40 40 assertMatch: "node height=medium"; … … 47 47 } 48 48 49 *[maxheight !~ /^(([1-9][0-9]*(\.[0-9]+)?( (m|ft))?)|([0-9]+\'(([0-9]|10|11)(\.[0-9]*)?\")?))$/] { 49 *[maxheight][maxheight !~ /^(([1-9][0-9]*(\.[0-9]+)?( (m|ft))?)|([0-9]+\'(([0-9]|10|11)(\.[0-9]*)?\")?))$/] { 50 50 throwWarning: tr("{0}: meters is default; period is separator; if units, put space then unit", "maxheight"); 51 51 assertMatch: "node maxheight=something"; … … 60 60 } 61 61 62 way[width !~ /^(([0-9]+\.?[0-9]*( [a-z]+)?)|([0-9]+\'([0-9]+\.?[0-9]*\")?))$/] { 62 way[width][width !~ /^(([0-9]+\.?[0-9]*( [a-z]+)?)|([0-9]+\'([0-9]+\.?[0-9]*\")?))$/] { 63 63 throwWarning: tr("{0}: meters is default; period is separator; if units, put space then unit", "width"); 64 64 assertMatch: "way width=something"; … … 72 72 } 73 73 74 *[maxwidth !~ /^(([0-9]+\.?[0-9]*( (m|ft))?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/] { 74 *[maxwidth][maxwidth !~ /^(([0-9]+\.?[0-9]*( (m|ft))?)|([0-9]+\'[0-9]+\.?[0-9]*\"))$/] { 75 75 throwWarning: tr("{0}: meters is default; period is separator; if units, put space then unit", "maxwidth"); 76 76 assertMatch: "way maxwidth=something"; … … 82 82 } 83 83 84 way[maxspeed !~ /^(signals|none|unposted|unknown|variable|walk|[1-9][0-9]*( [a-z]+)?|[A-Z][A-Z]:(urban|rural|living_street|motorway))$/] { 84 way[maxspeed][maxspeed !~ /^(signals|none|unposted|unknown|variable|walk|[1-9][0-9]*( [a-z]+)?|[A-Z][A-Z]:(urban|rural|living_street|motorway))$/] { 85 85 throwWarning: tr("unusual {0} format", "maxspeed"); 86 86 assertMatch: "way maxspeed=something"; … … 98 98 } 99 99 100 way[voltage =~ /(.*[A-Za-z].*)|.*,.*|.*( ).*/] { 100 way[voltage][voltage =~ /(.*[A-Za-z].*)|.*,.*|.*( ).*/] { 101 101 throwWarning: tr("voltage should be in volts with no units/delimiter/spaces"); 102 102 assertMatch: "way voltage=medium"; … … 106 106 /* some users are using frequency for other purposes (not electromagnetic) 107 107 with the values 'perennial' and 'intermittent'; the vast majority are 0, 16.7, 50 and 60 */ 108 way[frequency !~ /^(0|[1-9][0-9]*(\.[0-9]+)?)( (kHz|MHz|GHz|THz))?$/] { 108 way[frequency][frequency !~ /^(0|[1-9][0-9]*(\.[0-9]+)?)( (kHz|MHz|GHz|THz))?$/] { 109 109 throwWarning: tr("unusual {0} specification", "frequency"); 110 110 assertMatch: "way frequency=something"; … … 116 116 } 117 117 118 way[gauge !~ /^([1-9][0-9]{1,3}(;[1-9][0-9]{1,3})*|broad|standard|narrow)$/] { 118 way[gauge][gauge !~ /^([1-9][0-9]{1,3}(;[1-9][0-9]{1,3})*|broad|standard|narrow)$/] { 119 119 throwWarning: tr("unusual train track gauge; use mm with no separator"); 120 120 assertMatch: "way gauge=something"; … … 126 126 127 127 /* the numbers for percentage and degrees include could probably be bracketed a bit more precisely */ 128 way[incline !~ /^(up|down|-?([0-9]+?(\.[1-9]%)?|100)[%°]?)$/] { 128 way[incline][incline !~ /^(up|down|-?([0-9]+?(\.[1-9]%)?|100)[%°]?)$/] { 129 129 throwWarning: tr("unusual incline; use percentages/degrees or up/down"); 130 130 assertMatch: "way incline=extreme"; … … 137 137 138 138 /* see ticket #9631 */ 139 *[population !~ /^[0-9]+$/ ] { 139 *[population][population !~ /^[0-9]+$/ ] { 140 140 throwWarning: tr("{0} must be a numeric value", "{0.key}"); 141 141 }
Note:
See TracChangeset
for help on using the changeset viewer.