Error loading layer in QGIS using IfaceError Loading Layer/Shapefile in a Standalone Python QGIS ApplicationHow do I properly import python sklearn to QGIS PyQt plugin?QGIS 2.8.1 ogr OpenFileGDB zip formatiface.addVectorLayer on a gml file causes “Select vector layers to add” dialog (pyqgis)QGIS Server sending UPDATE… WHERE NULL to postgis in a WFS layerOpening vector files in QGIS 2.18 causes error and crashQGIS 2.18 C++ API: How do I match the scale of vector and raster layers with different crs?Loading a WMS layer to QGIS using pythonqgis:JoinAttributeTable is giving a Syntax Error in QGIS 3.0SAGA Raster Calculator in QGIS Algorithm script produces 'NoneType' object has no attribute 'crs'

What is the greatest age difference between a married couple in Tanach?

Instead of Universal Basic Income, why not Universal Basic NEEDS?

Dot in front of file

Make a transparent 448*448 image

How to simplify this time periods definition interface?

Is having access to past exams cheating and, if yes, could it be proven just by a good grade?

Does the statement `int val = (++i > ++j) ? ++i : ++j;` invoke undefined behavior?

I need to drive a 7/16" nut but am unsure how to use the socket I bought for my screwdriver

What has been your most complicated TikZ drawing?

Russian cases: A few examples, I'm really confused

Happy pi day, everyone!

Does splitting a potentially monolithic application into several smaller ones help prevent bugs?

Brexit - No Deal Rejection

How to explain that I do not want to visit a country due to personal safety concern?

Co-worker team leader wants to inject his friend's awful software into our development. What should I say to our common boss?

Ban on all campaign finance?

Schematic conventions for different supply rails

Meaning of "SEVERA INDEOVI VAS" from 3rd Century slab

How to answer questions about my characters?

Can hydraulic brake levers get hot when brakes overheat?

What is this large pipe coming out of my roof?

My adviser wants to be the first author

Why do Australian milk farmers need to protest supermarkets' milk price?

Did CPM support custom hardware using device drivers?



Error loading layer in QGIS using Iface


Error Loading Layer/Shapefile in a Standalone Python QGIS ApplicationHow do I properly import python sklearn to QGIS PyQt plugin?QGIS 2.8.1 ogr OpenFileGDB zip formatiface.addVectorLayer on a gml file causes “Select vector layers to add” dialog (pyqgis)QGIS Server sending UPDATE… WHERE NULL to postgis in a WFS layerOpening vector files in QGIS 2.18 causes error and crashQGIS 2.18 C++ API: How do I match the scale of vector and raster layers with different crs?Loading a WMS layer to QGIS using pythonqgis:JoinAttributeTable is giving a Syntax Error in QGIS 3.0SAGA Raster Calculator in QGIS Algorithm script produces 'NoneType' object has no attribute 'crs'













2















While I was trying to load a vector layer (Shapefile) from the desktop directory into the QGIS using the iface variable data is not loading and
user name in location of the status message is showing strange symbol
.Can anyone please suggest the solution.



Code is:



layer=iface.addVectorLayer("Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp","TM_WORLD_BORDERS-0.3","ogr")


Error Received while loading:
enter image description here



the username needs to be like:
Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp










share|improve this question









New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Dash - is unaccepted character in shapefile name.

    – ahmadhanb
    Mar 11 at 6:54











  • Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

    – Devenepali
    Mar 11 at 7:00






  • 2





    You need to put r before the path. see the answer.

    – ahmadhanb
    Mar 11 at 7:06
















2















While I was trying to load a vector layer (Shapefile) from the desktop directory into the QGIS using the iface variable data is not loading and
user name in location of the status message is showing strange symbol
.Can anyone please suggest the solution.



Code is:



layer=iface.addVectorLayer("Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp","TM_WORLD_BORDERS-0.3","ogr")


Error Received while loading:
enter image description here



the username needs to be like:
Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp










share|improve this question









New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • Dash - is unaccepted character in shapefile name.

    – ahmadhanb
    Mar 11 at 6:54











  • Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

    – Devenepali
    Mar 11 at 7:00






  • 2





    You need to put r before the path. see the answer.

    – ahmadhanb
    Mar 11 at 7:06














2












2








2








While I was trying to load a vector layer (Shapefile) from the desktop directory into the QGIS using the iface variable data is not loading and
user name in location of the status message is showing strange symbol
.Can anyone please suggest the solution.



Code is:



layer=iface.addVectorLayer("Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp","TM_WORLD_BORDERS-0.3","ogr")


Error Received while loading:
enter image description here



the username needs to be like:
Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp










share|improve this question









New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












While I was trying to load a vector layer (Shapefile) from the desktop directory into the QGIS using the iface variable data is not loading and
user name in location of the status message is showing strange symbol
.Can anyone please suggest the solution.



Code is:



layer=iface.addVectorLayer("Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp","TM_WORLD_BORDERS-0.3","ogr")


Error Received while loading:
enter image description here



the username needs to be like:
Usersbipin162DesktopTM_WORLD_BORDERS-0.3.shp







qgis pyqgis qgis-plugins qgis-processing pyqgis-3






share|improve this question









New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 days ago









nmtoken

7,99642866




7,99642866






New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Mar 11 at 6:37









DevenepaliDevenepali

71




71




New contributor




Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Devenepali is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • Dash - is unaccepted character in shapefile name.

    – ahmadhanb
    Mar 11 at 6:54











  • Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

    – Devenepali
    Mar 11 at 7:00






  • 2





    You need to put r before the path. see the answer.

    – ahmadhanb
    Mar 11 at 7:06


















  • Dash - is unaccepted character in shapefile name.

    – ahmadhanb
    Mar 11 at 6:54











  • Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

    – Devenepali
    Mar 11 at 7:00






  • 2





    You need to put r before the path. see the answer.

    – ahmadhanb
    Mar 11 at 7:06

















Dash - is unaccepted character in shapefile name.

– ahmadhanb
Mar 11 at 6:54





Dash - is unaccepted character in shapefile name.

– ahmadhanb
Mar 11 at 6:54













Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

– Devenepali
Mar 11 at 7:00





Dash has been removed and renamed with simple name still same error is showing in QGIS staus bar.

– Devenepali
Mar 11 at 7:00




2




2





You need to put r before the path. see the answer.

– ahmadhanb
Mar 11 at 7:06






You need to put r before the path. see the answer.

– ahmadhanb
Mar 11 at 7:06











1 Answer
1






active

oldest

votes


















2














Using QGIS 3 you need to load the layers like this:



uri = r"F:AhmadTestTest4TestGrid_Test.shp"
iface.addVectorLayer(uri, "Grid", "ogr")


You need to put r before the path. r stands for "raw" which interprets backslash in the string as actual backslash rather than a special character.



You can refer to the tutorial of PyQGIS 101: Loading a vector layer






share|improve this answer
























    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "79"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    Devenepali is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315024%2ferror-loading-layer-in-qgis-using-iface%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    Using QGIS 3 you need to load the layers like this:



    uri = r"F:AhmadTestTest4TestGrid_Test.shp"
    iface.addVectorLayer(uri, "Grid", "ogr")


    You need to put r before the path. r stands for "raw" which interprets backslash in the string as actual backslash rather than a special character.



    You can refer to the tutorial of PyQGIS 101: Loading a vector layer






    share|improve this answer





























      2














      Using QGIS 3 you need to load the layers like this:



      uri = r"F:AhmadTestTest4TestGrid_Test.shp"
      iface.addVectorLayer(uri, "Grid", "ogr")


      You need to put r before the path. r stands for "raw" which interprets backslash in the string as actual backslash rather than a special character.



      You can refer to the tutorial of PyQGIS 101: Loading a vector layer






      share|improve this answer



























        2












        2








        2







        Using QGIS 3 you need to load the layers like this:



        uri = r"F:AhmadTestTest4TestGrid_Test.shp"
        iface.addVectorLayer(uri, "Grid", "ogr")


        You need to put r before the path. r stands for "raw" which interprets backslash in the string as actual backslash rather than a special character.



        You can refer to the tutorial of PyQGIS 101: Loading a vector layer






        share|improve this answer















        Using QGIS 3 you need to load the layers like this:



        uri = r"F:AhmadTestTest4TestGrid_Test.shp"
        iface.addVectorLayer(uri, "Grid", "ogr")


        You need to put r before the path. r stands for "raw" which interprets backslash in the string as actual backslash rather than a special character.



        You can refer to the tutorial of PyQGIS 101: Loading a vector layer







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Mar 11 at 9:32

























        answered Mar 11 at 7:06









        ahmadhanbahmadhanb

        23.3k32153




        23.3k32153




















            Devenepali is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            Devenepali is a new contributor. Be nice, and check out our Code of Conduct.












            Devenepali is a new contributor. Be nice, and check out our Code of Conduct.











            Devenepali is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f315024%2ferror-loading-layer-in-qgis-using-iface%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Solar Wings Breeze Design and development Specifications (Breeze) References Navigation menu1368-485X"Hang glider: Breeze (Solar Wings)"e

            Kathakali Contents Etymology and nomenclature History Repertoire Songs and musical instruments Traditional plays Styles: Sampradayam Training centers and awards Relationship to other dance forms See also Notes References External links Navigation menueThe Illustrated Encyclopedia of Hinduism: A-MSouth Asian Folklore: An EncyclopediaRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to Play10.1353/atj.2005.0004The Illustrated Encyclopedia of Hinduism: A-MEncyclopedia of HinduismKathakali Dance-drama: Where Gods and Demons Come to PlaySonic Liturgy: Ritual and Music in Hindu Tradition"The Mirror of Gesture"Kathakali Dance-drama: Where Gods and Demons Come to Play"Kathakali"Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceMedieval Indian Literature: An AnthologyThe Oxford Companion to Indian TheatreSouth Asian Folklore: An Encyclopedia : Afghanistan, Bangladesh, India, Nepal, Pakistan, Sri LankaThe Rise of Performance Studies: Rethinking Richard Schechner's Broad SpectrumIndian Theatre: Traditions of PerformanceModern Asian Theatre and Performance 1900-2000Critical Theory and PerformanceBetween Theater and AnthropologyKathakali603847011Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceBetween Theater and AnthropologyBetween Theater and AnthropologyNambeesan Smaraka AwardsArchivedThe Cambridge Guide to TheatreRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeThe Garland Encyclopedia of World Music: South Asia : the Indian subcontinentThe Ethos of Noh: Actors and Their Art10.2307/1145740By Means of Performance: Intercultural Studies of Theatre and Ritual10.1017/s204912550000100xReconceiving the Renaissance: A Critical ReaderPerformance TheoryListening to Theatre: The Aural Dimension of Beijing Opera10.2307/1146013Kathakali: The Art of the Non-WorldlyOn KathakaliKathakali, the dance theatreThe Kathakali Complex: Performance & StructureKathakali Dance-Drama: Where Gods and Demons Come to Play10.1093/obo/9780195399318-0071Drama and Ritual of Early Hinduism"In the Shadow of Hollywood Orientalism: Authentic East Indian Dancing"10.1080/08949460490274013Sanskrit Play Production in Ancient IndiaIndian Music: History and StructureBharata, the Nāṭyaśāstra233639306Table of Contents2238067286469807Dance In Indian Painting10.2307/32047833204783Kathakali Dance-Theatre: A Visual Narrative of Sacred Indian MimeIndian Classical Dance: The Renaissance and BeyondKathakali: an indigenous art-form of Keralaeee

            Method to test if a number is a perfect power? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Detecting perfect squares faster than by extracting square rooteffective way to get the integer sequence A181392 from oeisA rarely mentioned fact about perfect powersHow many numbers such $n$ are there that $n<100,lfloorsqrtn rfloor mid n$Check perfect squareness by modulo division against multiple basesFor what pair of integers $(a,b)$ is $3^a + 7^b$ a perfect square.Do there exist any positive integers $n$ such that $lfloore^nrfloor$ is a perfect power? What is the probability that one exists?finding perfect power factors of an integerProve that the sequence contains a perfect square for any natural number $m $ in the domain of $f$ .Counting Perfect Powers