File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -619,7 +619,7 @@ class GeoTIFFImage {
619
619
* interleaved typed array.
620
620
* Colorspaces other than RGB will be transformed to RGB, color maps expanded.
621
621
* When no other method is applicable, the first sample is used to produce a
622
- * greayscale image.
622
+ * grayscale image.
623
623
* When provided, only a subset of the raster is read for each sample.
624
624
*
625
625
* @param {Object } [options] optional parameters
Original file line number Diff line number Diff line change @@ -85,9 +85,9 @@ class RemoteSource extends BaseSource {
85
85
if ( slices . length > 1 ) {
86
86
// we requested more than one slice, but got only the first
87
87
// unfortunately, some HTTP Servers don't support multi-ranges
88
- // and return onyl the first
88
+ // and return only the first
89
89
90
- // get the rest of the slices and fetch them iteratetively
90
+ // get the rest of the slices and fetch them iteratively
91
91
const others = await Promise . all ( slices . slice ( 1 ) . map ( ( slice ) => this . fetchSlice ( slice , signal ) ) ) ;
92
92
return first . concat ( others ) ;
93
93
}
You can’t perform that action at this time.
0 commit comments