Amga (river)

The Amga (Russian: Амга; Yakut: Амма) is a river in Sakha (Yakutia), Russia. The length of the river is 1,462 kilometres (908 mi). The area of its basin is 69,300 square kilometres (26,800 sq mi).[1] The Amga freezes up in the first half of October and stays under the ice until May.

Amga
Amga River near Verkhnyaya Amga
Location in the Sakha Republic, Russia
Location
CountryRussia
Physical characteristics
Source 
  locationAldan Highlands
MouthAldan
  coordinates
62°37′41″N 134°55′11″E
Length1,462 km (908 mi)
Basin size69,300 km2 (26,800 sq mi)
Discharge 
  average178 m3/s (6,300 cu ft/s)
Basin features
ProgressionAldanLenaLaptev Sea

Course

The river has its source in the Aldan Highlands. It forms the eastern limit of the Lena Plateau. It is the biggest tributary of the Aldan, which it joins on the left bank a few miles west of Khandyga.[2]

In some stretches river Amga is flanked by pillar-like rock formations.
gollark: My "fix" is this:```lua--[["Fix" for bug PS#E9DCC81BSummary: `pcall(getfenv, -1)` seemingly returned the environment outside the sandbox.Based on some testing, this seems like some bizarre optimization-type feature gone wrong.It seems that something is simplifying `pcall(getfenv)` to just directly calling `getfenv` and ignoring the environment... as well as, *somehow*, `function() return getfenv() end` and such.The initial attempt at making this work did `return (fn(...))` instead of `return fn(...)` in an attempt to make it not do this, but of course that somehow broke horribly. I don't know what's going on at this point.This is probably a bit of a performance hit, and more problematically liable to go away if this is actually some bizarre interpreter feature and the fix gets optimized away.Unfortunately I don't have any better ideas. Also, I haven't tried this with xpcall, but it's probably possible, so I'm attempting to fix that too.]]local real_pcall = pcallfunction _G.pcall(fn, ...) return real_pcall(function(...) local ret = {fn(...)} return unpack(ret) end, ...)end local real_xpcall = xpcallfunction _G.xpcall(fn, handler) return real_xpcall(function() local ret = {fn()} return unpack(ret) end, handler)end```which appears to work at least?
gollark: Fixed, but I don't really know how or why.
gollark: ... should I create a bug report?
gollark: It returns two, actually. The second one. I don't know *what* the first one is doing.
gollark: Is this some weird implementation thing or is Lua actually defined/specified to work like this?!

See also

References

  1. Река АМГА in the State Water Register of Russia (Russian)
  2. Приленское плато, Great Soviet Encyclopedia
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.