File: mapfile-HOWTO.txt

package info (click to toggle)
mapserver 5.0.3-3%2Blenny7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 13,556 kB
  • ctags: 12,645
  • sloc: ansic: 168,024; cs: 8,534; python: 4,618; sh: 4,213; cpp: 4,059; perl: 2,781; makefile: 787; lex: 564; java: 415; yacc: 334; tcl: 158; ruby: 53
file content (220 lines) | stat: -rw-r--r-- 6,832 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
.. $Id: mapfile-HOWTO.txt 6846 2007-09-05 22:53:35Z hobu $

   ===========================================================================
   Copyright (c) 2004 Sean Gillies.
   
   Permission is hereby granted, free of charge, to any person obtaining a
   copy of this software and associated documentation files (the "Software"),
   to deal in the Software without restriction, including without limitation
   the rights to use, copy, modify, merge, publish, distribute, sublicense,
   and/or sell copies of the Software, and to permit persons to whom the
   Software is furnished to do so, subject to the following conditions:
 
   The above copyright notice and this permission notice shall be included
   in all copies or substantial portions of the Software.
 
   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   DEALINGS IN THE SOFTWARE.
   ===========================================================================
..

*****************************************************************************
 Mapscript Mapfile HOWTO
*****************************************************************************

:Author: Sean Gillies
:Contact: sgillies@frii.com
:Revision: $Revision: 6846 $
:Date: $Date: 2007-09-05 15:53:35 -0700 (Wed, 05 Sep 2007) $

..  The next heading encountered becomes our H2
..

.. sectnum::

.. contents::
    :depth: 2
    :backlinks: top


Introduction
============

The mapscript HOWTO docs are intended to complement the API reference with
examples of usage for specific subjects.  All examples in this document refer
to the mapfile and testing layers distributed with MapServer 4.2+ and found
under mapserver/tests.  

Pseudocode
----------

All examples will use a pseudocode that is consistent with the language
independent API reference.  Each line is a statement. For object attributes
and methods we use the dot, '.', operator.  Creation and deletion of objects
will be indicated by 'new' and 'del' keywords.  Other than that, the 
pseudocode looks a lot like Python.

Mapfile Overview
================

By "Mapfile" here, I mean all the elements that can occur in (nearly)
arbitrary numbers within a mapscript mapObj: Layers, Classes, and Styles.
MapServer 4.4 has greatly improved capability to manipulate these objects.

The mapObj Class
================

An instance of mapObj is a parent for zero to many layerObj children.

New instances
-------------

The mapfile path argument to the mapscript.mapObj constructor is now optional
::

    empty_map = new mapscript.mapObj

generates a default mapObj with no layers.  A mapObj is initialized from a 
mapfile on disk in the usual manner::

    test_map = new mapscript.mapObj('tests/test.map')

Cloning
-------

An independent copy, less result and label caches, of a mapObj can be produced
by the new mapObj.clone() method::

    clone_map = test_map.clone()

.. note:: the Java mapscript module implements a "cloneMap" method to avoid
          conflict with the clone method of Java's Object class.

Saving
------

A mapObj can be saved to disk using the save method::

    clone_map.save('clone.map')

Frankly, the msSaveMap() function which is the foundation for mapObj::save
is incomplete.  Your mileage may vary.

Children of mapObj
==================

There is a common parent/child object API for Layers, Classes, and Styles in
MapServer 4.4.

Referencing a Child
-------------------

References to Layer, Class, and Style children are obtained by "getChild"-like
methods of their parent::

    layer_i   = test_map.getLayer(i)
    class_ij  =  layer_i.getClass(j)
    style_ijk = class_ij.getStyle(k)

These references are for convenience only.  Mapscript doesn't have any
reference counting, and you are certain to run into trouble if you try to use
these references after the parent mapObj has been deleted and freed from 
memory.

Cloning a Child
---------------

A completely independent Layer, Class, or Style can be created using the clone
method of layerObj, classObj, and styleObj::

    clone_layer = layer_i.clone()

This instance has no parent, and is self-owned.

New Children
------------

Uninitialized instances of layerObj, classObj, or styleObj can be created 
with the new constructors::

    new_layer = new mapscript.layerObj
    new_class = new mapscript.classObj
    new_style = new mapscript.styleObj

and are added to a parent object using "insertChild"-like methods of the
parent which returns the index at which the child was inserted::

    li = test_map.insertLayer(new_layer)
    ci = test_map.getLayer(li).insertClass(new_class)
    si = test_map.getLayer(li).getClass(ci).insertStyle(new_style)

The insert* methods create a completely new copy of the object and store it 
in the parent with all ownership taken on by the parent.

see the API reference for more details.  

Backwards Compatibility
-----------------------

The old style child object constructors with the parent object as a single
argument::

    new_layer = new mapscript.layerObj(test_map)
    new_class = new mapscript.classObj(new_layer)
    new_style = new mapscript.styleObj(new_class)

remain in MapServer 4.4.

Removing Children
-----------------

Child objects can be removed with "removeChild"-like methods of parents, which
return independent copies of the removed object::

    # following from the insertion example ...
    # remove the inserted style, returns a copy of the original new_style
    removed_style = test_map.getLayer(li).getClass(ci).removeStyle(si)
    removed_class = test_map.getLayer(li).removeClass(ci)
    removed_layer = test_map.removeLayer(li)

Metadata
========

Map, Layer, and Class metadata are the other arbitrarily numbered elements
(well, up to the built-in limit of 41) of a mapfile.

New API
-------

In MapServer 4.4, the metadata attributes of mapObj.web, layerObj, and classObj
are instances of hashTableObj, a class which functions like a limited 
dictionary
::

    layer.metadata.set('wms_name', 'foo')
    name = layer.metadata.get('wms_name')   # returns 'foo'

You can iterate over all keys in a hashTableObj like
::
    
    key = NULL
    while (1):
        key = layer.metadata.nextKey(key)
        if key == NULL:
            break
        value = layer.metadata.get(key)
        ...

See the API Reference (mapscript.txt) for more details.

Old API
-------

The old getMetaData and setMetaData methods of mapObj, layerObj, and classObj
remain for use by older programs.