You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -85,9 +85,9 @@ To set up an environment whereby you can easily test/evaluate your code blocks d
85
85
5. The _output_ Markdown files are written to `<src-root>/pyrasterframes/target/python/docs`. _Note_: don't edit any files in the `pyrasterframes/target` directory... they will get overwritten each time `sbt` runs a command.
86
86
6. During content development it's sometimes helpful to see the output rendered as basic HTML. To do this, add the `-d html` option to the pweave command:
87
87
```
88
-
sbt:RasterFrames> pyrasterframes/pySetup pweave -d html -f docs/getting-started.pymd
88
+
sbt:RasterFrames> pyrasterframes/pySetup pweave -f html -s docs/getting-started.pymd
89
89
[info] Synchronizing 54 files to '<src-roog>/pyrasterframes/target/python'
90
-
[info] Running 'python setup.py pweave -d html -f docs/getting-started.pymd' in '<src-root>/pyrasterframes/target/python'
90
+
[info] Running 'python setup.py pweave -f html -s docs/getting-started.pymd' in '<src-root>/pyrasterframes/target/python'
Copy file name to clipboardExpand all lines: pyrasterframes/src/main/python/docs/concepts.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Concepts
2
2
3
-
There are a number of EO concepts that crop up in the discussion of RasterFrames features. We'll cover these briefly in the sections below. However, here are a few links providing a more extensive introduction to working with Earth observation data.
3
+
There are a number of Earth-observation (EO) concepts that crop up in the discussion of RasterFrames features. We'll cover these briefly in the sections below. However, here are a few links providing a more extensive introduction to working with Earth observation data.
4
4
5
5
*[_Fundamentals of Remote Sensing_](https://www.nrcan.gc.ca/maps-tools-and-publications/satellite-imagery-and-air-photos/tutorial-fundamentals-remote-sensing/9309)
@@ -51,7 +51,13 @@ An extent (or bounding box) is a rectangular region specifying the geospatial co
51
51
52
52
## Tile
53
53
54
-
A tile (sometimes called a "chip") is a sub-region of a scene, usually square, usually with dimensions that are some power of 2. It is usually encoded as a two-dimensional array, or a a one-dimensional array with width/height dimensions. Tiles may be singleband or multiband (multi-channel). The tile is the primary discretization unit used in RasterFrames; the bands of a scene are separated into different columns, and the band's raster is carved up into tiles for each row.
54
+
A tile (sometimes called a "chip") is a rectangular subset of a @ref:[scene](concepts.md#scene). A tile can conceptually be though of as a two-dimensional array.
55
+
56
+
Some EO data has many bands or channels. Tiles in this context are conceptually a three-dimensional array, with the extra dimension representing the bands.
57
+
58
+
Tiles are often square and the dimensions are some power of two, for example 256 by 256.
59
+
60
+
The tile is the primary discretization unit used in RasterFrames. Each band of a scene is in a separate column. The scene's overall @ref:[extent](concepts.md#extent) is carved up into smaller extents for each tile. Each row of the DataFrame contains a two-dimensional tile per band column.
0 commit comments