Get web server going

This commit is contained in:
2025-12-04 05:23:33 -08:00
parent 6f5cf83a56
commit 2254d293a0
14 changed files with 1916 additions and 48 deletions
+4 -4
View File
@@ -594,10 +594,10 @@ def main():
formatter_class=argparse.RawDescriptionHelpFormatter,
epilog="""
Examples:
python compare_roads.py roads1.geojson roads2.geojson
python compare_roads.py roads1.geojson roads2.geojson --tolerance 100 --min-length 200
python compare_roads.py roads1.geojson roads2.geojson --output differences.geojson
python compare_roads.py roads1.geojson roads2.geojson --jobs 8 --chunk-size 2000
python diff_highways.py roads1.geojson roads2.geojson
python diff_highways.py roads1.geojson roads2.geojson --tolerance 100 --min-length 200
python diff_highways.py roads1.geojson roads2.geojson --output differences.geojson
python diff_highways.py roads1.geojson roads2.geojson --jobs 8 --chunk-size 2000
"""
)