Creating Grids in QGIS # QGIS Tutorial - QGIS Q & A

Поделиться
HTML-код
  • Опубликовано: 18 сен 2024

Комментарии • 25

  • @CeciliaLindstrom-w3y
    @CeciliaLindstrom-w3y 9 месяцев назад +1

    Thanks you so much! I spent a whole day trying to do this, and your video made it so easy!

  • @Alexander-ro8un
    @Alexander-ro8un 2 года назад +1

    Dude, this video and the atlas one just saved me hours of QGIS frustration. Great work!

  • @peterkonyak4851
    @peterkonyak4851 2 года назад +1

    Thank you so much for your valuable videos. I want to know if the grids we created can be rotated, and if so how?

  • @zyxwvutsrqponmlkh
    @zyxwvutsrqponmlkh Месяц назад

    When i save the features, they end up across the planet for whatever reason. If I try to make the atlis off the original one it has too many pages I don't want, if I delete the extra features the atlist breaks.

  • @hz6839
    @hz6839 3 года назад +1

    If you have time, plz help me. I'm getting one problem that I can't get correct grid length even I put 120m in Horizontal spacing and Vertical spacing. When I measure, it was only about 114m.

    • @WiseGIS
      @WiseGIS  3 года назад

      did you use a UTM projection?

  • @thenoobgaming9518
    @thenoobgaming9518 Год назад

    how to change that attribute order to horizontally instead of vertically after creating grid

    • @KKoKoRR
      @KKoKoRR 11 месяцев назад

      I was searching a solution for same issue and I found some. This is little bit tricky, maybe there is another simple solution but I don't know yet. Maybe you can use my method.
      All you have to do is thinking grid number as a matrix which size of m by n. m is row number and n is column number.
      Then open attribute table > click on "open field calculator" > create a new field that we want to use as a new grid number. And write the code below in expression window:
      ceil(@id/m)+((@id-1)%m)*n
      Write row number as m and column number as n. This formula creates a new serie of number from id's. In this way, grid numbers increase from left to right.

  • @rameshchapparam354
    @rameshchapparam354 Год назад

    Great work..!
    By using these grids can you do batch layout generation in PDF format.
    I.e, if i want to take print of the data in 50 grids to PDF, it is possible

    • @WiseGIS
      @WiseGIS  Год назад

      yes.generate an atlas.check out my lesson on that

  • @nandasaputra8612
    @nandasaputra8612 Год назад

    I am using QGIS 2.4.0 (Chugiak), the options for grid creation little bit different.
    I can't create grid with specified size (e.g 500m X 500m).
    Can you solve this problem please ?

    • @WiseGIS
      @WiseGIS  Год назад +1

      You may have. to upgrade your version to 3.0 or higher

  • @ewanharris5433
    @ewanharris5433 2 года назад +2

    Worth Watching before you create an atlas

  • @vhphan19
    @vhphan19 2 года назад

    What does the horizontal overlay and vertical overlay options mean??

    • @WiseGIS
      @WiseGIS  Год назад

      i hope you found a solution

    • @KKoKoRR
      @KKoKoRR 11 месяцев назад

      this mean grids overlay another grid which side of it. grid starts that much before previous grid's end, not right from end of it.

  • @KKoKoRR
    @KKoKoRR 3 года назад

    Thank you so much for the information. I want to ask something:
    This grids IDs are increasing from top to down. How can I set them to increase from left to right without manually by hand on attribute table, just like your Atlas Making video?

    • @StefanoVerugi
      @StefanoVerugi 2 года назад

      Create Indexed Vector Grid plugin

    • @WiseGIS
      @WiseGIS  Год назад

      i hope you found a solution

    • @KKoKoRR
      @KKoKoRR Год назад

      @@WiseGIS I'll keep it in my mind. If I found a solution, be sure I let you know. For now I'm using MS Excel or MATLAB to add a new field from using ID's. It's not so different to adding manually by hand but it works for now.

    • @KKoKoRR
      @KKoKoRR Год назад

      @@StefanoVerugi Thanks. I didn't use it but it seems will help.

    • @KKoKoRR
      @KKoKoRR 11 месяцев назад

      @@WiseGIS Hello again. I think over some matrices and coding and found a solution for this couple months ago. It is little bit tricky but not hard.
      All you have to do is thinking grid number as a matrix which size of m by n. m is row number and n is column number.
      Then open attribute table > click on "open field calculator" > create a new field that we want to use as a new grid number. And write the code below in expression window:
      ceil(@id/m)+((@id-1)%m)*n
      it bears repeating, write row number instead of m and column number instead of n. This formula will create a new serie of numbers from id numbers and it will be increase from left to right.