File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 2323from geogenalg .application .generalize_clusters_to_centroids import (
2424 GeneralizePointClustersAndPolygonsToCentroids ,
2525)
26+ from geogenalg .application .generalize_fences import GeneralizeFences
2627from geogenalg .utility .dataframe_processing import read_gdf_from_file_and_set_index
2728
2829GEOPACKAGE_URI_HELP = (
@@ -194,6 +195,14 @@ def get_class_attribute_docstrings(cls: type[Any]) -> dict[str, str]:
194195 ),
195196]
196197
198+ GeoPackageOptionMandatory = Annotated [
199+ GeoPackageURI ,
200+ typer .Option (
201+ parser = geopackage_uri ,
202+ help = GEOPACKAGE_URI_HELP ,
203+ ),
204+ ]
205+
197206ReferenceGeoPackageList = Annotated [
198207 list [NamedGeoPackageURI ],
199208 typer .Option (
@@ -270,6 +279,7 @@ def build_app() -> None:
270279 """
271280 commands_and_algs = {
272281 "clusters_to_centroids" : GeneralizePointClustersAndPolygonsToCentroids ,
282+ "fences" : GeneralizeFences ,
273283 }
274284
275285 for cli_command_name , alg in commands_and_algs .items ():
You can’t perform that action at this time.
0 commit comments