[GIS] Creating polygon using coordinates

latitude longitudepolygon-creationqgis

I am using QGIS 3.2 and I need to create an area to form a polygon shapefile using latitude and longitude, not using Python as I am just a beginner. How to do this?

Best Answer

To give an example according to @geom recommendation. You must use the syntax to define polygons in WKT format, here an example in CSV:

enter image description here

Finally use add delimited text data source:

enter image description here

With the following result:

enter image description here

To edit the question to provide an example of where I need to create a polygon via distances.

I need to create a polygon to represent a survey area. The survey area required is 3.58km x 3.0km. I have used the v.buffer GRASS tool and the Buffer tool. Which I select a certain point to buffer Around to create the survey area. However I cant find any input within these tools where I can enter such distances. Do you know how to fix this?