Is there a way to make it so that I can specify only a single layer for my tiles to be drawn on?<br><br>Thanks, S.D.<br><br><b><i>Paul Spencer &lt;pspencer@dmsolutions.ca&gt;</i></b> wrote:<blockquote class="replbq" style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"> That's probably about right ... the map would be redrawn only at the  <br>refresh interval but the layers would be redrawn at the redraw  <br>interval.  You would typically get two redraws before the data would  <br>change.<br><br>Cheers<br><br>Paul<br><br>On 31-Jul-06, at 4:24 PM, Samuel Doyle wrote:<br><br>&gt; Hi I gave it another try and let it run for awhile and it appears  <br>&gt; to eventually work.<br>&gt; I mean, I have set the redraw_interval to be 30 seconds and the  <br>&gt; refresh_interval to be 60 seconds. It takes usually three refreshes  <br>&gt; before the changes appear on the map.<br>&gt;<br>&gt; S.D.<br>&gt;<br>&gt; "Delfos, Jacob"
 <Jacob.Delfos@maunsell.com> wrote:<br>&gt; Samuel,<br>&gt;<br>&gt; I didn't mean for you to make the "force_redraw" a permanent  <br>&gt; configuration, but just to test whether your site has a problem  <br>&gt; with overwiting tiles. Since it doesn't, it must mean there's  <br>&gt; something wrong with the reading/comparing of the timestamp.<br>&gt;<br>&gt; I have just done some testing with the most recent CVS code, and on  <br>&gt; my side the redraw mechanism works fine; I used these settings in  <br>&gt; my metadata:<br>&gt;<br>&gt; redraw_interval "60"<br>&gt; tile_source "redraw"<br>&gt;<br>&gt; After 1 minute, it would redraw, within one minute of the last  <br>&gt; redraw it would return the cached tiles.<br>&gt;<br>&gt; Please bear in mind that these metadata values MUST be entered into  <br>&gt; the FIRST layer of the group. Only metadata from the first layer is  <br>&gt; used.<br>&gt;<br>&gt; If you still run into issues, please enter this on line 171 of 
 <br>&gt; tile.php, after " fclose($h) " :<br>&gt; trigger_error("now: ".$now."; timestamp: ".$timestamp."; interval:". <br>&gt; $interval."; meta_timestamp: ".$meta_timestamp,E_USER_WARNING);<br>&gt;<br>&gt; Let us know what it says. Also, give an example URL of one of your  <br>&gt; tiles. In Firefox, use "page -&gt; info", and look under the media tab.<br>&gt;<br>&gt; regards,<br>&gt;<br>&gt; Jacob<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; From: ka-map-users-bounces@lists.maptools.org [mailto:ka-map-users- <br>&gt; bounces@lists.maptools.org] On Behalf Of Samuel Doyle<br>&gt; Sent: 29 July 2006 08:01<br>&gt; To: Delfos, Jacob<br>&gt; Cc: ka-map-users@lists.maptools.org<br>&gt; Subject: RE: [ka-Map-users] Can someone answer this question please  <br>&gt; or tellmewho I should ask it to?<br>&gt;<br>&gt; Hi,<br>&gt; I played with the force option in tile.php which appeared to be  <br>&gt; very resource intensive. I extended upon this by adding another 
 <br>&gt; 'force_redraw' field in the metadata section for each layer of  <br>&gt; interest in the map file. This resulted in the desired effect  <br>&gt; however, it is still very resource intensive even if I'm requesting  <br>&gt; just one layer. For every request my server ends up thrashing like  <br>&gt; mad. Does anyone have any insight they could provide?<br>&gt;<br>&gt; Thanks, S.D.<br>&gt;<br>&gt; "Delfos, Jacob" <Jacob.Delfos@maunsell.com> wrote:<br>&gt; Samuel,<br>&gt;<br>&gt; Have you checked whether the URL is actually different? Are you  <br>&gt; saying it serves out the same tiles, despite the different  <br>&gt; timestamp? Did you check whether any tiles actually get re-written?<br>&gt; Have you tried playing with the "force" parameter of tile.php? If  <br>&gt; this creates a new tile, it means the problem is it decides it  <br>&gt; doesn't need to be re-created. If "force" doesn't work, it means it  <br>&gt; isn't able to re-create the tiles.<br>&gt; Is
 there a timestamp directory present?<br>&gt;<br>&gt; regards,<br>&gt;<br>&gt; Jacob<br>&gt;<br>&gt;<br>&gt;<br>&gt; From: Samuel Doyle [mailto:sdoyle_2@yahoo.com]<br>&gt; Sent: 28 July 2006 09:31<br>&gt; To: Delfos, Jacob<br>&gt; Subject: RE: [ka-Map-users] Can someone answer this question please  <br>&gt; or tell mewho I should ask it to?<br>&gt;<br>&gt; Thanks for the repsonse.<br>&gt;<br>&gt; Yes I have included the redraw_interval and have tried the various  <br>&gt; combinations even setting tile_source to nocache setting the  <br>&gt; redraw_interval to be both greater then and less then the  <br>&gt; refresh_inteval even though it looks as if it should be less then  <br>&gt; what you set for the refresh_interval. In the end In the end I  <br>&gt; always end up needing to delete the tiles directory populated by  <br>&gt; mapserver in order to get them regenerated again.<br>&gt;<br>&gt; "Delfos, Jacob" <Jacob.Delfos@maunsell.com> wrote:<br>&gt; Samuel,<br>&gt;<br>&gt;
 Have you looked at the redraw_interval, described in init.php? That  <br>&gt; appends a timestamp to the URL of the tile, to force redrawing of  <br>&gt; the tiles. refresh-interval only does a re-request, returning a  <br>&gt; cached tile.<br>&gt;<br>&gt; regards,<br>&gt;<br>&gt; Jacob<br>&gt;<br>&gt;<br>&gt; From: ka-map-users-bounces@lists.maptools.org [mailto:ka-map-users- <br>&gt; bounces@lists.maptools.org] On Behalf Of Samuel Doyle<br>&gt; Sent: 28 July 2006 07:33<br>&gt; To: ka-map-users@lists.maptools.org<br>&gt; Subject: [ka-Map-users] Can someone answer this question please or  <br>&gt; tell mewho I should ask it to?<br>&gt;<br>&gt; Sorry but I haven't received any answers for the questions I have  <br>&gt; posted here but this one is a bit important.<br>&gt;<br>&gt; After poking around and guessing at based on what I noticed in the  <br>&gt; KaMap code I have place a refresh_interval value in a metadata  <br>&gt; section within a layer in my map file. Now, I
 can see a periodic  <br>&gt; update on the map but the problem is when I have modifed a dbf file  <br>&gt; under mapserver those changes are not reflected. So the question  <br>&gt; is, is there            something I need to do special to get  <br>&gt; MapServer or KaMap or whatever to detect an update done to a map so  <br>&gt; that it is served properly?? These changes to the map files are  <br>&gt; being done programatically and not by hand.<br>&gt;<br>&gt; Thanks, S.D.<br>&gt;<br>&gt;<br>&gt;<br>&gt; _______________________________________________<br>&gt; ka-Map-users mailing list<br>&gt; ka-Map-users@lists.maptools.org<br>&gt; http://lists.maptools.org/mailman/listinfo/ka-map-users<br><br>+-----------------------------------------------------------------+<br>|Paul Spencer                           pspencer@dmsolutions.ca   |<br>+-----------------------------------------------------------------+<br>|Applications &amp; Software Development                             
 |<br>|DM Solutions Group Inc                 http://www.dmsolutions.ca/|<br>+-----------------------------------------------------------------+<br><br><br><br><br></Jacob.Delfos@maunsell.com></Jacob.Delfos@maunsell.com></Jacob.Delfos@maunsell.com></blockquote><br>