-
Notifications
You must be signed in to change notification settings - Fork 10
Description
Hi @ablakey,
I've been trying to make your plugin work with my project. It looks like everything works fine until the QgsVectorLayer command is called in translator.py: layer = QgsVectorLayer(uri, topicName, 'rosvectorprovider'). The following lines:
if not layer.isValid():
print("Layer failed to load!")
I implemented immediately after said command does return an error.
To be more specific, all of my topics are detected and appear correctly in the available topics table from your plugin GUI. But whenever I select any of them and ask to create a layer, an empty layer is created with the expected name and source uri, but an error appears that says "Unavailable layer! Layer data source could not be found".
It seems like the problem comes from the provider. Have you encountered this issue before?