blaylockbk / goes2go

Download and process GOES-16 and GOES-17 data from NOAA's archive on AWS using Python.
https://goes2go.readthedocs.io/
MIT License
205 stars 38 forks source link

FOV of CONUS scan data #4

Closed zxdawn closed 3 years ago

zxdawn commented 3 years ago

The field_of_view still gets the Full Disk FOV when the input is the CONUS data.

import xarray as xr
from glob import glob
from goes2go.tools import field_of_view

ds_abi = xr.open_dataset(glob('../data/GOES-16/ABI_L1/OR_ABI-L1b-RadC-M6C13_G16_s2020153000*')[0])
FOV_abi, geo_abi = field_of_view(ds_abi)

display(FOV_abi)

image

blaylockbk commented 3 years ago

yeah, this is something that could be enhanced. Right now, my intent was just to shows the satellite's field of view no matter the domain. But the ability to produce polygons of the CONUS and Mesoscale sector domains would be a useful feature I'll consider.

blaylockbk commented 3 years ago

I updated the field_of_fiew function to produce both a polygon for the full field of view of the ABI instrument and a domain of the ABI scan for the specific domain.

image image image

zxdawn commented 3 years ago

Thanks for the nice update!