-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,6 +84,7 @@ python -m rosreestr2coord -c 38:06:144003:4723 | |
- -P - загрузка через прокси | ||
- -C - экспортировать только центры участков | ||
- -v - показать версию | ||
- -u - установить адрес прокси (http://user:[email protected]:9876) | ||
|
||
### Программно | ||
|
||
|
@@ -101,6 +102,7 @@ area = Area("38:06:144003:4723") | |
# center_only=False - экспорт координат центров участка | ||
# with_proxy=False - запросы через прокси | ||
# use_cache=True - использовать кэширование запросов | ||
# proxy_url - адрес прокси сервера | ||
area.to_geojson() | ||
area.to_geojson_poly() | ||
area.get_coord() # [[[area1_xy], [hole1_xy], [hole2_xy]], [[area2_xyl]]] | ||
|
@@ -109,8 +111,10 @@ area.get_attrs() | |
|
||
## Журнал | ||
|
||
- 17-12-2023 - **v.4.1.6** | ||
- Добавлена возможность указывать конкретный прокси в командной строке [#81](https://github.com/rendrom/rosreestr2coord/pull/81) by [sergeybarkov](https://github.com/sergeybarkov) | ||
- 05.10.2022 - **v.4.1.5** | ||
- Добавлена поддержка кадастровых номеров с номером контура (...:XXXX/C) ()[#65](https://github.com/rendrom/rosreestr2coord/issues/65) | ||
- Добавлена поддержка кадастровых номеров с номером контура (...:XXXX/C) [#65](https://github.com/rendrom/rosreestr2coord/issues/65) | ||
- 16.09.2022 - **v.4.1.4** | ||
- Исправлено кэширование пустых ответов [#63](https://github.com/rendrom/rosreestr2coord/issues/63) | ||
- 05.07.2022 - **v.4.1.3** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "rosreestr2coord" | ||
version = "4.2.6" | ||
version = "4.2.7" | ||
license = "MIT" | ||
description = "Get coordinates of area by cadastral number" | ||
authors = ["Artemiy Doroshkov <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = "4.2.6" | ||
VERSION = "4.2.7" |