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

◆ calculate_geoxy_level()

raster2pgsql.calculate_geoxy_level (   gt,
  xy,
  level 
)

Definition at line 610 of file raster2pgsql.py.

610def calculate_geoxy_level(gt, xy, level):
611
612 # Update pixel resolution according to overview level
613 newgt = ( gt[0], gt[1] * float(level), gt[2], gt[3], gt[4], gt[5] * float(level) )
614
615 return calculate_geoxy(newgt, xy)
616