PHP MapScript - Query GDB Geodatabase?

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

I'm trying to use/learn some PHP MapScript on a GDB file and cannot get anything from it.

The PHP below works great if I use countries.sqllite (via countries.map) file I have and shows me an array of countries both in a for and while loop.

However, when I switch and point to a buildings.gdb file (via buildings.map) I get an error of "msQueryByRect(): No matching record(s) found." for the first for loop and blank or no data for the while loop.

Both .map files just point to the one layer and show fine as WMS in OpenLayers and in QGIS.

I've been searching through PHP MapScript API stuff all afternoon (starting with https://mapserver.org/mapscript/php/phpmapscript.html) and found nothing to help me, and am asking if there is anything I missed or any special considerations I need to use MapScript a GDB file.

$map_path = "/ms4w/maps/";
$map = ms_newMapObj($map_path."buildings.map");
$map = ms_newMapObj($map_path."countries.map");
print_r($map);

$layers = $map->getAllLayerNames();           print_r($layers);
$myLayerName = $layers[0];                    echo '|'.$myLayerName.'|
'; $l = $map->getLayerByName($myLayerName); print_r($map->extent); $l->queryByRect($map->extent); for ($i=0; $i<$l->getNumResults();$i++){ $s = $l->getShape($l->getResult($i)); echo $i.'='; print_r($s->values); } $layer = $map->getLayer(0); print_r($layer); $status = $layer->open(); print_r($status.'
'); $extent = $map->extent; print_r($extent); $status = $layer->whichShapes($extent); print_r('
'.$status.'
'); while ($shape = $layer->nextShape()) { echo $shape->index ."=>"; print_r($shape->values); } $layer->close();
profilepic.png
manpreet 2 years ago

 

For anyone new to Mapscript or in a similar situation, I ended up having too much with extent and bounds and just needed to simplify to match my buildings.map file and this code gets it done in a map file with no TEMPLATE:

$map = new mapObj($map_path."buildings.map");
$layer = $map->getLayer(0);
$status = $layer->open();
while ($shape = $layer->nextShape()) {
    echo $shape->index ."=>";
    echo 'Type='.$shape->type.'
'; print_r($shape->values); } $layer->close();

0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

tuteehub community

Join Our Community Today

Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.

tuteehub community