|LS| Working with Raster Data =============================================================================== Raster data is quite different from vector data. Vector data has discrete features constructed out of vertices, and perhaps connected with lines and/or areas. Raster data, however, is like any image. Although it may portray various properties of objects in the real world, these objects don't exist as separate objects; rather, they are represented using pixels of various different color values. During this module you're going to use raster data to supplement your existing GIS analysis. **The goal for this lesson:** To learn how to work with raster data in the QGIS environment. |basic| |FA| Loading Raster Data ------------------------------------------------------------------------------- * Open your :kbd:`analysis.qgs` map (which you should have created and saved during the previous module). * Deactivate all the layers except the :guilabel:`solution` and :guilabel:`important_roads` layers. * Click on the :guilabel:`Load Raster Layer` button: |mActionAddRasterLayer| The :guilabel:`Load Raster Layer` dialog will open. The data for this project is in :kbd:`exercise_data/raster`. * Either load them all in separately, or hold down :kbd:`ctrl` and click on all four of them in turn, then open them at the same time. The first thing you'll notice is that nothing seems to be happening in your map. Are the rasters not loading? Well, there they are in the :guilabel:`Layers list`, so obviously they did load. The problem is that they're not in the same projection. Luckily, we've already seen what to do in this situation. * Select :guilabel:`Project --> Project Properties` in the menu: * Select :guilabel:`CRS` tab in the menu: * Enable "on the fly" reprojection. * Set it to the same projection as the rest of your data (:kbd:`WGS 84 / UTM zone 33S`). * Click :guilabel:`OK`. The rasters should fit nicely: .. image:: /static/training_manual/rasters/raster_step_one.png :align: center There we have it - four aerial photographs covering our whole study area. |basic| |FA| Create a Virtual Raster ------------------------------------------------------------------------------- Now as you can see from this, your solution layer lies across all four photographs. What this means is that you're going to have to work with four rasters all the time. That's not ideal; it would be better to have one file for one (composite) image, right? 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: * Click on the menu item :menuselection:`Raster --> Miscellaneous --> Build Virtual Raster (Catalog)`. * In the dialog that appears, check the box next to :guilabel:`Use visible raster layers for input`. * Enter :kbd:`exercise_data/residential_development` as the output location. * Enter :kbd:`aerial_photos.vrt` as the file name. * Check the :guilabel:`Load into canvas when finished` button. 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. .. note:: |hard| Keep in mind that the command text is editable, so you can customize the command further if preferred. Search online for the initial command (in this case, :kbd:`gdalbuildvrt`) for help on the syntax. * Click :guilabel:`OK` to run the command. .. image:: /static/training_manual/rasters/build_virtual_raster.png :align: center It may take a while to complete. When it's done, it will tell you so with a message box. * Click :guilabel:`OK` to chase the message away. * Click :guilabel:`Close` on the :guilabel:`Build Virtual Raster (Catalog)` dialog. (Don't click :guilabel:`OK` again, otherwise it's going to start running that command again.) * You can now remove the original four rasters from the :guilabel:`Layers list`. * If necessary, click and drag the new :guilabel:`aerial_photos` raster catalog layer to the bottom of the :guilabel:`Layers list` so that the other activated layers become visible. |hard| Transforming Raster Data ------------------------------------------------------------------------------- The above methods allow you to virtually merge datasets using a catalog, and to reproject them "on the fly". However, if you are setting up data that you'll be using for quite a while, it may be more efficient to create new rasters that are already merged and reprojected. This improves performance while using the rasters in a map, but it may take some time to set up initially. Reprojecting rasters ............................................................................... * Click on the menu item :menuselection:`Raster --> Projections --> Warp (Reproject)`. Note that this tool features a handy batch option for reprojecting the contents of whole directories. You can also reproject virtual rasters (catalogs), as well as enabling a multithreaded processing mode. .. image:: /static/training_manual/rasters/warp_rasters.png :align: center Merging rasters ............................................................................... * Click on the menu item :menuselection:`Raster --> Miscellaneous --> Merge`. You can choose to process entire directories instead of single files, giving you a very useful built-in batch processing capability. You can specify a virtual raster as input file, too, and all of the rasters that it consists of will be processed. You can also add your own command line options using the :guilabel:`Creation Options` checkbox and list. This only applies if you have knowledge of the GDAL library's operation. .. image:: /static/training_manual/rasters/merge_rasters.png :align: center |IC| ------------------------------------------------------------------------------- QGIS makes it easy to include raster data into your existing projects. |WN| ------------------------------------------------------------------------------- Next, we'll use raster data that isn't aerial imagery, and see how symbolization is useful in the case of rasters as well.