8.1. Lesson: Trabajando con Datos Ráster¶
Los datos ráster son bastante diferentes de los datos vectoriales. Los datos vectoriales tienen elementos discretos construidos a partir de vértices, y puede que conectados con líneas y/o áreas. Los datos ráster, sin embargo, son como cualquier imagen. Aunque pueden describir propiedades de los objetos en el mundo real, esos objetos no existen como objetos delimitados, en lugar de ello están representados utilizando píxeles de distintos valores de color.
Durante este módulo utilizarás datos ráster para suplementar el análisis SIG que has hecho hasta ahora.
El objetivo de esta lección: Aprender como trabajar con datos ráster en el entorno del QGIS.
8.1.1. Follow Along: Cargando Datos Ráster¶
Raster data can be loaded with the same methods we used for vector data. However we suggest to use the Browser Panel.
Open the Browser Panel and expand the
exercise_data/raster
folder.Cargue todos los datos de esta carpeta:
3320C_2010_314_RGB_LATLNG.tif
3320D_2010_315_RGB_LATLNG.tif
3420B_2010_328_RGB_LATLNG.tif
3420C_2010_327_RGB_LATLNG.tif
You should see the following map:
Ahí lo tenemos - cuatro fotografías aéreas cubriendo toda nuestra área de estudio.
8.1.2. Follow Along: Creación de un Ráster Virtual¶
Ahora como puedes ver, tu capa de soluciones se encuentra sobre las cuatro fotografías. Lo que significa que vas a trabajar con los cuatro ráster al mismo tiempo. Esto no es ideal; sería mejor tener un solo archivo por cada imagen (composición), ¿No?
Luckily, QGIS allows you to do exactly this, and without needing to actually create a new raster file, which could take up a lot of space. Instead, you can create a Virtual Raster. This is also often called a Catalog, which explains its function. It’s not really a new raster. Rather, it’s a way to organize your existing rasters into one catalog: one file for easy access.
To make a catalog we will use the
.Open the Build virtual raster algorithm from the ;
In the dialog that appears click on the … button next to the Input layers parameter and check all the layers or use the Select All button;
Uncheck the Place each input file into a separate band parameter- Notice the text field below. What this dialog is actually doing is that it’s writing that text for you. It’s a long command that QGIS is going to run.
Nota
Keep in mind that you can copy and paste the text in the
OSGeo Shell
(Windows user) orTerminal
(Linux and OSX users) to run the command. You can also create a script for each GDAL command. This is very handy when the procedure is taking a long time or when you want to schedule specific tasks. Use the Help button to get more help on the syntax of GDAL commands.Finally click on Run.
Nota
As you know from the previous modules, Processing creates temporary layers by default. To save the file click on the … button.
You can now remove the original four rasters from the Layers Panel and leave only the output virtual catalog raster.
8.1.3. Transformando Datos Ráster¶
Los métodos anteriores te permiten unir virtualmente conjuntos de datos utilizando un catálogo, y reproyectarlos «al vuelo». Sin embargo, si estás ajustando datos que utilizarás por mucho tiempo, puede ser más eficiente crear un nuevo ráster que ya esté unido y reproyectado. Esto mejora el rendimiento cuando utilizas rásters en un mapa, pero puede que lleve algún tiempo para ajustarlo inicialmente.
8.1.3.1. Reproyectando Ráster¶
Open Warp (reproject) from .
You can also reproject virtual rasters (catalogs), enable multithreaded processing, and more.
8.1.3.2. Uniendo rásters¶
If you need to create a new raster layer and save it to disk you can use the merge algorithm.
Nota
Depending on how many raster files you are merging and their resolution, the new raster file created can be really big. Consider instead to create a raster catalog as described in the Create a Virtual Raster section.
Click on the Merge algorithm from the menu.
As we did for the Create a Virtual raster, use the … button to choose which layers you want to merge.
You can also specify a Virtual raster as input, and then all of the rasters that it consists of will be processed.
If you know the GDAL library, you can also add your own options by opening the Advanced parameters menu.
8.1.4. In Conclusion¶
QGIS facilita inlcuir datos ráster a tus proyectos ya existentes.
8.1.5. What’s Next?¶
Lo siguiente será utilizar datos ráster que no sean imágenes aéreas, y veremos cómo la simbología también es útil en el caso de los rásters.