@@ -29,6 +29,16 @@ def test_main():
29
29
assert round (stats [0 ]['mean' ], 2 ) == 14.66
30
30
31
31
32
+ # remove after band_num alias is removed
33
+ def test_band_alias ():
34
+ polygons = os .path .join (DATA , 'polygons.shp' )
35
+ stats_a = zonal_stats (polygons , raster )
36
+ stats_b = zonal_stats (polygons , raster , band = 1 )
37
+ with pytest .deprecated_call ():
38
+ stats_c = zonal_stats (polygons , raster , band_num = 1 )
39
+ assert stats_a [0 ]['count' ] == stats_b [0 ]['count' ] == stats_c [0 ]['count' ]
40
+
41
+
32
42
def test_zonal_global_extent ():
33
43
polygons = os .path .join (DATA , 'polygons.shp' )
34
44
stats = zonal_stats (polygons , raster )
@@ -376,6 +386,27 @@ def test_some_nodata():
376
386
assert stats [1 ]['nodata' ] == 19
377
387
assert stats [1 ]['count' ] == 31
378
388
389
+
390
+ # update this if nan end up being incorporated into nodata
391
+ def test_nan_nodata ():
392
+ polygon = Polygon ([[0 , 0 ], [2 , 0 ], [2 , 2 ], [0 , 2 ]])
393
+ arr = np .array ([
394
+ [np .nan , 12.25 ],
395
+ [- 999 , 12.75 ]
396
+ ])
397
+ affine = Affine (1 , 0 , 0 ,
398
+ 0 , - 1 , 2 )
399
+
400
+ stats = zonal_stats (polygon , arr , affine = affine , nodata = - 999 ,
401
+ stats = 'nodata count sum mean min max' )
402
+
403
+ assert stats [0 ]['nodata' ] == 1
404
+ assert stats [0 ]['count' ] == 2
405
+ assert stats [0 ]['mean' ] == 12.5
406
+ assert stats [0 ]['min' ] == 12.25
407
+ assert stats [0 ]['max' ] == 12.75
408
+
409
+
379
410
def test_some_nodata_ndarray ():
380
411
polygons = os .path .join (DATA , 'polygons.shp' )
381
412
raster = os .path .join (DATA , 'slope_nodata.tif' )
@@ -427,6 +458,67 @@ def test_geojson_out():
427
458
assert 'count' in feature ['properties' ] # from zonal stats
428
459
429
460
461
+ # do not think this is actually testing the line i wanted it to
462
+ # since the read_features func for this data type is generating
463
+ # the properties field
464
+ def test_geojson_out_with_no_properties ():
465
+ polygon = Polygon ([[0 , 0 ], [0 , 0 ,5 ], [1 , 1.5 ], [1.5 , 2 ], [2 , 2 ], [2 , 0 ]])
466
+ arr = np .array ([
467
+ [100 , 1 ],
468
+ [100 , 1 ]
469
+ ])
470
+ affine = Affine (1 , 0 , 0 ,
471
+ 0 , - 1 , 2 )
472
+
473
+ stats = zonal_stats (polygon , arr , affine = affine , geojson_out = True )
474
+ assert 'properties' in stats [0 ]
475
+ for key in ['count' , 'min' , 'max' , 'mean' ]:
476
+ assert key in stats [0 ]['properties' ]
477
+
478
+ assert stats [0 ]['properties' ]['mean' ] == 34
479
+
480
+
481
+ # remove when copy_properties alias is removed
482
+ def test_copy_properties_warn ():
483
+ polygons = os .path .join (DATA , 'polygons.shp' )
484
+ # run once to trigger any other unrelated deprecation warnings
485
+ # so the test does not catch them instead
486
+ stats_a = zonal_stats (polygons , raster )
487
+ with pytest .deprecated_call ():
488
+ stats_b = zonal_stats (polygons , raster , copy_properties = True )
489
+ assert stats_a == stats_b
490
+
491
+
492
+ def test_nan_counts ():
493
+ from affine import Affine
494
+ transform = Affine (1 , 0 , 1 , 0 , - 1 , 3 )
495
+
496
+ data = np .array ([
497
+ [np .nan , np .nan , np .nan ],
498
+ [0 , 0 , 0 ],
499
+ [1 , 4 , 5 ]
500
+ ])
501
+
502
+ # geom extends an additional row to left
503
+ geom = 'POLYGON ((1 0, 4 0, 4 3, 1 3, 1 0))'
504
+
505
+ # nan stat is requested
506
+ stats = zonal_stats (geom , data , affine = transform , nodata = 0.0 , stats = "*" )
507
+
508
+ for res in stats :
509
+ assert res ['count' ] == 3 # 3 pixels of valid data
510
+ assert res ['nodata' ] == 3 # 3 pixels of nodata
511
+ assert res ['nan' ] == 3 # 3 pixels of nans
512
+
513
+ # nan are ignored if nan stat is not requested
514
+ stats = zonal_stats (geom , data , affine = transform , nodata = 0.0 , stats = "count nodata" )
515
+
516
+ for res in stats :
517
+ assert res ['count' ] == 3 # 3 pixels of valid data
518
+ assert res ['nodata' ] == 3 # 3 pixels of nodata
519
+ assert 'nan' not in res
520
+
521
+
430
522
def test_percent_cover_zonal_stats ():
431
523
polygon = Polygon ([[0 , 0 ], [0 , 0 ,5 ], [1 , 1.5 ], [1.5 , 2 ], [2 , 2 ], [2 , 0 ]])
432
524
arr = np .array ([
@@ -480,4 +572,3 @@ def test_geodataframe_zonal():
480
572
expected = zonal_stats (polygons , raster )
481
573
assert zonal_stats (df , raster ) == expected
482
574
483
-
0 commit comments