object TileCodecs extends TileCodecs

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TileCodecs
  2. TileCodecs
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. implicit def bitArrayTileCodec: AvroRecordCodec[BitArrayTile]
    Definition Classes
    TileCodecs
  2. implicit def byteArrayTileCodec: AvroRecordCodec[ByteArrayTile]
    Definition Classes
    TileCodecs
  3. implicit def doubleArrayTileCodec: AvroRecordCodec[DoubleArrayTile]

    Avro serialization doesn't support Float.NaN or Double.NaN.

    Avro serialization doesn't support Float.NaN or Double.NaN. Whereas a union of number and null is sufficient in cases where the nodata value for some domain is can be serialized (Int.MinValue is just another integer and, therefore, serializable without difficulty), we are in need of an alternative strategy for floating point serialization.

    To this end, we've serialized with a union of boolean and floating point values. noDataValue can either be: 1. true (and, therefore, ConstantNoData) 2. false (NoNoData) - OR - 3. a floating point value (which is a UserDefinedNoDataValue's value)

    Definition Classes
    TileCodecs
  4. implicit def floatArrayTileCodec: AvroRecordCodec[FloatArrayTile]

    Avro serialization doesn't support Float.NaN or Double.NaN.

    Avro serialization doesn't support Float.NaN or Double.NaN. Whereas a union of number and null is sufficient in cases where the nodata value for some domain is can be serialized (Int.MinValue is just another integer and, therefore, serializable without difficulty), we are in need of an alternative strategy for floating point serialization.

    To this end, we've serialized with a union of boolean and floating point values. noDataValue can either be: 1. true (and, therefore, ConstantNoData) 2. false (NoNoData) - OR - 3. a floating point value (which is a UserDefinedNoDataValue's value)

    Definition Classes
    TileCodecs
  5. implicit def intArrayTileCodec: AvroRecordCodec[IntArrayTile]
    Definition Classes
    TileCodecs
  6. implicit def multibandTileCodec: AvroRecordCodec[MultibandTile]
    Definition Classes
    TileCodecs
  7. implicit def paddedTileCodec: AvroRecordCodec[PaddedTile]
    Definition Classes
    TileCodecs
  8. implicit def shortArrayTileCodec: AvroRecordCodec[ShortArrayTile]
    Definition Classes
    TileCodecs
  9. implicit def uByteArrayTileCodec: AvroRecordCodec[UByteArrayTile]
    Definition Classes
    TileCodecs
  10. implicit def uShortArrayTileCodec: AvroRecordCodec[UShortArrayTile]
    Definition Classes
    TileCodecs