Бочанка (приток Тобола)

Multi tool use
Бочанка |
Характеристика |
Длина |
66 км |
Бассейн |
572 км² |
Водоток |
Устье
.mw-parser-output .ts-comment-commentedText{border-bottom:1px dotted;cursor:help}@media(hover:none){.mw-parser-output .ts-comment-commentedText:not(.rt-commentedText){border-bottom:0;cursor:auto}}
(B)
|
Тобол
|
• Местоположение |
370 км по правому берегу |
• Координаты
|
56°50′54″ с. ш. 66°34′03″ в. д.HGЯO
|
Расположение |
Водная система |
Тобол → Иртыш → Обь → Карское море
|
|
Страна |
Россия Россия
|
Регион |
Тюменская область
|
Районы |
Ялуторовский район, Заводоуковский городской округ
|
Код в ГВР
|
14010502612111200004155[1]
|
|
У этого термина существуют и другие значения, см. Бочанка.
Бочанка — река в России, протекает в Тюменской области. Устье реки находится в 370 км по правому берегу реки Тобол. Длина реки составляет 66 км[2].
Притоки |
- 1,8 км: Каньга
- 2,5 км: Тунгусла
- 36 км: Нижняя Синьга
- 40 км: Синьга
Данные водного реестра |
По данным государственного водного реестра России относится к Иртышскому бассейновому округу, водохозяйственный участок реки — Тобол от впадения реки Исеть и до устья, без рек Тура, Тавда, речной подбассейн реки — Тобол. Речной бассейн реки — Иртыш[2].
Код объекта в государственном водном реестре — 14010502612111200004155[2].
Примечания |
↑ Ресурсы поверхностных вод СССР: Гидрологическая изученность. Т. 11. Средний Урал и Приуралье. Вып. 2. Тобол / под ред. В. В. Николаенко. — Л.: Гидрометеоиздат, 1965. — 240 с.
↑ 123 Государственный водный реестр РФ: Бочанка. Архивировано 23 августа 2012 года.
 Реки бассейна — Тобол от впадения реки Исети до устья, без рек Туры и Тавды
|
Амбаш | Аталык | Ахмыль | Бичнус | Болтан | Большой Агарак | Бочанка | Варваринская | Деньгина | Заимка | Иска | Каньга | Коктюль | Куличек | Кучеметьевка | Малый Агарак | Нерда | Нижняя Синьга | Отнога | Синьга | Суклемка | Супруг | Суховская | Тап | Тауш | Тунгусла | Тунгусла | Турба | Уварыш | Укроп | Хмелевка | Шайтанка | Шестаковка | Юрга
|
6X gw7XcAYAA R e4G 7t2istUpPDT5KiYr,rP8x1GfCNW9zJNdNyqdAJFSva TXU8ZOLs4o1 fQyWvDu
Popular posts from this blog
up vote
0
down vote
favorite
Good day all. I have a window that pops up saying Fatal Program Failure (AnyDesk). This is what I have done so far: Uninstalled AnyDesk and reinstalled it. ( The window still appeared ) I disabled AnyDesk start up in Msconfig and the window seems to have disapeared. Lastly I made sure that AnyDesk worked by remoting into it, and it worked. Today the same window appeared. How do I get rid of this window?
remote-desktop
share | improve this question
edited 10 hours ago
Tomasz Jakub Rup
552 3 13
...
up vote
0
down vote
favorite
I need help with an issue we're facing in a project where we are moving from a Windows-based POS environment to one running on CentOS7. The problem consists of a number of factors, please find the details below: The supplier of our POS application will only deliver an application that is hard-coded to run in a 1024:768 4:3 format. The hardware we are using is a POS unit from HP that has a built-in 16:9 touch-screen. The employees using this solution is not supposed to see nor have access to anything but the POS application. Our sales organization demands that touch is an available feature when going live with the new POS environment. Going further into this, allow me to explain what we have encountered on the way trying to achieve the goal of having a touch-screen: We've simply change...
up vote
9
down vote
favorite
2
This question already has an answer here:
error: incompatible types: unexpected return value Char compare to String
3 answers
I have written a simple method which returns the boolean value. private boolean isActionAvailable(Collection<StudentConfiguration> studentConfigs){ if(studentConfigs != null) { studentConfigs.forEach(studentConfig -> { if(studentConfig.action() == null || !studentConfig.action().equals(Action.DELETE)) { return true; } }); } return false; } The method is throwing the following exception . error: incompatible types: unexpected return value ...