-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add preset for emergency=fire_service_inlet and fields for fire_mains…
… and fire_sprinkler (#806)
- Loading branch information
Showing
4 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"key": "fire_mains", | ||
"type": "combo", | ||
"label": "Network-Type", | ||
"strings": { | ||
"options": { | ||
"dry": "Dedicated Network (Normally Dry)", | ||
"wet": "Connected to Mains (Permanently Filled)", | ||
"yes": "Unknown Type", | ||
"no": "No" | ||
} | ||
}, | ||
"autoSuggestions": false, | ||
"customValues": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"key": "fire_service_inlet", | ||
"type": "combo", | ||
"label": "Shape", | ||
"strings": { | ||
"options": { | ||
"pillar": "Pillar/Aboveground", | ||
"underground": "Underground", | ||
"wall": "Wall", | ||
"pipe": "Capped Pipe" | ||
} | ||
}, | ||
"autoSuggestions": false, | ||
"customValues": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"key": "fire_sprinkler", | ||
"type": "combo", | ||
"label": "Fire Sprinkler Inlet", | ||
"strings": { | ||
"options": { | ||
"dry": "Dedicated Network (Normally Dry)", | ||
"wet": "Connected to Mains (Permanently Filled)", | ||
"pre-action": "Connected to Mains (Pre-Action System)", | ||
"yes": "Unknown Type", | ||
"no": "No" | ||
} | ||
}, | ||
"autoSuggestions": false, | ||
"customValues": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"icon": "maki-water", | ||
"fields": [ | ||
"fire_mains", | ||
"fire_sprinkler", | ||
"couplings" | ||
], | ||
"moreFields": [ | ||
"level", | ||
"survey/date", | ||
"fire_service_inlet", | ||
"ref" | ||
], | ||
"geometry": [ | ||
"point", | ||
"vertex" | ||
], | ||
"terms": [ | ||
"building hydrant inlet", | ||
"charged riser", | ||
"dry riser inlet", | ||
"dry standpipe", | ||
"fdc", | ||
"fire service inlet", | ||
"fire sprinkler inlet", | ||
"riser inlet", | ||
"standpipe", | ||
"wet riser inlet", | ||
"wet standpipe" | ||
], | ||
"tags": { | ||
"emergency": "fire_service_inlet" | ||
}, | ||
"name": "Fire Department Connection" | ||
} |