PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ calculate_geoxy_level()

raster2pgsql.calculate_geoxy_level (   gt,
  xy,
  level 
)

Definition at line 602 of file raster2pgsql.py.

602def calculate_geoxy_level(gt, xy, level):
603
604 # Update pixel resolution according to overview level
605 newgt = ( gt[0], gt[1] * float(level), gt[2], gt[3], gt[4], gt[5] * float(level) )
606
607 return calculate_geoxy(newgt, xy)
608