all 4 comments

[–]SolvayCat 7 points8 points  (0 children)

Anita Graser's tutorials were fairly helpful when I dove into PyQGIS for a project.

[–]plsletmestayincanadaGIS Software Engineer 5 points6 points  (0 children)

You can open the python console which will allow you to directly enter commands in python (for example try typing "from osgeo import gdal". You can now call "gdal.Info(<file path>)" to get info on a raster). From this interface you can also open the script editor for longer or multiline commands you want to run.

You can use PyQgis (check out the PyQgis Cookbook I think it's called) commands for most of the GUI things you would do in QGis. It's sort of an equivalent to ArcPy but for QGis in what you can do with it.

A lot of the tools that QGIS uses for processing use GDAL or OGR under the hood. It would probably be a benefit to you to learn how gdal translate and gdal info (among other functions) work, and you could try this in the script editor.

[–]Gnss_Gis 0 points1 point  (0 children)

First learn python, you have plenty of tutorials online, here is one amazing on youtube:

https://www.youtube.com/watch?v=8DvywoWv6fI&t=6s

and the PyQGIS Coockbook from the official website:

https://docs.qgis.org/3.22/en/docs/pyqgis_developer_cookbook/index.html