Skip to content

Commit

Permalink
changes based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoniecz committed Sep 3, 2020
1 parent e0d06f5 commit 0b969fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class AddSummitRegister(
private val r: ResurveyIntervalsStore
) : OsmElementQuestType<Boolean> {

override val commitMessage = "Add whatever summit register is present"
override val commitMessage = "Add whether summit register is present"
override val wikiLink = "Key:summit:register"
override val icon = R.drawable.ic_quest_peak

Expand Down Expand Up @@ -61,7 +61,7 @@ class AddSummitRegister(
relation["route"="hiking"];
)->.hiking;
node(around.hiking:10)[natural=peak][!"summit:register"][name] -> .summits_with_unknown_status;
node(around.hiking:10)["summit:register"][name]${olderThan(8).toOverpassQLString()} -> .summits_with_old_status;
node(around.hiking:10)["summit:register"][name]${olderThan(4).toOverpassQLString()} -> .summits_with_old_status;
(.summits_with_unknown_status; .summits_with_old_status;);
Expand Down

0 comments on commit 0b969fe

Please sign in to comment.