geovisio 2.5.0__py3-none-any.whl → 2.7.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geovisio/__init__.py +38 -8
- geovisio/admin_cli/__init__.py +2 -2
- geovisio/admin_cli/db.py +8 -0
- geovisio/config_app.py +64 -0
- geovisio/db_migrations.py +24 -3
- geovisio/templates/main.html +14 -14
- geovisio/templates/viewer.html +3 -3
- geovisio/translations/de/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/de/LC_MESSAGES/messages.po +667 -0
- geovisio/translations/en/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/en/LC_MESSAGES/messages.po +730 -0
- geovisio/translations/es/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/es/LC_MESSAGES/messages.po +778 -0
- geovisio/translations/fi/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fi/LC_MESSAGES/messages.po +589 -0
- geovisio/translations/fr/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/fr/LC_MESSAGES/messages.po +814 -0
- geovisio/translations/ko/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/ko/LC_MESSAGES/messages.po +685 -0
- geovisio/translations/messages.pot +686 -0
- geovisio/translations/nl/LC_MESSAGES/messages.mo +0 -0
- geovisio/translations/nl/LC_MESSAGES/messages.po +594 -0
- geovisio/utils/__init__.py +1 -1
- geovisio/utils/auth.py +50 -11
- geovisio/utils/db.py +65 -0
- geovisio/utils/excluded_areas.py +83 -0
- geovisio/utils/extent.py +30 -0
- geovisio/utils/fields.py +1 -1
- geovisio/utils/filesystems.py +0 -1
- geovisio/utils/link.py +14 -0
- geovisio/utils/params.py +20 -0
- geovisio/utils/pictures.py +94 -69
- geovisio/utils/reports.py +171 -0
- geovisio/utils/sequences.py +288 -126
- geovisio/utils/tokens.py +37 -42
- geovisio/utils/upload_set.py +654 -0
- geovisio/web/auth.py +50 -37
- geovisio/web/collections.py +305 -319
- geovisio/web/configuration.py +14 -0
- geovisio/web/docs.py +288 -12
- geovisio/web/excluded_areas.py +377 -0
- geovisio/web/items.py +203 -151
- geovisio/web/map.py +322 -106
- geovisio/web/params.py +69 -26
- geovisio/web/pictures.py +14 -31
- geovisio/web/reports.py +399 -0
- geovisio/web/rss.py +13 -7
- geovisio/web/stac.py +129 -121
- geovisio/web/tokens.py +105 -112
- geovisio/web/upload_set.py +768 -0
- geovisio/web/users.py +100 -73
- geovisio/web/utils.py +38 -9
- geovisio/workers/runner_pictures.py +278 -183
- geovisio-2.7.0.dist-info/METADATA +95 -0
- geovisio-2.7.0.dist-info/RECORD +66 -0
- geovisio-2.5.0.dist-info/METADATA +0 -115
- geovisio-2.5.0.dist-info/RECORD +0 -41
- {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/LICENSE +0 -0
- {geovisio-2.5.0.dist-info → geovisio-2.7.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: geovisio
|
|
3
|
+
Version: 2.7.0
|
|
4
|
+
Summary: GeoVisio API - Main
|
|
5
|
+
Author-email: Adrien PAVIE <panieravide@riseup.net>, Antoine Desbordes <antoine.desbordes@gmail.com>
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Requires-Dist: Flask ~= 2.3
|
|
10
|
+
Requires-Dist: psycopg[pool] ~= 3.1
|
|
11
|
+
Requires-Dist: flasgger ~= 0.9.7
|
|
12
|
+
Requires-Dist: Pillow ~= 9.4
|
|
13
|
+
Requires-Dist: Flask-Cors ~= 4.0
|
|
14
|
+
Requires-Dist: fs ~= 2.4
|
|
15
|
+
Requires-Dist: fs-s3fs-forked ~= 1.1.3
|
|
16
|
+
Requires-Dist: flask-compress ~= 1.14
|
|
17
|
+
Requires-Dist: requests ~= 2.31
|
|
18
|
+
Requires-Dist: yoyo-migrations ~= 8.2
|
|
19
|
+
Requires-Dist: psycopg-binary ~= 3.1
|
|
20
|
+
Requires-Dist: python-dotenv ~= 0.21
|
|
21
|
+
Requires-Dist: authlib ~= 1.2
|
|
22
|
+
Requires-Dist: Flask-Executor ~= 1.0
|
|
23
|
+
Requires-Dist: geopic-tag-reader[write-exif] == 1.3.1
|
|
24
|
+
Requires-Dist: rfeed ~= 1.1.1
|
|
25
|
+
Requires-Dist: sentry-sdk[flask] ~= 1.31
|
|
26
|
+
Requires-Dist: pygeofilter[backend-native] ~= 0.2.4
|
|
27
|
+
Requires-Dist: python-dateutil ~= 2.8.2
|
|
28
|
+
Requires-Dist: tzdata ~= 2024.1
|
|
29
|
+
Requires-Dist: croniter ~= 2.0.5
|
|
30
|
+
Requires-Dist: pydantic ~= 2.7
|
|
31
|
+
Requires-Dist: pydantic-extra-types ~= 2.7
|
|
32
|
+
Requires-Dist: flask-babel ~= 4.0.0
|
|
33
|
+
Requires-Dist: geojson-pydantic ~= 1.1.0
|
|
34
|
+
Requires-Dist: flit ~= 3.9.0 ; extra == "build"
|
|
35
|
+
Requires-Dist: coverage ~= 6.5 ; extra == "dev"
|
|
36
|
+
Requires-Dist: protobuf ~= 4.21 ; extra == "dev"
|
|
37
|
+
Requires-Dist: mapbox-vector-tile ~= 2.0 ; extra == "dev"
|
|
38
|
+
Requires-Dist: pystac ~= 1.9 ; extra == "dev"
|
|
39
|
+
Requires-Dist: pytest ~= 8.3 ; extra == "dev"
|
|
40
|
+
Requires-Dist: pytest-datafiles ~= 2.0 ; extra == "dev"
|
|
41
|
+
Requires-Dist: pyexiv2 ~= 2.15 ; extra == "dev"
|
|
42
|
+
Requires-Dist: testcontainers ~= 4.1 ; extra == "dev"
|
|
43
|
+
Requires-Dist: requests-mock ~= 1.11 ; extra == "dev"
|
|
44
|
+
Requires-Dist: black ~= 24.1 ; extra == "dev"
|
|
45
|
+
Requires-Dist: pre-commit ~= 3.3 ; extra == "dev"
|
|
46
|
+
Requires-Dist: pyyaml ~= 6.0 ; extra == "dev"
|
|
47
|
+
Requires-Dist: openapi-spec-validator ~= 0.7 ; extra == "dev"
|
|
48
|
+
Requires-Dist: stac-api-validator ~= 0.6.3 ; extra == "dev"
|
|
49
|
+
Requires-Dist: mkdocs-material ~= 9.5.21 ; extra == "docs"
|
|
50
|
+
Requires-Dist: mkdocs-swagger-ui-tag ~= 0.6.10 ; extra == "docs"
|
|
51
|
+
Project-URL: Home, https://gitlab.com/panoramax/server/api
|
|
52
|
+
Project-URL: Source Code, https://gitlab.com/panoramax/server/api
|
|
53
|
+
Provides-Extra: build
|
|
54
|
+
Provides-Extra: dev
|
|
55
|
+
Provides-Extra: docs
|
|
56
|
+
|
|
57
|
+
#  Panoramax
|
|
58
|
+
|
|
59
|
+
__Panoramax__ is a digital resource for sharing and using 📍📷 field photos. Anyone can take photographs of places visible from the public streets and contribute them to the Panoramax database. This data is then freely accessible and reusable by all. More information available at [gitlab.com/panoramax](https://gitlab.com/panoramax) and [panoramax.fr](https://panoramax.fr/).
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# 🌐 Panoramax API
|
|
63
|
+
|
|
64
|
+
This repository only contains __the backend and web API__ of a Panoramax instance.
|
|
65
|
+
|
|
66
|
+
## Features
|
|
67
|
+
|
|
68
|
+
* A __web API__ to search and upload pictures collections
|
|
69
|
+
* Search pictures by ID, date, location
|
|
70
|
+
* Compatible with [SpatioTemporal Asset Catalog](https://stacspec.org/) and [OGC WFS 3](https://github.com/opengeospatial/WFS_FES) specifications
|
|
71
|
+
* Upload your pictures and sequences
|
|
72
|
+
* An easy-to-use __backend__
|
|
73
|
+
* Generates automatically thumbnail, small and tiled versions of your pictures
|
|
74
|
+
* Compatible with various filesystems (classic, S3, FTP...)
|
|
75
|
+
* Authentication and blurring API can be plugged-in for production-ready use
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## Install & run
|
|
79
|
+
|
|
80
|
+
Our [documentation](https://gitlab.com/panoramax/server/api/-/tree/develop/docs) will help you install, configure and run a Panoramax instance.
|
|
81
|
+
|
|
82
|
+
If at some point you're lost or need help, you can contact us through [issues](https://gitlab.com/panoramax/server/api/-/issues) or by [email](mailto:panieravide@riseup.net).
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
## Contributing
|
|
86
|
+
|
|
87
|
+
Pull requests are welcome. For major changes, please open an [issue](https://gitlab.com/panoramax/server/api/-/issues) first to discuss what you would like to change.
|
|
88
|
+
|
|
89
|
+
More information about developing is available in [documentation](https://gitlab.com/panoramax/server/api/-/tree/develop/docs).
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
## ⚖️ License
|
|
93
|
+
|
|
94
|
+
Copyright (c) Panoramax team 2022-2024, [released under MIT license](https://gitlab.com/panoramax/server/api/-/blob/develop/LICENSE).
|
|
95
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
geovisio/__init__.py,sha256=uFnmcVLE7WveiJ0LsK7qNN7WiVXldYlKLIG1J6RnD9M,6937
|
|
2
|
+
geovisio/config_app.py,sha256=TiG90GE4JXr0Le4a5bRMqTP02TBivb4deWmPLLd94Fc,10349
|
|
3
|
+
geovisio/db_migrations.py,sha256=9lHkyG_RiCWzrFkfwhkslScUsbCZScN-KVhkXrtnPDo,4560
|
|
4
|
+
geovisio/errors.py,sha256=uTn-kI7SUl5OPB8Mv3Qqu7Ucp5JvcqWPQFfgLCqsEpI,1376
|
|
5
|
+
geovisio/admin_cli/__init__.py,sha256=8xlb3WN1DtEVurW9B0VuOFtI33oRV5TvxV6hOkUUpM0,3173
|
|
6
|
+
geovisio/admin_cli/cleanup.py,sha256=SevtztDBN9844wT_6G_DubTNoK2b3N4n53LFgAPRxcI,4882
|
|
7
|
+
geovisio/admin_cli/db.py,sha256=mJ-cGuOAAsg-ovbP9L1kyL4xE0C4bYRuozzqQkaFyw8,897
|
|
8
|
+
geovisio/admin_cli/default_account_tokens.py,sha256=W-v5uPjCBvAujjAUx1HrfgjPj-tEyncb-EUMLpsWc9w,469
|
|
9
|
+
geovisio/admin_cli/reorder_sequences.py,sha256=LKKzdO2w4N-cQmi6rqKHKYG5YGzPxYRTbnfcPKakuYM,2826
|
|
10
|
+
geovisio/admin_cli/sequence_heading.py,sha256=BEPuRfCDXXpqSSzK2ysrxHf0OD4THzrMI_YK2uXQlGk,633
|
|
11
|
+
geovisio/templates/main.html,sha256=7s4eKMfWKCkpspRqeCx-G_euEq932ac-PLP5uBYGa48,2949
|
|
12
|
+
geovisio/templates/viewer.html,sha256=XIHlaKV_a_iOxmjcTdUdToVjt5nB2NkZlMhQLoDfTAg,865
|
|
13
|
+
geovisio/translations/messages.pot,sha256=-m51uG-Jr3h8yyhh--edb-nbCaB0rwlnbZC3Pf5nLV0,17416
|
|
14
|
+
geovisio/translations/de/LC_MESSAGES/messages.mo,sha256=4Zx9ZOcyP1g8fpm1GyVaWEX7DfWMdc0fzV3NK-Y7Lsw,16370
|
|
15
|
+
geovisio/translations/de/LC_MESSAGES/messages.po,sha256=1ixFHS45NsTbbQrn49oxWOlSQpETZ3bygKK25DKVdto,22448
|
|
16
|
+
geovisio/translations/en/LC_MESSAGES/messages.mo,sha256=Kbh0Y4BPspwssVhvLBZ7i6R1CEoipYbEH2fokM3P3qY,17721
|
|
17
|
+
geovisio/translations/en/LC_MESSAGES/messages.po,sha256=K2oQvqgISp6pXzyJc-xihOzfHSbfjwsYowEYdfFpgZc,24881
|
|
18
|
+
geovisio/translations/es/LC_MESSAGES/messages.mo,sha256=R1uvDSt0uKMV0gVr0foc_0iiYBLc1ls2ryBlWHVZ_DQ,19111
|
|
19
|
+
geovisio/translations/es/LC_MESSAGES/messages.po,sha256=NoyuXR_2iugWHLTcoUZSNLUSCpt8jMyl0FUD4p7N99w,26775
|
|
20
|
+
geovisio/translations/fi/LC_MESSAGES/messages.mo,sha256=Z52s0OukqMwi58FpfLnBd8ED429LPSGG4shba4HPFgY,626
|
|
21
|
+
geovisio/translations/fi/LC_MESSAGES/messages.po,sha256=UFT4YCfEazxLij8Ovk2vZqx55e2Yctbf_3xM5KDrXhw,14685
|
|
22
|
+
geovisio/translations/fr/LC_MESSAGES/messages.mo,sha256=wnsuokhgoduq-Vvmhc8HvxIe5_wjJPVsrms3hHnSfPE,20613
|
|
23
|
+
geovisio/translations/fr/LC_MESSAGES/messages.po,sha256=FqwR-VEHrN7_YzSYqIbvoEiV9YEjfrwQI53zgPanSNw,28020
|
|
24
|
+
geovisio/translations/ko/LC_MESSAGES/messages.mo,sha256=cqo1DInz1VObD4Cj_2Tqmm5dGoNQfpssRiyv8BaxxF4,426
|
|
25
|
+
geovisio/translations/ko/LC_MESSAGES/messages.po,sha256=uq19EZaeRB-obmE1hYnckA8T12JuuU3nXYyKaMR4tiU,17405
|
|
26
|
+
geovisio/translations/nl/LC_MESSAGES/messages.mo,sha256=RsL6Km4aFAS7lGLqP7Tqx2T-0Mlwqybl4ROCkpi7h68,433
|
|
27
|
+
geovisio/translations/nl/LC_MESSAGES/messages.po,sha256=R5c0GKQ2RgezM7wkYwymaSXZ68dhE30_c-WpjlV_Fxk,14613
|
|
28
|
+
geovisio/utils/__init__.py,sha256=g4SWVoV73cSXjf5-5D9-HmyB5xKmHSuxxOGWnx7W3V0,71
|
|
29
|
+
geovisio/utils/auth.py,sha256=iIssHEDqAWp5D514pmYjoAzr-Jy6VDSDM3STtM8M56o,10810
|
|
30
|
+
geovisio/utils/db.py,sha256=DFyCEB5-xTUo6sn79SYJCzuvlgFNDVyNJ48Mana5vPI,2625
|
|
31
|
+
geovisio/utils/excluded_areas.py,sha256=6f3wwsgNpJKxAXnHH8RKlktgHpsG-0QVNTWDDTFqPZ8,2585
|
|
32
|
+
geovisio/utils/extent.py,sha256=vzOHvbG6lpSNt7KrsaonBOx7Tz46S1J603gLbZvs36g,557
|
|
33
|
+
geovisio/utils/fields.py,sha256=sNAmrSJ4e-nqm0-LoyO3l4Zynb-Jy8swhwmL3UcDN_o,2129
|
|
34
|
+
geovisio/utils/filesystems.py,sha256=W_wH7TlvdEux_q4FP0XInxruxlbepFSEpJbPLO9Cnr4,4133
|
|
35
|
+
geovisio/utils/link.py,sha256=lMWSUcAjQzq-r-U6VEIMR2ViVs5K8PVX7coF6XMFrmk,378
|
|
36
|
+
geovisio/utils/params.py,sha256=s9kBPHm4gRhMx10SD7mOPdG0tR_n_O-g_rgL8Fife6s,630
|
|
37
|
+
geovisio/utils/pictures.py,sha256=B5tFa_v_WjGpyYJs8x5G11jTpD4GEqM8UzVrCdrU7Sk,23764
|
|
38
|
+
geovisio/utils/reports.py,sha256=PgU0Td48WJg6XCq043he8Jif3WCA9nOTaGE0Yovo3h0,5626
|
|
39
|
+
geovisio/utils/sentry.py,sha256=Dw0rW2sNFbcpGojzpa-vjtJ5S7BH_XhsqfuGYBjHCG0,3759
|
|
40
|
+
geovisio/utils/sequences.py,sha256=H2Ef-XhQf0OfbLuvuUHC1bX2o7n3UQ1E0fmszlNz18A,24874
|
|
41
|
+
geovisio/utils/time.py,sha256=-hOs7FSx-8eiGmMQtTOrCoF8d_yMlj2306vfxJftEr8,642
|
|
42
|
+
geovisio/utils/tokens.py,sha256=evcboxseJ1jt0LAOkQz-ZEZ--v2P3Lh9JsaldQeHzLg,2890
|
|
43
|
+
geovisio/utils/upload_set.py,sha256=yzL6MQLGUnipbdk4D3Q0InHV90tbbLSojLBe9phIRj8,24541
|
|
44
|
+
geovisio/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
geovisio/web/auth.py,sha256=bpMb6ch6LJ8FIIfzYcrAjLS2yvwO4ohrLXfxdSYGLsQ,6882
|
|
46
|
+
geovisio/web/collections.py,sha256=xgejdbUSWNGDGnVXIBh9Zq8LD0TapbhQBLhHv7dH_Ck,38037
|
|
47
|
+
geovisio/web/configuration.py,sha256=8pHGG6LEID1NqaiAq0qg4kdRG5_uuM_F25afLt62_G0,1706
|
|
48
|
+
geovisio/web/docs.py,sha256=LdMxqZQs3moYHWWxJDY2J_pCS3i2zLNi2IUJ9Lwtrwo,52519
|
|
49
|
+
geovisio/web/excluded_areas.py,sha256=5BNSZ0UqgFMtgvgrJ73eYGJXPJRnV-mGEs36WDRRxTk,13024
|
|
50
|
+
geovisio/web/items.py,sha256=Ms_ojboK22S1pAFZAuJPRkcqS9sd3grP7FOu4phQFbg,54291
|
|
51
|
+
geovisio/web/map.py,sha256=CoscEcuzGsEU27y2we-bWl7kfGkbe4Q9J4PUOgOtLpQ,20175
|
|
52
|
+
geovisio/web/params.py,sha256=1hO3MQuEXJBk5ZQAk-Mau9gRxwWUITxQkgtSnDEN06E,20542
|
|
53
|
+
geovisio/web/pictures.py,sha256=qbhgLsI6YtpFxXn1a3dzO66nnVrWglRZSXWmlfJr1tU,6394
|
|
54
|
+
geovisio/web/reports.py,sha256=8v9a4PMM9RsvSGadZEN2o5PTKG_TohjyMMEBfFeY13E,14123
|
|
55
|
+
geovisio/web/rss.py,sha256=NLUd2Or92tcKRaGUHAze6QMLWczHyzag9ybOzrA8djE,2962
|
|
56
|
+
geovisio/web/stac.py,sha256=V00aTv74faiCQRslsv1_dWZpZTNXAB5YryOA4O_sJh4,14382
|
|
57
|
+
geovisio/web/tokens.py,sha256=AeQE_Xkqb988wRNnT5fkPOB7xsrHDqyI2GXM7drqzIo,8904
|
|
58
|
+
geovisio/web/upload_set.py,sha256=uU0jtFjSYq0f0BwRKZ7sJxr6EEpnmp2D098YxoajcdY,30433
|
|
59
|
+
geovisio/web/users.py,sha256=HN6vcoTwi4VPoCofw2_o6HO7tLWh6mA6KfOe8w8Sv9c,8468
|
|
60
|
+
geovisio/web/utils.py,sha256=kudTbV4Tgtkbd4oUWFTFpyWNINpxAa-VQNbxYEiR6pM,3640
|
|
61
|
+
geovisio/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
geovisio/workers/runner_pictures.py,sha256=mqtjzbCZw0aRXhRki4CPEL5-9tq5q2kRqloKDFwpw9U,22151
|
|
63
|
+
geovisio-2.7.0.dist-info/LICENSE,sha256=iRFSz7MJ7_j4hh3hvIgzNbS2buy5NMva8lulaixd3IE,1069
|
|
64
|
+
geovisio-2.7.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
65
|
+
geovisio-2.7.0.dist-info/METADATA,sha256=alZz_qktBwhysrEBytugFi79xJUgIJAq_aiHwFSWZCY,4259
|
|
66
|
+
geovisio-2.7.0.dist-info/RECORD,,
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: geovisio
|
|
3
|
-
Version: 2.5.0
|
|
4
|
-
Summary: GeoVisio API - Main
|
|
5
|
-
Author-email: Adrien PAVIE <panieravide@riseup.net>, Antoine Desbordes <antoine.desbordes@gmail.com>
|
|
6
|
-
Requires-Python: >=3.9
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
-
Requires-Dist: Flask ~= 2.3
|
|
10
|
-
Requires-Dist: psycopg[pool] ~= 3.1
|
|
11
|
-
Requires-Dist: flasgger ~= 0.9.7
|
|
12
|
-
Requires-Dist: Pillow ~= 9.4
|
|
13
|
-
Requires-Dist: Flask-Cors ~= 4.0
|
|
14
|
-
Requires-Dist: fs ~= 2.4
|
|
15
|
-
Requires-Dist: fs-s3fs-forked ~= 1.1.3
|
|
16
|
-
Requires-Dist: flask-compress ~= 1.14
|
|
17
|
-
Requires-Dist: tqdm ~= 4.66
|
|
18
|
-
Requires-Dist: xmltodict ~= 0.13
|
|
19
|
-
Requires-Dist: requests ~= 2.31
|
|
20
|
-
Requires-Dist: yoyo-migrations ~= 8.2
|
|
21
|
-
Requires-Dist: psycopg-binary ~= 3.1
|
|
22
|
-
Requires-Dist: python-dotenv ~= 0.21
|
|
23
|
-
Requires-Dist: authlib ~= 1.2
|
|
24
|
-
Requires-Dist: Flask-Executor ~= 1.0
|
|
25
|
-
Requires-Dist: geopic-tag-reader[write-exif] ~= 1.0.5
|
|
26
|
-
Requires-Dist: rfeed ~= 1.1.1
|
|
27
|
-
Requires-Dist: sentry-sdk[flask] ~= 1.31
|
|
28
|
-
Requires-Dist: pygeofilter[backend-native] ~= 0.2.1
|
|
29
|
-
Requires-Dist: flit ~= 3.9.0 ; extra == "build"
|
|
30
|
-
Requires-Dist: coverage ~= 6.5 ; extra == "dev"
|
|
31
|
-
Requires-Dist: protobuf ~= 4.21 ; extra == "dev"
|
|
32
|
-
Requires-Dist: mapbox-vector-tile ~= 2.0 ; extra == "dev"
|
|
33
|
-
Requires-Dist: pystac ~= 1.7.3 ; extra == "dev"
|
|
34
|
-
Requires-Dist: pytest ~= 6.2 ; extra == "dev"
|
|
35
|
-
Requires-Dist: pytest-datafiles ~= 2.0 ; extra == "dev"
|
|
36
|
-
Requires-Dist: pyexiv2 ~= 2.8 ; extra == "dev"
|
|
37
|
-
Requires-Dist: testcontainers-compose ~= 0.0.1rc1 ; extra == "dev"
|
|
38
|
-
Requires-Dist: requests-mock ~= 1.11 ; extra == "dev"
|
|
39
|
-
Requires-Dist: black ~= 24.1 ; extra == "dev"
|
|
40
|
-
Requires-Dist: pre-commit ~= 3.3 ; extra == "dev"
|
|
41
|
-
Requires-Dist: pyyaml <= 5.3 ; extra == "dev"
|
|
42
|
-
Project-URL: Home, https://gitlab.com/geovisio/api
|
|
43
|
-
Project-URL: Source Code, https://gitlab.com/geovisio/api
|
|
44
|
-
Provides-Extra: build
|
|
45
|
-
Provides-Extra: dev
|
|
46
|
-
|
|
47
|
-
# 
|
|
48
|
-
|
|
49
|
-
__GeoVisio__ is a complete solution for storing and __serving your own 📍📷 geolocated pictures__ (like [StreetView](https://www.google.com/streetview/) / [Mapillary](https://mapillary.com/)).
|
|
50
|
-
|
|
51
|
-
➡️ __Give it a try__ at [panoramax.ign.fr](https://panoramax.ign.fr/) or [geovisio.fr](https://geovisio.fr/viewer) !
|
|
52
|
-
|
|
53
|
-
## 📦 Components
|
|
54
|
-
|
|
55
|
-
GeoVisio is __modular__ and made of several components, each of them standardized and ♻️ replaceable.
|
|
56
|
-
|
|
57
|
-

|
|
58
|
-
|
|
59
|
-
All of them are 📖 __open-source__ and available online:
|
|
60
|
-
|
|
61
|
-
| 🌐 Server | 💻 Client |
|
|
62
|
-
|:-----------------------------------------------------------------------:|:----------------------------------------------------:|
|
|
63
|
-
| [API](https://gitlab.com/geovisio/api) | [Website](https://gitlab.com/geovisio/website) |
|
|
64
|
-
| [Blur API](https://gitlab.com/geovisio/blurring) | [Web viewer](https://gitlab.com/geovisio/web-viewer) |
|
|
65
|
-
| [GeoPic Tag Reader](https://gitlab.com/geovisio/geo-picture-tag-reader) | [Command line](https://gitlab.com/geovisio/cli) |
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
# 🌐 GeoVisio API
|
|
69
|
-
|
|
70
|
-
This repository only contains __the backend and web API__.
|
|
71
|
-
|
|
72
|
-
## Features
|
|
73
|
-
|
|
74
|
-
* A __web API__ to search and upload pictures collections
|
|
75
|
-
* Search pictures by ID, date, location
|
|
76
|
-
* Compatible with [SpatioTemporal Asset Catalog](https://stacspec.org/) and [OGC WFS 3](https://github.com/opengeospatial/WFS_FES) specifications
|
|
77
|
-
* Upload your pictures and sequences
|
|
78
|
-
* An easy-to-use __backend__
|
|
79
|
-
* Generates automatically thumbnail, small and tiled versions of your pictures
|
|
80
|
-
* Compatible with various filesystems (classic, S3, FTP...)
|
|
81
|
-
* Authentication and blurring API can be plugged-in for production-ready use
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
## Install & run
|
|
85
|
-
|
|
86
|
-
Our [documentation](https://gitlab.com/geovisio/api/-/tree/develop/docs) will help you install, configure and run a GeoVisio instance.
|
|
87
|
-
|
|
88
|
-
If at some point you're lost or need help, you can contact us through [issues](https://gitlab.com/geovisio/api/-/issues) or by [email](mailto:panieravide@riseup.net).
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
## Contributing
|
|
92
|
-
|
|
93
|
-
Pull requests are welcome. For major changes, please open an [issue](https://gitlab.com/geovisio/api/-/issues) first to discuss what you would like to change.
|
|
94
|
-
|
|
95
|
-
More information about developing is available in [documentation](https://gitlab.com/geovisio/api/-/tree/develop/docs).
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
## 🤗 Special thanks
|
|
99
|
-
|
|
100
|
-

|
|
101
|
-
|
|
102
|
-
GeoVisio was made possible thanks to a group of ✨ __amazing__ people ✨ :
|
|
103
|
-
|
|
104
|
-
- __[GéoVélo](https://geovelo.fr/)__ team, for 💶 funding initial development and for 🔍 testing/improving software
|
|
105
|
-
- __[Carto Cité](https://cartocite.fr/)__ team (in particular Antoine Riche), for 💶 funding improvements on viewer (map browser, flat pictures support)
|
|
106
|
-
- __[La Fabrique des Géocommuns (IGN)](https://www.ign.fr/institut/la-fabrique-des-geocommuns-incubateur-de-communs-lign)__ for offering long-term support and funding the [Panoramax](https://panoramax.fr/) initiative and core team (Camille Salou, Mathilde Ferrey, Christian Quest, Antoine Desbordes, Jean Andreani, Adrien Pavie)
|
|
107
|
-
- Many _many_ __wonderful people__ who worked on various parts of GeoVisio or core dependencies we use : 🧙 Stéphane Péneau, 🎚 Albin Calais & Cyrille Giquello, 📷 [Damien Sorel](https://www.strangeplanet.fr/), Pascal Rhod, Nick Whitelegg...
|
|
108
|
-
- __[Adrien Pavie](https://pavie.info/)__, for ⚙️ initial development of GeoVisio
|
|
109
|
-
- And you all ✨ __GeoVisio users__ for making this project useful !
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
## ⚖️ License
|
|
113
|
-
|
|
114
|
-
Copyright (c) GeoVisio team 2022-2023, [released under MIT license](https://gitlab.com/geovisio/api/-/blob/develop/LICENSE).
|
|
115
|
-
|
geovisio-2.5.0.dist-info/RECORD
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
geovisio/__init__.py,sha256=52XMYQ4Q2DGAAHbldcs6DIH0j2sXP3U3yEG9irSY1X4,6344
|
|
2
|
-
geovisio/config_app.py,sha256=TlirDWCJyOz7xPRYL7vSllFTgLtxCoK7cQ2__BPFSF0,7718
|
|
3
|
-
geovisio/db_migrations.py,sha256=6phXwwVWR9_qMghzphb7Dqsm2dwIhB9Ipy6TIhWMVw0,3600
|
|
4
|
-
geovisio/errors.py,sha256=uTn-kI7SUl5OPB8Mv3Qqu7Ucp5JvcqWPQFfgLCqsEpI,1376
|
|
5
|
-
geovisio/admin_cli/__init__.py,sha256=o_bvqizOadIkGnCPdwSHpfen3v7-bW6vZFe7T3mK6RQ,3155
|
|
6
|
-
geovisio/admin_cli/cleanup.py,sha256=SevtztDBN9844wT_6G_DubTNoK2b3N4n53LFgAPRxcI,4882
|
|
7
|
-
geovisio/admin_cli/db.py,sha256=PG8OWrNNJPB62ng-08FesRLE2lMVdihdFHSHqojqxKs,716
|
|
8
|
-
geovisio/admin_cli/default_account_tokens.py,sha256=W-v5uPjCBvAujjAUx1HrfgjPj-tEyncb-EUMLpsWc9w,469
|
|
9
|
-
geovisio/admin_cli/reorder_sequences.py,sha256=LKKzdO2w4N-cQmi6rqKHKYG5YGzPxYRTbnfcPKakuYM,2826
|
|
10
|
-
geovisio/admin_cli/sequence_heading.py,sha256=BEPuRfCDXXpqSSzK2ysrxHf0OD4THzrMI_YK2uXQlGk,633
|
|
11
|
-
geovisio/templates/main.html,sha256=A4Kt8VRY7U1ZMuCKehl2yuFboY7cp9dXAFVJvXXNUBQ,2702
|
|
12
|
-
geovisio/templates/viewer.html,sha256=CS7zkQqIWMSbCvjh8NTftECha_-UEEQLmgXwEFi_bbA,892
|
|
13
|
-
geovisio/utils/__init__.py,sha256=tNKCk-F-VnonAj3K86RXjD8Xnq_9edY-CpV1_YKUcaE,67
|
|
14
|
-
geovisio/utils/auth.py,sha256=w3vBMupyU1n7Yde3j66Gz_BcGrXmrBRHhzaRWK7A1Ww,9395
|
|
15
|
-
geovisio/utils/fields.py,sha256=EaLJa_MEGIrOMVeAIrF8UZsIIgRI8DFgJRafFyqLt6s,2145
|
|
16
|
-
geovisio/utils/filesystems.py,sha256=dr1uvwgOGuK7y3UNF3GVGiXS-39Gs81QWGEfPwd-wbo,4148
|
|
17
|
-
geovisio/utils/pictures.py,sha256=LoOYoeyhdCgPx9pQpkn4Y8EzP3ad2cXhLoNKZihWrGI,22753
|
|
18
|
-
geovisio/utils/sentry.py,sha256=Dw0rW2sNFbcpGojzpa-vjtJ5S7BH_XhsqfuGYBjHCG0,3759
|
|
19
|
-
geovisio/utils/sequences.py,sha256=KGo6I2Oz6LjmLno6SNeDoD-5VbDYHc6mUkYzsQsUTZo,18068
|
|
20
|
-
geovisio/utils/time.py,sha256=-hOs7FSx-8eiGmMQtTOrCoF8d_yMlj2306vfxJftEr8,642
|
|
21
|
-
geovisio/utils/tokens.py,sha256=_GBaD7LZXaO5-gbaZ1taz1irljogIHXKQyeT8EtbT-U,3111
|
|
22
|
-
geovisio/web/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
geovisio/web/auth.py,sha256=eT6u_PgsZj8Ybc3PorqRnJUL22JijUtlyJLPchlaY1I,6440
|
|
24
|
-
geovisio/web/collections.py,sha256=30mKkOZI5Oxttt9nPE3o32XnYC5gnXiHhswACiC6CH0,39917
|
|
25
|
-
geovisio/web/configuration.py,sha256=ZUDhsmMC5ZFBqHRYRgJyxv20MNpBbSwgUdlR7ShrTLQ,1111
|
|
26
|
-
geovisio/web/docs.py,sha256=DAwkARct5uHarpqn3mY8b2J9eiMkaUuSD0ixv-vChR4,37671
|
|
27
|
-
geovisio/web/items.py,sha256=YqGMVJD-O57LwsHOE9vBj5cNnERmyx_2PUApHYg3cWg,51436
|
|
28
|
-
geovisio/web/map.py,sha256=Q_YVeom01pBBmkFivzNMUNMq4cBjl6wyXz8eGLS_3cs,12412
|
|
29
|
-
geovisio/web/params.py,sha256=n0gzoQAD0bSKEA4-PVOowhp06EUoOhbqR7CKlWz7HTU,18996
|
|
30
|
-
geovisio/web/pictures.py,sha256=R3INt-XxRfUbM0BZqZ0l1PlpQHYjp1WQhP3BHOZVizM,6889
|
|
31
|
-
geovisio/web/rss.py,sha256=RBYJIrvdNr_PtzrhDruY1ZQFNPH16EK7GtOfxP4roEY,2852
|
|
32
|
-
geovisio/web/stac.py,sha256=BkEQINQ8l5CiXmCs7cPTYjJ_Kc_JoTNs1-cNdHt-uaM,14075
|
|
33
|
-
geovisio/web/tokens.py,sha256=TVVQOzaMcReQ0pH4Wm1fAFF0fzf-qZEnY9YUo1SZeu8,9711
|
|
34
|
-
geovisio/web/users.py,sha256=9FGcPjKxRC1n-q4BvFdH2tsZ0s71gYXGwux8ggmEOA0,8109
|
|
35
|
-
geovisio/web/utils.py,sha256=D2PzDYx7tVLsxTv7lwmdSjcfUKf5jB4yP5BU5QehkoQ,2750
|
|
36
|
-
geovisio/workers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
geovisio/workers/runner_pictures.py,sha256=_JcIe0Hcb_bqyLkA_dMFo8ze1Yfy-MVfJCOjGCS3VTE,16395
|
|
38
|
-
geovisio-2.5.0.dist-info/LICENSE,sha256=iRFSz7MJ7_j4hh3hvIgzNbS2buy5NMva8lulaixd3IE,1069
|
|
39
|
-
geovisio-2.5.0.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
40
|
-
geovisio-2.5.0.dist-info/METADATA,sha256=QB4zToA7xLx_Td8FopnlybbcqVOZPZS7i0_hcYrDsC0,5767
|
|
41
|
-
geovisio-2.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|