From: | "Jonathan (dot)(dot)(dot)(dot)nem4" <napomu(at)msn(dot)com> |
---|---|
To: | <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | postgres+postgis..SOLUCIONADO |
Date: | 2007-02-01 19:51:52 |
Message-ID: | BAY124-W9B99FDC46CA11477A9AB2CDA40@phx.gbl |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
El problema era que en esta linea del archivo .map estaba de la siguiente forma:DATA "the_geom FROM tablax"y es de la siguiente forma para que pueda realizar al consulta:DATA "the_geom FROM tablax USING UNIQUE gid USING UNIQUE srid=xxxx"Hay que tener encuenta que el srid es la projeccion que se esta usando en el mapa.
.:::l\l€/V\4:::.From: napomu(at)msn(dot)comTo: pcifuentes(at)siigsa(dot)cl; pgsql-es-ayuda(at)postgresql(dot)orgSubject: RE: [pgsql-es-ayuda] postgres+postgisDate: Thu, 1 Feb 2007 19:25:21 +0000
Hola todos,Estamos intentado personalizar pmapper, al realizar una consulta por atributos conectandonos a POSTGIS; especificamente estamos trabajando la funcionalidad 'Buscar Por'; tengo entendido que la función que se utiliza es q_execAttributeQuery // QUERY ON POSTGIS LAYER if ($this->qLayerType == 6 || $this->XYLayerProperties) { foreach ($getvars as $var => $val0) { if ($var != 'PHPSESSID' && $var != 'qlayer' && $var != 'dbtable' && $var != 'findlist' && $var != 'mode') { $val = $this->q_strDecode($_GET['$var']); if ($this->qLayerType == 6) { $varValStr = returnVar($var, $val, 'postgis'); } else { $varValStr = returnVar($var, $val, 'db'); //error_log('db'); } if (strlen(trim($val)) > 0) { $qStr .= $varValStr . ' AND '; } } } $this->qStr = str_replace(';', ' 0 ERROR 0 ', substr($qStr, 0, -5)) ; //echo $this->qStr;Y el js_config esta configurado de la siguiente manera:searchList['glimite'] = new Array('<?php echo _p('glimite') ?>','#nombre','<?php echo _p('glimite') ?>','');Pero al realizar la consulta, no muestra ningun resultado y no tenemos idea de que puede estar mal.Alguien tiene alguna idea de lo que puede estar sucediendo,Gracias,.:::l\l€/V\4:::.
From | Date | Subject | |
---|---|---|---|
Next Message | Patricio Cifuentes Ithal | 2007-02-01 20:14:27 | RE: postgres+postgis |
Previous Message | Jonathan ....nem4 | 2007-02-01 19:25:21 | RE: postgres+postgis |