Tengo datos almacenados en PostGIS. Cuando veo sus propiedades en QGIS, dice:
SRS: EPSG:4326 - WGS 84
Sin embargo, cuando quiero recuperar el valor del SRID directamente usando el Función Find_SRID , devuelve 0. Y mirando los datos, SRID es realmente 0 en PostGIS.
Consulta:
select * from geometry_columns;
Devuelve:
f_table_name | f_geometry_column | coord_dimension | srid | type
-----------------+------------------+--------------+-------------------
vector | wkb_geometry | 2 | 0 | POINT
vector | wkb_geometry | 2 | 0 | POINT
buff_out | wkb_geometry | 2 | 0 | POLYGON
buff_out | wkb_geometry | 2 | 0 | POLYGON
Pregunta: ¿Por qué el SRID para los mismos datos es diferente en QGIS y en PostGIS? ¿Cómo puedo obtener el valor correcto de SRID de PostGIS?
Estoy utilizando PostGIS 9.5.