Skip to content

Commit ceef54f

Browse files
author
Leah Wasser
authored
Merge pull request #863 from earthlab/landing-pages
Finish up landing pages - raster section
2 parents 2aa9120 + e0865b9 commit ceef54f

File tree

2 files changed

+33
-15
lines changed

2 files changed

+33
-15
lines changed

_posts/courses/intermediate-earth-data-science-textbook/03-intro-raster/raster-processing-python/2018-02-05-raster01-subtract-rasters.md

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
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"
44
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."
55
authors: ['Leah Wasser', 'Chris Holdgraf', 'Martha Morrissey']
66
dateCreated: 2018-02-05
@@ -31,22 +31,15 @@ redirect_from:
3131

3232
<div class='notice--success' markdown="1">
3333

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
3535

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.
4639

4740
## <i class="fa fa-check-square-o fa-2" aria-hidden="true"></i> What You Need
4841

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.
5043

5144
{% include/data_subsets/course_earth_analytics/_data-colorado-flood.md %}
5245

_posts/courses/intermediate-earth-data-science-textbook/03-intro-raster/raster-processing-python/2020-02-13-raster00-landing-page-raster-processing.md

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
layout: single
33
title: "Introduction to Raster Data Processing in Open Source Python"
4-
excerpt: "You can perform the same raster processing steps in Python that you would in a GIS tool like ArcGIS. Learn how to process spatial raster data using Open Source Python."
4+
excerpt: "You can perform the same raster processing steps in Python that you would in a tool like ArcGIS. Learn how to process spatial raster data using Open Source Python."
55
authors: ['Leah Wasser', 'Chris Holdgraf', 'Martha Morrissey']
66
dateCreated: 2018-02-05
77
modified: 2020-02-14
@@ -29,4 +29,29 @@ topics:
2929
spatial-data-and-gis: ['raster-data']
3030
redirect_from:
3131
- "/courses/earth-analytics-python/lidar-raster-data/subtract-rasters-in-python/"
32-
---
32+
---
33+
{% include toc title="On This Page" icon="file-text" %}
34+
35+
<div class='notice--success' markdown="1">
36+
37+
## <i class="fa fa-ship" aria-hidden="true"></i> Chapter Five - Raster Data Processing in Python
38+
39+
In this chapter, you will learn how to process raster data. You will learn how to
40+
crop, reproject and reclassify raster data.
41+
42+
## <i class="fa fa-graduation-cap" aria-hidden="true"></i> Learning Objectives
43+
44+
After completing this chapter, you will be able to:
45+
46+
* Use raster math in **Python** to derive new rasters, such as a Canopy Height Model (CHM).
47+
* Reclassify a raster dataset in **Python** using a set of defined values.
48+
* Crop a raster dataset in **Python** using a vector extent object derived from a shapefile.
49+
* Reproject a raster using **rasterio**.
50+
51+
## <i class="fa fa-check-square-o fa-2" aria-hidden="true"></i> What You Need
52+
53+
You will need a computer with internet access to complete this lesson.
54+
55+
{% include/data_subsets/course_earth_analytics/_data-colorado-flood.md %}
56+
57+
</div>

0 commit comments

Comments
 (0)