8

I have a rectangular polygon I want to create another polygon that is 200 metres bigger in each direction from the original.

Is there a way to create a square buffer around the original polygon or another method to do this?

PolyGeo
  • 65,136
  • 29
  • 109
  • 338
Azrie
  • 315
  • 3
  • 6

2 Answers2

16

Use the "Miter" Join style.

enter image description here

Result:

enter image description here

HeikkiVesanto
  • 16,433
  • 2
  • 46
  • 68
  • 3
    For extra info : this is only available for QGIS 3.X. There's no options as this one in the buffer tool of QGIS 2.18. – gisnside Feb 08 '19 at 13:39
5

I recently wanted to do the same thing as the OP, but rather than irregular-shaped buffers of irregular polygons, I wanted actual squares. Here is an approach I used in QGIS 3.16, I hope it might be useful for others:

  1. Create polygon centroids
  2. Buffer centroid points by desired distance.
  3. Use the 'Bounding boxes' tool in the Processing tool box

enter image description here

EcologyTom
  • 551
  • 5
  • 16