Skip to content

Commit

Permalink
vectorize function error
Browse files Browse the repository at this point in the history
  • Loading branch information
iamtekson committed Jan 14, 2023
1 parent b01b8e1 commit b04e0b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion geotile/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

__author__ = "Tek Kshetri"
__email__ = "[email protected]"
__version__ = "0.3.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion geotile/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def mosaic(input_folder: str, output_file: str, image_format: Optional[str] = 't


# vectorize the tiles
def vectorize(input_raster: str, output_file:str, band (Optional: str) = 1, mask (Optional: str) = None):
def vectorize(input_raster: str, output_file:str, band: Optional[int] = 1, mask: Optional[str] = None):
"""Vectorize the raster
This method is used to vectorize the raster
Expand Down

0 comments on commit b04e0b9

Please sign in to comment.