Skip to content

Commit

Permalink
use strict and warnings in dataset_rasterize.t
Browse files Browse the repository at this point in the history
Update the file accordingly
  • Loading branch information
shawnlaffan committed Dec 19, 2023
1 parent 1d789f5 commit ec3b328
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion t/dataset_rasterize.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
use 5.010;
use strict;
use warnings;

use Geo::GDAL::FFI;

use Test::More;
Expand Down Expand Up @@ -162,7 +165,7 @@ sub test_Rasterize {


sub get_test_raster {
my $name = 'test_ras' . time() + rand() . '.tiff';
my $name = 'test_ras' . (time() + rand()) . '.tiff';
my $tiff = Geo::GDAL::FFI::GetDriver('GTiff')->Create('test.tiff', 3, 2);
my $ogc_wkt =
'GEOGCS["WGS 84",DATUM["WGS_1984",SPHEROID["WGS84",6378137,298.257223563,'.
Expand Down

0 comments on commit ec3b328

Please sign in to comment.