Why does my overpass query give me all aerialway data except one mountain

Why does my overpass query give me all aerialway data except one mountain? Specially, I am searching 3600382313 (Japan) and I am trying to get aerialway for ski mountains. I get everything except for Niseko. Niseko is here

This is my query;

[out:xml][timeout:50];
area(3600382313)->.searchArea;
(
     way["landuse" = "winter_sports"](area.searchArea);
);
way(around:1000)["aerialway"];
out body;
>;
out skel qt;

As you linked, it is a type=multipolygon in a rel . wr[landuse=winter_sports] needs to be used to include both formats.

5 Likes

Thank you. I should have noticed that.