Skip to content

Commit

Permalink
Update plot-neon-rgb-camera-data.md
Browse files Browse the repository at this point in the history
Add figures, they weren't added through the script
  • Loading branch information
bhass-neon authored Sep 19, 2023
1 parent b5718be commit 38de550
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ We can use rasterio's built-in functions `show` to plot the CHM tile.
show(rgb_dataset);
```

![png](https://raw.githubusercontent.com/NEONScience/NEON-Data-Skills/main/tutorials/Python/AOP/RGB-camera/plot-aop-camera/plot-neon-rgb-camera-data_files/plot-neon-rgb-camera-data_13_0.png)

## Plot each band of the RGB image

We can also plot each band (red, green, and blue) individually as follows:
Expand All @@ -134,4 +136,6 @@ show((rgb_dataset, 3), ax=axb, cmap='Blues', title='blue channel')
plt.show()
```

![png](https://raw.githubusercontent.com/NEONScience/NEON-Data-Skills/main/tutorials/Python/AOP/RGB-camera/plot-aop-camera/plot-neon-rgb-camera-data_files/plot-neon-rgb-camera-data_15_0.png)

That's all for this example! Most of the other AOP raster data are all single band images, but `rasterio` is a handy Python package for working with any geotiff files. You can download and visualize the lidar and spectrometer derived raster images similarly.

0 comments on commit 38de550

Please sign in to comment.