footprint2graph 1.0.0__tar.gz
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.
- footprint2graph-1.0.0/AUTHORS.md +5 -0
- footprint2graph-1.0.0/CONTRIBUTORS.md +14 -0
- footprint2graph-1.0.0/LICENCE +21 -0
- footprint2graph-1.0.0/MANIFEST.in +10 -0
- footprint2graph-1.0.0/PKG-INFO +21 -0
- footprint2graph-1.0.0/README.md +48 -0
- footprint2graph-1.0.0/data/network1.csv +11 -0
- footprint2graph-1.0.0/data/network2.csv +8 -0
- footprint2graph-1.0.0/doc/Makefile +24 -0
- footprint2graph-1.0.0/doc/requirements.txt +10 -0
- footprint2graph-1.0.0/doc/source/_static/footprint2graph.png +0 -0
- footprint2graph-1.0.0/doc/source/conf.py +117 -0
- footprint2graph-1.0.0/doc/source/examples/Simulated-Traj_Example.ipynb +882 -0
- footprint2graph-1.0.0/doc/source/examples/index.rst +38 -0
- footprint2graph-1.0.0/doc/source/img/Footprint2graph.png +0 -0
- footprint2graph-1.0.0/doc/source/img/IT2.png +0 -0
- footprint2graph-1.0.0/doc/source/img/footprint2graph.png +0 -0
- footprint2graph-1.0.0/doc/source/img/identifier_non.png +0 -0
- footprint2graph-1.0.0/doc/source/img/identifier_oui.png +0 -0
- footprint2graph-1.0.0/doc/source/img/input.png +0 -0
- footprint2graph-1.0.0/doc/source/img/pipeline.png +0 -0
- footprint2graph-1.0.0/doc/source/img/routes_aggregated.png +0 -0
- footprint2graph-1.0.0/doc/source/img/stop_break.png +0 -0
- footprint2graph-1.0.0/doc/source/index.rst +64 -0
- footprint2graph-1.0.0/doc/source/user_guide/index.rst +37 -0
- footprint2graph-1.0.0/doc/source/user_guide/install.rst +69 -0
- footprint2graph-1.0.0/doc/source/user_guide/intro.rst +52 -0
- footprint2graph-1.0.0/doc/source/user_guide/overview.rst +146 -0
- footprint2graph-1.0.0/footprint2graph/Pipeline.py +149 -0
- footprint2graph-1.0.0/footprint2graph/__init__.py +7 -0
- footprint2graph-1.0.0/footprint2graph/algo/__init__.py +9 -0
- footprint2graph-1.0.0/footprint2graph/algo/centerline.py +370 -0
- footprint2graph-1.0.0/footprint2graph/algo/conflation.py +383 -0
- footprint2graph-1.0.0/footprint2graph/algo/geometry.py +112 -0
- footprint2graph-1.0.0/footprint2graph/algo/segmentation.py +329 -0
- footprint2graph-1.0.0/footprint2graph/algo/smooth.py +56 -0
- footprint2graph-1.0.0/footprint2graph/pipeline/Geometry.py +576 -0
- footprint2graph-1.0.0/footprint2graph/pipeline/Image.py +732 -0
- footprint2graph-1.0.0/footprint2graph/pipeline/Selection.py +426 -0
- footprint2graph-1.0.0/footprint2graph/pipeline/Topology.py +242 -0
- footprint2graph-1.0.0/footprint2graph/pipeline/__init__.py +8 -0
- footprint2graph-1.0.0/footprint2graph/util/PlotRes.py +224 -0
- footprint2graph-1.0.0/footprint2graph/util/__init__.py +6 -0
- footprint2graph-1.0.0/footprint2graph/util/config.py +155 -0
- footprint2graph-1.0.0/footprint2graph/util/report.py +109 -0
- footprint2graph-1.0.0/footprint2graph.egg-info/PKG-INFO +21 -0
- footprint2graph-1.0.0/footprint2graph.egg-info/SOURCES.txt +54 -0
- footprint2graph-1.0.0/footprint2graph.egg-info/dependency_links.txt +1 -0
- footprint2graph-1.0.0/footprint2graph.egg-info/requires.txt +18 -0
- footprint2graph-1.0.0/footprint2graph.egg-info/top_level.txt +1 -0
- footprint2graph-1.0.0/requirements.txt +4 -0
- footprint2graph-1.0.0/requirements_dev.txt +6 -0
- footprint2graph-1.0.0/setup.cfg +7 -0
- footprint2graph-1.0.0/setup.py +54 -0
- footprint2graph-1.0.0/test/test_zone1.py +120 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
OutdoorFootprintNetworkPipeline contributors
|
|
2
|
+
=============================================
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Developers:
|
|
6
|
+
|
|
7
|
+
* Yann Méneroux - Researcher - IGN, Saint-Mandé (France)
|
|
8
|
+
* Marie-Dominique Van Damme - Research engineer - IGN, Champs sur Marne (France)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## All other contributors:
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 IntForOut projet ANR
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: footprint2graph
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: footprint2graph is an open-source Python processing pipeline (MIT license) for generating outdoor activity footprint networks from GNSS trajectories, representing, for example, hikers’ or runners’ footprints within a defined spatial and temporal extent.
|
|
5
|
+
Home-page: https://github.com/umrlastig/footprint2graph
|
|
6
|
+
Author: Marie-Dominique Van Damme, Yann Méneroux
|
|
7
|
+
Author-email: todo@ign.fr
|
|
8
|
+
License: MIT
|
|
9
|
+
Download-URL: https://github.com/umrlastig/footprint2graph/archive/refs/tags/v1.0.0.zip
|
|
10
|
+
Platform: UNKNOWN
|
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Requires-Python: >=3.10
|
|
15
|
+
Provides-Extra: dev
|
|
16
|
+
Provides-Extra: doc
|
|
17
|
+
License-File: LICENCE
|
|
18
|
+
License-File: AUTHORS.md
|
|
19
|
+
|
|
20
|
+
See ...
|
|
21
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Footprint2Graph
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<table style="border:none;border:0;width:60%"><tr>
|
|
5
|
+
<td align="center"><img width="800px" src="https://github.com/umrlastig/footprint2graph/blob/main/doc/source/img/footprint2graph.png" /></td>
|
|
6
|
+
</tr></table>
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
[](https://www.repostatus.org/#wip)
|
|
11
|
+
[](https://footprint2graph.readthedocs.io/en/latest/?badge=latest)
|
|
12
|
+
[](https://github.com/umrlastig/footprint2graph/blob/main/LICENCE)
|
|
13
|
+
[](https://github.com/umrlastig/footprint2graph/actions/workflows/pipeline.yml)
|
|
14
|
+
[](https://codecov.io/gh/umrlastig/footprint2graph)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Footprint2graph is an open-source Python processing pipeline (MIT license) for generating outdoor recreation activity footprint graphs from GNSS trajectories, representing, for example, hikers’ or runners’ footprints within a defined spatial and temporal extent. The pipeline includes several components, such as GNSS point map-matching onto a network and trajectory aggregation, both implemented using the Tracklib Python library.
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## Documentation
|
|
21
|
+
|
|
22
|
+
The online documentation is available at **[ReadTheDocs](https://footprint2graph.readthedocs.io)**
|
|
23
|
+
|
|
24
|
+
Specifically, the documentation includes end-to-end example:
|
|
25
|
+
- **with a set of simulated trajectories generated from a network** : [quickstart example](https://footprint2graph.readthedocs.io/en/latest/examples/Simulated-Traj_Example.html)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## Acknowledgments
|
|
31
|
+
|
|
32
|
+
This framework was developed as part of the [IntForOut research Project](https://www.umr-lastig.fr/intforout/) (Multisource spatial data INTegration FOR the Monitoring of Ecosystems under the pressure of OUTdoor recreation) and was supported by the ANR under grant agreement no. ANR-23-CE55-0003.
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## Development & Contributions
|
|
36
|
+
|
|
37
|
+
* Institute: LASTIG, Univ Gustave Eiffel, Géodata Paris, IGN
|
|
38
|
+
* License: MIT license
|
|
39
|
+
* Authors:
|
|
40
|
+
- Marie-Dominique Van Damme
|
|
41
|
+
- Yann Méneroux
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
link_id,source,target,direction,wkt,wkt_source,wkt_target
|
|
2
|
+
TRONROUT0000000067753679,0,1,0,"LINESTRING(996672.0001476444 6543015.199822203,996662.9002452027 6543011.5005655745,996654.2996751491 6543009.199753708,996647.4996431833 6543005.90009644,996643.0001691086 6543005.400448677,996642.2002230858 6543004.600037708,996643.7003614536 6543002.500362124,996649.5997781507 6542998.99983727,996656.4996231972 6542998.899977947,996660.5997956737 6542996.499556093,996670.6000471008 6542991.800530283,996676.7996889357 6542990.300294805,996689.0997904001 6542992.70065059,996693.5998702066 6542993.699564245,996696.900227793 6542995.100538067,996698.8001650142 6542994.500100396,996696.1999099653 6542991.800046499,996694.9001423083 6542989.099743627,996694.3002103153 6542987.599698841,996688.9999300549 6542982.400438958,996688.5998584719 6542980.29971154,996690.3003661497 6542979.699597644,996692.1001161451 6542980.699749199,996694.0999539726 6542984.10000569,996695.0000883589 6542983.299832222,996695.6002053947 6542980.000200123,996692.8996682938 6542976.600398964,996689.6996367387 6542973.499891957,996689.7000977783 6542971.699893227,996692.5000912616 6542971.5000306135,996702.7002712095 6542975.200480567,996712.7001841086 6542981.699660653,996726.000299286 6542992.0002396945,996729.5998403 6542997.100295776,996731.4997366584 6543001.599742369,996732.3002134103 6543002.900506179,996734.6002753475 6542999.700076977,996735.1002796085 6542993.300306422,996736.9000163263 6542991.199630542,996738.4000230315 6542991.900621628,996739.3002821566 6542996.500525978,996740.3002670078 6543004.400679287,996741.699802334 6543006.4998992905,996743.4998768619 6543004.999619716,996746.0002148924 6542999.0004827175,996745.6002070028 6542995.7001096485,996745.9002264033 6542993.499947113,996747.8003173919 6542992.800580668,996750.2996886305 6542996.299599307,996752.1997950333 6542999.100216025,996751.7003451941 6543005.600075945,996754.5998923245 6543016.199648725,996758.9998166872 6543023.800130814,996768.5000540714 6543037.599762093,996774.3998535438 6543045.199697292,996782.4997937453 6543052.200461561,996784.3001789419 6543055.599961632,996786.5002472943 6543056.600678739,996786.2998305187 6543054.000427402,996782.8996411159 6543045.099835801,996781.3002689718 6543037.799855792,996781.500091735 6543030.200321337,996780.6001428247 6543024.699856893,996782.0000980091 6543021.500214854,996785.2002105052 6543012.499823325,996789.3003118159 6542997.700562144,996792.2997357575 6542987.799868244,996792.0003646002 6542985.000245156,996791.4002881609 6542983.199993652,996793.1996691816 6542983.20063943,996797.7003932344 6542986.199810011,996799.4997095544 6542990.900081401,996801.2003032315 6543002.299782884,996801.1002424903 6543011.5996743,996802.5000168155 6543015.099803324,996803.899804228 6543015.099950894,996805.699911102 6543012.800298086,996807.3997205314 6543007.500555471,996810.100326591 6542998.800569498,996811.9997961099 6542989.9004706675,996810.7999304362 6542981.500286836,996808.8000065428 6542977.000403407,996807.4999505482 6542973.699682202,996809.5003524697 6542973.299835037,996813.899730236 6542976.90003379,996816.4003445758 6542981.299708617,996822.1000693233 6542989.600422262,996824.5000568483 6542996.199937107,996826.099804441 6543009.100143813,996826.7996949446 6543021.100559295,996829.6002386849 6543027.999704604)", POINT(996672.0001476444 6543015.199822203), POINT(996829.6002386849 6543027.999704604)
|
|
3
|
+
TRONROUT0000000067753685,2,3,0,"LINESTRING(996631.0001957308 6543026.300497017,996625.7999048486 6543019.999894142,996622.5999230782 6543013.300496552,996616.6999434077 6543017.900598596,996610.2001196363 6543024.500651562,996606.7001714266 6543029.499622807,996603.2998307187 6543028.000454121,996594.3000448535 6543033.399649365,996586.5999376401 6543037.60001445,996583.0003517596 6543039.199808972,996577.0000603516 6543038.000328497,996573.4996962638 6543036.499658845,996572.9000847816 6543034.8006288,996574.0999651159 6543032.699711327,996580.6998951281 6543031.199902438,996581.6996968288 6543029.400585202,996579.299979852 6543028.100074614,996573.6996900609 6543027.100118941)", POINT(996631.0001957308 6543026.300497017), POINT(996573.6996900609 6543027.100118941)
|
|
4
|
+
TRONROUT0000000067753688,4,2,0,"LINESTRING(996528.1998577414 6543026.200190661,996534.4002365118 6543033.800007666,996541.2002334052 6543038.300290181,996550.10015809 6543040.699963856,996555.7000208427 6543042.3002546765,996560.6999569214 6543042.799660165,996561.8996597689 6543045.100385161,996568.1001092375 6543047.100058747,996571.3998772941 6543049.600515922,996575.1000837976 6543050.500497466,996579.9997161857 6543051.49981399,996585.6998684839 6543053.399628658,996591.2000257603 6543054.00004557,996595.8998161978 6543054.400419305,996602.1003942543 6543051.99959174,996607.7996240607 6543051.199908483,996614.4996861822 6543047.700402311,996622.6998013915 6543040.200024132,996626.1998317881 6543034.000310958,996631.0001957308 6543026.300497017)", POINT(996528.1998577414 6543026.200190661), POINT(996631.0001957308 6543026.300497017)
|
|
5
|
+
TRONROUT0000000067753690,5,0,0,"LINESTRING(996671.3996258434 6543028.5001698835,996674.4002579309 6543025.700619343,996679.4000609005 6543020.399800337,996681.3996940677 6543018.800231767,996681.8001953525 6543016.000119398,996675.0000982804 6543015.4999657655,996672.0001476444 6543015.199822203)", POINT(996671.3996258434 6543028.5001698835), POINT(996672.0001476444 6543015.199822203)
|
|
6
|
+
TRONROUT0000000067753693,6,5,0,"LINESTRING(996664.5996325733 6543066.799986316,996668.6997060736 6543060.899588272,996670.5003202024 6543053.600112502,996671.3996638694 6543042.600150029,996671.299928051 6543033.000386447,996671.3996258434 6543028.5001698835)", POINT(996664.5996325733 6543066.799986316), POINT(996671.3996258434 6543028.5001698835)
|
|
7
|
+
TRONROUT0000000067753695,7,6,0,"LINESTRING(996618.7001893073 6543136.499915524,996621.0997963422 6543133.900209591,996627.9002549178 6543126.299679769,996636.0997646793 6543121.800069514,996643.8997789313 6543120.000569323,996651.3003011938 6543116.200444988,996658.5002203916 6543109.099635012,996662.4997628308 6543102.200396953,996661.499851496 6543095.800095756,996662.4997723872 6543087.299916443,996664.4002699868 6543075.400169146,996665.3002099787 6543069.199920233,996664.5996325733 6543066.799986316)", POINT(996618.7001893073 6543136.499915524), POINT(996664.5996325733 6543066.799986316)
|
|
8
|
+
TRONROUT0000000067753697,0,2,0,"LINESTRING(996672.0001476444 6543015.199822203,996665.4999952789 6543017.600496277,996650.6002892044 6543022.00060086,996640.7000286368 6543025.999621167,996635.4003061107 6543028.39965649,996631.0001957308 6543026.300497017)", POINT(996672.0001476444 6543015.199822203), POINT(996631.0001957308 6543026.300497017)
|
|
9
|
+
TRONROUT0000000067753699,8,5,0,"LINESTRING(996660.9997360329 6543044.600310491,996667.2999864414 6543033.399959061,996669.599949612 6543030.200614643,996671.3996258434 6543028.5001698835)", POINT(996660.9997360329 6543044.600310491), POINT(996671.3996258434 6543028.5001698835)
|
|
10
|
+
TRONROUT0000002492848414,6,8,0,"LINESTRING(996664.5996325733 6543066.799986316,996660.5002492608 6543070.400084875,996655.3001891114 6543079.700385192,996651.4996974209 6543084.800373381,996649.5001180028 6543085.200309796,996649.7002523339 6543081.700038008,996648.6997209114 6543074.800506921,996648.2001951234 6543071.199571218,996652.4999842152 6543061.199605329,996660.9997360329 6543044.600310491)", POINT(996664.5996325733 6543066.799986316), POINT(996660.9997360329 6543044.600310491)
|
|
11
|
+
TRONROUT0000002492848415,0,8,0,"LINESTRING(996672.0001476444 6543015.199822203,996672.4002214193 6543017.300548505,996665.1997774083 6543021.100357852,996660.0997652824 6543025.700331216,996659.299637504 6543029.300453709,996659.1003533527 6543031.600011718,996660.4000987391 6543035.499948839,996660.4000837564 6543041.00007322,996660.9997360329 6543044.600310491)", POINT(996672.0001476444 6543015.199822203), POINT(996660.9997360329 6543044.600310491)
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
WKT;link_id;source;target;direction;wkt_source;wkt_target
|
|
2
|
+
"LINESTRING (996672.000147644 6543015.1998222,996662.900245203 6543011.50056557,996654.299675149 6543009.19975371,996647.499643183 6543005.90009644,996643.000169109 6543005.40044868,996642.200223086 6543004.60003771,996643.700361454 6543002.50036212,996649.599778151 6542998.99983727,996656.499623197 6542998.89997795,996660.599795674 6542996.49955609,996670.600047101 6542991.80053028,996676.799688936 6542990.30029481,996689.0997904 6542992.70065059,996693.599870207 6542993.69956424,996696.900227793 6542995.10053807,996698.800165014 6542994.5001004,996696.199909965 6542991.8000465,996694.900142308 6542989.09974363,996694.300210315 6542987.59969884,996688.999930055 6542982.40043896,996688.599858472 6542980.29971154,996690.30036615 6542979.69959764,996692.100116145 6542980.6997492,996694.099953973 6542984.10000569,996695.000088359 6542983.29983222,996695.600205395 6542980.00020012,996692.899668294 6542976.60039896,996689.699636739 6542973.49989196,996689.700097778 6542971.69989323,996692.500091262 6542971.50003061,996702.700271209 6542975.20048057,996712.700184109 6542981.69966065,996726.000299286 6542992.00023969,996729.5998403 6542997.10029578,996731.499736658 6543001.59974237,996732.30021341 6543002.90050618,996734.600275347 6542999.70007698,996735.100279609 6542993.30030642,996736.900016326 6542991.19963054,996738.400023032 6542991.90062163,996739.300282157 6542996.50052598,996740.300267008 6543004.40067929,996741.699802334 6543006.49989929,996743.499876862 6543004.99961972,996746.000214892 6542999.00048272,996745.600207003 6542995.70010965,996745.900226403 6542993.49994711,996747.800317392 6542992.80058067,996750.299688631 6542996.29959931,996752.199795033 6542999.10021602,996751.700345194 6543005.60007595,996754.599892325 6543016.19964872,996758.999816687 6543023.80013081,996768.500054071 6543037.59976209,996774.399853544 6543045.19969729,996782.499793745 6543052.20046156,996784.300178942 6543055.59996163,996786.500247294 6543056.60067874,996786.299830519 6543054.0004274,996782.899641116 6543045.0998358,996781.300268972 6543037.79985579,996781.500091735 6543030.20032134,996780.600142825 6543024.69985689,996782.000098009 6543021.50021485,996785.200210505 6543012.49982333,996789.300311816 6542997.70056214,996792.299735758 6542987.79986824,996792.0003646 6542985.00024516,996791.400288161 6542983.19999365,996793.199669182 6542983.20063943,996797.700393234 6542986.19981001,996799.499709554 6542990.9000814,996801.200303231 6543002.29978288,996801.10024249 6543011.5996743,996802.500016815 6543015.09980332,996803.899804228 6543015.09995089,996805.699911102 6543012.80029809,996807.399720531 6543007.50055547,996810.100326591 6542998.8005695,996811.99979611 6542989.90047067,996810.799930436 6542981.50028684,996808.800006543 6542977.00040341,996807.499950548 6542973.6996822,996809.50035247 6542973.29983504,996813.899730236 6542976.90003379,996816.400344576 6542981.29970862,996822.100069323 6542989.60042226,996824.500056848 6542996.19993711,996826.099804441 6543009.10014381,996826.799694945 6543021.1005593,996829.600238685 6543027.9997046)";TRONROUT0000000067753679;"0";"1";faux; POINT(996672.0001476444 6543015.199822203); POINT(996829.6002386849 6543027.999704604)
|
|
3
|
+
"LINESTRING (996631.000195731 6543026.30049702,996625.799904849 6543019.99989414,996622.599923078 6543013.30049655,996616.699943408 6543017.9005986,996610.200119636 6543024.50065156,996606.700171427 6543029.49962281,996603.299830719 6543028.00045412,996594.300044853 6543033.39964936,996586.59993764 6543037.60001445,996583.00035176 6543039.19980897,996577.000060352 6543038.0003285,996573.499696264 6543036.49965885,996572.900084782 6543034.8006288,996574.099965116 6543032.69971133,996580.699895128 6543031.19990244,996581.699696829 6543029.4005852,996579.299979852 6543028.10007461,996573.699690061 6543027.10011894)";TRONROUT0000000067753685;"2";"3";faux; POINT(996631.0001957308 6543026.300497017); POINT(996573.6996900609 6543027.100118941)
|
|
4
|
+
"LINESTRING (996528.199857741 6543026.20019066,996534.400236512 6543033.80000767,996541.200233405 6543038.30029018,996550.10015809 6543040.69996386,996555.700020843 6543042.30025468,996560.699956921 6543042.79966016,996561.899659769 6543045.10038516,996568.100109237 6543047.10005875,996571.399877294 6543049.60051592,996575.100083798 6543050.50049747,996579.999716186 6543051.49981399,996585.699868484 6543053.39962866,996591.20002576 6543054.00004557,996595.899816198 6543054.40041931,996602.100394254 6543051.99959174,996607.799624061 6543051.19990848,996614.499686182 6543047.70040231,996622.699801391 6543040.20002413,996626.199831788 6543034.00031096,996631.000195731 6543026.30049702)";TRONROUT0000000067753688;"4";"2";faux; POINT(996528.1998577414 6543026.200190661); POINT(996631.0001957308 6543026.300497017)
|
|
5
|
+
"LINESTRING (996671.399625843 6543028.50016988,996674.400257931 6543025.70061934,996679.4000609 6543020.39980034,996681.399694068 6543018.80023177,996681.800195353 6543016.0001194,996675.00009828 6543015.49996577,996672.000147644 6543015.1998222)";TRONROUT0000000067753690;"5";"0";faux; POINT(996671.3996258434 6543028.5001698835); POINT(996672.0001476444 6543015.199822203)
|
|
6
|
+
"LINESTRING (996664.599632573 6543066.79998632,996668.699706074 6543060.89958827,996670.500320202 6543053.6001125,996671.399663869 6543042.60015003,996671.299928051 6543033.00038645,996671.399625843 6543028.50016988)";TRONROUT0000000067753693;"6";"5";faux; POINT(996664.5996325733 6543066.799986316); POINT(996671.3996258434 6543028.5001698835)
|
|
7
|
+
"LINESTRING (996618.700189307 6543136.49991552,996621.099796342 6543133.90020959,996627.900254918 6543126.29967977,996636.099764679 6543121.80006951,996643.899778931 6543120.00056932,996651.300301194 6543116.20044499,996658.500220392 6543109.09963501,996662.499762831 6543102.20039695,996661.499851496 6543095.80009576,996662.499772387 6543087.29991644,996664.400269987 6543075.40016915,996665.300209979 6543069.19992023,996664.599632573 6543066.79998632)";TRONROUT0000000067753695;"7";"6";faux; POINT(996618.7001893073 6543136.499915524); POINT(996664.5996325733 6543066.799986316)
|
|
8
|
+
"LINESTRING (996672.000147644 6543015.1998222,996665.499995279 6543017.60049628,996650.600289204 6543022.00060086,996640.700028637 6543025.99962117,996635.400306111 6543028.39965649,996631.000195731 6543026.30049702)";TRONROUT0000000067753697;"0";"2";faux; POINT(996672.0001476444 6543015.199822203); POINT(996631.0001957308 6543026.300497017)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Minimal makefile for Sphinx documentation
|
|
2
|
+
#
|
|
3
|
+
|
|
4
|
+
# You can set these variables from the command line, and also
|
|
5
|
+
# from the environment for the first two.
|
|
6
|
+
SPHINXOPTS =
|
|
7
|
+
SPHINXBUILD = sphinx-build
|
|
8
|
+
SPHINXPROJ =
|
|
9
|
+
SOURCEDIR = source
|
|
10
|
+
BUILDDIR = public
|
|
11
|
+
|
|
12
|
+
# Put it first so that "make" without argument is like "make help".
|
|
13
|
+
help:
|
|
14
|
+
@$(SPHINXBUILD) -b html -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
15
|
+
|
|
16
|
+
.PHONY: help Makefile
|
|
17
|
+
|
|
18
|
+
#serve:
|
|
19
|
+
# @cd public/html/ && python3 -m http.server
|
|
20
|
+
|
|
21
|
+
# Catch-all target: route all unknown targets to Sphinx using the new
|
|
22
|
+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
|
23
|
+
%: Makefile
|
|
24
|
+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
|
Binary file
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
# Configuration file for the Sphinx documentation builder.
|
|
2
|
+
#
|
|
3
|
+
# This file only contains a selection of the most common options. For a full
|
|
4
|
+
# list see the documentation:
|
|
5
|
+
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
6
|
+
|
|
7
|
+
# -- Path setup --------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
# If extensions (or modules to document with autodoc) are in another directory,
|
|
10
|
+
# add these directories to sys.path here. If the directory is relative to the
|
|
11
|
+
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
12
|
+
#
|
|
13
|
+
import os
|
|
14
|
+
import sys
|
|
15
|
+
|
|
16
|
+
#sys.path.insert(0, os.path.abspath("../.."))
|
|
17
|
+
#sys.path.append(os.path.abspath(".."))
|
|
18
|
+
sys.path.append(os.path.abspath("../.."))
|
|
19
|
+
sys.path.append(os.path.abspath("../../footprint2graph"))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# -- Project information -----------------------------------------------------
|
|
23
|
+
|
|
24
|
+
project = "footprint2graph"
|
|
25
|
+
copyright = (
|
|
26
|
+
"2026, LASTIG lab, French National Institute of Geographic and Forest Information"
|
|
27
|
+
)
|
|
28
|
+
author = "Marie-Dominique Van Damme, Yann Méneroux"
|
|
29
|
+
|
|
30
|
+
# The full version, including alpha/beta/rc tags
|
|
31
|
+
release = "1.0"
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
# -- General configuration ---------------------------------------------------
|
|
35
|
+
|
|
36
|
+
# Add any Sphinx extension module names here, as strings. They can be
|
|
37
|
+
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
38
|
+
# ones.
|
|
39
|
+
extensions = [
|
|
40
|
+
"recommonmark",
|
|
41
|
+
"sphinx.ext.autodoc",
|
|
42
|
+
"sphinx.ext.todo",
|
|
43
|
+
"sphinx.ext.viewcode",
|
|
44
|
+
"sphinx_autodoc_typehints",
|
|
45
|
+
"nbsphinx",
|
|
46
|
+
"autodocsumm",
|
|
47
|
+
"IPython.sphinxext.ipython_console_highlighting"
|
|
48
|
+
]
|
|
49
|
+
# 'sphinx_gallery.load_style',
|
|
50
|
+
|
|
51
|
+
# I execute the notebooks manually in advance. If notebooks test the code,
|
|
52
|
+
# they should be run at build time.
|
|
53
|
+
#nbsphinx_execute = 'never'
|
|
54
|
+
#nbsphinx_allow_errors = True
|
|
55
|
+
|
|
56
|
+
# Add type of source files
|
|
57
|
+
# '.ipynb'
|
|
58
|
+
source_suffix = ['.rst', '.md']
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
# Add any paths that contain templates here, relative to this directory.
|
|
62
|
+
templates_path = ["_templates"]
|
|
63
|
+
|
|
64
|
+
# List of patterns, relative to source directory, that match files and
|
|
65
|
+
# directories to ignore when looking for source files.
|
|
66
|
+
# This pattern also affects html_static_path and html_extra_path.
|
|
67
|
+
exclude_patterns = ["_build", "public", "_static", "Thumbs.db", ".DS_Store", "**.ipynb_checkpoints"]
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
# The name of the Pygments (syntax highlighting) style to use.
|
|
71
|
+
pygments_style = "sphinx"
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
# -- Options for HTML output -------------------------------------------------
|
|
75
|
+
|
|
76
|
+
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
77
|
+
# a list of builtin themes.
|
|
78
|
+
#
|
|
79
|
+
#html_theme = "sphinx_rtd_theme"
|
|
80
|
+
html_theme = "pydata_sphinx_theme"
|
|
81
|
+
|
|
82
|
+
html_theme_options = {
|
|
83
|
+
"icon_links": [
|
|
84
|
+
{
|
|
85
|
+
# Label for this link
|
|
86
|
+
"name": "GitHub",
|
|
87
|
+
# URL where the link will redirect
|
|
88
|
+
"url": "https://github.com/umrlastig/footprint2graph", # required
|
|
89
|
+
# Icon class (if "type": "fontawesome"), or path to local image (if "type": "local")
|
|
90
|
+
"icon": "fa-brands fa-square-github",
|
|
91
|
+
# The type of image to be used (see below for details)
|
|
92
|
+
"type": "fontawesome",
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
#html_static_path = ['_static']
|
|
99
|
+
html_logo = "_static/footprint2graph.png"
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
# Add any paths that contain custom static files (such as style sheets) here,
|
|
105
|
+
# relative to this directory. They are copied after the builtin static files,
|
|
106
|
+
# so a file named "default.css" will overwrite the builtin "default.css".
|
|
107
|
+
# html_static_path = ["_static"]
|
|
108
|
+
|
|
109
|
+
autodoc_default_options = {
|
|
110
|
+
"member-order": "bysource",
|
|
111
|
+
"special-members": "__init__, __str__",
|
|
112
|
+
"undoc-members": True,
|
|
113
|
+
"private-members": True,
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
autodoc_mock_imports = []
|