Skip to content

Commit 968e55c

Browse files
committedNov 1, 2015
[GRASS] fixed test
1 parent 24960da commit 968e55c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎tests/src/providers/grass/testqgsgrassprovider.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,10 @@ void TestQgsGrassProvider::rasterImport()
765765
}
766766

767767
QStringList rasterFiles;
768-
rasterFiles << "tenbytenraster.asc" << "landsat.tif" << "raster/band1_byte_ct_epsg4326.tif" << "raster/band1_int16_noct_epsg4326.tif";
768+
// tenbytenraster.asc does not have CRS, import to EPSG:4326 without reprojection fails
769+
// in G_adjust_Cell_head() (Illegal latitude for North)
770+
//rasterFiles << "tenbytenraster.asc";
771+
rasterFiles << "landsat.tif" << "raster/band1_byte_ct_epsg4326.tif" << "raster/band1_int16_noct_epsg4326.tif";
769772
rasterFiles << "raster/band1_float32_noct_epsg4326.tif" << "raster/band3_int16_noct_epsg4326.tif";
770773

771774
QgsCoordinateReferenceSystem mapsetCrs = QgsGrass::crsDirect( mGisdbase, mLocation );

0 commit comments

Comments
 (0)
Please sign in to comment.