Skip to content

Commit

Permalink
S1TBX-925 Changed noDataValue to its true no data value 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun Lu authored and lveci committed Nov 21, 2022
1 parent f142fa4 commit bc21d52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class SRTM1HgtElevationModelDescriptor extends AbstractElevationModelDesc
private static final int NUM_Y_TILES = 120;
private static final int DEGREE_RES = 1;
public static final int PIXEL_RES = 3600;
public static final int NO_DATA_VALUE = -32768;
public static final int NO_DATA_VALUE = 0;

private static final int RASTER_WIDTH = NUM_X_TILES * PIXEL_RES;
private static final int RASTER_HEIGHT = NUM_Y_TILES * PIXEL_RES;
Expand Down

0 comments on commit bc21d52

Please sign in to comment.