Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
AdeelH committed Jul 21, 2023
1 parent 8bac07d commit 6376d0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def __init__(self,
uris (Union[str, List[str]]): One or more URIs of images. If more
than one, the images will be mosaiced together using GDAL.
raster_transformers (List['RasterTransformer']): RasterTransformers
to use to trasnform chips after they are read.
to use to transform chips after they are read.
allow_streaming (bool): If True, read data without downloading the
entire file first. Defaults to False.
channel_order (Optional[Sequence[int]]): List of indices of
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def rasterio_source_config_upgrader(cfg_dict: dict, version: int) -> dict:
y_shift = cfg_dict.get('y_shift', 0)
if x_shift != 0 or y_shift != 0:
raise ConfigError('x_shift and y_shift are deprecated. '
'Use the ShiftTrasnformer instead.')
'Use the ShiftTransformer instead.')
try:
del cfg_dict['x_shift']
del cfg_dict['y_shift']
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self,
crs_transformer (CRSTransformer): A CRSTransformer defining the
mapping between pixel and map coords.
raster_transformers (List['RasterTransformer']): RasterTransformers
to use to trasnform chips after they are read.
to use to transform chips after they are read.
channel_order (Optional[Sequence[int]]): List of indices of
channels to extract from raw imagery. Can be a subset of the
available channels. If None, all channels available in the
Expand Down

0 comments on commit 6376d0c

Please sign in to comment.