Tuen, Queensland

Tuen is a locality in the Shire of Paroo, Queensland, Australia.[2] In the 2016 census, Tuen had a population of 12 people.[1]

Tuen
Queensland
Burringun Road approaching the bridge over Tuen Creek
Tuen
Coordinates28.5263°S 145.735°E / -28.5263; 145.735
Population12 (2016 census)[1]
 • Density0.0098/km2 (0.0253/sq mi)
Postcode(s)4490
Area1,228.3 km2 (474.2 sq mi)
LGA(s)Shire of Paroo
State electorate(s)Warrego
Federal Division(s)Maranoa
Suburbs around Tuen:
Cuttaburra Cunnamulla Widgeegoara
Cuttaburra Tuen Noorama
Cuttaburra Barringun Noorama

Geography

The Warrego River flows from the north of the locality through to the south. The Mitchell Highway (also known as Barringun Road) runs roughly parallel and east of the river. Tuen Creek flows from the south-east of the locality and joins the Warrego River in roughly the centre of the locality; the highway crosses Tuen Creek near the confluence and at that spot is the undeveloped town of Tuen, a grid of 4 x 3 streets (28.5659°S 145.70603°E / -28.5659; 145.70603 (Town at Tuen, Queensland)).[3]

History

The locality derives its name from Tuen Creek.[2]

In April 1881, 57 town lots were offered for sale in the town of Tuen "at the junction of Warrego River and Tuen Creek" with prices starting from £8 per acre.[4] Some lots were sold as 20 of them were owned by Margaret Heuston at her death in 1910.[5] Her husband Robert Heuston operated the Tuen Hotel beside the Barringun Road until at least 1913, after which it may have been operated by the Gwydir family.[6] In 1925, the hotel was taken over by retired policeman Robert Winterburn until at least 1934.[6][7] There is no evidence the hotel was operating in the 1940s.[6]

Today there is no visual evidence remaining of a town and no town is gazetted at that location.[3]

gollark: My tape download program now supports downloading big files without splitting them, via range requests, assuming they're served from a server which supports it: https://pastebin.com/LW9RFpmY (do `web2tape https://url.whatever range`)
gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.

References

  1. Australian Bureau of Statistics (27 June 2017). "Tuen (SSC)". 2016 Census QuickStats. Retrieved 20 October 2018.
  2. "Tuen - locality in Shire of Paroo (entry 47845)". Queensland Place Names. Queensland Government. Retrieved 26 October 2018.
  3. "Queensland Globe". State of Queensland. Retrieved 26 October 2018.
  4. "Official Notifications". The Brisbane Courier. XXXV (7, 264). Queensland, Australia. 23 April 1881. p. 6. Retrieved 27 October 2018 via National Library of Australia.
  5. "Advertising". The Brisbane Courier (16, 589). Queensland, Australia. 13 March 1911. p. 11. Retrieved 27 October 2018 via National Library of Australia.
  6. Queensland electoral rolls
  7. "BUNDANBA SEND-OFF". Queensland Times. LXVI (12, 286). Queensland, Australia. 28 November 1925. p. 13 (DAILY.). Retrieved 27 October 2018 via National Library of Australia.

Media related to Tuen, Queensland at Wikimedia Commons


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