1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2012, 2013 Martin Raspaud
# Author(s):
# Martin Raspaud <martin.raspaud@smhi.se>
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Reader for eps level 1b data. Uses xml files as a format description.
"""
import glob
import os
from ConfigParser import ConfigParser
import numpy as np
from mpop import CONFIG_PATH
from mpop.satin.logger import LOG
from mpop.satin.xmlformat import XMLFormat
try:
from pyresample import geometry
except ImportError:
pass
try:
import numexpr as ne
except ImportError:
pass
C1 = 1.191062e-05 # mW/(m2*sr*cm-4)
C2 = 1.4387863 # K/cm-1
def to_bt(arr, wc_, a__, b__):
"""Convert to BT.
"""
try:
return ne.evaluate("a__ + b__ * (C2 * wc_ / "
"(log(1 + (C1 * (wc_ ** 3) / arr))))")
except NameError:
return a__ + b__ * (C2 * wc_ / np.log(1 + (C1 * (wc_ ** 3) / arr)))
def to_refl(arr, solar_flux):
"""Convert to reflectances.
"""
return arr * np.pi * 100.0 / solar_flux
def read_raw(filename):
"""Read *filename* without scaling it afterwards.
"""
form = XMLFormat(os.path.join(CONFIG_PATH, "eps_avhrrl1b_6.5.xml"))
grh_dtype = np.dtype([("record_class", "|i1"),
("INSTRUMENT_GROUP", "|i1"),
("RECORD_SUBCLASS", "|i1"),
("RECORD_SUBCLASS_VERSION", "|i1"),
("RECORD_SIZE", ">u4"),
("RECORD_START_TIME", "S6"),
("RECORD_STOP_TIME", "S6")])
record_class = ["Reserved", "mphr", "sphr",
"ipr", "geadr", "giadr",
"veadr", "viadr", "mdr"]
records = []
with open(filename, "rb") as fdes:
while True:
grh = np.fromfile(fdes, grh_dtype, 1)
if not grh:
break
try:
rec_class = record_class[grh["record_class"]]
sub_class = grh["RECORD_SUBCLASS"][0]
record = np.fromfile(fdes,
form.dtype((rec_class,
sub_class)),
1)
records.append((rec_class, record, sub_class))
except KeyError:
fdes.seek(grh["RECORD_SIZE"] - 20, 1)
return records, form
def get_filename(satscene, level):
"""Get the filename.
"""
conf = ConfigParser()
conf.read(os.path.join(CONFIG_PATH, satscene.fullname + ".cfg"))
options = {}
for option, value in conf.items(satscene.instrument_name + "-" + level,
raw = True):
options[option] = value
values = {"INSTRUMENT": satscene.instrument_name[:4].upper(),
"FNAME": satscene.satname[0].upper() + satscene.number
}
filename = os.path.join(
options["dir"],
(satscene.time_slot.strftime(options["filename"])%values))
LOG.debug("Looking for file %s"%satscene.time_slot.strftime(filename))
file_list = glob.glob(satscene.time_slot.strftime(filename))
if len(file_list) > 1:
raise IOError("More than one l1b file matching!")
elif len(file_list) == 0:
raise IOError("No l1b file matching!")
return file_list[0]
class EpsAvhrrL1bReader(object):
"""Eps level 1b reader for AVHRR data.
"""
def __init__(self, filename):
self.records, self.form = read_raw(filename)
self.mdrs = [record[1]
for record in self.records
if record[0] == "mdr"]
self.scanlines = len(self.mdrs)
self.sections = {("mdr", 2): np.concatenate(self.mdrs)}
for record in self.records:
if record[0] == "mdr":
continue
if (record[0], record[2]) in self.sections:
raise ValueError("Too many " + str((record[0], record[2])))
else:
self.sections[(record[0], record[2])] = record[1]
self.lons, self.lats = None, None
def __getitem__(self, key):
for altkey in self.form.scales.keys():
try:
try:
return (self.sections[altkey][key]
* self.form.scales[altkey][key])
except TypeError:
val = float(self.sections[altkey][key][0].split("=")[1])
return val * self.form.scales[altkey][key]
except ValueError:
continue
raise KeyError("No matching value for " + str(key))
def keys(self):
"""List of reader's keys.
"""
keys = []
for val in self.form.scales.values():
keys += val.dtype.fields.keys()
return keys
def get_full_lonlats(self):
"""Get the interpolated lons/lats.
"""
lats = np.hstack((self["EARTH_LOCATION_FIRST"][:, [0]],
self["EARTH_LOCATIONS"][:, :, 0],
self["EARTH_LOCATION_LAST"][:, [0]]))
lons = np.hstack((self["EARTH_LOCATION_FIRST"][:, [1]],
self["EARTH_LOCATIONS"][:, :, 1],
self["EARTH_LOCATION_LAST"][:, [1]]))
nav_sample_rate = self["NAV_SAMPLE_RATE"]
earth_views_per_scanline = self["EARTH_VIEWS_PER_SCANLINE"]
if nav_sample_rate == 20 and earth_views_per_scanline == 2048:
from geotiepoints import metop20kmto1km
self.lons, self.lats = metop20kmto1km(lons, lats)
else:
raise NotImplementedError("Lon/lat expansion not implemented for " +
"sample rate = " + str(nav_sample_rate) +
" and earth views = " +
str(earth_views_per_scanline))
return self.lons, self.lats
def get_lonlat(self, row, col):
"""Get lons/lats for given indices. WARNING: if the lon/lats were not
expanded, this will refer to the tiepoint data.
"""
if self.lons is None or self.lats is None:
self.lats = np.hstack((self["EARTH_LOCATION_FIRST"][:, [0]],
self["EARTH_LOCATIONS"][:, :, 0],
self["EARTH_LOCATION_LAST"][:, [0]]))
self.lons = np.hstack((self["EARTH_LOCATION_FIRST"][:, [1]],
self["EARTH_LOCATIONS"][:, :, 1],
self["EARTH_LOCATION_LAST"][:, [1]]))
return self.lons[row, col], self.lats[row, col]
def get_channels(self, channels, calib_type):
"""Get calibrated channel data.
*calib_type* = 0: Counts
*calib_type* = 1: Reflectances and brightness temperatures
*calib_type* = 2: Radiances
"""
if calib_type == 0:
raise ValueError('calibrate=0 is not supported! ' +
'This reader cannot return counts')
elif calib_type != 1 and calib_type != 2:
raise ValueError('calibrate=' + str(calib_type) +
'is not supported!')
if ("3a" in channels or
"3A" in channels or
"3b" in channels or
"3B" in channels):
three_a = ((self["FRAME_INDICATOR"] & 2**16) == 2**16)
three_b = ((self["FRAME_INDICATOR"] & 2**16) == 0)
chans = {}
for chan in channels:
if chan not in ["1", "2", "3a", "3A", "3b", "3B", "4", "5"]:
LOG.info("Can't load channel in eps_l1b: " + str(chan))
if chan == "1":
if calib_type == 1:
chans[chan] = np.ma.array(
to_refl(self["SCENE_RADIANCES"][:, 0, :],
self["CH1_SOLAR_FILTERED_IRRADIANCE"]))
else:
chans[chan] = np.ma.array(
self["SCENE_RADIANCES"][:, 0, :])
if chan == "2":
if calib_type == 1:
chans[chan] = np.ma.array(
to_refl(self["SCENE_RADIANCES"][:, 1, :],
self["CH2_SOLAR_FILTERED_IRRADIANCE"]))
else:
chans[chan] = np.ma.array(
self["SCENE_RADIANCES"][:, 1, :])
if chan.lower() == "3a":
if calib_type == 1:
chans[chan] = np.ma.array(
to_refl(self["SCENE_RADIANCES"][:, 2, :],
self["CH2_SOLAR_FILTERED_IRRADIANCE"]))
else:
chans[chan] = np.ma.array(self["SCENE_RADIANCES"][:, 2, :])
chans[chan][three_b, :] = np.nan
chans[chan] = np.ma.masked_invalid(chans[chan])
if chan.lower() == "3b":
if calib_type == 1:
chans[chan] = np.ma.array(
to_bt(self["SCENE_RADIANCES"][:, 2, :],
self["CH3B_CENTRAL_WAVENUMBER"],
self["CH3B_CONSTANT1"],
self["CH3B_CONSTANT2_SLOPE"]))
else:
chans[chan] = self["SCENE_RADIANCES"][:, 2, :]
chans[chan][three_a, :] = np.nan
chans[chan] = np.ma.masked_invalid(chans[chan])
if chan == "4":
if calib_type == 1:
chans[chan] = np.ma.array(
to_bt(self["SCENE_RADIANCES"][:, 3, :],
self["CH4_CENTRAL_WAVENUMBER"],
self["CH4_CONSTANT1"],
self["CH4_CONSTANT2_SLOPE"]))
else:
chans[chan] = np.ma.array(
self["SCENE_RADIANCES"][:, 3, :])
if chan == "5":
if calib_type == 1:
chans[chan] = np.ma.array(
to_bt(self["SCENE_RADIANCES"][:, 4, :],
self["CH5_CENTRAL_WAVENUMBER"],
self["CH5_CONSTANT1"],
self["CH5_CONSTANT2_SLOPE"]))
else:
chans[chan] = np.ma.array(self["SCENE_RADIANCES"][:, 4, :])
return chans
def get_lonlat(scene, row, col):
"""Get the longitutes and latitudes for the give *rows* and *cols*.
"""
try:
filename = get_filename(scene, "granules")
except IOError:
#from mpop.satin.eps1a import get_lonlat_avhrr
#return get_lonlat_avhrr(scene, row, col)
from pyorbital.orbital import Orbital
import pyproj
from datetime import timedelta
start_time = scene.time_slot
end_time = scene.time_slot + timedelta(minutes=3)
orbital = Orbital("METOP-A")
track_start = orbital.get_lonlatalt(start_time)
track_end = orbital.get_lonlatalt(end_time)
geod = pyproj.Geod(ellps='WGS84')
az_fwd, az_back, dist = geod.inv(track_start[0], track_start[1],
track_end[0], track_end[1])
del dist
M02_WIDTH = 2821885.8962408099
pos = ((col - 1024) * M02_WIDTH) / 2048.0
if row > 520:
lonlatdist = geod.fwd(track_end[0], track_end[1],
az_back - 86.253533216206648, -pos)
else:
lonlatdist = geod.fwd(track_start[0], track_start[1],
az_fwd - 86.253533216206648, pos)
return lonlatdist[0], lonlatdist[1]
try:
if scene.lons is None or scene.lats is None:
records, form = read_raw(filename)
mdrs = [record[1]
for record in records
if record[0] == "mdr"]
sphrs = [record for record in records
if record[0] == "sphr"]
sphr = sphrs[0][1]
scene.lons, scene.lats = _get_lonlats(mdrs, sphr, form)
return scene.lons[row, col], scene.lats[row, col]
except AttributeError:
records, form = read_raw(filename)
mdrs = [record[1]
for record in records
if record[0] == "mdr"]
sphrs = [record for record in records
if record[0] == "sphr"]
sphr = sphrs[0][1]
scene.lons, scene.lats = _get_lonlats(mdrs, sphr, form)
return scene.lons[row, col], scene.lats[row, col]
def _get_lonlats(mdrs, sphr, form):
"""Get sparse arrays of lon/lats.
"""
scanlines = len(mdrs)
mdrs = np.concatenate(mdrs)
lats = np.hstack((mdrs["EARTH_LOCATION_FIRST"][:, [0]]
* form.scales[("mdr", 2)]["EARTH_LOCATION_FIRST"][:, 0],
mdrs["EARTH_LOCATIONS"][:, :, 0]
* form.scales[("mdr", 2)]["EARTH_LOCATIONS"][:, :, 0],
mdrs["EARTH_LOCATION_LAST"][:, [0]]
* form.scales[("mdr", 2)]["EARTH_LOCATION_LAST"][:, 0]))
lons = np.hstack((mdrs["EARTH_LOCATION_FIRST"][:, [1]]
* form.scales[("mdr", 2)]["EARTH_LOCATION_FIRST"][:, 1],
mdrs["EARTH_LOCATIONS"][:, :, 1]
* form.scales[("mdr", 2)]["EARTH_LOCATIONS"][:, :, 1],
mdrs["EARTH_LOCATION_LAST"][:, [1]]
* form.scales[("mdr", 2)]["EARTH_LOCATION_LAST"][:, 1]))
nav_sample_rate = int(sphr["NAV_SAMPLE_RATE"][0].split("=")[1])
earth_views_per_scanline = \
int(sphr["EARTH_VIEWS_PER_SCANLINE"][0].split("=")[1])
geo_samples = np.round(earth_views_per_scanline / nav_sample_rate) + 3
samples = np.zeros(geo_samples, dtype=np.intp)
samples[1:-1] = np.arange(geo_samples - 2) * 20 + 5 - 1
samples[-1] = earth_views_per_scanline - 1
mask = np.ones((scanlines, earth_views_per_scanline))
mask[:, samples] = 0
geolats = np.ma.empty((scanlines, earth_views_per_scanline),
dtype=lats.dtype)
geolats.mask = mask
geolats[:, samples] = lats
geolons = np.ma.empty((scanlines, earth_views_per_scanline),
dtype=lons.dtype)
geolons.mask = mask
geolons[:, samples] = lons
return geolons, geolats
def get_corners(filename):
"""Get the corner lon/lats of the file.
"""
records, form = read_raw(filename)
mdrs = [record[1]
for record in records
if record[0] == "mdr"]
ul_ = (mdrs[0]["EARTH_LOCATION_FIRST"]
* form.scales[("mdr", 2)]["EARTH_LOCATION_FIRST"])
ur_ = (mdrs[0]["EARTH_LOCATION_LAST"]
* form.scales[("mdr", 2)]["EARTH_LOCATION_LAST"])
ll_ = (mdrs[-1]["EARTH_LOCATION_FIRST"]
* form.scales[("mdr", 2)]["EARTH_LOCATION_FIRST"])
lr_ = (mdrs[-1]["EARTH_LOCATION_LAST"]
* form.scales[("mdr", 2)]["EARTH_LOCATION_LAST"])
return ul_, ur_, ll_, lr_
def load(scene, *args, **kwargs):
"""Loads the *channels* into the satellite *scene*.
A possible *calibrate* keyword argument is passed to the AAPP reader
Should be 0 for off, 1 for default, and 2 for radiances only.
However, as the AAPP-lvl1b file contains radiances this reader cannot
return counts, so calibrate=0 is not allowed/supported. The radiance to
counts conversion is not possible.
"""
del args
calibrate = kwargs.get("calibrate", True)
if calibrate == 0:
raise ValueError('calibrate=0 is not supported! ' +
'This reader cannot return counts')
filename = (kwargs.get("filename", None) or
get_filename(scene, "level2"))
LOG.debug("Using file " + filename)
reader = EpsAvhrrL1bReader(filename)
for chname, arr in reader.get_channels(scene.channels_to_load,
calibrate).items():
scene[chname] = arr
scene.orbit = str(int(reader["ORBIT_START"]))
lons, lats = reader.get_full_lonlats()
try:
scene.area = geometry.SwathDefinition(lons, lats)
except NameError:
scene.lons, scene.lats = lons, lats
def norm255(a__):
"""normalize array to uint8.
"""
arr = a__ * 1.0
arr = (arr - arr.min()) * 255.0 / (arr.max() - arr.min())
return arr.astype(np.uint8)
def show(a__):
"""show array.
"""
import Image
Image.fromarray(norm255(a__), "L").show()
if __name__ == '__main__':
pass
|