-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example: VoxelKey #1639
Merged
Merged
Example: VoxelKey #1639
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
bf7a414
(docs) Added `VoxelKey` and friends
fosskers a3a5631
(docs) Expanded comments
fosskers 9f95fc0
(docs) Added `custom-key.md`
fosskers df2d4be
(docs) More details for `custom-key`
fosskers d40edeb
(docs) Added `SpatialComponent` instance and improved docs
fosskers 347f6e3
(doc) Added a missing import
fosskers File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
112 changes: 112 additions & 0 deletions
112
doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
package geotrellis.doc.examples.spark | ||
|
||
import geotrellis.spark._ | ||
import geotrellis.spark.io._ | ||
import geotrellis.spark.io.index._ | ||
import geotrellis.spark.io.index.zcurve._ | ||
import geotrellis.spark.io.json._ | ||
import geotrellis.util._ | ||
|
||
import spray.json._ | ||
|
||
// --- // | ||
|
||
/** A three-dimensional spatial key. A ''voxel'' is the 3D equivalent of a pixel. */ | ||
case class VoxelKey(x: Int, y: Int, z: Int) | ||
|
||
/** Typeclass instances. These (particularly [[Boundable]]) are necessary | ||
* for when a layer's key type is parameterized as ''K''. | ||
*/ | ||
object VoxelKey { | ||
implicit def ordering[A <: VoxelKey]: Ordering[A] = | ||
Ordering.by(k => (k.x, k.y, k.z)) | ||
|
||
implicit object Boundable extends Boundable[VoxelKey] { | ||
def minBound(a: VoxelKey, b: VoxelKey) = { | ||
VoxelKey(math.min(a.x, b.x), math.min(a.y, b.y), math.min(a.z, b.z)) | ||
} | ||
|
||
def maxBound(a: VoxelKey, b: VoxelKey) = { | ||
VoxelKey(math.max(a.x, b.x), math.max(a.y, b.y), math.max(a.z, b.z)) | ||
} | ||
} | ||
|
||
/** JSON Conversion */ | ||
implicit object VoxelKeyFormat extends RootJsonFormat[VoxelKey] { | ||
def write(k: VoxelKey) = { | ||
JsObject( | ||
"x" -> JsNumber(k.x), | ||
"y" -> JsNumber(k.y), | ||
"z" -> JsNumber(k.z) | ||
) | ||
} | ||
|
||
def read(value: JsValue) = { | ||
value.asJsObject.getFields("x", "y", "z") match { | ||
case Seq(JsNumber(x), JsNumber(y), JsNumber(z)) => VoxelKey(x.toInt, y.toInt, z.toInt) | ||
case _ => throw new DeserializationException("VoxelKey expected.") | ||
} | ||
} | ||
} | ||
|
||
/** Since [[VoxelKey]] has x and y coordinates, it can take advantage of | ||
* the [[SpatialComponent]] lens. Lenses are essentially "getters and setters" | ||
* that can be used in highly generic code. | ||
*/ | ||
implicit val spatialComponent = { | ||
Component[VoxelKey, SpatialKey]( | ||
/* "get" a SpatialKey from VoxelKey */ | ||
k => SpatialKey(k.x, k.y), | ||
/* "set" (x,y) spatial elements of a VoxelKey */ | ||
(k, sk) => VoxelKey(sk.col, sk.row, k.z) | ||
) | ||
} | ||
} | ||
|
||
/** A [[KeyIndex]] based on [[VoxelKey]]. */ | ||
class ZVoxelKeyIndex(val keyBounds: KeyBounds[VoxelKey]) extends KeyIndex[VoxelKey] { | ||
/* ''Z3'' here is a convenient shorthand for any 3-dimensional key. */ | ||
private def toZ(k: VoxelKey): Z3 = Z3(k.x, k.y, k.z) | ||
|
||
def toIndex(k: VoxelKey): Long = toZ(k).z | ||
|
||
def indexRanges(keyRange: (VoxelKey, VoxelKey)): Seq[(Long, Long)] = | ||
Z3.zranges(toZ(keyRange._1), toZ(keyRange._2)) | ||
} | ||
|
||
/** A [[JsonFormat]] for [[ZVoxelKeyIndex]]. */ | ||
class ZVoxelKeyIndexFormat extends RootJsonFormat[ZVoxelKeyIndex] { | ||
val TYPE_NAME = "voxel" | ||
|
||
def write(index: ZVoxelKeyIndex): JsValue = { | ||
JsObject( | ||
"type" -> JsString(TYPE_NAME), | ||
"properties" -> JsObject("keyBounds" -> index.keyBounds.toJson) | ||
) | ||
} | ||
|
||
def read(value: JsValue): ZVoxelKeyIndex = { | ||
value.asJsObject.getFields("type", "properties") match { | ||
case Seq(JsString(typeName), props) if typeName == TYPE_NAME => { | ||
props.asJsObject.getFields("keyBounds") match { | ||
case Seq(kb) => new ZVoxelKeyIndex(kb.convertTo[KeyBounds[VoxelKey]]) | ||
case _ => throw new DeserializationException("Couldn't parse KeyBounds") | ||
} | ||
} | ||
case _ => throw new DeserializationException("Wrong KeyIndex type: ZVoxelKeyIndex expected.") | ||
} | ||
} | ||
} | ||
|
||
/** Register this JsonFormat with Geotrellis's central registrator. | ||
* For more information on why this is necessary, see ''ShardingKeyIndex.scala''. | ||
*/ | ||
class ZVoxelKeyIndexRegistrator extends KeyIndexRegistrator { | ||
implicit val voxelFormat = new ZVoxelKeyIndexFormat() | ||
|
||
def register(r: KeyIndexRegistry): Unit = { | ||
r.register( | ||
KeyIndexFormatEntry[VoxelKey, ZVoxelKeyIndex](voxelFormat.TYPE_NAME) | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
Writing a Custom Key Type | ||
========================= | ||
|
||
*Want to jump straight to a code example? See* | ||
[VoxelKey.scala](https://github.com/geotrellis/geotrellis/tree/master/doc-examples/src/main/scala/geotrellis/doc/examples/spark/VoxelKey.scala) | ||
|
||
Intro | ||
----- | ||
|
||
Keys are used to index (or "give a position to") tiles in a tile layer. | ||
Typically these tiles are arranged in some conceptual grid, for instance in | ||
a two-dimensional matrix via a | ||
[`SpatialKey`](https://github.com/geotrellis/geotrellis/blob/master/spark/src/main/scala/geotrellis/spark/SpatialKey.scala). | ||
There is also a | ||
[`SpaceTimeKey`](https://github.com/geotrellis/geotrellis/blob/master/spark/src/main/scala/geotrellis/spark/SpaceTimeKey.scala), | ||
which arranges tiles in a cube of two spatial dimensions and one time | ||
dimension. | ||
|
||
In this way, keys define how a tile layer is shaped. Here, we provide an example of how | ||
to define a new key type, should you want a custom one for your application. | ||
|
||
The `VoxelKey` type | ||
------------------- | ||
|
||
A voxel is the 3D analogue to a 2D pixel. By defining a new `VoxelKey` type, | ||
we can create grids of tiles that have a 3D spatial relationship. The class | ||
definition itself is simple: | ||
|
||
```scala | ||
case class VoxelKey(x: Int, y: Int, z: Int) | ||
``` | ||
|
||
Key usage in many GeoTrellis operations is done generically with a `K` type | ||
parameter, for instance in the `S3LayerReader` class: | ||
|
||
```scala | ||
/* Read a tile layer from S3 via a given `LayerId`. Function signature slightly simplified. */ | ||
S3LayerReader.read[K: Boundable: JsonFormat, V, M]: LayerId => RDD[(K, V)] with Metadata[M] | ||
``` | ||
|
||
Where the pattern `[A: Trait1: Trait2: ...]` means that for whichever `A` | ||
you end up using, it must have an implicit instance of `Trait1` and `Trait2` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Right, it's just syntactic sugar. |
||
(and any others) in scope. Really it's just syntactic sugar for | ||
`[A](implicit ev0: Trait1[A], ev1: Trait2[A], ...)`. The `read` method above | ||
would be used in real life like: | ||
|
||
```scala | ||
val reader: S3LayerReader = ... | ||
|
||
// The type on `rdd` is often left off for brevity. | ||
val rdd: RDD[(SpatialKey, MultibandTile)] with Metadata[LayoutDefinition] = | ||
reader.read[SpatialKey, MultibandTile, LayoutDefinition]("someLayer") | ||
``` | ||
|
||
[`Boundable`](https://github.com/geotrellis/geotrellis/blob/master/spark/src/main/scala/geotrellis/spark/Boundable.scala), | ||
`SpatialComponent`, and `JsonFormat` are frequent constraints on keys. | ||
Let's give those typeclasses some implementations: | ||
|
||
```scala | ||
import geotrellis.spark._ | ||
import spray.json._ | ||
|
||
// A companion object is a good place for typeclass instances. | ||
object VoxelKey { | ||
|
||
// What are the minimum and maximum possible keys in the key space? | ||
implicit object Boundable extends Boundable[VoxelKey] { | ||
def minBound(a: VoxelKey, b: VoxelKey) = { | ||
VoxelKey(math.min(a.x, b.x), math.min(a.y, b.y), math.min(a.z, b.z)) | ||
} | ||
|
||
def maxBound(a: VoxelKey, b: VoxelKey) = { | ||
VoxelKey(math.max(a.x, b.x), math.max(a.y, b.y), math.max(a.z, b.z)) | ||
} | ||
} | ||
|
||
/** JSON Conversion */ | ||
implicit object VoxelKeyFormat extends RootJsonFormat[VoxelKey] { | ||
// See full example for real code. | ||
def write(k: VoxelKey) = ... | ||
|
||
def read(value: JsValue) = ... | ||
} | ||
|
||
/** Since [[VoxelKey]] has x and y coordinates, it can take advantage of | ||
* the [[SpatialComponent]] lens. Lenses are essentially "getters and setters" | ||
* that can be used in highly generic code. | ||
*/ | ||
implicit val spatialComponent = { | ||
Component[VoxelKey, SpatialKey]( | ||
/* "get" a SpatialKey from VoxelKey */ | ||
k => SpatialKey(k.x, k.y), | ||
/* "set" (x,y) spatial elements of a VoxelKey */ | ||
(k, sk) => VoxelKey(sk.col, sk.row, k.z) | ||
) | ||
} | ||
} | ||
``` | ||
|
||
With these, `VoxelKey` is now (almost) usable as a key type in GeoTrellis. | ||
|
||
A Z-Curve SFC for `VoxelKey` | ||
---------------------------- | ||
|
||
Many operations require a | ||
[`KeyIndex`](https://github.com/geotrellis/geotrellis/blob/master/spark/src/main/scala/geotrellis/spark/io/index/KeyIndex.scala) | ||
as well, which are usually implemented with some hardcoded key type. | ||
`VoxelKey` would need one as well, which we will back by a Z-Curve for this | ||
example: | ||
|
||
```scala | ||
/** A [[KeyIndex]] based on [[VoxelKey]]. */ | ||
class ZVoxelKeyIndex(val keyBounds: KeyBounds[VoxelKey]) extends KeyIndex[VoxelKey] { | ||
/* ''Z3'' here is a convenient shorthand for any 3-dimensional key. */ | ||
private def toZ(k: VoxelKey): Z3 = Z3(k.x, k.y, k.z) | ||
|
||
def toIndex(k: VoxelKey): Long = toZ(k).z | ||
|
||
def indexRanges(keyRange: (VoxelKey, VoxelKey)): Seq[(Long, Long)] = | ||
Z3.zranges(toZ(keyRange._1), toZ(keyRange._2)) | ||
} | ||
``` | ||
|
||
And with a `KeyIndex` written, it will of course need its own `JsonFormat`, | ||
which demands some additional glue to make fully functional. For more | ||
details, see | ||
[ShardingKeyIndex.scala](https://github.com/geotrellis/geotrellis/blob/master/doc-examples/src/main/scala/geotrellis/doc/examples/spark/ShardingKeyIndex.scala). | ||
|
||
We now have a new fully functional key type which defines a tile cube of three | ||
spatial dimensions. Of course, there is nothing stopping you from defining a | ||
key in any way you like: it could have three spatial and one time dimension (`EinsteinKey`?) | ||
or even ten spatial dimensions (`StringTheoryKey` :wink: ). Happy tiling. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are missing SpatialComponent