Spaces:
Sleeping
Sleeping
Create logistics_engine.py
Browse files- logistics_engine.py +10 -0
logistics_engine.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def logistics_features():
|
| 2 |
+
# Proxy variables – replace with public indices later
|
| 3 |
+
congestion_index = 0.65
|
| 4 |
+
throughput_index = 0.72
|
| 5 |
+
|
| 6 |
+
return {
|
| 7 |
+
"port_congestion": congestion_index,
|
| 8 |
+
"throughput": throughput_index,
|
| 9 |
+
"logistics_friction": 1.0 - throughput_index
|
| 10 |
+
}
|