2017-05-04 9 views

答えて

3

、すなわち範囲内の暗黙のBoundable[K]はあなたが行うことができ、そこにある:

val bounds: KeyBounds[K] = 
    tiles.map({ case (key, _) => KeyBounds(key, key) }).reduce(_ combine _) 

GeoTrellisは、これらのタイプのための暗黙のBoundable型クラスを提供し、これは、SpatialKeySpaceTimeKey上で動作します。したがってあなたの場合、

val bounds: KeyBounds[SpatialKey] = 
    tiles.map({ case (key, _) => KeyBounds(key, key) }).reduce(_ combine _) 

となります。

関連する問題