<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    Bob,<br>
    <br>
    &nbsp; I take it you mean making the transformed geometry persistent to
    minimize the performance hit?&nbsp; You can do that now by creating
    additional layers with your favorite GUI or command line tools.&nbsp; My
    buffered geometry is for visualization only (so far?) so the buffer
    distance is in pixels (or text points).&nbsp; I want the thick line
    rendered inside the polygon to be 5 pixels wide regardless of the
    zoom level, or I want the stream label to be placed [approximately]
    4 pixels above the stream regardless of the view scale.<br>
    <br>
    &nbsp; On the other hand, Steve Lime had mused about having LAYER-level
    transformed geometry so it could be used in queries.&nbsp; It kind of
    boggles the mind (well, mine anyway).&nbsp; Would it be possible to
    select features by attribute (where name='my stream') from one,
    buffer it (my_buffer=buffer(shape, 500m)), and use the resulting
    geometry to select from another layer (where
    building_type="residential' and within(my_buffer))?<br>
    <br>
    Oh wait, "Mapserver is not a full-featured GIS"...<br>
    <pre class="moz-signature" cols="72">Best Regards,
Brent Fraser</pre>
    <br>
    On 6/7/2011 8:21 AM, Bob Basques wrote:
    <blockquote cite="mid:4DEDEDB5020000A80002AD45@heckle" type="cite">
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <font
          face="Comic Sans MS" size="3">All,</font> </p>
      <br>
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <font
          face="Comic Sans MS" size="3">I've been following this thread
          with interest.</font> </p>
      <br>
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <font
          face="Comic Sans MS" size="3">Was wondering, does it make any
          sense to consider building out an entirely new geometry set
          that is based on the original geometry. &nbsp;On the surface this
          seems like overkill, but I wonder if treating this situation
          as an indexing sort of problem might not help. &nbsp;The buffered
          result geometries could easily become more complex than the
          original geometries for example, and having them as a
          separated group may be beneficial to performance tuning, etc.</font>
      </p>
      <br>
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <font
          face="Comic Sans MS" size="3">Might this be a new commandline
          tool for building these extras into a dataset (similar to
          making IDX files?). &nbsp;I could think of a few uses of this type
          of thing for highlighting, etc. &nbsp;Although, now that I've
          thought about it even more, the idea of being able to change
          these things on the fly makes the whole conversation go round
          back to the beginning again. &nbsp;:c). &nbsp;Making the buffering
          dynamic has it's advantages as well for example.</font> </p>
      <br>
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <font
          face="Comic Sans MS" size="3">bobb</font> </p>
      <br>
      <br>
      <br>
      <p style="margin-top: 0pt; margin-bottom: 0pt;"> <br>
        <br>
        &gt;&gt;&gt; Brent Fraser <a class="moz-txt-link-rfc2396E" href="mailto:bfraser@geoanalytic.com">&lt;bfraser@geoanalytic.com&gt;</a> wrote:<br>
      </p>
      <table style="margin: 0pt 0pt 0pt 15px; font-size: 1em;"
        bgcolor="#f3f3f3" border="0">
        <tbody>
          <tr>
            <td>
              <div style="border-left: 1px solid rgb(5, 5, 5);
                padding-left: 7px;">
                <p style="margin-top: 0pt; margin-bottom: 0pt;"> Thomas,<br>
                  <br>
                  &nbsp;&nbsp; Yes, I've been trying to come up with good map file
                  syntax to<br>
                  indicate labeling of the transformed geometry.&nbsp;
                  Currently mapserver allows:<br>
                  - transformed original geometry (buffer, difference)<br>
                  - augmented original geometry (bbox, start/end,
                  vertices)<br>
                  - rendered label geometry (labelpoint, labelpoly)<br>
                  <br>
                  but it doesn't label transformed geometry, only
                  original geometry.&nbsp; The<br>
                  main problem (from a user interface perspective) is
                  how to relate<br>
                  transformed geometry to the label specification.<br>
                  <br>
                  One solution is to allow a LABEL object within a STYLE
                  object:<br>
                  <br>
                  &nbsp;&nbsp;&nbsp;&nbsp; CLASS<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NAME 'Streams'<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GEOMTRANSFORM (buffer([shape], 5))<br>
                  <br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LABEL<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; usual label settings<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END # Label<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END # Style<br>
                  <br>
                  but that's a little strange as STYLE objects are
                  currently allowed<br>
                  within LABEL objects.<br>
                  <br>
                  Another solution is to have "named" geometry and
                  reference it in the<br>
                  LABEL object (and keep the existing CLASS/STYLE/LABEL
                  structure):<br>
                  <br>
                  &nbsp;&nbsp;&nbsp;&nbsp; CLASS<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NAME 'Streams'<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STYLE<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GEOMTRANSFORM my_label_shape =
                  (buffer([shape], 5))<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END # Style<br>
                  <br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; LABEL<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; usual label settings<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; GEOMETRY my_label_shape<br>
                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; END # Label<br>
                  <br>
                  And I'm sure there are other (and hopefully better)
                  solutions.<br>
                  <br>
                  Best Regards,<br>
                  Brent Fraser<br>
                  <br>
                  <br>
                  On 6/6/2011 11:02 AM, thomas bonfort wrote:<br>
                  &gt; Yes, the resulting shape seems like a nice
                  candidate for offseting<br>
                  &gt; labels, but the problem with buffer is you will
                  have more difficulty<br>
                  &gt; in deciding what is to the left from what is to
                  the right of the line.<br>
                  &gt; We'd also have to make sure that the buffer
                  operation is not too<br>
                  &gt; costly on cpu cycles.<br>
                  &gt; Anyways, until geomtransform is not applied at
                  the layer level, there<br>
                  &gt; is no way to use this method as the label does
                  not operate on the<br>
                  &gt; transformed geometry.<br>
                  &gt;<br>
                  &gt; On Mon, Jun 6, 2011 at 17:30, Brent
                  Fraser<a class="moz-txt-link-rfc2396E" href="mailto:bfraser@geoanalytic.com">&lt;bfraser@geoanalytic.com&gt;</a>&nbsp; wrote:<br>
                  &gt;&gt; Steve,<br>
                  &gt;&gt;<br>
                  &gt;&gt;&nbsp;&nbsp; I think just buffering the line would apply
                  a type of smoothing (see<br>
                  &gt;&gt; attached image).&nbsp; Using the resulting buffer
                  line (or perhaps doing some<br>
                  &gt;&gt; simple line smoothing on it) for labeling
                  would be good enough.<br>
                  &gt;&gt;<br>
                  &gt;&gt; Best Regards,<br>
                  &gt;&gt; Brent Fraser<br>
                  &gt;&gt;<br>
                  &gt;&gt;<br>
                  &gt;&gt; On 6/6/2011 9:04 AM, Stephen Woodbridge
                  wrote:<br>
                  &gt;&gt;&gt; Duh! you are correct, I always forget
                  this point until I after my second<br>
                  &gt;&gt;&gt; cup of coffee has kicked in :)<br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;&gt; That article looks very interesting, I
                  have to read up on that.<br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;&gt; In a past career in computer aided design
                  and manufacturing, we used the<br>
                  &gt;&gt;&gt; idea of a rolling ball offset because it
                  modeled a milling machine. The<br>
                  &gt;&gt;&gt; rolling ball offset is defined as the
                  curve traced by the center of a ball<br>
                  &gt;&gt;&gt; of a given radius as you roll it along a
                  curve. The circumference of the<br>
                  &gt;&gt;&gt; ball can not cross over the original
                  curve so for tight "S" curves if the<br>
                  &gt;&gt;&gt; diameter of the ball is larger than the
                  gap in the "S" then the ball does<br>
                  &gt;&gt;&gt; not enter the gap but floats over it.
                  This same concept would make for well<br>
                  &gt;&gt;&gt; behaved and good looking labels along
                  tight twisty paths like rivers and<br>
                  &gt;&gt;&gt; roads.<br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;&gt; Another idea for smoothing out curves for
                  labeling might be to apply an N<br>
                  &gt;&gt;&gt; point moving average and allow that to be
                  the label path. I don't think this<br>
                  &gt;&gt;&gt; has been mentioned as an option in the
                  past.<br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;&gt; -Steve W<br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;&gt; On 6/6/2011 10:20 AM, thomas bonfort
                  wrote:<br>
                  &gt;&gt;&gt;&gt; There are two problems with the
                  solution you propose:<br>
                  &gt;&gt;&gt;&gt; - if you offset the geometry in
                  postgis, the distance of the offset<br>
                  &gt;&gt;&gt;&gt; will be in geographical units, i.e.
                  it will not give correct results<br>
                  &gt;&gt;&gt;&gt; at all scales when rendered with
                  mapserver (what you basically want is<br>
                  &gt;&gt;&gt;&gt; to offset the line by a number of
                  pixels roughly equal to the size of<br>
                  &gt;&gt;&gt;&gt; the font used for labelling)<br>
                  &gt;&gt;&gt;&gt; - angle follow on offset line should
                  probably be done on a<br>
                  &gt;&gt;&gt;&gt; simplified/smoothed geometry. see<br>
                  &gt;&gt;&gt;&gt; <a moz-do-not-send="true"
                    href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.24.6970">http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.24.6970</a>&nbsp;.<br>
                  &gt;&gt;&gt;&gt; Ideally someone will want the feature
                  badly enough to fund it :)<br>
                  &gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt; --<br>
                  &gt;&gt;&gt;&gt; thomas<br>
                  &gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt; On Mon, Jun 6, 2011 at 16:02, Stephen
                  Woodbridge<br>
                  &gt;&gt;&gt;&gt; <a class="moz-txt-link-rfc2396E" href="mailto:woodbri@swoodbridge.com">&lt;woodbri@swoodbridge.com&gt;</a>&nbsp;&nbsp;&nbsp;
                  wrote:<br>
                  &gt;&gt;&gt;&gt;&gt; There was some recent discussion
                  on the dev list about potentially using<br>
                  &gt;&gt;&gt;&gt;&gt; the<br>
                  &gt;&gt;&gt;&gt;&gt; GEOMTRANSFORM to do something
                  like a single sided offset then using that<br>
                  &gt;&gt;&gt;&gt;&gt; to<br>
                  &gt;&gt;&gt;&gt;&gt; apply the label to. BUT I do not
                  think that has been implemented yet in<br>
                  &gt;&gt;&gt;&gt;&gt; mapserver.<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; Google for "mapserver
                  geomtransform" also look at "geoprocessing" for<br>
                  &gt;&gt;&gt;&gt;&gt; some<br>
                  &gt;&gt;&gt;&gt;&gt; other ideas.<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; Anyway, you might be able to do
                  what you want if you:<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; 1. import your data into PostGIS<br>
                  &gt;&gt;&gt;&gt;&gt; 2. create offset geometry in
                  another table<br>
                  &gt;&gt;&gt;&gt;&gt; 3. export that table to a
                  shapefile<br>
                  &gt;&gt;&gt;&gt;&gt; 4. then label that as an
                  annotation layer so you do not draw the<br>
                  &gt;&gt;&gt;&gt;&gt; geometry<br>
                  &gt;&gt;&gt;&gt;&gt; only the label and use the
                  original data to draw the grometry ie: two<br>
                  &gt;&gt;&gt;&gt;&gt; layers.<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; I have not tried this, but it
                  might solve your problem.<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; -Steve W<br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt; On 6/6/2011 9:48 AM, uvg wrote:<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Thank you, Thomas.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Are there any workarounds for
                  this problem?<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Is there 'best practices' for
                  the problem?<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Maybe unvisible layer or
                  other?<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; 06.06.2011, 17:35, "thomas
                  bonfort [via OSGeo.org]"&lt;[hidden email]<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;
                  &lt;/user/SendEmail.jtp?type=node&amp;node=6445194&amp;i=0&gt;&gt;:<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; The status has not
                  changed: label follow with offset is not<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; supported.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; regards,<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; thomas<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; On Mon, Jun 6, 2011 at
                  15:33, uvg&lt;[hidden email]&gt;&nbsp;&nbsp;&nbsp; wrote:<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; Hi all!<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; Sorry for my bad
                  English.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; I am trying to achieve
                  is a label that follows the rivers that is<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; also<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; OFFSET so that<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; the label does not
                  'above' on the line for the river.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; Sample code of mapfile:<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; LABEL<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; COLOR 0 40 255<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; FONT "arial-italic"<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; TYPE truetype<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; SIZE 7<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; OFFSET 5 0<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; ANGLE FOLLOW<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; POSITION LC<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; FORCE true<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; PARTIALS FALSE<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; END<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; "OFFSET" does not work.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; How can I offset a
                  label?<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; I found a message
                  posted for a long time:<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; click here.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; View this message in context:
                  Re: ANGLE FOLLOW and Label Offset (v.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; 5.6.6)<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; &lt;<a moz-do-not-send="true"
href="http://osgeo-org.1803224.n2.nabble.com/ANGLE-FOLLOW-and-Label-Offset-v-5-6-6-tp6445138p6445194.html">http://osgeo-org.1803224.n2.nabble.com/ANGLE-FOLLOW-and-Label-Offset-v-5-6-6-tp6445138p6445194.html</a>&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Sent from the Mapserver -
                  User mailing list archive<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; &lt;<a moz-do-not-send="true"
href="http://osgeo-org.1803224.n2.nabble.com/Mapserver-User-f1969211.html">http://osgeo-org.1803224.n2.nabble.com/Mapserver-User-f1969211.html</a>&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; at<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; Nabble.com.<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;
                  _______________________________________________<br>
                  &gt;&gt;&gt;&gt;&gt;&gt; mapserver-users mailing list<br>
                  &gt;&gt;&gt;&gt;&gt;&gt;
                  <a class="moz-txt-link-abbreviated" href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
                  &gt;&gt;&gt;&gt;&gt;&gt; <a moz-do-not-send="true"
                    href="http://lists.osgeo.org/mailman/listinfo/mapserver-users">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
                  &gt;&gt;&gt;&gt;&gt;
                  _______________________________________________<br>
                  &gt;&gt;&gt;&gt;&gt; mapserver-users mailing list<br>
                  &gt;&gt;&gt;&gt;&gt; <a class="moz-txt-link-abbreviated" href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
                  &gt;&gt;&gt;&gt;&gt; <a moz-do-not-send="true"
                    href="http://lists.osgeo.org/mailman/listinfo/mapserver-users">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
                  &gt;&gt;&gt;&gt;&gt;<br>
                  &gt;&gt;&gt;
                  _______________________________________________<br>
                  &gt;&gt;&gt; mapserver-users mailing list<br>
                  &gt;&gt;&gt; <a class="moz-txt-link-abbreviated" href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
                  &gt;&gt;&gt; <a moz-do-not-send="true"
                    href="http://lists.osgeo.org/mailman/listinfo/mapserver-users">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
                  &gt;&gt;&gt;<br>
                  &gt;&gt;
                  _______________________________________________<br>
                  &gt;&gt; mapserver-users mailing list<br>
                  &gt;&gt; <a class="moz-txt-link-abbreviated" href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
                  &gt;&gt; <a moz-do-not-send="true"
                    href="http://lists.osgeo.org/mailman/listinfo/mapserver-users">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
                  &gt;&gt;<br>
                  &gt;&gt;<br>
                  <br>
                  _______________________________________________<br>
                  mapserver-users mailing list<br>
                  <a class="moz-txt-link-abbreviated" href="mailto:mapserver-users@lists.osgeo.org">mapserver-users@lists.osgeo.org</a><br>
                  <a moz-do-not-send="true"
                    href="http://lists.osgeo.org/mailman/listinfo/mapserver-users">http://lists.osgeo.org/mailman/listinfo/mapserver-users</a><br>
                </p>
              </div>
            </td>
          </tr>
        </tbody>
      </table>
    </blockquote>
  </body>
</html>