<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1515" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Pete,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>You must also have the CVS version of init.php and 
kaMap.js, in case you didn't have those. It won't work otherwise.&nbsp;And make 
sure that the JPEG outputformat exists in your mapfile. If it still doesn't 
work, check the link for the tile, and see what value the 'i=' parameter in the 
URL has. Should be "i=JPEG". Your mapfile layer definition looks ok to 
me.</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>I should probably mention that on line 77 of 
init.php, the imagetype for a particular layer is set to that of the mapfile if 
a layer doesn't have an "imageformat" metadata parameter. So at the moment, the 
imagetype in config.php gets ignored for tiles. Seemed like a good idea at the 
time, but Paul said there was a reason for why it has to exist in config.php as 
well......</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>regards,</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>Jacob</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial 
size=2>--------------------------------------------------------------------------------<BR>From: 
Peter Giencke [mailto:pgiencke@glc.org] <BR>Sent: 15 September 2005 23:41<BR>To: 
'Jacob Delfos'<BR>Cc: <A 
href="mailto:ka-map-users@lists.maptools.org">ka-map-users@lists.maptools.org</A><BR>Subject: 
RE: [ka-Map-users] Highly Interested Developer with some questions</FONT></DIV>
<DIV>&nbsp;</DIV><FONT face=Arial size=2>
<DIV><BR>Jacob et al,</DIV>
<DIV>&nbsp;</DIV>
<DIV>Anyone else try this? I'm not having any luck. Despite setting the 
imageformat param, the image (jpeg) is always taking the format specified in 
config.php (gif). I'm using the stock cvs versions of tile.php and config.php 
(with changes to only to the paths and strtoupper for tile.php). Am I missing 
something really obvious?</DIV>
<DIV>&nbsp;</DIV>
<DIV>The problematic layer is below:</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;LAYER<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; NAME 
jpl3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
METADATA<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "wms_title" 
"jpl2"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "wms_srs"&nbsp;&nbsp; 
"EPSG:4326"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; imageformat 
"JPEG"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
END<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; TYPE 
RASTER<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; STATUS 
default<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONNECTIONTYPE 
WMS<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CONNECTION "<A 
href="http://wms.jpl.nasa.gov/wms.cgi">http://wms.jpl.nasa.gov/wms.cgi</A> 
SERVICENAME=OGC:WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;layers=global_mosaic&amp;styles=&amp;srs=EPSG:4326&amp;format=image/jpeg"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
PROJECTION<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
"init=epsg:4326"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
END<BR>&nbsp;&nbsp;&nbsp;&nbsp; END</DIV>
<DIV>&nbsp;</DIV>
<DIV>-pete</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>--------------------------------------------------------------------------------<BR>From: 
Jacob Delfos [mailto:jacob.delfos@maunsell.com] <BR>Sent: Wednesday, September 
14, 2005 9:19 PM<BR>To: <A 
href="mailto:pgiencke@glc.org">pgiencke@glc.org</A><BR>Cc: <A 
href="mailto:ka-map-users@lists.maptools.org">ka-map-users@lists.maptools.org</A><BR>Subject: 
RE: [ka-Map-users] Highly Interested Developer with some questions</DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>Hi Pete,</DIV>
<DIV>&nbsp;</DIV>
<DIV>Yes, that's correct. To force a certain image format for a particular 
layer, you can put</DIV>
<DIV>&nbsp;</DIV>
<DIV>METADATA<BR>[...]<BR>imageformat "JPEG"<BR>[...]<BR>END</DIV>
<DIV>&nbsp;</DIV>
<DIV>This way, you can pick whichever format is most appropriate to the content 
(e.g. indexed colour for vector, RGB for raster). So you can mix multiple image 
formats (JPEG, PNG24, GIF, etc), which allows you to get around the PNG 
transparency problem by using GIF in combination with a full-colour format. 
</DIV>
<DIV>&nbsp;</DIV>
<DIV>At this moment, the imageformat parameter must be uppercase for it to work. 
Paul, could you maybe change this? On line 71 of tile.php, replace with:</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp; setOutputFormat(strtoupper($_REQUEST['i'])); </DIV>
<DIV>&nbsp;</DIV>
<DIV><BR>regards,</DIV>
<DIV>&nbsp;</DIV>
<DIV>Jacob</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>» -----Original Message-----<BR>» From: Peter Giencke 
[mailto:pgiencke@glc.org] <BR>» Sent: 14 September 2005 20:46<BR>» To: <A 
href="mailto:jacob.delfos@maunsell.com">jacob.delfos@maunsell.com</A><BR>» 
Subject: RE: [ka-Map-users] Highly Interested Developer with <BR>» some 
questions<BR>» <BR>» Jacob,<BR>» <BR>» I might be reading this wrong, but are 
you saying that you're <BR>» using both<BR>» JPEG and PNG layers simultaneously 
in ka-map? If so, I'd like <BR>» to hear the<BR>» details on doing this...<BR>» 
<BR>» -pete<BR>» <BR>» <BR>» Jacob Delfos wrote:<BR>» &gt; Clark / Pete,<BR>» 
&gt;&nbsp; <BR>» &gt; Regarding the use of aerial photography and PNG24: I <BR>» 
noticed that Paul <BR>» &gt; has integrated the changes (png transparency hack) 
into Ka-Map that <BR>» &gt; allows PNG24 to be transparent in IE, along with 
changes allowing <BR>» &gt; different image formats for different groups (by 
specifying an <BR>» &gt; "imageformat" parameter in the metadata). So that is 
not a <BR>» limitation <BR>» &gt; anymore to the use of aerial photography. I 
successfully use jpeg <BR>» &gt; format for full-colour imagery, and gif for our 
transparent <BR>» vector layers.<BR>» &gt;&nbsp; <BR>» &gt; Paul did mention 
about having issues with the png transparency hack <BR>» &gt; for<BR>» &gt; 8 
bit PNG images (which Mapserver appears to revert to for vector <BR>» &gt; data, 
even if PNG24 is the specified image format). But you <BR>» could now <BR>» &gt; 
instead use gif for transparent layers, while using jpeg for <BR>» &gt; 
non-transparent layers, retaining the ability for <BR>» full-colour images. 
<BR>» &gt; Gif transparency works in all browsers without problems, <BR>» 
providing GIF <BR>» &gt; is specified as default outputformat in the mapfile 
(otherwise <BR>» &gt; php_mapscript appears to produce non-transparent gif 
images). I did <BR>» &gt; some testing, which showed GIF appears to compress 
indexed-colour <BR>» &gt; images a fair bit better than<BR>» &gt; PNG8 too 
(lossless). For the JPEG layers, you can pick the desired <BR>» &gt; 
compression, and significantly reduce image sizes that way, <BR>» somewhat <BR>» 
&gt; reducing the speed problems that Pete mentioned.<BR>» &gt;&nbsp; <BR>» &gt; 
regards,<BR>» &gt;&nbsp; <BR>» &gt; Jacob<BR>» &gt;&nbsp; <BR>» &gt;&nbsp; <BR>» 
&gt;&nbsp; <BR>» &gt;&nbsp; <BR>» &gt;&nbsp; <BR>» &gt; <BR>» 
----------------------------------------------------------------------<BR>» &gt; 
----------<BR>» &gt; From: <A 
href="mailto:ka-map-users-bounces@lists.maptools.org">ka-map-users-bounces@lists.maptools.org</A><BR>» 
&gt; &lt;<A 
href="mailto:ka-map-users-bounces@lists.maptools.org">mailto:ka-map-users-bounces@lists.maptools.org</A>&gt;<BR>» 
&gt; [mailto:ka-map-users-bounces@lists.maptools.org] On Behalf Of Peter <BR>» 
&gt; Giencke<BR>» &gt; Sent: 14 September 2005 03:54<BR>» &gt; To: <A 
href="mailto:cendrizzi@gmail.com">cendrizzi@gmail.com</A> &lt;<A 
href="mailto:cendrizzi@gmail.com">mailto:cendrizzi@gmail.com</A>&gt;; <BR>» &gt; 
<A 
href="mailto:ka-map-users@lists.maptools.org">ka-map-users@lists.maptools.org</A> 
<BR>» &gt; &lt;<A 
href="mailto:ka-map-users@lists.maptools.org">mailto:ka-map-users@lists.maptools.org</A>&gt;<BR>» 
&gt; Subject: RE: [ka-Map-users] Highly Interested Developer with some <BR>» 
&gt; questions<BR>» &gt;&nbsp; <BR>» &gt; <BR>» &gt; Clark,<BR>» &gt;&nbsp; 
<BR>» &gt; 1) Yes you can; we've been using raster [wms] backdrops <BR>» 
extensively in <BR>» &gt; many of our ka-map implementations. I've found 
however, <BR>» that speed can <BR>» &gt; suffer (from mildly to greatly) 
depending on the number and <BR>» complexity <BR>» &gt; of rasters used (duh). 
Also, best results are obtained when using <BR>» &gt; PNG24 for this, but you'll 
have to 'hack' ka-map to enable PNG <BR>» &gt; transparency, so that 'layering' 
works in IE.&nbsp; (There's a <BR>» thread for that<BR>» here:<BR>» &gt; <BR>» 
<A 
href="http://lists.maptools.org/pipermail/ka-map-users/2005-August/0">http://lists.maptools.org/pipermail/ka-map-users/2005-August/0</A><BR>» 
00235.html).<BR>» <BR>» &gt; If these two concerns can be leveraged, the results 
are <BR>» very nice (I <BR>» &gt; have an example of this here: <A 
href="http://mds.glc.org/kamap_cvs3/">http://mds.glc.org/kamap_cvs3/</A>).<BR>» 
&gt;&nbsp; <BR>» &gt; 2. Assuming you take the time to peruse the api's source 
code and <BR>» &gt; consult the mailing-list archives, you should be able to get 
up and <BR>» &gt; running within a weekend, or week, depending... Although <BR>» 
ka-map is a <BR>» &gt; relatively new creation, it's still very functional at 
this <BR>» early stage.<BR>» &gt;&nbsp; <BR>» &gt; -pete<BR>» &gt;&nbsp; <BR>» 
&gt; <BR>» &gt; <BR>» 
----------------------------------------------------------------------<BR>» &gt; 
----------<BR>» &gt; From: <A 
href="mailto:ka-map-users-bounces@lists.maptools.org">ka-map-users-bounces@lists.maptools.org</A><BR>» 
&gt; &lt;<A 
href="mailto:ka-map-users-bounces@lists.maptools.org">mailto:ka-map-users-bounces@lists.maptools.org</A>&gt;<BR>» 
&gt; [mailto:ka-map-users-bounces@lists.maptools.org] On Behalf Of Clark <BR>» 
&gt; Endrizzi<BR>» &gt; Sent: Tuesday, September 13, 2005 2:17 PM<BR>» &gt; To: 
<A 
href="mailto:ka-map-users@lists.maptools.org">ka-map-users@lists.maptools.org</A> 
<BR>» &gt; &lt;<A 
href="mailto:ka-map-users@lists.maptools.org">mailto:ka-map-users@lists.maptools.org</A>&gt;<BR>» 
&gt; Subject: [ka-Map-users] Highly Interested Developer with some <BR>» &gt; 
questions<BR>» &gt;&nbsp; <BR>» &gt; <BR>» &gt; I run a development group that 
is developing a real estate <BR>» &gt; application.(web based).&nbsp; It's PHP 
and from the start we <BR>» have had the <BR>» &gt; idea of including mapping 
software to integrate with mapping stuff.<BR>» &gt; We've looked at multiple web 
based mapping vendors, <BR>» including Arc IMS, <BR>» &gt; but haven't found 
something that we consider a good <BR>» solution.&nbsp; We want <BR>» &gt; 
something that is easy to use like Google maps but also <BR>» very 
flexible.<BR>» &gt; Furthermore it's important that we have the ability to <BR>» 
include it in <BR>» &gt; our mostly closed source applicaton.<BR>» &gt;&nbsp; 
<BR>» &gt; I'm not really a mapping guru as most of my incomplete <BR>» 
knowledge comes <BR>» &gt; from a mapping group in the same building so I have 
some basic <BR>» &gt; questions about whether we can use ka-map and contribute 
to <BR>» it as well.<BR>» &gt; 1.&nbsp; Can you use aerial photography with 
ka-map?&nbsp; We use aerials <BR>» &gt; provided by air photo USA and want to 
use that on our web <BR>» based stuff.&nbsp; <BR>» &gt; I'm guessing right now 
only street maps are supported.&nbsp; <BR>» With aerials, <BR>» &gt; we need to 
use these images (they come in jpeg) and associate their <BR>» &gt; world files 
(which have the projection ifnormation in <BR>» them).&nbsp; Is this <BR>» &gt; 
something that could be done with this software (if it <BR>» doesn't exist <BR>» 
&gt; now could it be realistically added?).<BR>» &gt;&nbsp; <BR>» &gt; 2.&nbsp; 
Could we expect to use this stuff by the end of the <BR>» year?&nbsp; Based 
<BR>» &gt; off the examples it looks like ka-map is pretty far along...<BR>» 
&gt;&nbsp; <BR>» &gt; Actually that's probably all the questions for now since 
our use of <BR>» &gt; ka-maps is contigent on them.&nbsp; Currently we have four 
developers <BR>» &gt; including myself with pretty extensive experience in web 
<BR>» development, <BR>» &gt; javascript (including just starting to get into 
"ajax" <BR>» stuff).&nbsp; I hope <BR>» &gt; it's clear that we're not trying to 
selfishly use and <BR>» expect ka-maps <BR>» &gt; to work for us as we're 
willing to improve it to meet our <BR>» needs if it <BR>» &gt; doesn't have the 
functionality.<BR>» &gt;&nbsp; <BR>» &gt; I hope this can work out since you 
have done excellent work! <BR>» &gt;&nbsp; <BR>» &gt; Thanks,<BR>» &gt; --<BR>» 
&gt; -Clark Endrizzi<BR>» &gt; &lt;<A 
href="mailto:jacob.delfos@maunsell.com">mailto:jacob.delfos@maunsell.com</A>&gt;<BR>» 
&gt; <BR>» &gt; <BR>» &gt; <BR>» 
----------------------------------------------------------------------<BR>» &gt; 
--<BR>» &gt; <BR>» &gt; _______________________________________________<BR>» 
&gt; ka-Map-users mailing list<BR>» &gt; <A 
href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</A><BR>» 
&gt; <A 
href="http://lists.maptools.org/mailman/listinfo/ka-map-users">http://lists.maptools.org/mailman/listinfo/ka-map-users</A><BR>» 
<BR>» -- <BR>» 
+-----------------------------------------------------------------+<BR>» |Paul 
Spencer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<A href="mailto:pspencer@dmsolutions.ca">pspencer@dmsolutions.ca</A>&nbsp;&nbsp; 
|<BR>» +-----------------------------------------------------------------+<BR>» 
|Applications &amp; Software 
Development&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
|<BR>» |DM Solutions Group 
Inc&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
<A href="http://www.dmsolutions.ca/">http://www.dmsolutions.ca/</A>|<BR>» 
+-----------------------------------------------------------------+<BR>» 
_______________________________________________<BR>» ka-Map-users mailing 
list<BR>» <A 
href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</A><BR>» 
<A 
href="http://lists.maptools.org/mailman/listinfo/ka-map-users">http://lists.maptools.org/mailman/listinfo/ka-map-users</A><BR>» 
</FONT></DIV>
<DIV><FONT face=Arial size=2><A 
href="mailto:jacob.delfos@maunsell.com"></A></FONT>&nbsp;</DIV></BODY></HTML>