We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 877a444 commit ac67e88Copy full SHA for ac67e88
convert.rb
@@ -8,7 +8,15 @@
8
9
features = []
10
dojos.each do |dojo|
11
- if dojo["geoPoint"]
+ # 活動していない道場は除外
12
+ #
13
+ # stage:
14
+ # 0: In planning
15
+ # 1: Open, come along
16
+ # 2: Register ahead
17
+ # 3: 満員
18
+ # 4: 活動していません
19
+ if dojo["geoPoint"] && dojo["stage"] != 4
20
features << {
21
"type" => "Feature",
22
"geometry" => {
dojos.geojson
0 commit comments