[MapServer-users] Question: Where do WMS URLs in WFS GetMetadata reply come from?
Stefan Gofferje
lists at home.gofferje.net
Fri Jul 26 04:06:17 PDT 2024
Hi,
after getting WMS to run and thinking I got the basics, I moved to
learning WFS with mapserver now. I have set up a simple WFS mapfile and
it seems to work, however, I noticed that in the GetMetadata reply are
WMS URLs in
gmd:distributionInfo -> gmd:MD_Distribution -> gmd:transferOptions ->
gmd:transferOptions -> gmd:gmd:onLine
See
https://mapserver.gofferje.net/?map=wfs&request=GetMetadata&layer=valkeakoski
Where do those come from? Can I/should I turn them off or should I add
WMS services to my mapfile? Can I have WFS and WMS in the same mapfile?
BR: Stefan
--
(o_ Stefan Gofferje | SCLT, MCP, CCSA
//\ Reg'd Linux User #247167 | VCP #2263
V_/_ https://www.gofferje.net | https://www.saakeskus.fi
-------------- next part --------------
MAP
NAME "WFS_server" ##strongly recommended. containing no special characters or spaces
STATUS ON
SIZE 400 300
#SYMBOLSET "../etc/symbols.txt"
EXTENT -180 -90 180 90
UNITS DD
SHAPEPATH "../data"
IMAGECOLOR 255 255 255
#FONTSET "../etc/fonts.txt"
#
# Start of web interface definition
#
WEB
IMAGEPATH "/maps/wfs/tmp"
IMAGEURL "/tmp/"
METADATA
"wfs_title" "WFS Demo Server for MapServer" ## REQUIRED
"wfs_onlineresource" "https://mapserver.gofferje.net?map=wfs&" ## Recommended
"wfs_srs" "EPSG:4326 EPSG:3067 EPSG:3857" ## Recommended
"wfs_abstract" "This text describes my WFS service." ## Recommended
"wfs_enable_request" "*" # necessary
END
END
PROJECTION
"init=epsg:4326"
END
#
# Start of layer definitions
#
##################
# World Continents
##################
LAYER
NAME "valkeakoski"
METADATA
"wfs_title" "Valkeakoski" ##REQUIRED
"wfs_srs" "EPSG:4326" ## REQUIRED
"gml_exclude_items" "all" ## Optional (serves all attributes for layer)
"gml_featureid" "ID" ## REQUIRED
"gml_types" "auto" ## Optional (automatically populate the type for the attributes)
"wfs_enable_request" "*"
"wfs_use_default_extent_for_getfeature" "false" ## Optional (improves performance of OGR layers)
END
TYPE POLYGON
STATUS ON
DATA "/maps/wfs/shapefiles/Valkeakoski"
# define source projection
PROJECTION
"init=epsg:4326"
END
CLASS
NAME "Valkeakoski"
STYLE
COLOR 255 128 128
OUTLINECOLOR 96 96 96
END
END
END #layer
END #mapfile
More information about the MapServer-users
mailing list