PHP Classes

Mostrara la data del shape

Recommend this page to a friend!

      Shape File Reader  >  All threads  >  Mostrara la data del shape  >  (Un) Subscribe thread alerts  
Subject:Mostrara la data del shape
Summary:Mostrara la data del shape
Messages:1
Author:Juan Camilo
Date:2014-07-18 15:59:24
 

  1. Mostrara la data del shape   Reply   Report abuse  
Picture of Juan Camilo Juan Camilo - 2014-07-18 15:59:24
Buenas tardes

he tratado de utilizar esta clase pero me surgen muchos errores, el primero que me ocurrió fue que debía llamar la clase : dbf_class lo cual ya realice luego utilice este codigo para poder mostrar la infromacion de mi shape

<?php

include ('ShapeFile.inc.php');
//sets the options to show the polygon points, 'noparts' => true would skip that and save time
$options = array('noparts' => false);

$url = dirname(__FILE__) . '/ALGODON_INTERIOR_2013_V3.shp';

$shp = new ShapeFile($url, $options);
//Dump the ten first records
$i = 0;
while ($record = $shp->getNext() and $i < 10) {
$dbf_data = $record->getDbfData();
$shp_data = $record->getShpData();
//Dump the information
var_dump($dbf_data);
var_dump($shp_data);
$i++;
}
?>

lo cual me arroja este error

Fatal error: Call to undefined function dbase_open() in C:\xampp\htdocs\migra_shape\ShapeFile.inc.php on line 296

no se que podría hacer aquí pero me gustaría saber que pasa o poder orientarme en esta clase que realmente la necesito.