Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
General Tech Bugs & Fixes 2 years ago
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.
Turn Your Knowledge into Earnings.
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();
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();
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.
General Tech 10 Answers
General Tech 7 Answers
General Tech 3 Answers
General Tech 9 Answers
General Tech 2 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.