remove filter_factor since this can be set on the symbolizer and is going away in Mapnik v2.3.x
parent
2eb5b970a9
commit
1140a7b854
1 changed files with 1 additions and 2 deletions
3
GDAL.md
3
GDAL.md
|
@ -24,9 +24,8 @@ To check if the gdal plugin built and was installed correctly you can do:
|
|||
| file | string | file of the raster to be read | |
|
||||
| base | string | base path where to search for file parameter | |
|
||||
| band | integer | request for a specific raster band index, -1 means all bands | -1 |
|
||||
| filter_factor | double | filter to use when querying for raster data | 0.0 |
|
||||
| nodata | double | allow setting nodata value on the fly (will override value if nodata is set in data) | |
|
||||
| shared | boolean | Whether to open the dataset in shared mode. Not recommend to enable true unless you can garuntee that one on thread accesses a given file at the same time (unlikely given the way that most tiling software works with mapnik). It is only beneficial therefore if you are rendering multiprocess and singlethreaded and are working in low memory situation. Internally it directs Mapnik to call `GDALOpenShared` instead of `GDALOpen` which means that GDAL will consult its global cache of datasets. GDAL will try to return a copy of the dataset if access from multiple threads (but this defeats the purpose of sharing) | false |
|
||||
| shared | boolean | Whether to open the dataset in shared mode. Not recommend to enable true unless you can guarantee that one on thread accesses a given file at the same time (unlikely given the way that most tiling software works with mapnik). It is only beneficial therefore if you are rendering multiprocess and single threaded and are working in low memory situation. Internally it directs Mapnik to call `GDALOpenShared` instead of `GDALOpen` which means that GDAL will consult its global cache of datasets. GDAL will try to return a copy of the dataset if access from multiple threads (but this defeats the purpose of sharing) | false |
|
||||
|
||||
# Styling
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue