forked from b3nn0/stratux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
150 additions
and
121 deletions.
There are no files selected for viewing
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,147 @@ | ||
package uatparse | ||
|
||
import () | ||
|
||
const ( | ||
BLOCK_WIDTH = float64(48.0 / 60.0) | ||
WIDE_BLOCK_WIDTH = float64(96.0 / 60.0) | ||
BLOCK_HEIGHT = float64(4.0 / 60.0) | ||
BLOCK_THRESHOLD = 405000 | ||
BLOCKS_PER_RING = 450 | ||
) | ||
|
||
type NEXRADBlock struct { | ||
radar_type uint32 | ||
scale int | ||
latNorth float64 | ||
lonWest float64 | ||
height float64 | ||
width float64 | ||
intensity []uint8 // Really only 4-bit values. | ||
} | ||
|
||
func block_location(block_num int, ns_flag bool, scale_factor int) (float64, float64, float64, float64) { | ||
var realScale float64 | ||
if scale_factor == 1 { | ||
realScale = float64(5.0) | ||
} else if scale_factor == 2 { | ||
realScale = float64(9.0) | ||
} else { | ||
realScale = float64(1.0) | ||
} | ||
|
||
if block_num >= BLOCK_THRESHOLD { | ||
block_num = block_num & ^1 | ||
} | ||
|
||
raw_lat := float64(BLOCK_HEIGHT * float64(int(float64(block_num)/float64(BLOCKS_PER_RING)))) | ||
raw_lon := float64(block_num%BLOCKS_PER_RING) * BLOCK_WIDTH | ||
|
||
var lonSize float64 | ||
if block_num >= BLOCK_THRESHOLD { | ||
lonSize = WIDE_BLOCK_WIDTH * realScale | ||
} else { | ||
lonSize = BLOCK_WIDTH * realScale | ||
} | ||
|
||
latSize := BLOCK_HEIGHT * realScale | ||
|
||
if ns_flag { // Southern hemisphere. | ||
raw_lat = 0 - raw_lat | ||
} else { | ||
raw_lat = raw_lat + BLOCK_HEIGHT | ||
} | ||
|
||
if raw_lon > 180.0 { | ||
raw_lon = raw_lon - 360.0 | ||
} | ||
|
||
return raw_lat, raw_lon, latSize, lonSize | ||
|
||
} | ||
|
||
func (f *UATFrame) decodeNexradFrame() { | ||
if len(f.FISB_data) < 4 { // Short read. | ||
return | ||
} | ||
|
||
rle_flag := (uint32(f.FISB_data[0]) & 0x80) != 0 | ||
ns_flag := (uint32(f.FISB_data[0]) & 0x40) != 0 | ||
block_num := ((int(f.FISB_data[0]) & 0x0f) << 16) | (int(f.FISB_data[1]) << 8) | (int(f.FISB_data[2])) | ||
scale_factor := (int(f.FISB_data[0]) & 0x30) >> 4 | ||
|
||
if rle_flag { // Single bin, RLE encoded. | ||
lat, lon, h, w := block_location(block_num, ns_flag, scale_factor) | ||
var tmp NEXRADBlock | ||
tmp.radar_type = f.Product_id | ||
tmp.scale = scale_factor | ||
tmp.latNorth = lat | ||
tmp.lonWest = lon | ||
tmp.height = h | ||
tmp.width = w | ||
tmp.intensity = make([]uint8, 0) | ||
|
||
intensityData := f.FISB_data[3:] | ||
for _, v := range intensityData { | ||
intensity := uint8(v) & 0x7 | ||
runlength := (uint8(v) >> 3) + 1 | ||
for runlength > 0 { | ||
tmp.intensity = append(tmp.intensity, intensity) | ||
runlength-- | ||
} | ||
} | ||
f.NEXRAD = []NEXRADBlock{tmp} | ||
} else { | ||
var row_start int | ||
var row_size int | ||
if block_num >= 405000 { | ||
row_start = block_num - ((block_num - 405000) % 225) | ||
row_size = 225 | ||
} else { | ||
row_start = block_num - (block_num % 450) | ||
row_size = 450 | ||
} | ||
|
||
row_offset := block_num - row_start | ||
|
||
L := int(f.FISB_data[3] & 15) | ||
|
||
if len(f.FISB_data) < L+3 { // Short read. | ||
return | ||
} | ||
|
||
for i := 0; i < L; i++ { | ||
var bb int | ||
if i == 0 { | ||
bb = (int(f.FISB_data[3]) & 0xF0) | 0x08 | ||
} else { | ||
bb = int(f.FISB_data[i+3]) | ||
} | ||
|
||
for j := 0; j < 8; j++ { | ||
if bb&(1<<uint(j)) != 0 { | ||
row_x := (row_offset + 8*i + j - 3) % row_size | ||
bn := row_start + row_x | ||
lat, lon, h, w := block_location(bn, ns_flag, scale_factor) | ||
var tmp NEXRADBlock | ||
tmp.radar_type = f.Product_id | ||
tmp.scale = scale_factor | ||
tmp.latNorth = lat | ||
tmp.lonWest = lon | ||
tmp.height = h | ||
tmp.width = w | ||
tmp.intensity = make([]uint8, 0) | ||
for k := 0; k < 128; k++ { | ||
z := uint8(0) | ||
if f.Product_id == 64 { | ||
z = 1 | ||
} | ||
tmp.intensity = append(tmp.intensity, z) | ||
} | ||
f.NEXRAD = append(f.NEXRAD, tmp) | ||
} | ||
} | ||
} | ||
} | ||
return ret | ||
} |
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