diff --git a/geosyspy/geosys.py b/geosyspy/geosys.py index 7c20298..3a7f3a3 100644 --- a/geosyspy/geosys.py +++ b/geosyspy/geosys.py @@ -1289,3 +1289,14 @@ def get_farm_info_from_location(self, latitude: str, longitude: str): """ return self.__gis_service.get_farm_info_from_location(latitude, longitude) + + def get_municipio_id_from_geometry(self, geometry:str): + """get Municipio id from a geometry + + Args: + geometry (str): the geometry (WKT or GeosJson) to retrieve the municipio Id + Returns: + the internal id of the municipio + """ + + return self.__gis_service.get_municipio_id_from_geometry(geometry) \ No newline at end of file