Commit 8adda141 authored by Eric Duminil's avatar Eric Duminil
Browse files

Updated readme

parent 67b656e5
......@@ -41,9 +41,9 @@ For more control, use `run_workflow_with_citygml` directly:
from simstadt import run_workflow_with_citygml
results = run_workflow_with_citygml(
template="104_HeatDemandWithShadow", # name in templates/ or full Path
template="HeatDemandWithShadow", # name in templates/ or full Path
citygml_path="path/to/city.gml",
replaces={"<string>METEONORM_FILE</string>": "<string>Wuerzburg-hour.csv</string>"},
replaces={"<string>METEONORM_FILE</string>": "<string>Wuerzburg-hour.csv</string>"}, # optional
project_path=Path("path/to/project.proj"), # optional
)
print(results.kpis)
......@@ -93,10 +93,19 @@ simstadt --install
simstadt --gui
# Run a workflow from the command line
simstadt 104_HeatDemandWithShadow path/to/city.gml -v
simstadt HeatDemandWithShadow path/to/city.gml -v
# Save results to CSV or JSON
simstadt 104_HeatDemandWithShadow path/to/city.gml --save results.csv
simstadt PVWithShadow path/to/city.gml --save results.csv
# Save results to CSV or JSON
simstadt HeatDemand path/to/city.gml --save results.csv
# List output files
simstadt HeatDemand path/to/city.gml --files
# Debug information
simstadt PV path/to/city.gml --verbose
# Run RegionChooser (separate entry point)
regionchooser
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment