Conondale Range

The Conondale Range is a mountain range in Queensland, located between Maleny, Kenilworth, Kilcoy and Jimna. The range is the most westerly part of the Sunshine Coast hinterland and part of the Great Dividing Range. The highest point on the range is Mount Langley reaching 868 m above sea level. This is also the highest point in the Brisbane River catchment.[1]

Conondale Range
Southern foothills in Mount Kilcoy, 2015
Highest point
PeakMount Langley (Queensland)
Elevation868 m (2,848 ft)
Coordinates26°50′S 152°45′E
Geography
CountryAustralia
StateQueensland
RegionSouth East Queensland
Range coordinates26°50′S 152°45′E
Parent rangeGreat Dividing Range

Lower foothills of the range around Kilcoy are used for grazing. Most of the steep forested slopes of the range are state forests and Conondale National Park. In the south, parts of Stony Creek are preserved in Bellthorpe National Park.

The mountains are the source of the Brisbane River. Creeks on the south of the range drain into the Stanley River and directly into Lake Somerset. To the north creeks flow into the Mary River.

History

Dalla (also known as Dalambara and Dallambara) is a language of the Upper Brisbane River catchment, notably the Conondale Range. Dalla is part of the Duungidjawu language region includes the landscape within the local government boundaries of the Somerset and Moreton Bay Regional Councils, particularly the towns of Caboolture, Kilcoy, Woodford and Moore.[2]

Fauna

Some 1620 km2 of the Conondale Range is classified by BirdLife International as an Important Bird Area because it supports an isolated, and the northernmost, population of the endangered eastern bristlebird, which was only discovered in the 1980s.[3] It is also home large populations of the black-breasted button-quail, pale-yellow robin, paradise riflebird, regent bowerbird, green catbird and Australian logrunner.[4]

The extinct gastric-brooding frog and endangered Fleay's barred frog are two frog species endemic to the Conondale Range and parts of nearby regions.

gollark: These are done → muahahaha.
gollark: ... also array literals, bee their bad docs.
gollark: Please also give me write access to the repo.
gollark: Oh, right, array indexing.
gollark: ```python# parsita-based pseudocode syntax parserfrom stmt import *from parsita import *from parsita.util import constantdef compose(f, g): return lambda x: f(g(x))def map_expr(x): start, end = x if end == "": return start return Op([start, end[1]], end[0])def map_unop_expr(x): return Op(x[1], x[0])def aliases(name, aliases): p = lit(name) for alias in aliases: p |= (lit(alias) > (lambda _: name)) return pclass ExprParser(TextParsers): ε = lit("") IntLit = reg("\-?[0-9]+") > compose(IntLit, int) StrLit = "'" >> reg("[^']*") << "'" > StrLit # TODO escapes (not in "spec" but could be needed) FloatLit = reg("\-?[0-9]+\.[0-9]+") > compose(FloatLit, float) Identifier = reg("[a-zA-Z_]+[a-zA-Z_0-9]*") > Var BracketedExpr = "(" >> Expr << ")" UnaryOperator = lit("NOT") Start = FloatLit | StrLit | IntLit | BracketedExpr | (UnaryOperator & Expr > map_unop_expr) | Identifier # avoid left recursion problems by not doing left recursion # AQA pseudocode does not appear to have a notion of "operator precedence", simplifying parsing logic nicely BinaryOperator = aliases("≤", ["<="]) | aliases("≠", ["!="]) | aliases("≥", [">="]) | lit("DIV") | lit("MOD") | lit("AND") | lit("OR") | reg("[+/*\-=<>]") End = (BinaryOperator & Expr) | ε Expr = (Start & End) > map_exprparse = ExprParser.Expr.parsex = parse("1+2+3 != 6 AND NOT 4 AND x + y")if isinstance(x, Failure): print(x.message)else: print(x.value)```

See also

References

  1. "Conondale Range Great Walk". Department of Environment and Science. May 2018. Retrieved 15 August 2018.
  2. This Wikipedia article incorporates CC-BY-4.0 licensed text from: "Indigenous languages map of Queensland". State Library of Queensland. State Library of Queensland. Retrieved 5 February 2020.
  3. "Eastern Bristlebird". Department of Environment and Resource Management. 3 September 2009. Archived from the original on 5 January 2010. Retrieved 23 December 2009.
  4. "IBA: Conondale Range". Birdata. Birds Australia. Archived from the original on 6 July 2011. Retrieved 16 June 2011.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.