# Pretty Maps with GeoNode ## Introduction to Web Map Service A Web Map Service provides: * A set of **datasets** (each in its own map projection) * One or more named **styles** per dataset (at least one) * The ability to **request any list of datasets** with their styles to build a map * A set of target **projections** in which the map can be composed * Ability to ask “any” map size and scale denominator * Optional ability to **query the map** (info tool, “what’s here?”) ![image](img/125515287-1b4af3c4-39e5-4784-8e5a-3eccdefae522.png) The flexibility of this model allows clients to build their own maps by selecting only the datasets of interest, integrating map layers from different servers (assuming there is at least one common target projection among the servers), and using local data too if needed. This introduction showcases the `WMS 1.1` protocol version, as it is easier to explain compared to the newer 1.3 version, in which a different axis order must be used depending on the requested coordinate reference system. The main concepts are very similar, and so are the requests. ### GetCapabilities Like most `OGC` protocols, `WMS` exposes a `GetCapabilities` request. To see the full contents of the local `GeoServer WMS 1.3 capabilities` document follow this link: ``` http://localhost/geoserver/ows?service=wms&version=1.3.0&request=GetCapabilities ``` The result is a very large `XML` document, meant to be parsed by a computer, we’ll look only at some highlights here. #### The service section This section provides a way to describe the service contents (title, abstract) and points of contact that can be used to inquire about report issues, the service, and the link. The contact information comes from the homonymous configuration page in the `Contact information` menu of the `GeoServer administration interface`. ```xml WMS GeoNode Local GeoServer This is a description of your Web Map Server. WFS WMS GEOSERVER
NONE NONE ``` #### The capability section This section reports which requests the server can handle and some information about the requests, such as the output formats. Did you know that: * Not all requests are mandatory, only `GetCapability` and `GetMap` are, `GetFeatureInfo` is not * Only one among `PNG`, `JPEG` and `GIF` `GetMap` output format is required, but look at how many GeoServer supports ```xml text/xml image/png application/atom+xml application/json;type=utfgrid application/pdf application/rss+xml application/vnd.google-earth.kml+xml application/vnd.google-earth.kml+xml;mode=networklink application/vnd.google-earth.kmz image/geotiff image/geotiff8 image/gif image/jpeg image/png; mode=8bit image/svg+xml image/tiff image/tiff8 image/vnd.jpeg-png image/vnd.jpeg-png8 text/html; subtype=openlayers text/html; subtype=openlayers2 text/html; subtype=openlayers3 text/plain application/vnd.ogc.gml text/xml application/vnd.ogc.gml/3.1.1 text/xml; subtype=gml/3.1.1 text/html application/json ... ``` #### The Contents section This section in `WMS` contains a tree of datasets. The tree has several consequences: * It is a way to organize data by themes * It is a way to group datasets. Asking for one dataset makes the server return all its child datasets in the order that they are defined * It allows inheritance. The properties of the parent dataset are inherited by all child datasets The contents section starts with a root dataset that can be used to get all datasets in a single shot and that lists all the target projections that a map can be reprojected into. By default GeoServer lists all those found in the `EPSG` database, and it can be configured by setting the `Limited SRS list` in the GeoServer `WMS admin` page: ```xml GeoNode Local GeoServer This is a description of your Web Map Server. EPSG:4326 EPSG:3785 EPSG:3857 EPSG:900913 EPSG:32647 EPSG:32736 CRS:84 -117.36526677636073 -105.00013888888888 32.534227762958466 40.30013888888889 ... ``` After the list of coordinate reference systems, the actual datasets show up with their own bounding box, styles, and legend reference: ```xml geonode:Air_Runways Air_Runways Airport Runways features Air_Runways Runway Airport Airports Runways Landing Strips EPSG:2230 CRS:84 -117.36526677636073 -116.12621141861304 32.534227762958466 33.36158563104289 ... ``` This section allows the client to figure out which datasets are available, where they are located, and what coordinate reference systems can be used in requests, thus building the GetMap request. ### GetMap The `GetMap` request allows a client to ask the server to generate a portrayal of a dataset given a specific style (it will use the default one if none has been provided). A `GetMap` request is an `HTTP GET` URI with a well-defined `query-string`. As an example, the following is a typical `GetMap` request: |Element | Description| |----------|------------| |http://localhost/geoserver/geonode/wms? | The base URL| |service=WMS|The service| |version=1.1.0|The service version| |request=GetMap|The request| |layers=geonode:states|The list of datasets (comma separated, can be one)| |styles=|The list of style names (comma separated, can be empty to use the default)| |bbox=-124.73142200000001, 24.955967,-66.969849, 49.371735|The area that should be depicted| |width=768|Width of the output in pixels| |height=330|Height of the output in pixels| |srs=EPSG:4326|The output coordinate reference system (the BBOX is expressed in this SRS)| |format=image/png|The requested format (could have been image/png, image/jpeg, or any other listed in the capabilities document)| ### GetFeatureInfo The `GetFeatureInfo` request allows clients to issue a “what’s here” request for one or more of the requested datasets. The “here” is specified by giving the coordinates of the pixel that the user clicked inside the `GetMap` output the user is looking at. As an example, go to any of the dataset's details page and click on a point on the map corresponding to some data. You'll get information about the data on that specific position. ## Creating a Base Map - From the `Add Resource` dropdown menu on the resources list page, click on the `Create Map` link ![image](./img/create_map_link.png) - GeoNode will show an empty map with a default background; from the `menu` on top, click on the `Add layer` button ![image](./img/add_layer.png) - The catalog side menu will appear by showing the available datasets; start adding the overlays by clicking the datasets you want to add. **WARNING**: the order of the overlays is important on a map; you can always change the order by dragging the dataset up or down ![image](./img/layers_catalog.png) - To view the selected datasets, click on the `layers menu` in the top-left corner. ![image](./img/buger_menu.png) - Change the level of detail of the background dataset by zooming in and out to show/hide the dataset details. Change the opacity of the dataset layers by clicking on the slider that says 100% on it and dragging it up and down. ![image](./img/adjusted_layers.png) - Once happy, click on `Save` at the `top-left` corner of the menu and select `Save As`. ![image](./img/save_as.png) - Provide a name and a description and then click on the `Save` button ![image](./img/save_map.png) - If the machine is particularly slow, the save action might display a `timeout error`. You can ignore it and go to the `maps list`. Click on `view` then click `view map` on the newly created map to enter the `Map details` page ## Linking a Resource to the Map - From the `Edit` dropdown menu on the `Boulder` map detail page, click on the `Edit Metadata` link ![image](./img/link_resource_map_link_001.png) - Click on `Optional Metadata` ![image](./img/link_resource_map_link_002.png) - Go to `Resource Links`, and select `Mainrd` form the dropdown box ![image](./img/link_resource_map_link_003.png) - Click on `Update` in order to persiste the changes ![image](./img/link_resource_map_link_004.png) - From the `Boulder` map detail page, click on the `Info` link ![image](./img/link_resource_map_link_005.png) - From the `Info` panel, click on the `Linked Resources` section ![image](./img/link_resource_map_link_006.png) The same procedure can be done for other resources in GeoNode. #### [Next Section: Adding Other Media Types Contents](UPLOADING_DOCS.md)