SlideShare a Scribd company logo
October, 19 – 23, 2020.
Meteorological Data Visualization using
Numerical Weather Prediction Models:
ICON-EU, GFS and CFS GRIB/NETCDF4
Data Formats
Nedim Sladić, BSc.
October, 19 – 23, 2020.
Agenda
• Data Visualization Importance in Meteorology and Climatology;
• Data Formats – GRIB2, NETCDF4;
• Effective Data Visualization Example – Climate Stripes;
• Development of our Numerical Weather Prediction (NWP) System;
• OpenGrADS
October, 19 – 23, 2020.
Data Visualization Importance in Meteorology
and Climatology
• Reducing text redundancy and improving general
comprehensiveness, mostly in the reports;
e.g. ”June 2019 was warmer than the 30-year
annual average in southern Europe”.
General Question: on what 30-year annual
average we refer?
(what year span is taken into comparison?)
• Alternative Approach: Graphs and Maps
• Importance: Colours, Lines
October, 19 – 23, 2020.
Data Visualization Importance in Meteorology
and Climatology (cont.)
Example: June 2019 was at least 3-4 ºC
warmer w.r.t. the 30-year annual mean
1981-2010 in the northern Balkans.
• For mass audience this sentence is:
– lacking comprehensiveness!
– very hard to visualize!
– causing redundancy!
• Maps
– Colours depicting the anomaly
– the darker the colour, the stronger anomaly
– easier to comprehend and interpret! Figure 1: Textual context transformed into map.
October, 19 – 23, 2020.
Data Visualization Importance in Meteorology
and Climatology (cont.)
• Climatology and Meteorology highly depends on data visualization!
Figure 2: Precipitation Anomaly for June 2006. Figure 3: Temperature Anomaly for June 2019.
October, 19 – 23, 2020.
Data Visualization Importance in Meteorology
and Climatology (cont.)
Figure 4: European Z500 Geopotential Heights for July 29 Figure 5: Southern Europe Z500 Geopotential Heights for July 29
Beside colours, lines are also useful, especially in detecting pressure anomalies!
October, 19 – 23, 2020.
Data Visualization Importance in Meteorology
and Climatology (cont.)
• Numerical models – ECMWF, ICON, GFS, UKMO, GEM-CMCC, etc.
• Data collection: soundings, commercial flights, satellites, ships, buoys, etc.
• Supercomputers
– immense computation strength for vast datasets
– computing complex sets of partial differential equations
• Forecast Skill
– the measure of accuracy of the model prediction w.r.t. the observed (predictand)
– numerical errors due to chaotic nature of the atmosphere!
– some atmospheric systems due to the Earth limitations have not been developed!
• Differential Equations based on the Laws of Physics
– Fluid motion, Thermodynamics, Chemistry, etc.
• Different domains: Global and Regional (horizontal coordinate grid)
October, 19 – 23, 2020.
Data Formats
• Array-oriented scientific data
• Multidimensional data
– Latitude
– Longitude
– Level/Height
– Time
– Step/Band
– Ensemble
• Format Types: GRIB2, NETCDF4
– GRIB2: rNOMADS (GFS, ICON)
Description of NETCDF4 file from CFS in Panoply
October, 19 – 23, 2020.
NETCDF4 visualization – rasterization example
library(raster)
library(tidyverse) #data manipulation and visualization
library(RColorBrewer) #color schemes
library(sf) #to import a spatial object and to work with geom_sf in ggplot2
setwd("~/Downloads") #Set the directory path
dset <- raster("air.mon.anom.nc", band = 1674) #Band: step; #Level for pressure.
dset
print(dset)
plot(dset) #First plain visualization
dset_r <- rotate(dset) #Due to lat-lon projection!
dset_r
plot(dset_r)
library(ggplot2)
df <- as.data.frame(dset_r, xy = TRUE) #return spatial coordinates
View(df)
#df$Near.Surface.Air.Temperature <- df$Near.Surface.Air.Temperature - 273.15
str(df)
October, 19 – 23, 2020.
NETCDF4 visualization - rasterization (cont.)
jet.colors <- colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan", "#7FFF7F", "white",
"yellow", "#F8D568", "#FF7F00", "red", "#7F0000"))
library(mapproj)
library(metR)
ggplot()+
geom_tile(data = df, aes(x=x, y=y, fill=Surface.Air.Temperature.and.SST.Monthly.Anomaly)) +
geom_raster(data = df, aes(x=x, y=y, fill=Surface.Air.Temperature.and.SST.Monthly.Anomaly),
interpolate = TRUE)+ borders('world', size = 1, xlim=range(df$x), ylim=range(df$y),
colour='black')+
scale_fill_gradientn(colors = jet.colors(9), limits=c(-7,7), breaks=seq(-7,7,1))+
guides(fill = guide_colorbar(barwidth = 60, barheight = 1,
title.vjust = 0.85, nbin = 9, ticks = FALSE, draw.ulim = FALSE,
draw.llim = FALSE, direction = "horizontal"))+
coord_sf(ylim=c(39,49),xlim=c(12,30))+
scale_x_continuous(breaks=seq(12,30,1),expand=c(0,0))+
scale_y_continuous(breaks=seq(39,49,0.5),expand=c(0,0))+
labs(x="Longitude",y="Latitude",fill="Anomaly (ºC)")+
theme_tq(base_size = 32, base_family = "Arial")+
ggtitle("Temperature Anomaly for June 2019 w.r.t the 30-year annual mean 1981-2010")+
labs(caption = "Data: NCEP-NOAA ©n Visualization: Nedim Sladićn17.10.2020.")
October, 19 – 23, 2020.
Data accessible via NCEP-NOAA
server.
Rasterization: image described in
a vector graphics format.
Converting it (triangles,
polygons) into series of pixels,
dots and lines, final image is
obtained.
October, 19 – 23, 2020.
GRIB2 Visualization from ICON-EU Data Input
Video 1: ICON-EU precipitation
simulation on ADRIA domain.
October, 19 – 23, 2020.
Effective Data Visualization Example – Climate Stripes
• Autor: Ed Hawkins, Assoc. Assist. Prof. Dr. at
University of Reading
• Matching colour scheme to visualize the
temperature anomaly with the
corresponding year.
– Synonym for the Climate Change
October, 19 – 23, 2020.
Development of our Numerical Weather Prediction System
- NOTHAS
The Idea of prof. dr. Vlado Spiridonov,
prof. dr. Mlađen Ćurić and Nedim Sladić
• Advanced Forecast ad Diagnostic System for
an early assessment of storm intensity and
alert category.
• Consists out of WRF model forecast outputs
and a diagnostic algorithm based on Weibull
distribution.
• Initial and Boundary condition: GFS
October, 19 – 23, 2020.
OpenGrADS
• Software tool widely used for visualization of meteorological and climatological data.
• Other software tools:
– ArcGIS
– NCAR Command Langauge (NCL)
– Panoply
– etc.
October, 19 – 23, 2020.

More Related Content

What's hot

SP_3 Automatic identification of high streets and classification of urban lan...
SP_3 Automatic identification of high streets and classification of urban lan...SP_3 Automatic identification of high streets and classification of urban lan...
SP_3 Automatic identification of high streets and classification of urban lan...
GISRUK conference
 
Wet x dry completion with risk
Wet x dry completion with riskWet x dry completion with risk
Wet x dry completion with riskGláucio Bastos
 
A new remote sensing methodology for detailed international mapping in the V4...
A new remote sensing methodology for detailed international mapping in the V4...A new remote sensing methodology for detailed international mapping in the V4...
A new remote sensing methodology for detailed international mapping in the V4...mirijovsky
 
Ricostruzione della meteorologia urbana con WRF
Ricostruzione della meteorologia urbana con WRFRicostruzione della meteorologia urbana con WRF
Ricostruzione della meteorologia urbana con WRF
ARIANET
 
CESAR Project 2: Modelling Climate
CESAR Project 2: Modelling ClimateCESAR Project 2: Modelling Climate
CESAR Project 2: Modelling ClimateMarco
 
Comment analyser des données multivariées pour suivre une production
Comment analyser des données multivariées pour suivre une productionComment analyser des données multivariées pour suivre une production
Comment analyser des données multivariées pour suivre une production
Jean-Michel POU
 
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
ARIANET
 
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
Beniamino Murgante
 
Iccsa 2008 Gotthard Meinel
Iccsa 2008 Gotthard MeinelIccsa 2008 Gotthard Meinel
Iccsa 2008 Gotthard Meinel
Beniamino Murgante
 
Petrel course Module_1: Import data and management, make simple surfaces
Petrel course Module_1: Import data and management, make simple surfacesPetrel course Module_1: Import data and management, make simple surfaces
Petrel course Module_1: Import data and management, make simple surfaces
Marc Diviu Franco
 
Swiss Territorial Data Lab - geo Data Science - colloque FHNW
Swiss Territorial Data Lab - geo Data Science - colloque FHNWSwiss Territorial Data Lab - geo Data Science - colloque FHNW
Swiss Territorial Data Lab - geo Data Science - colloque FHNW
Raphael Rollier
 
mapping application of Remort sensing
mapping application of Remort sensingmapping application of Remort sensing
mapping application of Remort sensing
AshishBhadani4
 
DTM DEM Generation
DTM DEM GenerationDTM DEM Generation
DTM DEM Generation
Nurul Amirah Isa
 
Frustum mensuration
Frustum mensurationFrustum mensuration
Frustum mensuration
Archana Chandrashekhar
 
Mobile GeoAdmin Mockup, 2011
Mobile GeoAdmin Mockup, 2011Mobile GeoAdmin Mockup, 2011
Mobile GeoAdmin Mockup, 2011
Moullet
 
Velocity model building in Petrel
Velocity model building in PetrelVelocity model building in Petrel
Velocity model building in Petrel
Amir Abbas Babasafari
 
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
Alexander Mkrtchian
 
2018 GIS in Government: Historical Topographic Map Collection
2018 GIS in Government: Historical Topographic Map Collection2018 GIS in Government: Historical Topographic Map Collection
2018 GIS in Government: Historical Topographic Map Collection
GIS in the Rockies
 
Lewis Dijkstra, DG Regional Policy
Lewis Dijkstra, DG Regional PolicyLewis Dijkstra, DG Regional Policy
Lewis Dijkstra, DG Regional Policyplan4all
 

What's hot (20)

SP_3 Automatic identification of high streets and classification of urban lan...
SP_3 Automatic identification of high streets and classification of urban lan...SP_3 Automatic identification of high streets and classification of urban lan...
SP_3 Automatic identification of high streets and classification of urban lan...
 
Wet x dry completion with risk
Wet x dry completion with riskWet x dry completion with risk
Wet x dry completion with risk
 
A new remote sensing methodology for detailed international mapping in the V4...
A new remote sensing methodology for detailed international mapping in the V4...A new remote sensing methodology for detailed international mapping in the V4...
A new remote sensing methodology for detailed international mapping in the V4...
 
Ricostruzione della meteorologia urbana con WRF
Ricostruzione della meteorologia urbana con WRFRicostruzione della meteorologia urbana con WRF
Ricostruzione della meteorologia urbana con WRF
 
CESAR Project 2: Modelling Climate
CESAR Project 2: Modelling ClimateCESAR Project 2: Modelling Climate
CESAR Project 2: Modelling Climate
 
Comment analyser des données multivariées pour suivre une production
Comment analyser des données multivariées pour suivre une productionComment analyser des données multivariées pour suivre une production
Comment analyser des données multivariées pour suivre une production
 
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
Interazione tra isola di calore urbana e la variabilità micrometeorologica in...
 
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
Urban Development Scenarios and Probability Mapping for Greater Dublin Region...
 
Iccsa 2008 Gotthard Meinel
Iccsa 2008 Gotthard MeinelIccsa 2008 Gotthard Meinel
Iccsa 2008 Gotthard Meinel
 
Petrel course Module_1: Import data and management, make simple surfaces
Petrel course Module_1: Import data and management, make simple surfacesPetrel course Module_1: Import data and management, make simple surfaces
Petrel course Module_1: Import data and management, make simple surfaces
 
Swiss Territorial Data Lab - geo Data Science - colloque FHNW
Swiss Territorial Data Lab - geo Data Science - colloque FHNWSwiss Territorial Data Lab - geo Data Science - colloque FHNW
Swiss Territorial Data Lab - geo Data Science - colloque FHNW
 
mapping application of Remort sensing
mapping application of Remort sensingmapping application of Remort sensing
mapping application of Remort sensing
 
DTM DEM Generation
DTM DEM GenerationDTM DEM Generation
DTM DEM Generation
 
Frustum mensuration
Frustum mensurationFrustum mensuration
Frustum mensuration
 
Mobile GeoAdmin Mockup, 2011
Mobile GeoAdmin Mockup, 2011Mobile GeoAdmin Mockup, 2011
Mobile GeoAdmin Mockup, 2011
 
Velocity model building in Petrel
Velocity model building in PetrelVelocity model building in Petrel
Velocity model building in Petrel
 
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
Quantifying Landscape Changes through Land Cover Transition Potential Analysi...
 
2018 GIS in Government: Historical Topographic Map Collection
2018 GIS in Government: Historical Topographic Map Collection2018 GIS in Government: Historical Topographic Map Collection
2018 GIS in Government: Historical Topographic Map Collection
 
Demand Forecasting
Demand ForecastingDemand Forecasting
Demand Forecasting
 
Lewis Dijkstra, DG Regional Policy
Lewis Dijkstra, DG Regional PolicyLewis Dijkstra, DG Regional Policy
Lewis Dijkstra, DG Regional Policy
 

Similar to Data Visualization Techniques in Meteorological and Climatological World using variety of techniques and software tools by Nedim Sladić

Important Topics
Important TopicsImportant Topics
Important Topics
Atiqa khan
 
Presentation at the 3rd Workshop on operational climate prediction
Presentation at the 3rd Workshop on operational climate prediction Presentation at the 3rd Workshop on operational climate prediction
Presentation at the 3rd Workshop on operational climate prediction
Harilaos Loukos
 
GIS_FDP_Final.pdf
GIS_FDP_Final.pdfGIS_FDP_Final.pdf
GIS_FDP_Final.pdf
SanthoshKumarP38
 
LINUX Tag 2008: 4D Data Visualisation and Quality Control
LINUX Tag 2008: 4D Data Visualisation and Quality ControlLINUX Tag 2008: 4D Data Visualisation and Quality Control
LINUX Tag 2008: 4D Data Visualisation and Quality Control
Peter Löwe
 
Review on Digital Elevation Model
Review on Digital Elevation ModelReview on Digital Elevation Model
Review on Digital Elevation Model
IJMER
 
Introduction to GIS
Introduction to GISIntroduction to GIS
Introduction to GIS
Uday kumar Devalla
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
Satish Taji
 
Geographic Information System unit 1
Geographic Information System   unit 1Geographic Information System   unit 1
Geographic Information System unit 1
sridevi5983
 
Fundamentals of GIS
Fundamentals of GISFundamentals of GIS
Fundamentals of GIS
RajalakshmiS34
 
Gis Applications Presentation
Gis Applications PresentationGis Applications Presentation
Gis Applications PresentationIdua Olunwa
 
Data warehousing and data mining Chapter 9
Data warehousing and data mining Chapter 9Data warehousing and data mining Chapter 9
Data warehousing and data mining Chapter 9
sankariashok09
 
Google analysis temperature_data
Google analysis temperature_dataGoogle analysis temperature_data
Google analysis temperature_data
Benjamin Marconi
 
1.pptx
1.pptx1.pptx
1.pptx
SejalDesai30
 
C documents and settings_administrator_local settings_application data_mozil...
C  documents and settings_administrator_local settings_application data_mozil...C  documents and settings_administrator_local settings_application data_mozil...
C documents and settings_administrator_local settings_application data_mozil...Anuar Ahmad
 
Paregiani
ParegianiParegiani
Geographic information system(GIS) and its applications in agriculture
Geographic information system(GIS) and its applications in agricultureGeographic information system(GIS) and its applications in agriculture
Geographic information system(GIS) and its applications in agriculture
Kiranmai nalla
 
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial DatabaseTYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
Arti Parab Academics
 

Similar to Data Visualization Techniques in Meteorological and Climatological World using variety of techniques and software tools by Nedim Sladić (20)

Important Topics
Important TopicsImportant Topics
Important Topics
 
Presentation at the 3rd Workshop on operational climate prediction
Presentation at the 3rd Workshop on operational climate prediction Presentation at the 3rd Workshop on operational climate prediction
Presentation at the 3rd Workshop on operational climate prediction
 
GIS_FDP_Final.pdf
GIS_FDP_Final.pdfGIS_FDP_Final.pdf
GIS_FDP_Final.pdf
 
LINUX Tag 2008: 4D Data Visualisation and Quality Control
LINUX Tag 2008: 4D Data Visualisation and Quality ControlLINUX Tag 2008: 4D Data Visualisation and Quality Control
LINUX Tag 2008: 4D Data Visualisation and Quality Control
 
Review on Digital Elevation Model
Review on Digital Elevation ModelReview on Digital Elevation Model
Review on Digital Elevation Model
 
Improving Dtm Accuracy
Improving Dtm AccuracyImproving Dtm Accuracy
Improving Dtm Accuracy
 
Introduction to GIS
Introduction to GISIntroduction to GIS
Introduction to GIS
 
Introduction and Application of GIS
Introduction and Application of GISIntroduction and Application of GIS
Introduction and Application of GIS
 
9cmplx
9cmplx9cmplx
9cmplx
 
Geographic Information System unit 1
Geographic Information System   unit 1Geographic Information System   unit 1
Geographic Information System unit 1
 
Fundamentals of GIS
Fundamentals of GISFundamentals of GIS
Fundamentals of GIS
 
Gis Applications Presentation
Gis Applications PresentationGis Applications Presentation
Gis Applications Presentation
 
Data warehousing and data mining Chapter 9
Data warehousing and data mining Chapter 9Data warehousing and data mining Chapter 9
Data warehousing and data mining Chapter 9
 
Google analysis temperature_data
Google analysis temperature_dataGoogle analysis temperature_data
Google analysis temperature_data
 
1.pptx
1.pptx1.pptx
1.pptx
 
C documents and settings_administrator_local settings_application data_mozil...
C  documents and settings_administrator_local settings_application data_mozil...C  documents and settings_administrator_local settings_application data_mozil...
C documents and settings_administrator_local settings_application data_mozil...
 
Dtm Quality Assesment
Dtm Quality AssesmentDtm Quality Assesment
Dtm Quality Assesment
 
Paregiani
ParegianiParegiani
Paregiani
 
Geographic information system(GIS) and its applications in agriculture
Geographic information system(GIS) and its applications in agricultureGeographic information system(GIS) and its applications in agriculture
Geographic information system(GIS) and its applications in agriculture
 
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial DatabaseTYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
TYBSC IT PGIS Unit I Chapter II Geographic Information and Spacial Database
 

More from Bosnia Agile

Psychological Safety and Remote Work by Matthew Philip
Psychological Safety and Remote Work by Matthew PhilipPsychological Safety and Remote Work by Matthew Philip
Psychological Safety and Remote Work by Matthew Philip
Bosnia Agile
 
Agile playground - Navigating Change Through Continuous experimentation by St...
Agile playground - Navigating Change Through Continuous experimentation by St...Agile playground - Navigating Change Through Continuous experimentation by St...
Agile playground - Navigating Change Through Continuous experimentation by St...
Bosnia Agile
 
Culture eats everything for breakfast! by Vladimir Kelava
Culture eats everything for breakfast! by Vladimir KelavaCulture eats everything for breakfast! by Vladimir Kelava
Culture eats everything for breakfast! by Vladimir Kelava
Bosnia Agile
 
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
Bosnia Agile
 
Banking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
Banking Reimagined - Navigating the Adaptive transformation by Ana KafadarBanking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
Banking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
Bosnia Agile
 
Decoding Success in Pharma and e-Health by Lejla Zonić
Decoding Success in Pharma and e-Health by Lejla ZonićDecoding Success in Pharma and e-Health by Lejla Zonić
Decoding Success in Pharma and e-Health by Lejla Zonić
Bosnia Agile
 
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Bosnia Agile
 
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Bosnia Agile
 
How AI will transform agile project management by Jasna Pleho and Elvir Ćesko
How AI will transform agile project management by Jasna Pleho and Elvir ĆeskoHow AI will transform agile project management by Jasna Pleho and Elvir Ćesko
How AI will transform agile project management by Jasna Pleho and Elvir Ćesko
Bosnia Agile
 
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
Bosnia Agile
 
Agile is not just for software development, it’s for the whole business! by O...
Agile is not just for software development, it’s for the whole business! by O...Agile is not just for software development, it’s for the whole business! by O...
Agile is not just for software development, it’s for the whole business! by O...
Bosnia Agile
 
Supercharge your teams with Value Stream Management by Richard Knaster
Supercharge your teams with Value Stream Management by Richard KnasterSupercharge your teams with Value Stream Management by Richard Knaster
Supercharge your teams with Value Stream Management by Richard Knaster
Bosnia Agile
 
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
Bosnia Agile
 
Production Support - the DevOps way by Mustafa Mehmedić
Production Support - the DevOps way by Mustafa MehmedićProduction Support - the DevOps way by Mustafa Mehmedić
Production Support - the DevOps way by Mustafa Mehmedić
Bosnia Agile
 
The Rationale for Continuous Delivery by Dave Farley
The Rationale for Continuous Delivery by Dave FarleyThe Rationale for Continuous Delivery by Dave Farley
The Rationale for Continuous Delivery by Dave Farley
Bosnia Agile
 
What’s a Design Sprint and Why Does it Matter? by Elvis Pivić
What’s a Design Sprint and Why Does it Matter? by Elvis PivićWhat’s a Design Sprint and Why Does it Matter? by Elvis Pivić
What’s a Design Sprint and Why Does it Matter? by Elvis Pivić
Bosnia Agile
 
Disciplined Agile:  Past, present, and future. The path to true business agil...
Disciplined Agile:  Past, present, and future. The path to true business agil...Disciplined Agile:  Past, present, and future. The path to true business agil...
Disciplined Agile:  Past, present, and future. The path to true business agil...
Bosnia Agile
 
Building a world-class work culture by Rešad Začina
Building a world-class work culture by Rešad ZačinaBuilding a world-class work culture by Rešad Začina
Building a world-class work culture by Rešad Začina
Bosnia Agile
 
Scrum Turns 25 - Usage and the future by Dave West
Scrum Turns 25 - Usage and the future by Dave WestScrum Turns 25 - Usage and the future by Dave West
Scrum Turns 25 - Usage and the future by Dave West
Bosnia Agile
 
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa ToromanScrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
Bosnia Agile
 

More from Bosnia Agile (20)

Psychological Safety and Remote Work by Matthew Philip
Psychological Safety and Remote Work by Matthew PhilipPsychological Safety and Remote Work by Matthew Philip
Psychological Safety and Remote Work by Matthew Philip
 
Agile playground - Navigating Change Through Continuous experimentation by St...
Agile playground - Navigating Change Through Continuous experimentation by St...Agile playground - Navigating Change Through Continuous experimentation by St...
Agile playground - Navigating Change Through Continuous experimentation by St...
 
Culture eats everything for breakfast! by Vladimir Kelava
Culture eats everything for breakfast! by Vladimir KelavaCulture eats everything for breakfast! by Vladimir Kelava
Culture eats everything for breakfast! by Vladimir Kelava
 
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
Beyond Boundaries: Nurturing Psychological Safety for Tech Excellence by Barı...
 
Banking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
Banking Reimagined - Navigating the Adaptive transformation by Ana KafadarBanking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
Banking Reimagined - Navigating the Adaptive transformation by Ana Kafadar
 
Decoding Success in Pharma and e-Health by Lejla Zonić
Decoding Success in Pharma and e-Health by Lejla ZonićDecoding Success in Pharma and e-Health by Lejla Zonić
Decoding Success in Pharma and e-Health by Lejla Zonić
 
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
 
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
Agile Experimentation in Everyday Life - A Guide to More Aha! moments by Milo...
 
How AI will transform agile project management by Jasna Pleho and Elvir Ćesko
How AI will transform agile project management by Jasna Pleho and Elvir ĆeskoHow AI will transform agile project management by Jasna Pleho and Elvir Ćesko
How AI will transform agile project management by Jasna Pleho and Elvir Ćesko
 
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
How can Operational Value Streams Shape Your Product Strategy and Roadmap Suc...
 
Agile is not just for software development, it’s for the whole business! by O...
Agile is not just for software development, it’s for the whole business! by O...Agile is not just for software development, it’s for the whole business! by O...
Agile is not just for software development, it’s for the whole business! by O...
 
Supercharge your teams with Value Stream Management by Richard Knaster
Supercharge your teams with Value Stream Management by Richard KnasterSupercharge your teams with Value Stream Management by Richard Knaster
Supercharge your teams with Value Stream Management by Richard Knaster
 
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
Creating transformation in Healthcare by Banu Gülsün, Mutlu Çiçek and Onur Ön...
 
Production Support - the DevOps way by Mustafa Mehmedić
Production Support - the DevOps way by Mustafa MehmedićProduction Support - the DevOps way by Mustafa Mehmedić
Production Support - the DevOps way by Mustafa Mehmedić
 
The Rationale for Continuous Delivery by Dave Farley
The Rationale for Continuous Delivery by Dave FarleyThe Rationale for Continuous Delivery by Dave Farley
The Rationale for Continuous Delivery by Dave Farley
 
What’s a Design Sprint and Why Does it Matter? by Elvis Pivić
What’s a Design Sprint and Why Does it Matter? by Elvis PivićWhat’s a Design Sprint and Why Does it Matter? by Elvis Pivić
What’s a Design Sprint and Why Does it Matter? by Elvis Pivić
 
Disciplined Agile:  Past, present, and future. The path to true business agil...
Disciplined Agile:  Past, present, and future. The path to true business agil...Disciplined Agile:  Past, present, and future. The path to true business agil...
Disciplined Agile:  Past, present, and future. The path to true business agil...
 
Building a world-class work culture by Rešad Začina
Building a world-class work culture by Rešad ZačinaBuilding a world-class work culture by Rešad Začina
Building a world-class work culture by Rešad Začina
 
Scrum Turns 25 - Usage and the future by Dave West
Scrum Turns 25 - Usage and the future by Dave WestScrum Turns 25 - Usage and the future by Dave West
Scrum Turns 25 - Usage and the future by Dave West
 
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa ToromanScrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
Scrum + DevOps, Better together? by Ena Durmišević and Mustafa Toroman
 

Recently uploaded

FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
Safe Software
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
Frank van Harmelen
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 

Recently uploaded (20)

FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Essentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with ParametersEssentials of Automations: Optimizing FME Workflows with Parameters
Essentials of Automations: Optimizing FME Workflows with Parameters
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdfFIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
FIDO Alliance Osaka Seminar: The WebAuthn API and Discoverable Credentials.pdf
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*Neuro-symbolic is not enough, we need neuro-*semantic*
Neuro-symbolic is not enough, we need neuro-*semantic*
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 

Data Visualization Techniques in Meteorological and Climatological World using variety of techniques and software tools by Nedim Sladić

  • 1. October, 19 – 23, 2020. Meteorological Data Visualization using Numerical Weather Prediction Models: ICON-EU, GFS and CFS GRIB/NETCDF4 Data Formats Nedim Sladić, BSc.
  • 2. October, 19 – 23, 2020. Agenda • Data Visualization Importance in Meteorology and Climatology; • Data Formats – GRIB2, NETCDF4; • Effective Data Visualization Example – Climate Stripes; • Development of our Numerical Weather Prediction (NWP) System; • OpenGrADS
  • 3. October, 19 – 23, 2020. Data Visualization Importance in Meteorology and Climatology • Reducing text redundancy and improving general comprehensiveness, mostly in the reports; e.g. ”June 2019 was warmer than the 30-year annual average in southern Europe”. General Question: on what 30-year annual average we refer? (what year span is taken into comparison?) • Alternative Approach: Graphs and Maps • Importance: Colours, Lines
  • 4. October, 19 – 23, 2020. Data Visualization Importance in Meteorology and Climatology (cont.) Example: June 2019 was at least 3-4 ºC warmer w.r.t. the 30-year annual mean 1981-2010 in the northern Balkans. • For mass audience this sentence is: – lacking comprehensiveness! – very hard to visualize! – causing redundancy! • Maps – Colours depicting the anomaly – the darker the colour, the stronger anomaly – easier to comprehend and interpret! Figure 1: Textual context transformed into map.
  • 5. October, 19 – 23, 2020. Data Visualization Importance in Meteorology and Climatology (cont.) • Climatology and Meteorology highly depends on data visualization! Figure 2: Precipitation Anomaly for June 2006. Figure 3: Temperature Anomaly for June 2019.
  • 6. October, 19 – 23, 2020. Data Visualization Importance in Meteorology and Climatology (cont.) Figure 4: European Z500 Geopotential Heights for July 29 Figure 5: Southern Europe Z500 Geopotential Heights for July 29 Beside colours, lines are also useful, especially in detecting pressure anomalies!
  • 7. October, 19 – 23, 2020. Data Visualization Importance in Meteorology and Climatology (cont.) • Numerical models – ECMWF, ICON, GFS, UKMO, GEM-CMCC, etc. • Data collection: soundings, commercial flights, satellites, ships, buoys, etc. • Supercomputers – immense computation strength for vast datasets – computing complex sets of partial differential equations • Forecast Skill – the measure of accuracy of the model prediction w.r.t. the observed (predictand) – numerical errors due to chaotic nature of the atmosphere! – some atmospheric systems due to the Earth limitations have not been developed! • Differential Equations based on the Laws of Physics – Fluid motion, Thermodynamics, Chemistry, etc. • Different domains: Global and Regional (horizontal coordinate grid)
  • 8. October, 19 – 23, 2020. Data Formats • Array-oriented scientific data • Multidimensional data – Latitude – Longitude – Level/Height – Time – Step/Band – Ensemble • Format Types: GRIB2, NETCDF4 – GRIB2: rNOMADS (GFS, ICON) Description of NETCDF4 file from CFS in Panoply
  • 9. October, 19 – 23, 2020. NETCDF4 visualization – rasterization example library(raster) library(tidyverse) #data manipulation and visualization library(RColorBrewer) #color schemes library(sf) #to import a spatial object and to work with geom_sf in ggplot2 setwd("~/Downloads") #Set the directory path dset <- raster("air.mon.anom.nc", band = 1674) #Band: step; #Level for pressure. dset print(dset) plot(dset) #First plain visualization dset_r <- rotate(dset) #Due to lat-lon projection! dset_r plot(dset_r) library(ggplot2) df <- as.data.frame(dset_r, xy = TRUE) #return spatial coordinates View(df) #df$Near.Surface.Air.Temperature <- df$Near.Surface.Air.Temperature - 273.15 str(df)
  • 10. October, 19 – 23, 2020. NETCDF4 visualization - rasterization (cont.) jet.colors <- colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan", "#7FFF7F", "white", "yellow", "#F8D568", "#FF7F00", "red", "#7F0000")) library(mapproj) library(metR) ggplot()+ geom_tile(data = df, aes(x=x, y=y, fill=Surface.Air.Temperature.and.SST.Monthly.Anomaly)) + geom_raster(data = df, aes(x=x, y=y, fill=Surface.Air.Temperature.and.SST.Monthly.Anomaly), interpolate = TRUE)+ borders('world', size = 1, xlim=range(df$x), ylim=range(df$y), colour='black')+ scale_fill_gradientn(colors = jet.colors(9), limits=c(-7,7), breaks=seq(-7,7,1))+ guides(fill = guide_colorbar(barwidth = 60, barheight = 1, title.vjust = 0.85, nbin = 9, ticks = FALSE, draw.ulim = FALSE, draw.llim = FALSE, direction = "horizontal"))+ coord_sf(ylim=c(39,49),xlim=c(12,30))+ scale_x_continuous(breaks=seq(12,30,1),expand=c(0,0))+ scale_y_continuous(breaks=seq(39,49,0.5),expand=c(0,0))+ labs(x="Longitude",y="Latitude",fill="Anomaly (ºC)")+ theme_tq(base_size = 32, base_family = "Arial")+ ggtitle("Temperature Anomaly for June 2019 w.r.t the 30-year annual mean 1981-2010")+ labs(caption = "Data: NCEP-NOAA ©n Visualization: Nedim Sladićn17.10.2020.")
  • 11. October, 19 – 23, 2020. Data accessible via NCEP-NOAA server. Rasterization: image described in a vector graphics format. Converting it (triangles, polygons) into series of pixels, dots and lines, final image is obtained.
  • 12. October, 19 – 23, 2020. GRIB2 Visualization from ICON-EU Data Input Video 1: ICON-EU precipitation simulation on ADRIA domain.
  • 13. October, 19 – 23, 2020. Effective Data Visualization Example – Climate Stripes • Autor: Ed Hawkins, Assoc. Assist. Prof. Dr. at University of Reading • Matching colour scheme to visualize the temperature anomaly with the corresponding year. – Synonym for the Climate Change
  • 14. October, 19 – 23, 2020. Development of our Numerical Weather Prediction System - NOTHAS The Idea of prof. dr. Vlado Spiridonov, prof. dr. Mlađen Ćurić and Nedim Sladić • Advanced Forecast ad Diagnostic System for an early assessment of storm intensity and alert category. • Consists out of WRF model forecast outputs and a diagnostic algorithm based on Weibull distribution. • Initial and Boundary condition: GFS
  • 15. October, 19 – 23, 2020. OpenGrADS • Software tool widely used for visualization of meteorological and climatological data. • Other software tools: – ArcGIS – NCAR Command Langauge (NCL) – Panoply – etc.
  • 16. October, 19 – 23, 2020.