|
1 | 1 | --- |
2 | 2 | layout: single |
3 | | -title: "Subtract One Raster from Another and Export a New GeoTIFF in Python" |
| 3 | +title: "Subtract One Raster from Another and Export a New GeoTIFF in Open Source Python" |
4 | 4 | excerpt: "Often you need to process two raster datasets together to create a new raster output and then save that output as a new file. Learn how to subtract rasters and create a new GeoTIFF file using open source Python." |
5 | 5 | authors: ['Leah Wasser', 'Chris Holdgraf', 'Martha Morrissey'] |
6 | 6 | dateCreated: 2018-02-05 |
@@ -31,22 +31,15 @@ redirect_from: |
31 | 31 |
|
32 | 32 | <div class='notice--success' markdown="1"> |
33 | 33 |
|
34 | | -## <i class="fa fa-ship" aria-hidden="true"></i> Chapter Five - Raster Data Processing in Python |
| 34 | +## <i class="fa fa-ship" aria-hidden="true"></i> Subtract Raster Data in Open Source Python |
35 | 35 |
|
36 | | -In this chapter, you will learn how to process raster data, such as cropping and reprojecting rasters, using raster math to derive new rasters, and reclassifying rasters using a set of values. |
37 | | - |
38 | | -## <i class="fa fa-graduation-cap" aria-hidden="true"></i> Learning Objectives |
39 | | - |
40 | | -After completing this chapter, you will be able to: |
41 | | - |
42 | | -* Use raster math in **Python** to derive new rasters, such as a Canopy Height Model (CHM). |
43 | | -* Reclassify a raster dataset in **Python** using a set of defined values. |
44 | | -* Crop a raster dataset in **Python** using a vector extent object derived from a shapefile. |
45 | | -* Reproject a raster using **rasterio**. |
| 36 | +After completing this tutorial, you will be able to: |
| 37 | +* Derive a **Canopy Height Model** in `Python` using a Digital Elevation Model and a Digital Surface Model derived from Lidar data. |
| 38 | +* Subtract one raster layer from another using raster math and open source Python. |
46 | 39 |
|
47 | 40 | ## <i class="fa fa-check-square-o fa-2" aria-hidden="true"></i> What You Need |
48 | 41 |
|
49 | | -You will need a computer with internet access to complete this lesson. |
| 42 | +You will need a computer with internet access to complete this lesson and a working version of python version 3.x. |
50 | 43 |
|
51 | 44 | {% include/data_subsets/course_earth_analytics/_data-colorado-flood.md %} |
52 | 45 |
|
|
0 commit comments