Presentations From The 2nd GEONETCast-Americas User Group Webinar

Hi GEONETCasters!

Please find below the presentations from the 2nd GEONETCast-Americas User Group Webinar (click on the images below to download):

GEONETCast-Americas UPDATES

Presentation 1: Updates from NOAA (GOES Constallation & Products, JPSS, Training & Events):

Pres_1.png

Presentation 2: Updates from INPE (New Illustrated Product List, Python Scripts, SIGMACast and GNC-A Forum)

Pres_2.png

GNC-A USERS CASE STUDIES

Presentation 3: CENSIPAM (Management and Operational Center of the Amazon Protectin System, Brazil)

Pres_3.png

Presentation 4: IDEAM (Institute of ydrology, Meteorology and Environmental Studies, Colombia)

Pres_4.png

Presentation 5: UNALM (National Agrarian University from La Molina, Peru)

Pres_5.png

Thank you to all the participants!

Please find the presentations from the first GEONETCast-Americas User Group Webinar, at this link.

Reminder: 2nd GEONETCast-Americas User Group Webinar

GNC UGW.png

Dear Colleagues

NOAA GNC-A Program Manager is pleased to invite you the second GNC-A User Group webinar to facilitate communication among, and provide updates to GEONETCast Americas users.

The webinar will be held Thursday, March 28, 2019, at 1:00 p.m. Eastern Daylight Time (17:00 UTC) with an anticipated duration of 1 hour. Registration is required.

To register, please complete and submit the registration [link to Eventbrite page] form by March 26, 2019. We will notify Invitees via email and provide with instructions and credentials to access the webinar.

Tentative agenda:
•    Welcome and Roll Call
•    NOAA products & GOES Constellation Update
•    Update from INPE (Brazil)
•    Examples & User Cases
•    Discussion Items – Ideas for the Permanent Agenda
•    Action items and summary

Regards,
NOAA GNC-A Program Manager

GEONETCode: Python Code Examples for GNC-A [GeoTIFF’s] (March 26, 2019)

GEONETCode_Logo_2019-03-26.png

Hi GEONETCasters,

Please download at this link, the latest GEONETCast-Americas Python Scripting Pack (to generate GeoTIFF’s). We’ll constantly update them and make them available (GitHub page will be available in the future). Note: This is a work in progress, and all scripts could present errors.

Want to voluntary help in the development of GNC-A Python scripts? Just send an e-mail to [email protected]

In the latest GNC-A Product List you may see which products have an available script. They have a “Python Script Available” tag near the sample image, as in the example below:

Python_Script_Available_Product_List.png

The current scripts are:

  • gnc_scheduler.py (a python cron utility, you may also use cron or the windows task scheduler)
  • gnc_monitor.py (you may select the GNC-A products you want to process and the desired region for each product)
  • process_g16.py (works for all G16 CMI Bands and most baseline products)
  • remap_g16.py (G16 remap utility)
  • process_g17.py (works for all G17 CMI Bands)
  • remap_g17.py (G17 remap utility)
  • process_glm.py (GLM 5 min density files)
  • process_adpf.py (G16 Aerosol Detection products)
  • process_dmw.py (G16 Derived Motion Winds Products)
  • process_dsif.py (G16 Derived Stability Indices Products)
  • process_rad.py (G16 Radiation Products)
  • process_vaaf.py (G16 Volcanic Ash Products)
  • process_day_cloud_conv_rgb_g16.py (G16 Day Cloud Convection RGB)
  • process_day_cloud_conv_rgb_g17.py (G17 Day Cloud Convection RGB)
  • process_swd_g16.py (G16 Split Window Difference)
  • process_swd_g17.py (G17 Split Window Difference)
  • process_nfd_g16.py (G16 Night Fog Difference)
  • process_nfd_g17.py (G17 Night Fog Difference)
  • process_jpss_bands.py (VIIRS Day Night Band and I5 Band)
  • process_gcom.py (GCOM-W1 AMSR2 Products)
  • process_mirs_img.py (MIRS Products)
  • process_btpw.py (Blended Total Precipitable Water Products)
  • process_msg.py (METEOSAT HRIT)
  • process_mpef.py (METEOSAT Products)
  • process_ice.py (Several Ice Related Products)
  • process_toast.py (Ozone Analysis Product)
  • process_sst_metop.py (METOP 0.05° SST Product

In order to use the Python code examples:

1: Download and install Miniconda: https://conda.io/miniconda.html

After installing, check if there are updates with the following command:

conda update -n base conda

2: Create a conda environment, and install the required libraries (only one command):

conda create -c conda-forge -n geonetcast python=3.6 basemap basemap-data-hires conda gdal glymur matplotlib netcdf4 Pillow pyhdf pyorbital pyproj pyresample satpy

3: Check if the environment was created:

conda info --envs

4: In the gnc_scheduler.py script, please specify the environment location and the GEONETCast-Americas ingestion directory:

Linux example:
python_env = ‘//root//miniconda3//envs//geonetcast//bin//’
gnc_dir = ‘//dados//fazzt//’
Windows example:
python_env = ‘C://Users//dsouza//miniconda3//envs//geonetcast//’
gnc_dir = ‘C://GEONETCast//’

5: Activate the processing:

python gnc_scheduler.py

Note: Alternatively, you may call the gnc_monitor.py script using cron

You will see the regional GeoTIFF’s being created on the directory you put the scripts.

6: Erase the generated data periodically using cron or task scheduler:

For Linux:

#!/bin/csh -x
echo "*******Start*********"
echo `date`
find /data/fazzt/ -type f -mtime +0 -exec rm -f {} \;
find /data/scripts/ -type f -name '*.tif' -mtime +0 -exec rm -f {} \;
find /var/tmp/fazzt/kdt -mtime +0 -exec rm -f {} \;
echo `date`
echo "*********End*********"

For Windows:

forfiles /p "D:\GEONETCast-Americas" /s /m *.xml /d -1 /c "cmd /c del @PATH"
forfiles /p "D:\FazztTemp" /s /m *.xml /d -1 /c "cmd /c del @PATH"
forfiles /p "D:\Scripts" /s /m *.tif /d -1 /c "cmd /c del @PATH"

Stay tuned for news!

2nd GEONETCast-Americas User Group Webinar

GNC UGW.png

Dear Colleagues

NOAA GNC-A Program Manager is pleased to invite you the second GNC-A User Group webinar to facilitate communication among, and provide updates to GEONETCast Americas users.

The webinar will be held Thursday, March 28, 2019, at 1:00 p.m. Eastern Daylight Time (17:00 UTC) with an anticipated duration of 1 hour. Registration is required.

To register, please complete and submit the registration [link to Eventbrite page] form by March 26, 2019. We will notify Invitees via email and provide with instructions and credentials to access the webinar.

Tentative agenda:
•    Welcome and Roll Call
•    NOAA products & GOES Constellation Update
•    Update from INPE (Brazil)
•    Examples & User Cases
•    Discussion Items – Ideas for the Permanent Agenda
•    Action items and summary

Regards,
NOAA GNC-A Program Manager

GEONETCast-Americas Imagery of The Day [10]: Cyclone IDAI

Cyclone_IDAI_GNC_2019-03-13.gif

Hi GEONETCasters,

The animation above shows Cyclone IDAI (29 products processed with Python and visualized with SIGMACast) (new version to be released soon), March 13 2019, 12:00 UTC.

The products used to generate this animation may be found on the following GNC-A ingestion Folders:

  • MSG-0degree 
  • JPSS/PRODUCTS/BTPW

MetProducts_GNC_Folder

JPSS-BTPW-FOLDER.png

Please find below the other posts from this Blog series:

Aerosol Detection (Smoke and Dust), Cloud Particle Size Distribution, Downward Shortwave Radiation and Reflected Shortwave Radiation Added to the GNC-A Broadcast

ADPF_legend.png

GOES-16 Aerosol Detection Product overlayed with the Meteosat Day Land Cloud RGB (March 1st, 2019, 18:00 UTC) – Processed with Python and visualized with SIGMACast

Hi GEONETCasters!

New products have been added to the GNC-A broacast:

  • Aerosol Detection (Smoke and Dust) (ADPF)
  • Cloud Particle Size Distribution (CPSD)
  • Downward Shortwave Radiation (DSRF)
  • Reflected Shortwave Radiation (RSRF)

The ADPF, CPSD and DSRF and  RSRF folders may be found inside the the GOES-R-Level-2-Products in your station:

GOES-R-Level-2-Products Folder Feb 2019

Some screenshots below.

CPSF

GOES-16 Cloud Particle Size Distribution Product – Processed With Python and visualized with SIGMACast

DSRF

GOES-16 Downward Shortwave Radiation Product – Processed With Python and visualized with SIGMACast

RSRF

GOES-16 Reflected Shortwave Radiation Product – Processed With Python and visualized with SIGMACast

GNC_GOES-r.png