Created
September 12, 2019 08:31
-
-
Save kalda341/caffefe189713c707ca5a500c08e8e06 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
question: | |
'Is the subject site located within the catchment of the Hauraki Gulf Islands as defined by the Hauraki Gulf Marine Park Act 2000?', | |
path: ['siteInfo', 'districtArea', 'hauraki', 'gulfCatchment'] | |
}, | |
{ | |
question: | |
'Is the subject site located within the Waitakere Ranges Heritage Area (WRHA)?', | |
path: ['siteInfo', 'districtArea', 'waitakere', 'heritageArea'], | |
relevantIf: anyPass([ | |
pathEq(['siteInfo', 'districtArea', 'area'], 'waitakere'), | |
pathEq(['siteInfo', 'districtArea', 'area'], 'rodney') | |
]) | |
}, | |
{ | |
question: | |
'Is the site situated within 100 metres of a significant ridgeline?', | |
path: ['siteInfo', 'districtArea', 'hauraki', 'ridgeline'], | |
relevantIf: pathEq(['siteInfo', 'districtArea', 'area'], 'hauraki') | |
}, | |
{ | |
question: | |
'Is the site located in the coastal or water body protection yards?', | |
path: ['siteInfo', 'districtArea', 'hauraki', 'protectionYard'], | |
relevantIf: pathEq(['siteInfo', 'districtArea', 'area'], 'hauraki') | |
}, | |
{ | |
question: 'Is the proposal in the vicinity of Ardmore Airport?', | |
path: ['proposal', 'districtArea', 'papakura', 'ardmore'], | |
relevantIf: pathEq(['siteInfo', 'districtArea', 'area'], 'papakura') | |
}, | |
{ | |
question: 'Is the proposal in the vicinity of Auckland Gliding Club?', | |
path: ['proposal', 'districtArea', 'papakura', 'gliding'], | |
relevantIf: pathEq(['siteInfo', 'districtArea', 'area'], 'papakura') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment