Changes between Version 25 and Version 26 of ConfigOptions


Ignore:
Timestamp:
Feb 24, 2013, 9:04:11 PM (11 years ago)
Author:
jpalmer
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigOptions

    v25 v26  
    194194
    195195=== GRIB_NORMALIZE_UNITS ===
     196
     197
     198== GDAL/OGR HTTP options ==
     199
     200=== CPL_CURL_VERBOSE ===
     201
     202Set to "YES" to get the curl library to display a lot of verbose information about its operations. Very useful for libcurl and/or protocol debugging and understanding.
     203
     204=== GDAL_HTTP_AUTH ===
     205
     206Set value to [BASIC/NTLM/GSSNEGOTIATE/ANY] to tell libcurl which authentication method(s) you want it to use. See http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTHTTPAUTH for more information.
     207
     208=== GDAL_HTTP_USERPWD ===
     209
     210The HTTP user and password to use for the connection. Must be in the form of [user name]:[password]. Use GDAL_HTTP_AUTH to decide the authentication method.
     211
     212When using NTLM, you can set the domain by prepending it to the user name and separating the domain and name with a forward (/) or backward slash (\). Like this: "domain/user:password" or "domain\user:password". Some HTTP servers (on Windows) support this style even for Basic authentication.
     213
     214=== GDAL_HTTP_PROXY ===
     215
     216Set HTTP proxy to use. The parameter should be the host name or dotted IP address. To specify port number in this string, append :[port] to the end of the host name. The proxy string may be prefixed with [protocol]:// since any such prefix will be ignored. The proxy's port number may optionally be specified with the separate option. If not specified, libcurl will default to using port 1080 for proxies.
     217
     218GDAL respects the environment variables http_proxy, ftp_proxy, all_proxy etc, if any of those are set. GDAL_HTTP_PROXY option does however override any possibly set environment variables.
     219
     220=== GDAL_HTTP_PROXYUSERPWD ===
     221
     222The HTTP user and password to use for the connection to the HTTP proxy. Must be in the form of [user name]:[password].
     223
     224=== GDAL_PROXY_AUTH ===
     225
     226Set value to [BASIC/NTLM/DIGEST/ANY] to tell libcurl which authentication method(s) you want it to use for your proxy authentication. See http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPROXYAUTH for more information
     227
     228=== CPL_CURL_GZIP ===
     229
     230Sets the contents of the Accept-Encoding header sent in a HTTP request to gzip, and enables decoding of a response when a Content-Encoding: header
     231
     232=== GDAL_HTTP_TIMEOUT ===
     233
     234Set HTTP timeout value, where value is in seconds
     235
     236=== GDAL_HTTP_USERAGENT ===
     237
     238When set this string is will be used to set the User-Agent: header in the http request sent to the remote server
     239
    196240
    197241== OGR Options ==
     
    292336WFS driver specific. Added in GDAL/OGR 1.8.0. See [http://gdal.org/ogr/drv_wfs.html WFS driver] documentation.
    293337
     338=== OGR_WFS_BASE_START_INDEX ===
     339
     340WFS driver specific. Added in GDAL/OGR 1.10. The default base start index is 0, as mandated by the specification. The OGR_WFS_BASE_START_INDEX configuration option can however be set to 1 to be compatible with the server implementations that considered the first feature to be at index 1.
     341
     342===  OGR_WFS_USE_STREAMING ===
     343
     344WFS driver specific. Added in GDAL/OGR 1.10. The WFS driver will read the GML content as a stream instead as a whole file, which will improve interactivity and help when the content cannot fit into memory. This can be turned off by setting the OGR_WFS_USE_STREAMING configuration option to NO if this is not desirable (for example, when iterating several times on a layer that can fit into memory).
     345
    294346=== OGR_WFS_LOAD_MULTIPLE_LAYER_DEFN ===
    295347
    296348WFS driver specific. Added in GDAL/OGR 1.9.0. Can be set to OFF to prevent emitting DescribeFeatureType for multiple layers at once (which is the new behaviour of the WFS driver in OGR 1.9.0 for better efficiency)
    297349
     350== SQLITE_LIST_ALL_TABLES ==
     351
     352SQLite driver specific. Set to "YES" to list all tables (not just the tables listed in the geometry_columns table)
     353
     354== OGR_SQLITE_LIST_VIRTUAL_OGR ==
     355
     356Sqlite driver specific. Added in GDAL/OGR 1.10. Set to "YES" to list VirtualOGR layers. Defaults to "NO" as there might be some security implications if a user is provided with a file and doesn't know that there are virtual OGR tables in it.
     357
    298358=== OGR_EDIGEO_FONT_SIZE_FACTOR ===
    299359