postgis.gdal_enabled_drivers
Name
postgis.gdal_enabled_drivers — A configuration option to set the enabled GDAL drivers in the PostGIS environment. Affects the GDAL configuration variable GDAL_SKIP.
Description
A configuration option to set the enabled GDAL drivers in the PostGIS environment. Affects the GDAL configuration variable GDAL_SKIP. This option can be set in PostgreSQL's configuration file: postgresql.conf. It can also be set by connection or transaction.
   The initial value of
   
    postgis.gdal_enabled_drivers
   
   may also be set by passing the environment variable
   
    POSTGIS_GDAL_ENABLED_DRIVERS
   
   with the list of enabled drivers to the process starting PostgreSQL.
  
Enabled GDAL specified drivers can be specified by the driver's short-name or code. Driver short-names or codes can be found at GDAL Raster Formats . Multiple drivers can be specified by putting a space between each driver.
       
      | 
     |
| 
       
       There are three special codes available for
        
 
 
       When
         | 
    
       
      | 
     |
| 
       
       In the standard PostGIS installation,
         | 
    
       
      | 
     |
| 
       Additional information about GDAL_SKIP is available at GDAL's Configuration Options .  | 
    
Availability: 2.2.0
Examples
   Set and reset
   
    postgis.gdal_enabled_drivers
   
  
Sets backend for all new connections to database
ALTER DATABASE mygisdb SET postgis.gdal_enabled_drivers TO 'GTiff PNG JPEG';
Sets default enabled drivers for all new connections to server. Requires super user access and PostgreSQL 9.4+. Also not that database, session, and user settings override this.
ALTER SYSTEM SET postgis.gdal_enabled_drivers TO 'GTiff PNG JPEG'; SELECT pg_reload_conf();
SET postgis.gdal_enabled_drivers TO 'GTiff PNG JPEG'; SET postgis.gdal_enabled_drivers = default;
Enable all GDAL Drivers
SET postgis.gdal_enabled_drivers = 'ENABLE_ALL';
Disable all GDAL Drivers
SET postgis.gdal_enabled_drivers = 'DISABLE_ALL';
See Also
ST_FromGDALRaster , ST_AsGDALRaster , ST_AsTIFF , ST_AsPNG , ST_AsJPEG , postgis.enable_outdb_rasters