8
8
msgstr ""
9
9
"Project-Id-Version : OSGeoLive 14.0\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
- "POT-Creation-Date : 2024-09-26 14:03 +0000\n "
11
+ "POT-Creation-Date : 2024-10-17 14:10 +0000\n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
13
"Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
14
14
"Language-Team : LANGUAGE <LL@li.org>\n "
@@ -17,37 +17,37 @@ msgstr ""
17
17
"Content-Transfer-Encoding : 8bit\n "
18
18
"Generated-By : Babel 2.16.0\n "
19
19
20
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:27
20
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:28
21
21
msgid "MapServer Quickstart"
22
22
msgstr ""
23
23
24
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:29
24
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:30
25
25
msgid ""
26
26
"MapServer is an `Open Source <https://opensource.org/>`_ server based "
27
27
"application that allows you to publish geographic map images and vector "
28
- "data through the internet using |OGCS| such as |WMS|, |WFS| and |WCS|."
28
+ "data through the Internet using |OGCS| such as |WMS|, |WFS| and |WCS|."
29
29
msgstr ""
30
30
31
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:37
31
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:38
32
32
msgid "Contents"
33
33
msgstr ""
34
34
35
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:40
35
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:41
36
36
msgid "Configure MapServer using the Mapfile configuration file"
37
37
msgstr ""
38
38
39
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:44
39
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:45
40
40
msgid ""
41
41
"**What will I learn ?** In this section, you will learn what a Mapfile is"
42
42
" and how to configure it to allow MapServer to serve a shapefile as "
43
43
"images using WMS requests."
44
44
msgstr ""
45
45
46
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:49
46
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:50
47
47
msgid "What is a Mapfile ?"
48
48
msgstr ""
49
49
50
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:51
50
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:52
51
51
msgid ""
52
52
"The `Mapfile <https://mapserver.org/mapfile/index.html>`_ is the "
53
53
"configuration file that MapServer uses to render geospatial data as "
@@ -56,115 +56,115 @@ msgid ""
56
56
"symbol, label, etc...)."
57
57
msgstr ""
58
58
59
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:57
59
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:58
60
60
msgid "Creating my first Mapfile"
61
61
msgstr ""
62
62
63
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:59
63
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:60
64
64
msgid ""
65
65
"Open any text editor (e.g. :menuselection:`Applications --> Accessories "
66
66
"--> FeatherPad`)."
67
67
msgstr ""
68
68
69
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:61
69
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:62
70
70
msgid ""
71
- "Create the file \" mapserver_quickstart.map\" in your home directory : "
71
+ "Create the file \" mapserver_quickstart.map\" at the following location : "
72
72
":file:`/home/user/mapserver_quickstart.map`"
73
73
msgstr ""
74
74
75
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:64
75
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:66
76
76
msgid "Put the following content in it::"
77
77
msgstr ""
78
78
79
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:104
79
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:106
80
80
msgid ""
81
81
"The example uses the natural earth dataset, which is already on OSGeoLive"
82
82
" at :file:`~/data/natural_earth2` (a short cut to "
83
83
":file:`/usr/local/share/data/natural_earth2`)."
84
84
msgstr ""
85
85
86
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:107
86
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:109
87
87
msgid ""
88
88
"Each object in a Mapfile starts with its name (for example **MAP**) and "
89
89
"ends with an **END**. A Mapfile always starts with the **MAP** object "
90
90
"and should contain a list of **LAYER** objects the Mapfile can read and "
91
91
"draw. In our Mapfile, we currently have only one layer defined."
92
92
msgstr ""
93
93
94
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:112
94
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:114
95
95
msgid ""
96
96
"Let's take a look at some of the objects (and properties) defined in our "
97
97
"Mapfile:"
98
98
msgstr ""
99
99
100
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:115
100
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:117
101
101
msgid "EXTENT: sets the default geospatial bounding box for this configuration."
102
102
msgstr ""
103
103
104
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:116
104
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:118
105
105
msgid ""
106
106
"LAYER: defines access and display properties for a spatial dataset. "
107
107
"We'll add another layer later."
108
108
msgstr ""
109
109
110
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:118
110
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:120
111
111
msgid ""
112
- "SHAPEPATH: sets a base path for file-based data (e.g. shapefiles or tiff "
113
- "images)."
112
+ "SHAPEPATH: sets a base path for file-based data (e.g. shapefiles or "
113
+ "GeoTIFF images)."
114
114
msgstr ""
115
115
116
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:121
116
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:123
117
117
msgid ""
118
118
"If we look closer at the **LAYER** in our Mapfile, we'll see that it "
119
119
"contains a bunch of properties and objects too. Among them are:"
120
120
msgstr ""
121
121
122
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:124
122
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:126
123
123
msgid ""
124
124
"STATUS: defines whether the layer can be drawn (*ON*), can't be drawn "
125
125
"(*OFF*) or is always drawn (*DEFAULT*)."
126
126
msgstr ""
127
127
128
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:126
128
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:128
129
129
msgid ""
130
130
"TYPE: the geometry type that MapServer should use when rendering the data"
131
131
" as an image. In our Mapfile, the data will be drawn as *polygons*."
132
132
msgstr ""
133
133
134
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:128
134
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:130
135
135
msgid ""
136
136
"DATA: the name of the spatial data file this layer uses, in this case a "
137
137
"shapefile."
138
138
msgstr ""
139
139
140
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:130
140
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:132
141
141
msgid ""
142
142
"CLASS: determines how to draw a layer (styling). We'll cover this object "
143
143
"in more detail later."
144
144
msgstr ""
145
145
146
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:135
146
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:137
147
147
msgid ""
148
148
"A complete list of the available objects and properties a Mapfile can "
149
149
"have can be found in the `MapServer documentation page "
150
150
"<https://mapserver.org/mapfile/index.html>`_."
151
151
msgstr ""
152
152
153
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:142
153
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:143
154
154
msgid "Render a map image with MapServer using a WMS **GetMap** request"
155
155
msgstr ""
156
156
157
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:146
157
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:147
158
158
msgid ""
159
159
"**What will I learn ?** You will learn how to use to render an image with"
160
160
" layers from a Mapfile with MapServer using an OGC WMS request."
161
161
msgstr ""
162
162
163
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:149
163
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:150
164
164
msgid "Open a web browser and enter the following URL::"
165
165
msgstr ""
166
166
167
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:153
167
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:154
168
168
msgid ""
169
169
"What does the above mean? If we put it in simple words, it's a |WMS| "
170
170
"**GetMap** request that tells MapServer to \" *use the following Mapfile "
@@ -175,31 +175,31 @@ msgid ""
175
175
"*STATUS DEFAULT*. The result looks like the following:"
176
176
msgstr ""
177
177
178
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:167
178
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:168
179
179
msgid ""
180
180
"All parameters of the request are WMS-specific, except "
181
181
"\" *?map=/home/user/mapserver_quickstart.map*\" , which is MapServer-"
182
182
"specific."
183
183
msgstr ""
184
184
185
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:173
185
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:174
186
186
msgid "Render a map image with MapServer using the command line"
187
187
msgstr ""
188
188
189
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:175
189
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:176
190
190
msgid ""
191
191
"Although MapServer is geared towards web applications, it can also "
192
192
"produce images on the command line. This can be useful if you are looking"
193
193
" for repetitive mapping, or while debugging."
194
194
msgstr ""
195
195
196
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:179
196
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:180
197
197
msgid ""
198
198
"Open a terminal (:menuselection:`Applications --> System Tools --> "
199
199
"Terminal Emulator`) and type::"
200
200
msgstr ""
201
201
202
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:184
202
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:185
203
203
msgid ""
204
204
"If this command runs successfully, you are able to see your rendered map "
205
205
"at file:///home/user/mymap.png."
@@ -266,9 +266,9 @@ msgstr ""
266
266
#: ../../build/doc/quickstart/mapserver_quickstart.rst:246
267
267
msgid ""
268
268
"In our \" ne_10m_lakes\" dataset, we have a *ScaleRank* attribute, which "
269
- "seems to be related to the size of the lakes. We can use this as a way to"
270
- " render the lakes differently. In the LAYER object, we'll add another "
271
- "CLASS object just before our current one::"
269
+ "defines the significance of the lakes. We can use this as a way to render "
270
+ " the lakes differently. In the LAYER object, we'll add another CLASS "
271
+ "object just before our current one::"
272
272
msgstr ""
273
273
274
274
#: ../../build/doc/quickstart/mapserver_quickstart.rst:271
@@ -362,20 +362,26 @@ msgstr ""
362
362
363
363
#: ../../build/doc/quickstart/mapserver_quickstart.rst:327
364
364
msgid ""
365
+ "Run through the `Getting Started with MapServer workshop "
366
+ "<https://geographika.github.io/getting-started-with-mapserver/>`_."
367
+ msgstr ""
368
+
369
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:329
370
+ msgid ""
365
371
"Have a look at the `MapServer Tutorial "
366
372
"<https://www.mapserver.org/tutorial/index.html>`_ which contains more "
367
373
"Mapfile examples."
368
374
msgstr ""
369
375
370
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:330
376
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:332
371
377
msgid ""
372
378
"Check the `OGC Support and Configuration "
373
379
"<https://www.mapserver.org/ogc/index.html>`_ to learn more about OGC "
374
380
"standards in MapServer (WMS, WFS, SLD, WFS Filter Encoding, WCS, SOS, "
375
381
"etc.)."
376
382
msgstr ""
377
383
378
- #: ../../build/doc/quickstart/mapserver_quickstart.rst:333
384
+ #: ../../build/doc/quickstart/mapserver_quickstart.rst:335
379
385
msgid ""
380
386
"Ready to use MapServer? Then join the community on the `Mailing Lists "
381
387
"<https://www.mapserver.org/community/lists.html>`_ to exchange ideas, "
0 commit comments