result = geowarp({
in_bbox: bbox_of_geotiff,
in_data: rasters,
in_height: geotiff_height,
in_layout: "[band][row,column]",
in_srs: "EPSG:3857",
in_width: geotiff_width,
out_height: geotiff_height,
out_layout: "[row,column,band]",
out_srs,
out_width: geotiff_width,
forward: proj4("EPSG:3857", out_srs).forward,
inverse: proj4("EPSG:3857", out_srs).inverse,
cutline: sri_lanka_geojson,
cutline_srs: 4326,
cutline_forward: proj4("EPSG:4326", out_srs).forward,
method: "near"
});