Koshi Zone

Multi tool use
Zone in Nepal
Koshi कोशी अञ्चल
|
Zone |
 |
Country |
Nepal
|
Population (2011)
|
• Total |
2,335,047 |
Time zone |
UTC+5:45 (Nepal Time) |
Koshi (Nepali: कोशी अञ्चल
Listen (help·info)) was one of the fourteen zones of Nepal until the restruction of zones to Provinces. The headquarters of Koshi Zone was Biratnagar which was also its largest city. Other cities of Koshi Zone were Inaruwa, Dharan, Dhankutta,jhumka,Duhabi and Itahari. Its main rivers were Arun, Tamor and Sapta Koshi.
Koshi is divided into six districts:
District
|
Type
|
Headquarters
|
Since 2015 part of Province
|
Bhojpur
|
Hill
|
Bhojpur
|
Province No. 1
|
Dhankuta
|
Hill
|
Dhankuta
|
Morang
|
Terai
|
Biratnagar
|
Sankhuwasabha
|
Mountain
|
Khandbari
|
Sunsari
|
Terai
|
Inaruwa
|
Terhathum
|
Hill
|
Myanglung
|
Famous and religious places
- Pindeswari Temple, Dharan
Budha Subba Temple, Dharan
- Panchakanya Temple, Dharan
- Bishnupaduka Temple, Dharan
- Kali Mandir, Biratnagar
- Chintaangdevi Temple, Dhankuta
- Namaste Jharana, Vedetar
- Ramdhuni Mandir, Dhuni Ban
- Jhumkeshwar Mahadev, Jhumka
- Barahkshetra Mandir Barahachhetra
- Auliya Baba Mandir, Chatara
- Jabdi Mata Mandir, Pakali
- Betana Shimsar, Belbari[citation needed]
See also
Development Regions of Nepal (Former)
List of zones of Nepal (Former)
- List of districts of Nepal
Former Development regions and zones of Nepal (1982-2015)
|
Eastern Region (Purwanchal) |
|
|
Central Region (Madhyamanchal) |
- Bagmati
- Janakpur
- Narayani
|
Western Region (Pashchimanchal) |
- Dhaulagiri
- Gandaki
- Lumbini
|
Mid-Western Region (Madhya Pashchimanchal) |
|
Far-Western Region (Sudur Pashchimanchal) |
|
Koshi basin
|
Rivers |
- Arun or Bum-chu
- Barun
- Bhote Koshi or Rongshar Tsangpo
- Dudh Kosi
- Hongu
- Imja Khola
- Indravati
- Kosi or Sapta Koshi
- Sabha
- Sangkhuwa
- Siswa
- Sun Kosi or Matsang Tsangpo
- Tamur
|
Dams, barrages, bridges |
- Koshi Barrage
- Kosi embankment
- Sino-Nepal Friendship Bridge
|
Geographical features |
- Tibetan Plateau
- Himalayas
- Mahabharat Range
- Sivalik Hills
- Chatra Gorge
|
Important localities |
- Nyalam/ Tsongdu
- Kodari
- Dolaghat
- Barabise
- Namche Bazaar
- Lukla
- Bhimnagar
- Supaul
- Khagaria
|
Floods |
- Floods in Bihar
- 2008 Bihar flood
|
Riparian districts/ areas |
Tibet Autonomous Region of China
|
- Nyalam County
- Tingri County
|
Nepal |
- Kosi Zone
- Sagarmatha Zone
|
Bihar, India
|
- Darbhanga division
- Kosi division
- Purnia division
- Munger division
|
|
Languages/ people |
- Standard Tibetan
- Nepali
- Nepal Bhasa
- Limbu
- Maithili
- Vajjika
|
Transport |
- Friendship Highway
- Araniko Highway
- Mahendra Highway
- NH 57
- NH 106
- NH 107
|
Other basins |
- Damodar
- Godavari
Mahanadi–Brahmani–Baitarani
- Narmada
- Son
|
Coordinates: 27°10′N 87°25′E / 27.167°N 87.417°E / 27.167; 87.417
R,WCpNhRi UzLViFb
這個網誌中的熱門文章
MGP Nordic Also known as Melodi Grand Prix Nordic Genre Song contest Created by DR Country of origin Denmark No. of episodes 5 contests Production Production location(s) Scandinavia Running time Various Distributor Nordvision Release Original network DR, NRK, SVT (2002–09) Yle Fem (2007–09) Original release 27 April 2002 ( 2002-04-27 ) – 28 November 2009 ( 2009-11-28 ) Chronology Preceded by De unges Melodi Grand Prix Related shows Dansk Melodi Grand Prix Junior Eurovision Song Contest MGP Nordic ( Melodi Grand Prix Nordic ) was a Scandinavian song contest for children aged 8 to 15, organized by DR, NRK, SVT and Yle through Yle Fem. It originated as a 2000 spin-off of Denmark's Eurovision Song Contest national final known as De unges Melodi Grand Prix , but expanded to become MGP Nordic in 2002 with the addition of Norway and Sweden. Contents 1 History 2 National selections 3 List of contests 4 ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I'm trying to build a Chat app UI, the idea of the Layout was pretty simple: When the input bar is focused, keyboard show up and "push" up the chat bar, as it's a grid, the ListView will resize to fit the screen: I update the input bar's margin to "push" it up: NSValue result = (NSValue)args.Notification.UserInfo.ObjectForKey(new NSString(UIKeyboard.FrameEndUserInfoKey)); CGSize keyboardSize = result.RectangleFValue.Size; if (Element != null){ Element.Margin = new Thickness(0, 0, 0,keyboardSize.Height); //push the entry up to keyboard height when keyboard is activated } And this is ...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
2
Can someone explain to me how to implement the post-redirect-get pattern in Spring WebFlux and Thymeleaf? What subscribes on the database save method? @GetMapping("/register") public String showRegisterForm(Model model) { model.addAttribute("user", new User()); return "register"; } @PostMapping public String processRegisterForm(@Valid User user, BindingResult bindingResult) { if (bindingResult.hasErrors()) { return "register"; } else { userRepository.save(user); //what subscribes on this? //how to redirect on e.g. "/login"? ...