We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f801e3 + e3c6b48 commit f52b729Copy full SHA for f52b729
loopstructural/main/model_manager.py
@@ -10,7 +10,7 @@
10
"""
11
12
from collections import defaultdict
13
-from typing import Callable
+from typing import Callable, Optional
14
15
import geopandas as gpd
16
import numpy as np
@@ -581,8 +581,8 @@ def export_feature_values_to_geodataframe(
581
points: np.ndarray,
582
scalar_type: str = 'scalar',
583
attributes: 'pd.DataFrame' = None,
584
- crs: str | None = None,
585
- value_field_name: str | None = None,
+ crs: Optional[str] = None,
+ value_field_name: Optional[str] = None,
586
) -> 'gpd.GeoDataFrame':
587
"""Evaluate a feature on points and return a GeoDataFrame with results.
588
0 commit comments