SlideShare a Scribd company logo
1 of 18
Download to read offline
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Step by step tutorial:
Working with marine
environmental variables,
CMEMS and reprojections.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
What do you need for this tutorial:
1. ModestR v.5.3 or higher installed
2. Internet connection
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
In the Step by Step tutorial No. 11, we
gave you some tips about the
different sources of information and
where to get it.
Now, we want to show you how to
access the information in a more
detailed way.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
1. ¿What is Copernicus Marine Environment Monitoring Service?
R// Copernicus is the “European Programme for the establishment of an European capacity for Earth
Observation and Monitoring”. It has 3 components, being the Service component the one related to
the pre-operational, operational or in development phase products.
2. ¿What is the CMEMS for?
R// CMEMS is in an operational mode and “is designed to respond to issues emerging in the
environmental, business and scientific sectors. Using information from both satellite and in situ
observations, it provides state-of-the-art analyses and forecasts daily, which offer an unprecedented
capability to observe, understand and anticipate marine environment events”
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
3. ¿ How do I access CMEMS and its datasets?
R// Open access information >> http://marine.copernicus.eu/ >> Register!
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
3. ¿ How do I access CMEMS and its datasets?
R// Open access information >>
http://marine.copernicus.eu/ >> Register >> Online
Catalogue >> Add to cart >> Download >> Choose a
dataset >> Apply filters >> Download the dataset
Before your selection, please consider:
 Domain:
Global?
Specific doman? >> Knowing the limits is highly
recomended.
Parameter.
Temporal coverage.
Spatial resolution.
Depth level.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
The downloading options
depend on the size of the file.
The name of the file is pretty long.
Change it into a shorter one is highly
recomended.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
3. ¿ How can I use CMEMS datasets with ModestR?
R// Exactly as you did before (Tutorial 3), but selecting the netCDF file option: single file, multiple files or
folder:
MapMaker
Layers
Manage
Environmental
variables
At this level, you can decide to
import the folder or créate one (add
type).
At the end, the idea is to have the
environmental information
organized.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
¿What if the data have different
projections?
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
4. ¿What if the data have different projections?
R// At the moment ModestR supports data with equirectangular projection and CMEMS offers a variety of
datasets with different projections and coordinate reference systems . Before downloading the information,
please check in the “more info” appart.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Copernicus
Marine Environment Monitoring Service
4. ¿What if the data have a different projection?
If the reference system is
different than this, you’ll
need to reproject the data.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Reprojecting the data
To reproject the data, please follow the next steps.
Example for a 64 bit versions of Windows:
1. Download, run and install Cygwin: Download cygwin setup utility from https://www.cygwin.com/ . Select
the 64-bit version (Windows 64bit version required). Run the cygwin setup (e.g setup-x86_64.exe). Use
default settings for installation (typically it will install in C:cygwin64).
2. Packages: On the Select Packages installation step, search for the following packages and change the
status from Skip to install (version to be installed will appear):
• netcdf • libproj • gcc-g++ • udunits • gcc-core
3. Complete installation: Verify the correct installation of the Cygwin tool by checking the path C:cygwin64.
4. Climate Data Operators -CDO: CDO is a collection of command line operators to manipulate and analyse
Climate and NWP model Data. Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and
IEG. There are more than 600 operators available.
Go to https://code.mpimet.mpg.de/ >> Projects >> CDO >> Downloads.
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Reprojecting the data
5. Climate Data Operators –CDO:
Download the last version available and labeled as cygwin64.
Uncompress the file, that will contain just the cdo.exe file, in the C:cygwin64bin folder (intended that you
installed Cygwin in C:cygwin64).
To make it easier working with cdo, we suggest copying the netCDF files you want to process to the folder
C:cygwin64homeuser (where user will be the Windows account user name you used to install Cygwin).
To reproyect/interpolate ORCA-format rasters to regular lon/lat a grid-description file probably be needed..
Run Cygwin terminal (by default an icon has been added to your desktop, as well as to your Windows Start
programs list).
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Reprojecting the data
5. Climate Data Operators –CDO:
You also must create a text file named “grid”, with the following characteristics:
gridtype = lonlat Identifies the wanted gridtype as a lon/lat regular
grid
xsize = 1440 Number of columns of the resulting raster
ysize = 664 Number of rows of the resulting raster
xfirst = -180 Longitude of the left corner of the raster
xinc = 0.25 X size of the cells; take into account that (xfirst+
xsize* xinc) should match the longitude of the
right corner of the resulting raster (e.g. 180)
yfirst = -77 Latitude of the bottom corner of the raster.
yinc = 0.25 Y size of the cells; take into account that (yfirst+
ysize* yinc) should match the latitude of the top
corner of the resulting raster (e.g. 90)
Please, copy it in the folder
C:cygwin64homeuser (see step 9).
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Reprojecting the data
5. Climate Data Operators –CDO:
Cygwin terminal is a Linux-like shell. Type ls command then press Intro, to see a list of files in the default
folder. If you copied the netCDF files as indicated in step 9, they should be in the list:
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
Reprojecting the data
5. Climate Data Operators –CDO:
Run the following cod command to perform reprojection/interpolation:
where “input_file.nc” is the original file to reproject and the “output_file.nc” will be the result.
Output file generated can be found in the folder C:cygwin64homeuser (see step 9).
For more options, CDO user guide can be found in CDO website:
https://code.mpimet.mpg.de/projects/cdo/embedded/cdo.pdf
cdo remapnn,grid.txt Input_file.nc output_file.nc
MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
It was the Step by step tutorial:
Working with marine environmental
variables, CMEMS and reprojections
Thank you for your interest.
 After running the Cygwin, you can import the reprojected variables exactly as you did before (Tutorial 3),
but selecting the netCDF file option: single file, multiple files or folder.
You can find this one and other tutorials in
http://www.ipez.es/ModestR
By Estefanía Isaza Toro
Colaborator of
the ModestR team

More Related Content

More from modestrsoftware

20. Calculating most probable distribution of a species with Niche of Occurr...
20.  Calculating most probable distribution of a species with Niche of Occurr...20.  Calculating most probable distribution of a species with Niche of Occurr...
20. Calculating most probable distribution of a species with Niche of Occurr...modestrsoftware
 
17. An example using ModestR to assess species distribution in different cli...
17.  An example using ModestR to assess species distribution in different cli...17.  An example using ModestR to assess species distribution in different cli...
17. An example using ModestR to assess species distribution in different cli...modestrsoftware
 
18. Estimating species composition in one or more regions with KnowBr and Mo...
18.  Estimating species composition in one or more regions with KnowBr and Mo...18.  Estimating species composition in one or more regions with KnowBr and Mo...
18. Estimating species composition in one or more regions with KnowBr and Mo...modestrsoftware
 
16. Importing different climatic change scenarios from WorldClim to ModestR ...
16.  Importing different climatic change scenarios from WorldClim to ModestR ...16.  Importing different climatic change scenarios from WorldClim to ModestR ...
16. Importing different climatic change scenarios from WorldClim to ModestR ...modestrsoftware
 
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher)
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher) 5.- Doing a map in MRMapping (Version ModestR v5.3 or higher)
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher) modestrsoftware
 
15. Locating species occupied river basins with ModestR (Version ModestR 5.3...
15. Locating species occupied river basins with ModestR  (Version ModestR 5.3...15. Locating species occupied river basins with ModestR  (Version ModestR 5.3...
15. Locating species occupied river basins with ModestR (Version ModestR 5.3...modestrsoftware
 
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)modestrsoftware
 
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...modestrsoftware
 
8.- Working with shapes (Version ModestR 5.3 or higher)
8.- Working with shapes (Version ModestR 5.3 or higher)8.- Working with shapes (Version ModestR 5.3 or higher)
8.- Working with shapes (Version ModestR 5.3 or higher)modestrsoftware
 
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)modestrsoftware
 
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...4.- How to use data cleaning, EOO estimation and environmental of occurrence ...
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...modestrsoftware
 
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher)
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher) 3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher)
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher) modestrsoftware
 
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...modestrsoftware
 

More from modestrsoftware (14)

20. Calculating most probable distribution of a species with Niche of Occurr...
20.  Calculating most probable distribution of a species with Niche of Occurr...20.  Calculating most probable distribution of a species with Niche of Occurr...
20. Calculating most probable distribution of a species with Niche of Occurr...
 
17. An example using ModestR to assess species distribution in different cli...
17.  An example using ModestR to assess species distribution in different cli...17.  An example using ModestR to assess species distribution in different cli...
17. An example using ModestR to assess species distribution in different cli...
 
18. Estimating species composition in one or more regions with KnowBr and Mo...
18.  Estimating species composition in one or more regions with KnowBr and Mo...18.  Estimating species composition in one or more regions with KnowBr and Mo...
18. Estimating species composition in one or more regions with KnowBr and Mo...
 
16. Importing different climatic change scenarios from WorldClim to ModestR ...
16.  Importing different climatic change scenarios from WorldClim to ModestR ...16.  Importing different climatic change scenarios from WorldClim to ModestR ...
16. Importing different climatic change scenarios from WorldClim to ModestR ...
 
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher)
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher) 5.- Doing a map in MRMapping (Version ModestR v5.3 or higher)
5.- Doing a map in MRMapping (Version ModestR v5.3 or higher)
 
15. Locating species occupied river basins with ModestR (Version ModestR 5.3...
15. Locating species occupied river basins with ModestR  (Version ModestR 5.3...15. Locating species occupied river basins with ModestR  (Version ModestR 5.3...
15. Locating species occupied river basins with ModestR (Version ModestR 5.3...
 
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)
14.- Adding WorldClim data to ModestR (Version ModestR 5.3 or higher)
 
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...
12.- Recommendations for marine environments and Economic Exclusive Zones (Ve...
 
8.- Working with shapes (Version ModestR 5.3 or higher)
8.- Working with shapes (Version ModestR 5.3 or higher)8.- Working with shapes (Version ModestR 5.3 or higher)
8.- Working with shapes (Version ModestR 5.3 or higher)
 
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)
7.- ModestR tools for taxonomy (Version ModestR v5.3 or higher)
 
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...4.- How to use data cleaning, EOO estimation and environmental of occurrence ...
4.- How to use data cleaning, EOO estimation and environmental of occurrence ...
 
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher)
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher) 3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher)
3.- Integrating environmental data in ModestR (Version ModestR v5.3 or higher)
 
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...
2.- How to create and edit a map using GBIF data (Version ModestR v5.3 or hig...
 
Modestr v.5.0 features
Modestr v.5.0 featuresModestr v.5.0 features
Modestr v.5.0 features
 

Recently uploaded

UNIT ONE ppt history of Ethiopia and horn.pptx
UNIT ONE ppt history of Ethiopia and horn.pptxUNIT ONE ppt history of Ethiopia and horn.pptx
UNIT ONE ppt history of Ethiopia and horn.pptxzeyohannesamare
 
World Environment Day PPT slides for Earth DAy arpil 2022
World Environment Day PPT slides for Earth DAy arpil 2022World Environment Day PPT slides for Earth DAy arpil 2022
World Environment Day PPT slides for Earth DAy arpil 2022herebasit
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRjennyeacort
 
Determination of antibacterial activity of various broad spectrum antibiotics...
Determination of antibacterial activity of various broad spectrum antibiotics...Determination of antibacterial activity of various broad spectrum antibiotics...
Determination of antibacterial activity of various broad spectrum antibiotics...Open Access Research Paper
 
Asexual-and-Sexual-Reproduction.huhupptx
Asexual-and-Sexual-Reproduction.huhupptxAsexual-and-Sexual-Reproduction.huhupptx
Asexual-and-Sexual-Reproduction.huhupptxMyBrightestStarParkJ
 
Available to Promise Oracle R12 ATP.pptx
Available to Promise Oracle R12 ATP.pptxAvailable to Promise Oracle R12 ATP.pptx
Available to Promise Oracle R12 ATP.pptxbskumar_slideshare
 
'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSESKyungeun Sung
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhidelih Escorts
 
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdfsrivastavaakshat51
 
Limnology and Wetland Management 2023 NaRM.pptx
Limnology and Wetland Management 2023 NaRM.pptxLimnology and Wetland Management 2023 NaRM.pptx
Limnology and Wetland Management 2023 NaRM.pptxTesfahunTesema
 
Slide deck for the IPCC Briefing to Latvian Parliamentarians
Slide deck for the IPCC Briefing to Latvian ParliamentariansSlide deck for the IPCC Briefing to Latvian Parliamentarians
Slide deck for the IPCC Briefing to Latvian Parliamentariansipcc-media
 
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证jdkhjh
 
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一z xss
 
التغيرات المناخية وتاثيرها على القطاع الزراعي المصري
التغيرات المناخية وتاثيرها على القطاع الزراعي المصريالتغيرات المناخية وتاثيرها على القطاع الزراعي المصري
التغيرات المناخية وتاثيرها على القطاع الزراعي المصريRawhyaShaheen
 
See How do animals kill their prey for food
See How do animals kill their prey for foodSee How do animals kill their prey for food
See How do animals kill their prey for fooddrsk203
 
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量sehgh15heh
 
Title-Role of forestry in restoration of degraded lands.pptx
Title-Role of forestry in restoration of degraded lands.pptxTitle-Role of forestry in restoration of degraded lands.pptx
Title-Role of forestry in restoration of degraded lands.pptxSagar Chaudhary
 
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEM
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEMINSIDER THREAT PREVENTION IN THE US BANKING SYSTEM
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEMijsc
 
Biogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsBiogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsRabiyaSalman2
 
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...Aqsa Yasmin
 

Recently uploaded (20)

UNIT ONE ppt history of Ethiopia and horn.pptx
UNIT ONE ppt history of Ethiopia and horn.pptxUNIT ONE ppt history of Ethiopia and horn.pptx
UNIT ONE ppt history of Ethiopia and horn.pptx
 
World Environment Day PPT slides for Earth DAy arpil 2022
World Environment Day PPT slides for Earth DAy arpil 2022World Environment Day PPT slides for Earth DAy arpil 2022
World Environment Day PPT slides for Earth DAy arpil 2022
 
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCRCall In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
Call In girls Connaught Place (DELHI)⇛9711147426🔝Delhi NCR
 
Determination of antibacterial activity of various broad spectrum antibiotics...
Determination of antibacterial activity of various broad spectrum antibiotics...Determination of antibacterial activity of various broad spectrum antibiotics...
Determination of antibacterial activity of various broad spectrum antibiotics...
 
Asexual-and-Sexual-Reproduction.huhupptx
Asexual-and-Sexual-Reproduction.huhupptxAsexual-and-Sexual-Reproduction.huhupptx
Asexual-and-Sexual-Reproduction.huhupptx
 
Available to Promise Oracle R12 ATP.pptx
Available to Promise Oracle R12 ATP.pptxAvailable to Promise Oracle R12 ATP.pptx
Available to Promise Oracle R12 ATP.pptx
 
'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES'Upcycling Research' presentation for SNU GSES
'Upcycling Research' presentation for SNU GSES
 
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
9873940964 Full Enjoy 24/7 Call Girls Near Shangri La’s Eros Hotel, New Delhi
 
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf
5 Wondrous Places You Should Visit at Least Once in Your Lifetime (1).pdf
 
Limnology and Wetland Management 2023 NaRM.pptx
Limnology and Wetland Management 2023 NaRM.pptxLimnology and Wetland Management 2023 NaRM.pptx
Limnology and Wetland Management 2023 NaRM.pptx
 
Slide deck for the IPCC Briefing to Latvian Parliamentarians
Slide deck for the IPCC Briefing to Latvian ParliamentariansSlide deck for the IPCC Briefing to Latvian Parliamentarians
Slide deck for the IPCC Briefing to Latvian Parliamentarians
 
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
原版1:1复刻塔夫斯大学毕业证Tufts毕业证留信学历认证
 
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
办理(Victoria毕业证书)维多利亚大学毕业证成绩单原版一比一
 
التغيرات المناخية وتاثيرها على القطاع الزراعي المصري
التغيرات المناخية وتاثيرها على القطاع الزراعي المصريالتغيرات المناخية وتاثيرها على القطاع الزراعي المصري
التغيرات المناخية وتاثيرها على القطاع الزراعي المصري
 
See How do animals kill their prey for food
See How do animals kill their prey for foodSee How do animals kill their prey for food
See How do animals kill their prey for food
 
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量
原版定制copy澳洲詹姆斯库克大学毕业证JCU毕业证成绩单留信学历认证保障质量
 
Title-Role of forestry in restoration of degraded lands.pptx
Title-Role of forestry in restoration of degraded lands.pptxTitle-Role of forestry in restoration of degraded lands.pptx
Title-Role of forestry in restoration of degraded lands.pptx
 
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEM
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEMINSIDER THREAT PREVENTION IN THE US BANKING SYSTEM
INSIDER THREAT PREVENTION IN THE US BANKING SYSTEM
 
Biogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy CropsBiogas Production from Agricultural Feedstock and Energy Crops
Biogas Production from Agricultural Feedstock and Energy Crops
 
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...
EARTH DAY Slide show EARTHDAY.ORG is unwavering in our commitment to end plas...
 

13.- Working with marine environmental variables in ModestR (Version ModestR 5.3 or higher)

  • 1. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Step by step tutorial: Working with marine environmental variables, CMEMS and reprojections.
  • 2. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ What do you need for this tutorial: 1. ModestR v.5.3 or higher installed 2. Internet connection
  • 3. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ In the Step by Step tutorial No. 11, we gave you some tips about the different sources of information and where to get it. Now, we want to show you how to access the information in a more detailed way.
  • 4. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 1. ¿What is Copernicus Marine Environment Monitoring Service? R// Copernicus is the “European Programme for the establishment of an European capacity for Earth Observation and Monitoring”. It has 3 components, being the Service component the one related to the pre-operational, operational or in development phase products. 2. ¿What is the CMEMS for? R// CMEMS is in an operational mode and “is designed to respond to issues emerging in the environmental, business and scientific sectors. Using information from both satellite and in situ observations, it provides state-of-the-art analyses and forecasts daily, which offer an unprecedented capability to observe, understand and anticipate marine environment events”
  • 5. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 3. ¿ How do I access CMEMS and its datasets? R// Open access information >> http://marine.copernicus.eu/ >> Register!
  • 6. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 3. ¿ How do I access CMEMS and its datasets? R// Open access information >> http://marine.copernicus.eu/ >> Register >> Online Catalogue >> Add to cart >> Download >> Choose a dataset >> Apply filters >> Download the dataset Before your selection, please consider:  Domain: Global? Specific doman? >> Knowing the limits is highly recomended. Parameter. Temporal coverage. Spatial resolution. Depth level.
  • 7. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/
  • 8. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ The downloading options depend on the size of the file. The name of the file is pretty long. Change it into a shorter one is highly recomended.
  • 9. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 3. ¿ How can I use CMEMS datasets with ModestR? R// Exactly as you did before (Tutorial 3), but selecting the netCDF file option: single file, multiple files or folder: MapMaker Layers Manage Environmental variables At this level, you can decide to import the folder or créate one (add type). At the end, the idea is to have the environmental information organized.
  • 10. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ ¿What if the data have different projections?
  • 11. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 4. ¿What if the data have different projections? R// At the moment ModestR supports data with equirectangular projection and CMEMS offers a variety of datasets with different projections and coordinate reference systems . Before downloading the information, please check in the “more info” appart.
  • 12. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Copernicus Marine Environment Monitoring Service 4. ¿What if the data have a different projection? If the reference system is different than this, you’ll need to reproject the data.
  • 13. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Reprojecting the data To reproject the data, please follow the next steps. Example for a 64 bit versions of Windows: 1. Download, run and install Cygwin: Download cygwin setup utility from https://www.cygwin.com/ . Select the 64-bit version (Windows 64bit version required). Run the cygwin setup (e.g setup-x86_64.exe). Use default settings for installation (typically it will install in C:cygwin64). 2. Packages: On the Select Packages installation step, search for the following packages and change the status from Skip to install (version to be installed will appear): • netcdf • libproj • gcc-g++ • udunits • gcc-core 3. Complete installation: Verify the correct installation of the Cygwin tool by checking the path C:cygwin64. 4. Climate Data Operators -CDO: CDO is a collection of command line operators to manipulate and analyse Climate and NWP model Data. Supported data formats are GRIB 1/2, netCDF 3/4, SERVICE, EXTRA and IEG. There are more than 600 operators available. Go to https://code.mpimet.mpg.de/ >> Projects >> CDO >> Downloads.
  • 14. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Reprojecting the data 5. Climate Data Operators –CDO: Download the last version available and labeled as cygwin64. Uncompress the file, that will contain just the cdo.exe file, in the C:cygwin64bin folder (intended that you installed Cygwin in C:cygwin64). To make it easier working with cdo, we suggest copying the netCDF files you want to process to the folder C:cygwin64homeuser (where user will be the Windows account user name you used to install Cygwin). To reproyect/interpolate ORCA-format rasters to regular lon/lat a grid-description file probably be needed.. Run Cygwin terminal (by default an icon has been added to your desktop, as well as to your Windows Start programs list).
  • 15. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Reprojecting the data 5. Climate Data Operators –CDO: You also must create a text file named “grid”, with the following characteristics: gridtype = lonlat Identifies the wanted gridtype as a lon/lat regular grid xsize = 1440 Number of columns of the resulting raster ysize = 664 Number of rows of the resulting raster xfirst = -180 Longitude of the left corner of the raster xinc = 0.25 X size of the cells; take into account that (xfirst+ xsize* xinc) should match the longitude of the right corner of the resulting raster (e.g. 180) yfirst = -77 Latitude of the bottom corner of the raster. yinc = 0.25 Y size of the cells; take into account that (yfirst+ ysize* yinc) should match the latitude of the top corner of the resulting raster (e.g. 90) Please, copy it in the folder C:cygwin64homeuser (see step 9).
  • 16. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Reprojecting the data 5. Climate Data Operators –CDO: Cygwin terminal is a Linux-like shell. Type ls command then press Intro, to see a list of files in the default folder. If you copied the netCDF files as indicated in step 9, they should be in the list:
  • 17. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ Reprojecting the data 5. Climate Data Operators –CDO: Run the following cod command to perform reprojection/interpolation: where “input_file.nc” is the original file to reproject and the “output_file.nc” will be the result. Output file generated can be found in the folder C:cygwin64homeuser (see step 9). For more options, CDO user guide can be found in CDO website: https://code.mpimet.mpg.de/projects/cdo/embedded/cdo.pdf cdo remapnn,grid.txt Input_file.nc output_file.nc
  • 18. MODESTR QUICK TUTORIALS HTTP://WWW.IPEZ.ES/MODESTR/ It was the Step by step tutorial: Working with marine environmental variables, CMEMS and reprojections Thank you for your interest.  After running the Cygwin, you can import the reprojected variables exactly as you did before (Tutorial 3), but selecting the netCDF file option: single file, multiple files or folder. You can find this one and other tutorials in http://www.ipez.es/ModestR By Estefanía Isaza Toro Colaborator of the ModestR team