diff --git a/doc/osmCoverage.md b/doc/osmCoverage.md
index 02d1d95..64c8c13 100644
--- a/doc/osmCoverage.md
+++ b/doc/osmCoverage.md
@@ -47,11 +47,11 @@
 | node | public_transport=platform           | 50,1,1,1 | false |
 | node | disused:highway=bus_stop            | 50,-,-,- | true  |
 | node | abandoned:highway=bus_stop          | 50,-,-,- | true  |
-| node | removed:highway=bus_stop            | 50,-,-,- | true  |
+| node | demolished:highway=bus_stop         | 50,-,-,- | true  |
 | node | no:highway=bus_stop                 | 50,-,-,- | true  |
 | node | disused:public_transport=platform   | 50,-,-,- | true  |
 | node | abandoned:public_transport=platform | 50,-,-,- | true  |
-| node | removed:public_transport=platform   | 50,-,-,- | true  |
+| node | demolished:public_transport=platform | 50,-,-,- | true  |
 | node | no:public_transport=platform        | 50,-,-,- | true  |
 
 評価点:
diff --git a/src/osm/jp/coverage/busstop/DbExistBusstop.java b/src/osm/jp/coverage/busstop/DbExistBusstop.java
index c5c4836..218d57f 100644
--- a/src/osm/jp/coverage/busstop/DbExistBusstop.java
+++ b/src/osm/jp/coverage/busstop/DbExistBusstop.java
@@ -136,12 +136,12 @@
 
         readExistingSub("disused:highway", "bus_stop", POINT_NO);
         readExistingSub("abandoned:highway", "bus_stop", POINT_NO);
-        readExistingSub("removed:highway", "bus_stop", POINT_NO);
+        readExistingSub("demolished:highway", "bus_stop", POINT_NO);
         readExistingSub("no:highway", "bus_stop", POINT_NO);
 
         readExistingSub("disused:public_transport", "platform", POINT_NO);
         readExistingSub("abandoned:public_transport", "platform", POINT_NO);
-        readExistingSub("removed:public_transport", "platform", POINT_NO);
+        readExistingSub("demolished:public_transport", "platform", POINT_NO);
         readExistingSub("no:public_transport", "platform", POINT_NO);
     }