Michael Andersen@HOT ML made a mapcss style for JOSM. It can distinguish damaged/collapsed buildings. (damaged=green, collapsed=red) Here is [https://lists.openstreetmap.org/pipermail/hot/2013-November/003966.html Original Post], and on [osmwiki:Damaged_buildings_crisis_mapping OSM wiki page]. If you have any question, please contact to HOT MailingList. {{{ #!style type="mapcss" meta { title: "Collapsed/damaged buildings"; description: "Style to classify buildings"; version: "0.[[revision]]_[[date]]"; author: "Hjart"; link: "https://wiki.openstreetmap.org/wiki/Damaged_buildings_crisis_mapping" ; watch-modified: true; } area[building=collapsed] { text: "collapsed"; text-color: black; dashes: 20,4; font-size: 10; z-index: 1; color: #FF2238; fill-color: #FF2238; width: 3; } area[building=damaged] { text: "damaged"; text-color: black; font-size: 10; z-index: 1; color: #39D237; fill-color: #39D237; width: 3; dashes: 20,4; } area[typhoon:reviewed=yes] { text: "damaged"; text-color: black; font-size: 10; z-index: 1; color: #3CED28; fill-color: #3CED28; width: 3; } area[typhoon:reviewed=cloud] { text: "damaged"; text-color: black; font-size: 10; z-index: 1; color: #3CED28; fill-color: #3CED28; width: 3; dashes: 10,10; } }}}