Murat,<div><br></div><div>Since it is MySQL it doesn&#39;t matter much how you store it. If you are going to edit the end points later, storing them as points is preferable, otherwise store them as wkt linestring geometries.</div>
<div><br></div><div>For your mapfile, first check if the extents are correct. Then check if the mapfile works with a shapefile created from the geometries in MySQL.<br><br>On Tuesday, February 28, 2012, Murat BEYHAN  wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Chaitanya,<br>
<br>
thanks for your repply,<br>
<br>
Actually I use ogr and mysql to draw point for example epicenter of<br>
earthquakes. But this is the first time to draw line which is stored in<br>
Mysql as a table. Actually there is no problem on drawing shape file of the<br>
line. But I would like to draw it using MySql and ogr functionality. So I<br>
have only start and end point of line and I store it on MySql database then<br>
I try to draw it considering id of the line by sql statement.<br>
Just I would lie to learn how to code it on Mapserver map file and how<br>
should I store line on database as a start and stop point of the line or as<br>
a geometry . Please help...<br>
thanks<br>
<br>
<br>
<br>
<br>
On Mon, 27 Feb 2012 22:09:52 +0530, Chaitanya kumar CH wrote<br>
&gt; Murat,<br>
&gt;<br>
&gt; First check if your database is accessible using ogrinfo[1].<br>
&gt; Then create a vrt file with the content you specified in the CONNECTION<br>
&gt; field of the mapfile. Check if ogrinfo gives expected results with this<br>
&gt; file.<br>
&gt;<br>
&gt; You probably have gdal executables if you are running mapserver.<br>
&gt;<br>
&gt; [1]: <a href="http://www.gdal.org/ogrinfo.html" target="_blank">http://www.gdal.org/ogrinfo.html</a><br>
&gt;<br>
&gt; On Mon, Feb 27, 2012 at 12:48 PM, Murat Beyhan<br>
&gt; &lt;<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;beyhan@deprem.gov.tr&#39;)">beyhan@deprem.gov.tr</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; Dear all,<br>
&gt; &gt; I have shared this mail on Mapserver list but could not solve my<br>
&gt; &gt; problem.<br>
&gt; &gt; Still could not achieve to draw line using start and stop point line<br>
&gt; &gt; data stored in MySql database.<br>
&gt; &gt;<br>
&gt; &gt; I have tried Mr. Robert&#39;s solution but I have faced an error message.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; in map file<br>
&gt; &gt; I changed Geometrytype from wkbline to wkblinestring.<br>
&gt; &gt;<br>
&gt; &gt; LAYER<br>
&gt; &gt; NAME sfault1<br>
&gt; &gt; CONNECTIONTYPE OGR<br>
&gt; &gt; CONNECTION &#39;&lt;OGRVRTDataSource&gt;<br>
&gt; &gt; &lt;OGRVRTLayer name=&quot;lineview&quot;&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&lt;SrcDataSource&gt;MYSQL:dynamic,user=root,password=mysqlpasswd,host=localhost,po<br>
rt=3306,tables=lineview&lt;/SrcDataSource&gt;<br>
&gt; &gt; &lt;SrcLayer&gt;lineview&lt;/SrcLayer&gt;<br>
&gt; &gt; &lt;GeometryType&gt;wkbLineString&lt;/GeometryType&gt;<br>
&gt; &gt; &lt;GeometryField encoding=&quot;WKT&quot; field=&quot;geom&quot;/&gt;<br>
&gt; &gt; &lt;LayerSRS&gt;WGS84&lt;/LayerSRS&gt;<br>
&gt; &gt; &lt;FID&gt;eq_id&lt;/FID&gt;<br>
&gt; &gt; &lt;/OGRVRTLayer&gt;<br>
&gt; &gt; &lt;/OGRVRTDataSource&gt;&#39;<br>
&gt; &gt;  DATA sfault1<br>
&gt; &gt;  STATUS on<br>
&gt; &gt;  TYPE line<br>
&gt; &gt;  CLASS<br>
&gt; &gt;  NAME &quot;Source Fault&quot;<br>
&gt; &gt;  SYMBOL &quot;cline&quot;<br>
&gt; &gt;   SIZE 3<br>
&gt; &gt;  COLOR  0 0 255<br>
&gt; &gt;  END<br>
&gt; &gt; END<br>
&gt; &gt;<br>
&gt; &gt; in database<br>
&gt; &gt; I have two table<br>
&gt; &gt; one is sfault which store<br>
&gt; &gt;<br>
&gt; &gt; id lat1 lon1 lat2 lon2<br>
&gt; &gt;<br>
&gt; &gt; and another is lineview which is a view<br>
&gt; &gt; of this table created by following<br>
&gt; &gt;<br>
&gt; &gt; create view lineview as select eq_id, &quot;LINESTRING(&quot; + lon1 + &quot; &quot; + lat1<br>
&gt; &gt; + &quot;,&quot; + lon2 + &quot; &quot; + lat2 + &quot;)&quot; as geom from sfault<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; there is an another issue,<br>
&gt; &gt;<br>
&gt; &gt; I have to draw line by considering id<br>
&gt; &gt; so in the map When I select one id, line should be belong to this id&#39;s<br>
&gt; &gt; information<br>
&gt; &gt; so I have to make a sql statement as follow instead of draw all line<br>
&gt; &gt; stored in database I have to draw just one line considering id<br>
&gt; &gt;<br>
&gt; &gt; something like this:<br>
&gt; &gt;<br>
&gt; &gt; select eq_id, geom from lineview where id like &#39;%id%&#39;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; please help about this subject....<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Regards....<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; Murat<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; --<br>
&gt; &gt; This message has been scanned for viruses and<br>
&gt; &gt; dangerous content by MailScanner, and is<br>
&gt; &gt; believed to be clean.<br>
&gt; &gt;<br>
&gt; &gt; _______________________________________________<br>
&gt; &gt; gdal-dev mailing list<br>
&gt; &gt; <a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;gdal-dev@lists.osgeo.org&#39;)">gdal-dev@lists.osgeo.org</a><br>
&gt; &gt; <a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
&gt; &gt;<br>
&gt;<br>
&gt; --<br>
&gt; Best regards,<br>
&gt; Chaitanya kumar CH.<br>
&gt;<br>
&gt; +91-9494447584<br>
&gt; 17.2416N 80.1426E<br>
&gt;<br>
&gt; --<br>
&gt; This message has been scanned for viruses and<br>
&gt; dangerous content by MailScanner, and is<br>
&gt; believed to be clean.<br>
<br>
<br>
Murat Beyhan<br>
Jeofizik Yük. Müh.<br>
T.C.<br>
BAŞBAKANLIK<br>
Afet ve Acil Durum Yönetimi Başkanlığı<br>
Deprem Dairesi Başkanlığı<br>
Eskişehir Yolu 12. Km. Lodumlu/Ankara<br>
Tel:+90 (312) 2872680-1550<br>
<br>
<br>
--<br>
This message has been scanned for viruses and<br>
dangerous content by MailScanner, and is<br>
believed to be clean.<br>
<br>
</blockquote></div><br><br>-- <br>Best regards,<br>Chaitanya kumar CH.<br><br>+91-9494447584<br>17.2416N 80.1426E<br>