21st parallel south

The 21st parallel south is a circle of latitude that is 21 degrees south of the Earth's equatorial plane. It crosses the Atlantic Ocean, Africa, the Indian Ocean, Australasia, the Pacific Ocean and South America.

21°
21st parallel south

Around the world

Starting at the Prime Meridian and heading eastwards, the parallel 21° south passes through:

Co-ordinates Country, territory or ocean Notes
21°00′S 00°00′E Atlantic Ocean
21°00′S 13°31′E  Namibia
21°00′S 21°00′E  Botswana
21°00′S 27°42′E  Zimbabwe
21°00′S 32°28′E  Mozambique
21°00′S 35°06′E Indian Ocean Mozambique Channel
21°00′S 43°52′E  Madagascar
21°00′S 48°27′E Indian Ocean
21°00′S 55°15′E  France Island of Réunion
21°00′S 55°43′E Indian Ocean Passing just south of Barrow Island, Western Australia,  Australia
21°00′S 116°08′E  Australia Western Australia
Northern Territory
Queensland
21°00′S 149°06′E Pacific Ocean Coral Sea
Passing through  Australia's Coral Sea Islands Territory
21°00′S 164°41′E  New Caledonia
21°00′S 165°24′E Pacific Ocean Coral Sea
21°00′S 167°04′E  New Caledonia Lifou Island
21°00′S 167°22′E Pacific Ocean Passing just north of Tongatapu island,  Tonga
Passing just north of Rarotonga island,  Cook Islands
Passing just south of Anuanuraro atoll,  French Polynesia
Passing just north of Anuanurunga atoll,  French Polynesia
Passing just north of Nukutepipi atoll,  French Polynesia
21°00′S 70°10′W  Chile
21°00′S 68°22′W  Bolivia
21°00′S 62°15′W  Paraguay
21°00′S 57°50′W  Brazil Mato Grosso do Sul
São Paulo State
Minas Gerais
Rio de Janeiro State
Espírito Santo
21°00′S 40°48′W Atlantic Ocean
gollark: Sure? I would move it to beside <#733816666089062511> but mobile.
gollark: Heavpoot is to be declared SCP-3125-A with immediate effect.
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.

See also

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