UNPKG
ja-geotiff
Version:
latest (2.1.4-beta.0)
2.1.4-beta.0
GeoTIFF image decoding in JavaScript
github.com/geotiffjs/geotiff.js
geotiffjs/geotiff.js
ja-geotiff
/
dist-module
/
compression
/
raw.js
8 lines
(6 loc)
•
148 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
BaseDecoder
from
'./basedecoder.js'
;
export
default
class
RawDecoder
extends
BaseDecoder
{
decodeBlock
(
buffer
) {
return
buffer; } }