You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When importing data such as VPF/VRF using OGR's OGDI driver, the Mapnik OGR plugin's file existence check isn't formulated to accept the OGDI driver's file string format (gltp://).
Everything seemes to work except the file existence check. Commenting out the check at line 71 of ogr_datasource.cpp:
if (!boost::filesystem::exists(dataset_name_))...
seems to provide a preliminary fix.
The text was updated successfully, but these errors were encountered:
[springmeyer] As noted in #337 and #126, we should be relying on GDAL/OGR error reporting to handle whether files/datasets exist. So, the attached patch starts that in motion by switching from the boost filesystem check to using 'CPLGetLastErrorMsg()' after a problem is encountered using 'OGROpen()'.
When importing data such as VPF/VRF using OGR's OGDI driver, the Mapnik OGR plugin's file existence check isn't formulated to accept the OGDI driver's file string format (gltp://).
Everything seemes to work except the file existence check. Commenting out the check at line 71 of ogr_datasource.cpp:
seems to provide a preliminary fix.
The text was updated successfully, but these errors were encountered: