Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/v1/tutorials/export_to_quicfire.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ surface_grid = (
remove_non_burnable=["NB1", "NB2"],
)
.with_uniform_fuel_moisture(
value=0.15,
value=15.0,
feature_masks=["road", "water"]
)
.build()
Expand Down Expand Up @@ -264,7 +264,7 @@ This replaces the manual `.with_uniform_fuel_moisture()` call from Step 8 above:
surface_config = {
"fuelMoisture": {
"source": "uniform",
"value": 0.05, # 5% moisture content
"value": 5, # 5% moisture content
"featureMasks": ["road", "water"]
}
}
Expand Down Expand Up @@ -356,7 +356,7 @@ surface_config = {

"fuelMoisture": {
"source": "uniform", # Currently only uniform supported
"value": 0.15, # Moisture content (0.0-1.0)
"value": 15, # Moisture content (%)
"featureMasks": ["road", "water"]
}
}
Expand Down Expand Up @@ -475,7 +475,7 @@ surface_config = {
},
"fuelMoisture": {
"source": "uniform",
"value": 0.08, # Very dry conditions (8%)
"value": 8, # Very dry conditions (8%)
"featureMasks": ["road"]
}
}
Expand Down Expand Up @@ -515,7 +515,7 @@ features_config = {
surface_config = {
"fuelMoisture": {
"source": "uniform",
"value": 0.12,
"value": 12,
"featureMasks": ["road"] # Only road masks
}
}
Expand Down
4 changes: 2 additions & 2 deletions fastfuels_sdk/v1/convenience.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def export_roi(
},
"fuelMoisture": {
"source": "uniform",
"value": 0.15, # Fuel moisture content (0.0-1.0)
"value": 15, # Fuel moisture content (%)
"featureMasks": ["road", "water"]
}
}
Expand Down Expand Up @@ -521,7 +521,7 @@ def export_roi(
>>> surface_config = {
... "fuelMoisture": {
... "source": "uniform",
... "value": 0.05,
... "value": 5,
... "featureMasks": ["road", "water"]
... }
... }
Expand Down
2 changes: 1 addition & 1 deletion fastfuels_sdk/v1/grids/grids.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def create_surface_grid(
>>> grid = grids.create_surface_grid(
... attributes=["fuelLoad", "fuelMoisture"],
... fuel_load={"source": "uniform", "value": 0.5},
... fuel_moisture={"source": "uniform", "value": 0.1}
... fuel_moisture={"source": "uniform", "value": 15.0}
... )

See Also
Expand Down
Loading