Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Jul 20, 2021
1 parent 14f5220 commit 2d48d73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gdal/frmts/stacta/stactadataset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ extern "C" void GDALRegister_STACTA();
CPL_CVSID("$Id$")

// Implements a driver for
// https://github.com/radiantearth/stac-spec/tree/master/extensions/tiled-assets
// https://github.com/stac-extensions/tiled-assets

/************************************************************************/
/* STACTARasterBand() */
Expand Down Expand Up @@ -400,7 +400,7 @@ CPLErr STACTARawDataset::IRasterIO( GDALRWFlag eRWFlag,
// reading
return GDALDataset::IRasterIO(eRWFlag, nXOff, nYOff, nXSize, nYSize,
pData, nBufXSize, nBufYSize,
eBufType,
eBufType,
nBandCount, panBandMap,
nPixelSpace, nLineSpace, nBandSpace,
psExtraArg);
Expand All @@ -410,7 +410,7 @@ CPLErr STACTARawDataset::IRasterIO( GDALRWFlag eRWFlag,

// If the (uncompressed) size of a metatile is small enough, then download
// it entirely to minimize the number of network requests
const bool bDownloadWholeMetaTile =
const bool bDownloadWholeMetaTile =
m_poMasterDS->m_bDownloadWholeMetaTile ||
(static_cast<GIntBig>(m_nMetaTileWidth) * m_nMetaTileHeight *
nBands * nDTSize < 128 * 1024);
Expand Down Expand Up @@ -572,7 +572,7 @@ CPLErr STACTARawDataset::IRasterIO( GDALRWFlag eRWFlag,
nBufYOff * nLineSpace,
nBufXSizeEffective,
nBufYSizeEffective,
eBufType,
eBufType,
nBandCount, panBandMap,
nPixelSpace, nLineSpace, nBandSpace,
&sExtraArgs) != CE_None )
Expand Down

0 comments on commit 2d48d73

Please sign in to comment.