Комарица (Вологодская область)

Multi tool use
У этого топонима есть и другие значения, см. Комарица.
Деревня |
Комарица |
59°40′11″ с. ш. 42°05′13″ в. д.HGЯO
|
Страна |
Россия Россия
|
Субъект Федерации |
Вологодская область
|
Муниципальный район |
Тотемский район
|
Сельское поселение |
Погореловское
|
История и география |
Тип климата |
умеренно-континентальный |
Часовой пояс |
UTC+3
|
Население |
Население |
10 человек (2002)
|
Цифровые идентификаторы |
Почтовый индекс |
161327
|
Код ОКАТО |
19 246 848 009
|
Код ОКТМО |
19 646 448 141
|
Прочее |
Рег. номер |
6262 |
Показать/скрыть карты
|
Комарица — деревня в Тотемском районе Вологодской области.
Входит в состав Погореловского сельского поселения[1], с точки зрения административно-территориального деления — в Погореловский сельсовет.
Расположена на левом берегу реки Тиксна. Расстояние по автодороге до районного центра Тотьмы — 65,5 км, до центра муниципального образования деревни Погорелово — 16,3 км. Ближайшие населённые пункты — Светица, Топориха, Юбилейный.
По переписи 2002 года население — 10 человек[2].
Примечания |
↑ Закон Вологодской области от 06.12.2004 № 1124-ОЗ Об установлении границ Тотемского муниципального района, границах и статусе муниципальных образований, входящих в его состав
↑ Данные переписи 2002 года: таблица 2С. М.: Федеральная служба государственной статистики, 2004.
Ссылки |
Комарица (недоступная ссылка) в реестре населённых пунктов Вологодской области
 Населённые пункты Погореловского сельского поселения
|
Боярское
| Быково
| Горбенцово
| Горка
| Жилино
| Залесье
| Ивакино
| Комарица
| Косновица
| Котельное
| Мальцево
| Маныловица
| Маслиха
| Петрилово
| Погорелово
| Погост
| Подгорная
| Родная
| Светица
| Семенково
| Топориха
| Федоровская
| Фоминское
| Черепаниха
| Юбилейный
| Якуниха
|
 Населённые пункты Тотемского района
|
|
5maD,xJrN,w IPAi56,y2gx,dX,SNHc,EN,96,Pf,n0 JNmwzpJcpVwqs1aU6D2,qEYoC44
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 ...