Hey!<br><br>Welcome to ka-map!&nbsp; I am a bit new myself, but I&#39;ve had quite a bit of success presenting my data with it so far.<br><br>I am building a similar interface that allows me to click on a pixel in a raster and display information based on the value of the selected pixel.&nbsp; A couple tips on how I&#39;ve done it (which is not to say that is the best, or only way)...
<br><br>1.&nbsp; ka-map is just used as the interface to the data... after a pixel is clicked a server-side python script will generate a plot (mine&#39;s a timeseries, too) that is displayed afterwards in the ka-map interface.&nbsp; 
<br><br>2. I altered map_query_float.php to display my custom data returned from the query.&nbsp; There was actually some code commented out already in that file which, after uncommented, displayed a table of the variables returned from the query.&nbsp; Look for the following code so you can see where to add your modifications: 
<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;tr&gt;&quot;;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; foreach ($aKeys as $key) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;th&gt;$key&lt;/th&gt;&quot;;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;tr&gt;&quot;;<br><br>then later...<br><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; foreach ($aValues as $value) {<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if ($value)<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;td&gt;$value&lt;/td&gt;&quot;;
<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; else<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;td&gt;&amp;nbsp;&lt;/td&gt;&quot;;<br>&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;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; echo &quot;&lt;/tr&gt;&quot;;
<br><br>Take a look at that to see what it can do for you.&nbsp; I added some code that displayed an image based on the value of one of those variables.&nbsp; <br><br>3.&nbsp; I&#39;ve found a python library that makes it incredibly easy to create graphs on-demand.&nbsp; Take a look at the python matplotlib library.&nbsp; It should be extremely easy to use especially if you are familiar with matlab.&nbsp; There might be a similar php library out there that does the same thing, but I found python to be helpful since it is already processing my data and has an interface to my MySQL database from which it grabs the data to be plotted.
<br><br>I hope I made some sense.&nbsp; Let me know if I can be of any more help.<br><br>Sam<br><br><br><br><br><br><div><span class="gmail_quote">On 6/26/07, <b class="gmail_sendername">stin wang</b> &lt;<a href="mailto:stin.wang@gmail.com">
stin.wang@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<p><span lang="EN-US">Hello, lister<br>
<br>
I&#39;m fresh to ka-map. I want to do something described as blow; anyone can give
me some idea about how to do is welcome.<br>
<br>
I&#39;m do some researches in greenhouse, which means i put some sensors in the
greenhouse, used to monitor some environment parameter ,such as temperature ,
humidity, carbon dioxide concentration and radiation. There are several green
houses, so I want to build a webgis so I can check data visually. The data
gathered in greenhouse is send to mssql2000 database server. So my question is
how to show the data in sql2000 in a ka-map interface. <br>
<br>
I have already built a test ka-map, and add a new map to hold my greenhouse
point data. Is there&nbsp; any idea that can allow me to just click one point
then popup a gage and show a curve describe the variation in a fixed time
series. And future more, maybe I can do some interpolations using kriging
method?? I don&#39;t know, maybe you get give me some cues.</span></p>

<br clear="all"><br>-- <br>----------------------------------------------<br>Tie Wang<br>TianJin Climate Center<br>TianJin Meterological Bureau<br>Tianjin, 300074, China<br>Email: <a href="mailto:stin.wang@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
stin.wang@gmail.com
</a><br>&nbsp;&nbsp;  <br>----------------------------------------------
<br>_______________________________________________<br>ka-Map-users mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:ka-Map-users@lists.maptools.org">ka-Map-users@lists.maptools.org</a>
<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://lists.maptools.org/mailman/listinfo/ka-map-users" target="_blank">http://lists.maptools.org/mailman/listinfo/ka-map-users</a><br><br></blockquote>
</div><br>