Aligning Raster and vector layer using PyQGIS when they do not match? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?PyQGIS raster image shifted from vector shapefileCreating memory layer with .png image using PyQGIS?Generate centroids for vector polygons based on raster and land-use data using QGISPlanar CRS for raster and vector layersRaster and vector layer in the same CRS don't matchMerging raster and vector not workingChanging origin (top left corner) coordinates of raster using PyQGIS?Align two georreferenced rasters which have different resolution in QGISIs raster lossy and vector not lossy?Raster with wrong extents when using Polygon to RasterWhy are my vector layers with different CRS not aligning?Creating memory layer with .png image using PyQGIS?

Is there a verb for listening stealthily?

Baking rewards as operations

Did John Wesley plagiarize Matthew Henry...?

Does the transliteration of 'Dravidian' exist in Hindu scripture? Does 'Dravida' refer to a Geographical area or an ethnic group?

Marquee sign letters

Where did Ptolemy compare the Earth to the distance of fixed stars?

Centre cell vertically in tabularx

How can I list files in reverse time order by a command and pass them as arguments to another command?

malloc in main() or malloc in another function: allocating memory for a struct and its members

Did pre-Columbian Americans know the spherical shape of the Earth?

How many time has Arya actually used Needle?

How can I prevent/balance waiting and turtling as a response to cooldown mechanics

newbie Q : How to read an output file in one command line

The test team as an enemy of development? And how can this be avoided?

Is this Kuo-toa homebrew race balanced?

Does the universe have a fixed centre of mass?

Derived column in a data extension

How could a hydrazine and N2O4 cloud (or it's reactants) show up in weather radar?

Where and when has Thucydides been studied?

Adapting the Chinese Remainder Theorem (CRT) for integers to polynomials

Is a copyright notice with a non-existent name be invalid?

latest version of QGIS fails to edit attribute table of GeoJSON file

Keep at all times, the minus sign above aligned with minus sign below

Why can't fire hurt Daenerys but it did to Jon Snow in season 1?



Aligning Raster and vector layer using PyQGIS when they do not match?



Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?PyQGIS raster image shifted from vector shapefileCreating memory layer with .png image using PyQGIS?Generate centroids for vector polygons based on raster and land-use data using QGISPlanar CRS for raster and vector layersRaster and vector layer in the same CRS don't matchMerging raster and vector not workingChanging origin (top left corner) coordinates of raster using PyQGIS?Align two georreferenced rasters which have different resolution in QGISIs raster lossy and vector not lossy?Raster with wrong extents when using Polygon to RasterWhy are my vector layers with different CRS not aligning?Creating memory layer with .png image using PyQGIS?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Relatively new to GIS. I've created a vector layer of points based on row/col position of high population density pixels in a raster layer. The layers do not align even though they have the same CRS, presumably because they do not have the same extent.



Is it possible to edit the extent of the raster to match that of the vector layer or when creating the new vector layer can I define extent based on my raster layer?



enter image description here










share|improve this question
























  • If my answer solved your issue you should mark it as accepted.

    – xunilk
    Apr 28 '17 at 21:17

















1















Relatively new to GIS. I've created a vector layer of points based on row/col position of high population density pixels in a raster layer. The layers do not align even though they have the same CRS, presumably because they do not have the same extent.



Is it possible to edit the extent of the raster to match that of the vector layer or when creating the new vector layer can I define extent based on my raster layer?



enter image description here










share|improve this question
























  • If my answer solved your issue you should mark it as accepted.

    – xunilk
    Apr 28 '17 at 21:17













1












1








1








Relatively new to GIS. I've created a vector layer of points based on row/col position of high population density pixels in a raster layer. The layers do not align even though they have the same CRS, presumably because they do not have the same extent.



Is it possible to edit the extent of the raster to match that of the vector layer or when creating the new vector layer can I define extent based on my raster layer?



enter image description here










share|improve this question
















Relatively new to GIS. I've created a vector layer of points based on row/col position of high population density pixels in a raster layer. The layers do not align even though they have the same CRS, presumably because they do not have the same extent.



Is it possible to edit the extent of the raster to match that of the vector layer or when creating the new vector layer can I define extent based on my raster layer?



enter image description here







raster coordinate-system pyqgis vector






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 12 at 20:52









PolyGeo

54.1k1782246




54.1k1782246










asked Apr 13 '17 at 20:22









SimonSimon

343




343












  • If my answer solved your issue you should mark it as accepted.

    – xunilk
    Apr 28 '17 at 21:17

















  • If my answer solved your issue you should mark it as accepted.

    – xunilk
    Apr 28 '17 at 21:17
















If my answer solved your issue you should mark it as accepted.

– xunilk
Apr 28 '17 at 21:17





If my answer solved your issue you should mark it as accepted.

– xunilk
Apr 28 '17 at 21:17










1 Answer
1






active

oldest

votes


















2














To do that you need to get simultaneously x,y coordinates of each point by using some raster parameters (as xmin, ymax, and x, y resolution). Next code uses these parameters for obtaining a point memory layer where each point is situated at the middle of each raster cell.



layer = iface.activeLayer()

provider = layer.dataProvider()

extent = layer.extent()
xmin,ymin,xmax,ymax = extent.toRectF().getCoords()
rows = layer.height()
cols = layer.width()
xSize = layer.rasterUnitsPerPixelX()
ySize = layer.rasterUnitsPerPixelY()

block = provider.block(1, extent, cols, rows)

xinit = xmin + xSize/2
yinit = ymax - ySize/2

x = xinit
y = yinit

points = []
values = []

for i in range(rows):
for j in range(cols):
value = block.value(i,j)
if value > 150 and value < 255:
points.append(QgsPoint(x,y))
values.append(value)
x += xSize
y -= ySize
x = xinit

epsg = layer.crs().postgisSrid()

uri = "Point?crs=epsg:" + str(epsg) + "&field=id:integer&field=value:integer""&index=yes"

mem_layer = QgsVectorLayer(uri,
'point',
'memory')

prov = mem_layer.dataProvider()

feats = [ QgsFeature() for i in range(len(points)) ]

for i, feat in enumerate(feats):
feat.setAttributes([i, values[i]])
feat.setGeometry(QgsGeometry.fromPoint(points[i]))

prov.addFeatures(feats)

QgsMapLayerRegistry.instance().addMapLayer(mem_layer)


I used this population raster; where the criterion to get points was they represent values greater than 150 (254 = 10,000 persons/km2 and 255 = No data). After running the code at Python Console of QGIS I got:



enter image description here



Points over raster match as expected.






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
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f236824%2faligning-raster-and-vector-layer-using-pyqgis-when-they-do-not-match%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














    To do that you need to get simultaneously x,y coordinates of each point by using some raster parameters (as xmin, ymax, and x, y resolution). Next code uses these parameters for obtaining a point memory layer where each point is situated at the middle of each raster cell.



    layer = iface.activeLayer()

    provider = layer.dataProvider()

    extent = layer.extent()
    xmin,ymin,xmax,ymax = extent.toRectF().getCoords()
    rows = layer.height()
    cols = layer.width()
    xSize = layer.rasterUnitsPerPixelX()
    ySize = layer.rasterUnitsPerPixelY()

    block = provider.block(1, extent, cols, rows)

    xinit = xmin + xSize/2
    yinit = ymax - ySize/2

    x = xinit
    y = yinit

    points = []
    values = []

    for i in range(rows):
    for j in range(cols):
    value = block.value(i,j)
    if value > 150 and value < 255:
    points.append(QgsPoint(x,y))
    values.append(value)
    x += xSize
    y -= ySize
    x = xinit

    epsg = layer.crs().postgisSrid()

    uri = "Point?crs=epsg:" + str(epsg) + "&field=id:integer&field=value:integer""&index=yes"

    mem_layer = QgsVectorLayer(uri,
    'point',
    'memory')

    prov = mem_layer.dataProvider()

    feats = [ QgsFeature() for i in range(len(points)) ]

    for i, feat in enumerate(feats):
    feat.setAttributes([i, values[i]])
    feat.setGeometry(QgsGeometry.fromPoint(points[i]))

    prov.addFeatures(feats)

    QgsMapLayerRegistry.instance().addMapLayer(mem_layer)


    I used this population raster; where the criterion to get points was they represent values greater than 150 (254 = 10,000 persons/km2 and 255 = No data). After running the code at Python Console of QGIS I got:



    enter image description here



    Points over raster match as expected.






    share|improve this answer



























      2














      To do that you need to get simultaneously x,y coordinates of each point by using some raster parameters (as xmin, ymax, and x, y resolution). Next code uses these parameters for obtaining a point memory layer where each point is situated at the middle of each raster cell.



      layer = iface.activeLayer()

      provider = layer.dataProvider()

      extent = layer.extent()
      xmin,ymin,xmax,ymax = extent.toRectF().getCoords()
      rows = layer.height()
      cols = layer.width()
      xSize = layer.rasterUnitsPerPixelX()
      ySize = layer.rasterUnitsPerPixelY()

      block = provider.block(1, extent, cols, rows)

      xinit = xmin + xSize/2
      yinit = ymax - ySize/2

      x = xinit
      y = yinit

      points = []
      values = []

      for i in range(rows):
      for j in range(cols):
      value = block.value(i,j)
      if value > 150 and value < 255:
      points.append(QgsPoint(x,y))
      values.append(value)
      x += xSize
      y -= ySize
      x = xinit

      epsg = layer.crs().postgisSrid()

      uri = "Point?crs=epsg:" + str(epsg) + "&field=id:integer&field=value:integer""&index=yes"

      mem_layer = QgsVectorLayer(uri,
      'point',
      'memory')

      prov = mem_layer.dataProvider()

      feats = [ QgsFeature() for i in range(len(points)) ]

      for i, feat in enumerate(feats):
      feat.setAttributes([i, values[i]])
      feat.setGeometry(QgsGeometry.fromPoint(points[i]))

      prov.addFeatures(feats)

      QgsMapLayerRegistry.instance().addMapLayer(mem_layer)


      I used this population raster; where the criterion to get points was they represent values greater than 150 (254 = 10,000 persons/km2 and 255 = No data). After running the code at Python Console of QGIS I got:



      enter image description here



      Points over raster match as expected.






      share|improve this answer

























        2












        2








        2







        To do that you need to get simultaneously x,y coordinates of each point by using some raster parameters (as xmin, ymax, and x, y resolution). Next code uses these parameters for obtaining a point memory layer where each point is situated at the middle of each raster cell.



        layer = iface.activeLayer()

        provider = layer.dataProvider()

        extent = layer.extent()
        xmin,ymin,xmax,ymax = extent.toRectF().getCoords()
        rows = layer.height()
        cols = layer.width()
        xSize = layer.rasterUnitsPerPixelX()
        ySize = layer.rasterUnitsPerPixelY()

        block = provider.block(1, extent, cols, rows)

        xinit = xmin + xSize/2
        yinit = ymax - ySize/2

        x = xinit
        y = yinit

        points = []
        values = []

        for i in range(rows):
        for j in range(cols):
        value = block.value(i,j)
        if value > 150 and value < 255:
        points.append(QgsPoint(x,y))
        values.append(value)
        x += xSize
        y -= ySize
        x = xinit

        epsg = layer.crs().postgisSrid()

        uri = "Point?crs=epsg:" + str(epsg) + "&field=id:integer&field=value:integer""&index=yes"

        mem_layer = QgsVectorLayer(uri,
        'point',
        'memory')

        prov = mem_layer.dataProvider()

        feats = [ QgsFeature() for i in range(len(points)) ]

        for i, feat in enumerate(feats):
        feat.setAttributes([i, values[i]])
        feat.setGeometry(QgsGeometry.fromPoint(points[i]))

        prov.addFeatures(feats)

        QgsMapLayerRegistry.instance().addMapLayer(mem_layer)


        I used this population raster; where the criterion to get points was they represent values greater than 150 (254 = 10,000 persons/km2 and 255 = No data). After running the code at Python Console of QGIS I got:



        enter image description here



        Points over raster match as expected.






        share|improve this answer













        To do that you need to get simultaneously x,y coordinates of each point by using some raster parameters (as xmin, ymax, and x, y resolution). Next code uses these parameters for obtaining a point memory layer where each point is situated at the middle of each raster cell.



        layer = iface.activeLayer()

        provider = layer.dataProvider()

        extent = layer.extent()
        xmin,ymin,xmax,ymax = extent.toRectF().getCoords()
        rows = layer.height()
        cols = layer.width()
        xSize = layer.rasterUnitsPerPixelX()
        ySize = layer.rasterUnitsPerPixelY()

        block = provider.block(1, extent, cols, rows)

        xinit = xmin + xSize/2
        yinit = ymax - ySize/2

        x = xinit
        y = yinit

        points = []
        values = []

        for i in range(rows):
        for j in range(cols):
        value = block.value(i,j)
        if value > 150 and value < 255:
        points.append(QgsPoint(x,y))
        values.append(value)
        x += xSize
        y -= ySize
        x = xinit

        epsg = layer.crs().postgisSrid()

        uri = "Point?crs=epsg:" + str(epsg) + "&field=id:integer&field=value:integer""&index=yes"

        mem_layer = QgsVectorLayer(uri,
        'point',
        'memory')

        prov = mem_layer.dataProvider()

        feats = [ QgsFeature() for i in range(len(points)) ]

        for i, feat in enumerate(feats):
        feat.setAttributes([i, values[i]])
        feat.setGeometry(QgsGeometry.fromPoint(points[i]))

        prov.addFeatures(feats)

        QgsMapLayerRegistry.instance().addMapLayer(mem_layer)


        I used this population raster; where the criterion to get points was they represent values greater than 150 (254 = 10,000 persons/km2 and 255 = No data). After running the code at Python Console of QGIS I got:



        enter image description here



        Points over raster match as expected.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Apr 14 '17 at 11:52









        xunilkxunilk

        15k31943




        15k31943



























            draft saved

            draft discarded
















































            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%2f236824%2faligning-raster-and-vector-layer-using-pyqgis-when-they-do-not-match%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

            រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

            QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

            PDF-ში გადმოწერა სანავიგაციო მენიუproject page