Skip to content

Commit

Permalink
Add rendered version of notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
jroebuck932 committed May 3, 2023
1 parent af81235 commit cd48167
Show file tree
Hide file tree
Showing 2 changed files with 842 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/measures/Search_Download_and_Plot_GeoTIFFs.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
"metadata": {},
"source": [
"### **Download the data**\n",
"Now we have found granules that meet our search criteria we can download them using the `download` method from `earthaccess`. Note that for these particular data sets within each granule there are multiple files. So even though 1 granule was found for the DEM data set, 6 files will be downloaded as the one granule represents one tile of the DEM (tile_4_2) and for each tile there are 6 related files; \n",
"Now we have found granules that meet our search criteria we can download them using the `download` method from `earthaccess`. Note that for these particular data sets within each granule there are multiple files. So even though 1 granule was found for the DEM data set, 6 files will be downloaded as the one granule represents one tile of the DEM (tile_4_2) and for each tile there are 6 files: \n",
"\n",
"* _tile_4_2_30m_dem_v02.0.tif_ - the DEM\n",
"* _tile_4_2_30m_count_v02.0.tif_ - number of individual DEMs used to estimate height at each pixel\n",
Expand All @@ -208,15 +208,15 @@
"* _tile_4_2_30m_mad_v02.0.tif_ - median absolute deviation (mad) of DEM heights at each pixel\n",
"* _tile_4_2_30m_browse_v02.0.tif_ - DEM hillshade image (this is the one we will use for plotting) \n",
"\n",
"And for the velocity data, there is a granule for each time period and there are 5 files within each granule, for example:\n",
"For the velocity data there are 20 granules, one for each time period, and there are 5 files within each granule, for example for the time period 16 July to 27 July 2017:\n",
"\n",
"* _TSX_E68.80N_16Jul17_27Jul17_19-41-20_vv_v04.0.tif_ - velocity magnitude \n",
"* _TSX_E68.80N_16Jul17_27Jul17_19-41-20_vx_v04.0.tif_ - x component of velocity\n",
"* _TSX_E68.80N_16Jul17_27Jul17_19-41-20_vy_v04.0.tif_ - y component of velocity\n",
"* _TSX_E68.80N_16Jul17_27Jul17_19-41-20_ex_v04.0.tif_ - error of x component\n",
"* _TSX_E68.80N_16Jul17_27Jul17_19-41-20_ey_v04.0.tif_ - error of y component \n",
"\n",
"Further details can be found in the data set user guides for the [DEM](https://nsidc.org/sites/default/files/documents/user-guide/nsidc-0715-v002-userguide.pdf) and [velocity](https://nsidc.org/sites/default/files/documents/user-guide/nsidc-0481-v004-userguide.pdf) data. \n",
"Further details can be found in the data set user guides for the [DEM](https://nsidc.org/sites/default/files/documents/user-guide/nsidc-0715-v002-userguide.pdf) and [velocity](https://nsidc.org/sites/default/files/documents/user-guide/nsidc-0481-v004-userguide.pdf) data sets. \n",
"\n",
"The progress and size of each order will be printed out.\n",
"\n",
Expand Down Expand Up @@ -260,7 +260,7 @@
"source": [
"dir_list = os.listdir(path)\n",
"\n",
"print('Files in ', path)\n",
"print('Files in outputs folder')\n",
"\n",
"for x in dir_list:\n",
" if x.endswith('.tif'):\n",
Expand Down
Loading

0 comments on commit cd48167

Please sign in to comment.