view mapserver/mapfile/mapfile_header.include @ 0:109e10c76841

Initial commit.
author Bjoern Schilberg <bjoern@intevation.de>
date Thu, 03 Mar 2011 13:59:08 +0100
parents
children f1b0559df700
line wrap: on
line source
STATUS ON
SIZE 400 400 
EXTENT 3427000 5787000 3444200 5801000
UNITS meters
IMAGECOLOR -1 -1 -1 #transparent
#FONTSET "../fonts/fonts.txt"
FONTSET "../../ttf-fonts/fonts.txt"
SYMBOLSET "../symbols/symbols.sym"
SHAPEPATH "../../testdata-frida"
IMAGETYPE png 
CONFIG "ON_MISSING_DATA" "LOG" # see http://mapserver.org/mapfile/map.html for details
CONFIG "CPL_DEBUG" "ON" # GDAL-debugging on
CONFIG "MS_ERRORFILE" "../logs/ms_error.log"
DEBUG 5

MAXSIZE 2500 # 2500x2500 pixel maximum Site

# Own PROJECTION-file
CONFIG "PROJ_LIB" "../epsg/epsg.txt"

PROJECTION
	"init=epsg:31467"
END

#8bit png, supports transparency.
OUTPUTFORMAT
	NAME aggpng
	DRIVER AGG/PNG
	MIMETYPE "image/png"
	
	## transparency only with RGBA Image Mode
	## mapserver had to be compiled -with-experimental-png
	
	IMAGEMODE RGBA
	EXTENSION "png"
	
	## The next options works with transparency, when requesting another
	## layer within the same request. When requesting the layer alone,
	## everything seems black. TODO: Verify if this is a bug or a features.
	## Anyway, it reduces the PNG-filesize by 70% though!
	FORMATOPTION "QUANTIZE_FORCE=ON"
	FORMATOPTION "QUANTIZE_COLORS=256"
	FORMATOPTION "QUANTIZE_NEW=ON"
	
	
	## The next options will work with transparency but are incompatible
	## with the previous quantization options.
	#FORMATOPTION "PALETTE_FORCE=ON"
	#FORMATOPTION "PALETTE=/home/geo4/mapserver/palette.txt" #to be defined
	
	TRANSPARENT ON
END

#24bit png, supports all colors but does not support transparency.
OUTPUTFORMAT
	NAME aggpng24
	DRIVER AGG/PNG
	MIMETYPE "image/png; mode=24bit"
	IMAGEMODE RGBA
	EXTENSION "png"
END

# 8bit jpeg
OUTPUTFORMAT
	NAME jpeg
	DRIVER "GD/JPEG"
	MIMETYPE "image/jpeg"
	IMAGEMODE RGB
	EXTENSION "jpg"
	FORMATOPTION "QUALITY=80"
	FORMATOPTION "INTERLACE=ON"
END
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)