Skip to content

Commit

Permalink
Merge pull request #24 from ICESAT-2HackWeek/fix/center-images
Browse files Browse the repository at this point in the history
Center images
  • Loading branch information
abarciauskas-bgse authored Aug 16, 2024
2 parents c1e7165 + 81a25c5 commit 1122ab1
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,27 @@
"\n",
"## Anatomy of a structured data file\n",
"\n",
"```{image} ./images/hdf5-structure-1.jpg\n",
"```{image} ./images/hdf5-structure-2.png\n",
":width: 450px\n",
":align: left\n",
":align: center\n",
"```\n",
"\n",
"<p style=\"font-size:10px\">img source: https://www.neonscience.org/resources/learning-hub/tutorials/about-hdf5</p>\n",
"<p style=\"margin-top:50px; float: left;\">A structured data file is composed of two parts: <b>metadata</b> and the <b>raw data</b>. Metadata is information about the data, such as the data shape, data type, the data variables, the data's coordinate system, and how the data is stored, such as chunk shape and compression. Data is the actual data that you want to analyze. Many geospatial file formats, such as GeoTIFF, are composed of metadata and data.</p>\n",
"\n",
"```{image} ./images/hdf5-structure-2.png\n",
":width: 450px\n",
":align: left\n",
"```{image} ./images/hdf5-structure-1.jpg\n",
":width: 600px\n",
":align: center\n",
"```\n",
"\n",
"A structured data file is composed of two parts: **metadata** and the **raw data**. Metadata is information about the data, such as the data shape, data type, the data variables, the data's coordinate system, and how the data is stored, such as chunk shape and compression. Data is the actual data that you want to analyze.\n",
"<p style=\"font-size:10px;\">Image source: https://www.neonscience.org/resources/learning-hub/tutorials/about-hdf5</p>\n",
"\n",
"We can optimize this structure for reading from cloud storage.\n",
"\n",
"## How do we accomplish cloud-optimization?\n",
"<div style=\"clear: both;\"></div>\n",
"\n",
"## When optimizing for the cloud, what structure should be used?\n",
"\n",
"### An analogy - Moving away from home\n",
"### A \"moving away from home\" analogy\n",
"\n",
"Imagine when you lived at home with your parents. Everything was right there when you needed it (like local file storage). Let's say you're about to move away to college (the cloud), but you have decided to backpack there and so you can't bring any of your belongings with you. You put everything in your parent's (infinitely large) garage (cloud object storage). Given you would need to have things shipped to you, would it be better to leave everything unpacked? To put everything all in one box? A few different boxes? And what would be the most efficient way for your parents to know where things were when you asked for them?\n",
"\n",
Expand Down

0 comments on commit 1122ab1

Please sign in to comment.