AMSR IDL (read_amsr_day_v5.pro): .pro. : PRO example (means this script starts here and it s name is example.pro)

Size: px
Start display at page:

Download "AMSR IDL (read_amsr_day_v5.pro): .pro. : PRO example (means this script starts here and it s name is example.pro)"

Transcription

1 IDL 2007/1/17~18, C202 - REMSS (free, ) http//wwwremsscom AMSR IDL (read_amsr_day_v5pro) HomePage -> AMSR -> Download Data (via ftpssmicom/amsre) -> FTP server -> support/idl/read_amsr_day_v5pro AMSR HomePage -> AMSR -> Download Data (via ftpssmicom/amsre) -> FTP server -> bmaps_v05 -> -> ( 3 ) IDL PRO filename (filename pro ) PRO example (means this script starts here and it s name is examplepro),, END ***!? IDL IDL Command Input window pro Run -> Compile filenamepro (Ctrl+F5) Run -> Run filename (F5), Run -> Stop (Ctrl+R) Output Log window,,, IDL 1

2 print, data (1), openw, 2, D\testtxt (2) printf, 2, data (3) close, 2 (1) openr, 2, D\testtxt (2) readf, 2, b FOR FOR parameter = start, end DO BEGIN IF ( ) THEN BEGIN, ENDIF ELSE BEGIN ENDELSE (1) array name = INTARR( ) a = INTARR(2,2) (2) array name = FLTARR( ) array name[flag] a[0]=1 (1), print, a[0] (2) print, a ***! IDL 2

3 AMSR HomePage -> AMSR -> See the data description for details The center of the first cell of the 1440 column and 720 row map is at 0125 E longitude and latitude The center of the second cell is 0375 E longitude, latitude *** AMSR ASCII IDL (read_amsr_day_v5pro) ( ) inclass_1_testpro (Compile All), (txt or asc) ,, AMSR 251 = missing sst or wind speed due to sun glint; missing sst or wind speed near sea ice; missing sst or wind speed due to rain; missing water vapor due to heavy rain; missing sst due to high wind speed (> 20 m/s) 252 = sea ice 253 = observations exist, but are bad (not used in composite maps) 254 = no observations 255 = land mass (1) GMT ps (2) HomePage -> AMSR -> Daily Passes (Dynamic Data Imaging) -> -> Update Display -> GMT GSview \\ \gmt\ 4 GMT (1) GMT netcdf C\ (2), netcdf path, ( path_gmt344txt) etcdf = c\netcdf path = c\gmt\bin;c\netcdf\bin Ghostscript GSview ( gs_view ) IDL 3

4 IDL ( GMT )! 2, 250, SST data inclass_2_testpro GMT GMT totalbat ( ) runbat ( ) runbat GMT ps ps GSview QSCAT HomePage -> QSCAT -> Archive of Past Tropical Storms -> HomePage -> QSCAT -> Download QuikScat Data (via ftp) -> bmaps_v03a/y2004/m06/ -> gz QSCAT HomePage -> QSCAT -> Download QuikScat Data (via ftp) -> scatterometer_bmap_support/idl/ -> get_scat_daily_v03pro inclass_3_testpro ( ) IDL, GMT ps IDL 4

5 AMSR IDL - ASCII, PRO amsre_ a ;*** determine file and file path *** path = 'D\IDL\' name = 'amsre_ v5gz' ;*** call subroutine and return geophysical data *** file_name = path + name read_amsr_day_v5, file_name, time, sst, wind, vapor, cloud, rain ;*** give the output file *** data_as = path + 'amsre_ _ascendingtxt' data_ds = path + 'amsre_ _descendingtxt' OPENW, 5, data_as OPENW, 6, data_ds ;*** output data *** ;0 ascending (Daytime) ;1 descending (Nighttime) PRINTF, 5, ' Longitude Latitude PRINTF, 6, ' Longitude Latitude SST UTC time UTC time(fractional hours)' SST UTC time UTC time(fractional hours)' FOR ilat=420,500 DO BEGIN ;15125N ~ 35125N FOR ilon = 440,560 DO BEGIN ;110125E ~ E lon = * ilon lat = * ilat mt1 = FIX(time[ilon,ilat,*]) ;float to integer mt2 = FIX((time[ilon,ilat,*] - mt1) * 60 ) ; ex 148 hour -> 1448 PRINTF, 5, lon, lat, sst[ilon,ilat,0], mt1[0],'', mt2[0], time[ilon,ilat,0], FORMAT='(3F123,I92,A1,I02,F155)' PRINTF, 6, lon, lat, sst[ilon,ilat,1], mt1[1],'', mt2[1], time[ilon,ilat,1], FORMAT='(3F123,I92,A1,I02,F155)' CLOSE, /ALL END IDL 5

6 AMSR IDL -, PRO amsre_ b ;*** determine file and file path *** path = 'D\IDL\' name = 'amsre_ v5gz' ;*** call subroutine and return geophysical data *** file_name = path + name read_amsr_day_v5, file_name, time, sst, wind, vapor, cloud, rain ;*** give the output file *** data_as = path + 'amsre_ _ascendingasc' data_ds = path + 'amsre_ _descendingasc' data_as_miss = path + 'amsre_ _ascending_missasc' data_ds_miss = path + 'amsre_ _descending_missasc' OPENW, 5, data_as OPENW, 6, data_ds OPENW, 7, data_as_miss OPENW, 8, data_ds_miss ;*** output data *** ;0 ascending (Daytime) ;1 descending (Nighttime) miss = -999 FOR ilat=420,500 DO BEGIN ;15125N ~ 35125N FOR ilon = 440,560 DO BEGIN ;110125E ~ E lon = * ilon lat = * ilat IF (sst[ilon,ilat,0] LE 250) THEN BEGIN PRINTF, 5, lon, lat, sst[ilon,ilat,0] ENDIF ELSE BEGIN PRINTF, 7, lon, lat, miss ENDELSE IF (sst[ilon,ilat,1] LE 250) THEN BEGIN PRINTF, 6, lon, lat, sst[ilon,ilat,1] ENDIF ELSE BEGIN PRINTF, 8, lon, lat, miss ENDELSE CLOSE, /ALL END IDL 6

7 AMSR GMT <totalbat> makecpt -Crainbow -T2/32/1 -Z > acpt surface %1asc -G%1_sstgrd -I005 -R115/135/15/30 grdimage %1_sstgrd -R115/135/15/30 -Jq125/04 -Cacpt -X15 -Y18 -K > %1_sstps grdcontour %1_sstgrd -C1 -A2f9 -G3 -R115/135/15/30 -Jq125/04 -W3/255/255/255/255 -K-O >> %1_sstps psxy %1_missasc -R115/135/15/30 -Jq125/04 -G70/70/70 -K -O -Ss02 >> %1_sstps pscoast -R115/135/15/30 -Jq125/04 -Ba5f5g5/a5f5g5WeSn -Di -W2/0/0/0 -Ii -K -O >> %1_sstps psscale -Cacpt -D4/-055/10/014h -B"AMSR-SST data %1" -I+05 -L -K -O >> %1_sstps del %1_sstgrd 1 color bar makecpt ( cpt) C-, rainbow ; T- / / 2 ( ) surface ( asc grd) G- ; I- ( ); R- / / / ( ); 3 grd grdimage ( ps) J- (q) / C- ; X-X ( ); Y-Y ( ) 4 grdcontour ( ps) C- ; A- (f ); G- ; W- / / / 5 missing data psxy (, ps) G- / / ; S- (s ) 6 pscoast B- X /Y (a, f, q ) (,, WeSn ); D- (i ); W- / / ; Ii- 7 color bar psscale D-bar X / Y / / ; B- ; I-?; L-? 8 grd <runbat> call total amsre_ _ascending call total amsre_ _descending IDL 7

8 AMSR GMT PRO inclass_3_test ;*********************************************************************************************** u=fltarr(1440,720,2) v=fltarr(1440,720,2) ;*********************************************************************************************** path='d\idl\' filename=path+' gz' Get_Scat_Daily_v03,filename, mingmt,windspd,winddir,scatflag,radrain ;*********************************************************************************************** good=where(winddir NE -999) angle=!pi*(winddir[good]/180) ;convert degrees to!pi (!PI=314159) u[good]=windspd[good]*sin(angle) ;u and v has minus value where towards the West and South v[good]=windspd[good]*cos(angle) ;calculate wind vector ;see "http//wwwremsscom/qscat/qscat_descriptionhtml" for wind direction ;note wind speed are all positive values ;*********************************************************************************************** U_as=path+'U_ _astxt' U_ds=path+'U_ _dstxt' V_as=path+'V_ _astxt' V_ds=path+'V_ _dstxt' miss_as=path+'miss_ _astxt' miss_ds=path+'miss_ _dstxt' wpd_as=path+'wpd_ _astxt' wpd_ds=path+'wpd_ _dstxt' slg_as=path+'slg_ _astxt' slg_ds=path+'slg_ _dstxt' OPENW,2,U_as OPENW,3,U_ds OPENW,4,V_as OPENW,5,V_ds OPENW,6,miss_as OPENW,7,miss_ds OPENW,8,wpd_as OPENW,9,wpd_ds OPENW,10,slg_as OPENW,11,slg_ds miss=-999 FOR ilat=400,480 DO BEGIN ;10125N ~ 30125N FOR ilon=480,600 DO BEGIN ;120125E ~ E lon= *ilon lat= *ilat IDL 8

9 IF(windspd[ilon,ilat,0] NE -999) THEN BEGIN PRINTF,2, lon, lat, u[ilon,ilat,0], FORMAT='(3F153)' PRINTF,4, lon, lat, v[ilon,ilat,0], FORMAT='(3F153)' PRINTF,8, lon, lat, windspd[ilon,ilat,0], FORMAT='(3F153)' PRINTF,10, lon, lat, scatflag[ilon,ilat,0], FORMAT='(2F153,I12)' ENDIF ELSE BEGIN PRINTF,6, lon, lat, miss ENDELSE IF(windspd[ilon,ilat,1] NE -999) THEN BEGIN PRINTF,3, lon, lat, u[ilon,ilat,1], FORMAT='(3F153)' PRINTF,5, lon, lat, v[ilon,ilat,1], FORMAT='(3F153)' PRINTF,9, lon, lat, windspd[ilon,ilat,1], FORMAT='(3F153)' PRINTF,11, lon, lat, scatflag[ilon,ilat,1], FORMAT='(2F153,I12)' ENDIF ELSE BEGIN PRINTF,7, lon, lat, miss ENDELSE ;*********************************************************************** CLOSE, /ALL END IDL 9

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 7 Input/Output

ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 7 Input/Output ESCI 386 IDL Programming for Advanced Earth Science Applications Lesson 7 Input/Output Reading: Bowman, Chapters 10-12 READING FROM THE TERMINAL The READ procedure is used to read from the terminal. IDL

More information

Introduction to GMT (Part 1)

Introduction to GMT (Part 1) Introduction to GMT (Part 1) An example of what you can make with GMT! Beth Meyers Matt Herman Last updated: 31 January 2018 Objectives Basic GMT commands psbasemap pscoast psxy GMT syntax and command

More information

NIWA GMT Workshop. Brent Wood April 2009

NIWA GMT Workshop. Brent Wood April 2009 NIWA GMT Workshop Brent Wood April 2009 Introduction Generic Mapping Tools (GMT) is a collection of command line programs for analysing & mapping spatial data. It primarily works with text files of XY

More information

Dr. Saji P. K. Assistant Professor, CUSAT.

Dr. Saji P. K. Assistant Professor, CUSAT. Dr. Saji P. K. Assistant Professor, CUSAT. Sessions 1 2 3 4 5 6 7 8 9 10 Session - 1 What is GMT? GMT stands for Generic ping Tools. GMT is a collection of commands that can be executed at the terminal

More information

GMT. Generic Mapping Tools or Gravity, Magnetics and Topography. Lecture #1 Mapping and Plotting with GMT

GMT. Generic Mapping Tools or Gravity, Magnetics and Topography. Lecture #1 Mapping and Plotting with GMT GMT Generic Mapping Tools or Gravity, Magnetics and Topography Lecture #1 Mapping and Plotting with GMT GMT World Domination GMT Began as a set of subroutines to write Postscript commands Grew with Paul

More information

Mapping and modeling Earth Science Data

Mapping and modeling Earth Science Data Mapping and modeling Earth Science Data Segment II: Making maps with GMT, an introduction Thorsten Becker University of Southern California, Los Angeles Universita di Roma TRE, June 2012 The problem Produce

More information

Final Projects - Posters

Final Projects - Posters Final Projects - Posters Printing: Send to Andrew Phillips (andrew.g.phillips@nmt.edu) with the information he needs, listed on webpage: https://nmtearth.com/wide-format-plotter/ Note that you are printing

More information

GLOBAL PRECIPITATION MEASUREMENT PRECIPITATION PROCESSING SYSTEM. File Specification AMSUBBASE. Preliminary Version

GLOBAL PRECIPITATION MEASUREMENT PRECIPITATION PROCESSING SYSTEM. File Specification AMSUBBASE. Preliminary Version GLOBAL PRECIPITATION MEASUREMENT PRECIPITATION PROCESSING SYSTEM File Specification AMSUBBASE Preliminary Version October 12, 2015 0.1 AMSUBBASE - AMSUB base AMSUBBASE contains brightness temperature from

More information

MATLAB & Practical Application on Climate Variability Studies EXERCISES

MATLAB & Practical Application on Climate Variability Studies EXERCISES B.Aires, 20-24/02/06 - Centro de Investigaciones del Mar y la Atmosfera & Department of Atmospheric and Oceanic Sciences (UBA) DAY1 Exercise n. 1 Read an SST field in netcdf format, subsample and save

More information

Version March Distributed Oceanographic Match-up Service (DOMS) Translation Specification: ICOADS In Situ Data

Version March Distributed Oceanographic Match-up Service (DOMS) Translation Specification: ICOADS In Situ Data Distributed Oceanographic Match-up Service (DOMS) Translation Specification: ICOADS In Situ Data Steven Worley and Zaihua Ji 3 National Center for Atmospheric Research, Boulder, CO Contact: Worley@ucar.edu

More information

Numerical Practical in Astronomy. Visualisation. Nigel Mitchell

Numerical Practical in Astronomy. Visualisation. Nigel Mitchell Numerical Practical in Astronomy Visualisation Nigel Mitchell IDL Interactive Data Language Interpreter language you type commands and they are executed instantly. Licenses are very expensive. Free 7 minute

More information

Department of Earth and Planetary Sciences Northwestern University

Department of Earth and Planetary Sciences Northwestern University Department of Earth and Planetary Sciences Northwestern University Summer 2012 1 Notes and Tricks on GMT (Generic Mapping Tools) Amir Salaree 2 Foreword: This text is to address some subtle needs of the

More information

University of Michigan Space Physics Research Laboratory

University of Michigan Space Physics Research Laboratory CAGE No. 0TK63 B Project TIDI Contract No. NASW-5-5049 Page 1 of 10 REVISION RECORD Rev Description Date Author B Added section on installation issues 27 Jan 2003 mlc A Added example code 8 Jan 2002 mlc

More information

IDL Primer - Week 1 John Rausch

IDL Primer - Week 1 John Rausch IDL Primer - Week 1 John Rausch 3 December 2009 A distillation of a CSU class 1 What is IDL? Interactive Data Language Like MATLAB, IDL is a high level computing language and visualization tool. It allows

More information

GSMaP Product Format. Version 2.0

GSMaP Product Format. Version 2.0 GSMaP Product Format Version 2.0 January 17 th, 2017 Japan Aerospace Exploration Agency Revision history revision date section content, reason Version 1.0 Sept. 2 nd 2014 ALL New Version 2.0 Jan. 17 th

More information

Intro to GMT Part 1. Beth Meyers Matt Herman

Intro to GMT Part 1. Beth Meyers Matt Herman Intro to GMT Part 1 Beth Meyers Matt Herman By the end of of this tutorial you will be able to create the following figures: By the end of of this tutorial you will be able to create the following figures:

More information

In this exercise, you ll create a netcdf raster layer using the variable tmin. You will change the display by selecting a different time step.

In this exercise, you ll create a netcdf raster layer using the variable tmin. You will change the display by selecting a different time step. Learning to Work with Temporal Data in ArcGIS Working with a netcdf File in ArcGIS Objective NetCDF (network Common Data Form) is a file format for storing multidimensional scientific data (variables)

More information

Aquarius Scatterometer Stability

Aquarius Scatterometer Stability Aquarius Scatterometer Stability Greg Neumann, Simon Yueh, Alex Fore, Adam Freedman, Akiko Hayashi, Wenqing Tang 30 Oct 2012 Ancillary Data Correlations With Scatterometer Sigma0 Correlation calculated

More information

Exercises with Level-2 satellite data

Exercises with Level-2 satellite data Exercises with Level-2 satellite data Mati Kahru WimSoft, http://www.wimsoft.com Email: wim@wimsoft.com also at Scripps Institution of Oceanography UCSD, La Jolla, CA 92093-0218, USA mkahru@ucsd.edu 10/25/2008

More information

USER S GUIDE. Version 4.0

USER S GUIDE. Version 4.0 The Cloud and Surface Parameter Retrieval (CASPR) System for Polar AVHRR USER S GUIDE Version 4.0 Beaufort Sea, AVHRR Channel 2 Cloud Particle Radius Optical Depth Top Height Top Temperature Surface Temperature

More information

Distributed rainfall runoff model: 1K DHM event. Demonstration and Project

Distributed rainfall runoff model: 1K DHM event. Demonstration and Project CE74.55 Modeling of Water Resources Systems February 26 th and 27 th, 2011 Distributed rainfall runoff model: 1K DHM event Demonstration and Project Yasuto TACHIKAWA Dept. of Civil and Earth Resources

More information

Practical in Numerical Astronomy. Visualization. Sylvia Plöckinger. April 7, 2011

Practical in Numerical Astronomy. Visualization. Sylvia Plöckinger. April 7, 2011 Practical in Numerical Astronomy Visualization Sylvia Plöckinger April 7, 2011 set term postscript eps color "Helvetica" 14 set output "average_vel3.eps" Gnuplot A few last remarks set style line 1 lt

More information

MATLAB & Practical Applications on Climate Variability Studies tutorial

MATLAB & Practical Applications on Climate Variability Studies tutorial MATLAB & Practical Applications on Climate Variability Studies tutorial B.Aires, 20-24/02/06 Centro de Investigaciones del Mar y la Atmosfera & Department of Atmospheric and Oceanic Sciences (UBA) E.Scoccimarro,

More information

GMT ex06 : Drawing GPS DATA. 胡植慶 Jyr-Ching HU Department of Geosciences National Taiwan University

GMT ex06 : Drawing GPS DATA. 胡植慶 Jyr-Ching HU Department of Geosciences National Taiwan University GMT ex06 : Drawing GPS DATA 胡植慶 Jyr-Ching HU Department of Geosciences National Taiwan University gmt2007_ex06c GMT commands psvelo: Plot velocity vectors, crosses, and wedges on maps psvelo files -Jparameters

More information

About the SPEEDY model (from Miyoshi PhD Thesis):

About the SPEEDY model (from Miyoshi PhD Thesis): SPEEDY EXPERIMENTS. About the SPEEDY model (from Miyoshi PhD Thesis): The SPEEDY model (Molteni 2003) is a recently developed atmospheric general circulation model (AGCM) with a spectral primitive-equation

More information

SWOT LAKE PRODUCT. Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads

SWOT LAKE PRODUCT. Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads SWOT LAKE PRODUCT Claire POTTIER(CNES) and P. Callahan (JPL) SWOT ADT project team J.F. Cretaux, T. Pavelsky SWOT ST Hydro leads Lake, Climate and Remote Sensing Workshop Toulouse June 1&2 2017 High Rate

More information

Data Analysis in Geophysics ESCI Bob Smalley Room 103 in 3892 (long building), x-4929

Data Analysis in Geophysics ESCI Bob Smalley Room 103 in 3892 (long building), x-4929 Data Analysis in Geophysics ESCI 7205 Bob Smalley Room 103 in 3892 (long building), x-4929 Tu/Th - 13:00-14:30 CERI MAC (or STUDENT) LAB Lab 15, 17/10/13 Go to IRIS DMC (http://www.iris.edu/wilber3/find_event)

More information

Package gmt. September 12, 2017

Package gmt. September 12, 2017 Version 2.0-1 Date 2017-09-12 Package gmt September 12, 2017 Title Interface Between GMT Map-Making Software and R Imports utils SystemRequirements gmt LazyData yes Interface between the GMT map-making

More information

Data Discovery Tools and Services Part A

Data Discovery Tools and Services Part A Data Discovery Tools and Services Part A A Panel Presentation: Pat Liggett, Ron Weaver, Sean Hardman, Ben Holt (with help from Dave Gallaher, SIDC) October 15, 16 2008 Burbank Airport Marriott User Scenario:

More information

1 An Introduction to GrADS Software

1 An Introduction to GrADS Software 1 An Introduction to GrADS Software The Grid Analysis and Display System (GrADS) is an interactive desktop tool to display earth science data. The followings are the features of GrADS. Advantages Free

More information

SPOT VGT.

SPOT VGT. SPOT VGT http://www.spot-vegetation.com/ SPOT VGT General Information Resolution: 1km Projection: Unprojected, Plate Carree Geodetic system: WGS 1984 Geographic Extent Latitude: 75 o N to 56 o S Longitude:

More information

The Generic Mapping Tools (GMT) Version 5

The Generic Mapping Tools (GMT) Version 5 The Generic Mapping Tools (GMT) Version 5 Paul Wessel 1, Walter H.F. Smith 2, Remko Scharroo 3, Joaquim Luis 4, Florian Wobbe 5 THE GENERIC MAPPING TOOLS 1 SOEST, University of Hawaii at Mānoa, 2 Laboratory

More information

IDL Lab #6: The IDL Command Line

IDL Lab #6: The IDL Command Line IDL Lab #6: The IDL Command Line Name: IDL Lab #6: A Sub-component of FOR 504 Advanced Topics in Remote Sensing The objectives of this laboratory exercise are to introduce the student to using IDL via

More information

Overview Trajectory Details

Overview Trajectory Details Overview The new trajectory code tracks three dimensional variables, with an XZY ordering, from a specified starting point along a lagrangian trajectory. Along any trajectory there may be up to 100 defined

More information

Interpolation. Computer User Training Course Paul Dando. User Support. ECMWF 25 February 2016

Interpolation. Computer User Training Course Paul Dando. User Support. ECMWF 25 February 2016 Interpolation Computer User Training Course 2016 Paul Dando User Support advisory@ecmwf.int ECMWF 25 February 2016 1 Contents Introduction Overview of Interpolation Spectral Transformations Grid point

More information

Appendix K: The making of the GMT High-Resolution Coastline Database

Appendix K: The making of the GMT High-Resolution Coastline Database GMT TECHNICAL REFERENCE & COOKBOOK K 1 Appendix K: The making of the GMT High-Resolution Coastline Database Starting with version 3.0, GMT use a completely new coastline database and the pscoast utility

More information

Gridded data from many sources

Gridded data from many sources Gridded data from many sources A data-user's perspective Heiko Klein 26.09.2014 Background MET used legacy format (felt) for gridded data since ~1980s -Index 2d fields -«unique» parameter table 2012 decided

More information

Sally Ride EarthKAM Earth Knowledge Acquired by Middle School Students

Sally Ride EarthKAM Earth Knowledge Acquired by Middle School Students Sally Ride EarthKAM Earth Knowledge Acquired by Middle School Students User Guide Last updated:10/20/2015 1 Table of Contents Welcome to Sally Ride EarthKAM@Space Camp!...3 Using Your Teacher Account...4-6

More information

Lab 9 Part 2. GMT: Texas Map

Lab 9 Part 2. GMT: Texas Map Lab 9 Part 2 GMT: Texas Map 1 Open a X-window terminal Before you begin Part 2, create a new folder on //geobase called Lab9_Part2 PCs: If you need to, launch Cygwin, then in the black window, type: startxwin.bat.

More information

Storm Central GETTING STARTED GUIDE V.2.0

Storm Central GETTING STARTED GUIDE V.2.0 Storm Central GETTING STARTED GUIDE V.2.0 This guide is a brief overview of the Storm Central site and its basic features. Storm Central is a cloud data collection service for a new era of data loggers

More information

WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006

WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006 WRF-NMM Standard Initialization (SI) Matthew Pyle 8 August 2006 1 Outline Overview of the WRF-NMM Standard Initialization (SI) package. More detailed look at individual SI program components. SI software

More information

Analysis Methods in Atmospheric and Oceanic Science

Analysis Methods in Atmospheric and Oceanic Science Analysis Methods in Atmospheric and Oceanic Science 1 AOSC 652 Introduction to Graphics and Analysis of Satellite Measurements of Atmospheric Composition: Day 2 14 Sep 2016 AOSC 652: Analysis Methods in

More information

GOSAT Tools Installation and Operation Manual

GOSAT Tools Installation and Operation Manual GOSAT Tools Installation and Operation Manual May 2018 NIES GOSAT Project Table of Contents 1. Introduction... 1 1.1 Overview... 2 1.2 System Requirements... 3 2. Installing... 4 2.1 Location Data of Validation

More information

Dynamics of the Atmosphere GEMPAK Supplementary Handout

Dynamics of the Atmosphere GEMPAK Supplementary Handout Dynamics of the Atmosphere GEMPAK Supplementary Handout Vertical coordinates PRES Pressure TROP Tropopause level FRZL Freezing level CLDT Cloud-top level CLDL Cloud-base level HGHT Height above the ground

More information

There is also a more in-depth GUI called the Curve Fitting Toolbox. To run this toolbox, type the command

There is also a more in-depth GUI called the Curve Fitting Toolbox. To run this toolbox, type the command Matlab bootcamp Class 4 Written by Kyla Drushka More on curve fitting: GUIs Thanks to Anna (I think!) for showing me this. A very simple way to fit a function to your data is to use the Basic Fitting GUI.

More information

Implementation of Version 6 AQUA and TERRA SST processing. K. Kilpatrick, G. Podesta, S. Walsh, R. Evans, P. Minnett University of Miami March 2014

Implementation of Version 6 AQUA and TERRA SST processing. K. Kilpatrick, G. Podesta, S. Walsh, R. Evans, P. Minnett University of Miami March 2014 Implementation of Version 6 AQUA and TERRA SST processing K. Kilpatrick, G. Podesta, S. Walsh, R. Evans, P. Minnett University of Miami March 2014 Outline of V6 MODIS SST changes: A total of 3 additional

More information

Package APSIM. July 24, 2017

Package APSIM. July 24, 2017 Type Package Package APSIM July 24, 2017 Title General Utility Functions for the 'Agricultural Production Systems Simulator' Version 0.9.2 Date 2017-07-24 Author Justin Fainges Maintainer Justin Fainges

More information

GrADS for Beginners. Laura Mariotti

GrADS for Beginners. Laura Mariotti GrADS for Beginners Laura Mariotti mariotti@ictp.it Outline n What is GrADS and how do I get it? n GrADS essentials n Getting started n Gridded data sets n Displaying data n Script language n Saving your

More information

usrdef 1dsur spec: specifies the setup of boundary forcing for water column applications (1-D mode)

usrdef 1dsur spec: specifies the setup of boundary forcing for water column applications (1-D mode) Chapter 17 Surface forcing and nesting This chapter discusses the setup of the surface forcing needed for the application of surface boundary conditions and the procedures for defining nesting. The following

More information

A Brief Guide for Using the HMI Vector Magnetogram

A Brief Guide for Using the HMI Vector Magnetogram A Brief Guide for Using the HMI Vector Magnetogram v0.0 Nov 09 2011 Xudong Sun and the HMI Vector Team 1. Read Rice compressed HMI fits images Most HMI fits images (including the vector data) are stored

More information

15 Answers to Frequently-

15 Answers to Frequently- 15 Answers to Frequently- Asked Questions In this chapter, we provide answers to some commonly asked questions about ARPS. Most of the questions are collected from the users. We will continue to collect

More information

Projections for use in the Merced River basin

Projections for use in the Merced River basin Instructions to download Downscaled CMIP3 and CMIP5 Climate and Hydrology Projections for use in the Merced River basin Go to the Downscaled CMIP3 and CMIP5 Climate and Hydrology Projections website. 1.

More information

Collect all of the raw.trd files into a directory such as /data/67 (67 was a deployment line). Run 125proci.sh using

Collect all of the raw.trd files into a directory such as /data/67 (67 was a deployment line). Run 125proci.sh using Gathering 2005.022 This document describes the general procedure that was used for a particular project. This project had about 600 Texans, about 15 Reftek RT130's, and had both a few land shots and thousands

More information

Rotated earth or when your fantasy world goes up side down

Rotated earth or when your fantasy world goes up side down Rotated earth or when your fantasy world goes up side down A couple of weeks ago there was a discussion started if Fractal Terrain 3 (FT3) can rotate our earth. http://forum.profantasy.com/comments.php?discussionid=4709&page=1

More information

Subscriber Registration Instructions

Subscriber Registration Instructions Subscriber Registration Instructions Updated 4/19/2017 What is Berks Alert? When situations arise in Berks County that may affect you and your family, Berks Alert lets local officials notify you quickly.

More information

Apollo GX 50/55 SAR Functions

Apollo GX 50/55 SAR Functions Apollo GX 50/55 SAR Functions Bob Wolin, Lt. Col. CAP Sugar Land Composite Squadron This presentation is based on materials from Nighthawk Composite Squadron - TX-413 Denton, Texas Introduction Introduce

More information

GEBCO Digital Atlas Software Interface Users Guide

GEBCO Digital Atlas Software Interface Users Guide GEBCO Digital Atlas Software Interface Users Guide Introduction Using the GDA Software Interface GDA Software Interface Menu Bar GDA Software Interface Toolbar Red text in this document indicates active

More information

MODIS Atmosphere: MOD35_L2: Format & Content

MODIS Atmosphere: MOD35_L2: Format & Content Page 1 of 9 File Format Basics MOD35_L2 product files are stored in Hierarchical Data Format (HDF). HDF is a multi-object file format for sharing scientific data in multi-platform distributed environments.

More information

Project #2: A 3-Tiered Airport Lookup Service Using RPC

Project #2: A 3-Tiered Airport Lookup Service Using RPC Project #2: A 3-Tiered Airport Lookup Service Using RPC 1. Objective Your assignment is to write a 3-tiered client-server program. The program will consist of three components: a client, a places server,

More information

ITACS : Interactive Tool for Analysis of the Climate System

ITACS : Interactive Tool for Analysis of the Climate System Contents 1 2 3 4 ITACS : Interactive Tool for Analysis of the Climate System Features of the ITACS Atmospheric Analysis Data, Outgoing Longwave Radiation (by NOAA), SST, Ocean Analysis Data, etc. Plain

More information

The gmt Package. October 19, URL

The gmt Package. October 19, URL The gmt Package October 19, 2005 Version 1.0-3 Date 2005-10-18 Title Interface between GMT 4.0 map-making software and R Author Arni Magnusson Maintainer Arni Magnusson Depends

More information

Package gmt. February 20, 2015

Package gmt. February 20, 2015 Version 1.2-0 Date 2014-03-11 Package gmt February 20, 2015 Title Interface between GMT Map-Making Software and R Author Arni Magnusson Maintainer Arni Magnusson SystemRequirements gmt

More information

CHAPTER 5 1 RECORDS MANAGEMENT

CHAPTER 5 1 RECORDS MANAGEMENT Slide 1 Slide 2 Using Databases Databases are organized for rapid search and retrieval Databases have objects: Tables Forms Queries Reports Slide 3 Access Database Table Fields are arranged in columns

More information

gmtex10 : ARGIS_GMT 胡植慶國立臺灣大學地質科學系 Jyr-Ching HU, Department of Geosciences, NTU

gmtex10 : ARGIS_GMT 胡植慶國立臺灣大學地質科學系 Jyr-Ching HU, Department of Geosciences, NTU gmtex10 : ARGIS_GMT 胡植慶國立臺灣大學地質科學系 Jyr-Ching HU, Department of Geosciences, NTU ArcGMT Extension of ArcView Function 1. convert GMT grid to Arc/INFO grid 2. convert Arc/INFO grid to GMT grid 3. convert

More information

A hybrid object-based/pixel-based classification approach to detect geophysical phenomena

A hybrid object-based/pixel-based classification approach to detect geophysical phenomena A hybrid object-based/pixel-based classification approach to detect geophysical phenomena Xiang Li, Rahul Ramachandran*, Sara Graves, Sunil Movva Information Technology and Systems Center University of

More information

Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual

Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual Common Multi-dimensional Remapping Software CoR (Common Remap) V1.0 User Reference Manual Li Liu, Guangwen Yang, Bin Wang liuli-cess@tsinghua.edu.cn Ministry of Education Key Laboratory for Earth System

More information

Distributed flow routing model: 1K FRM event. Demonstration and Project

Distributed flow routing model: 1K FRM event. Demonstration and Project CE74.55 Modeling of Water Resources Systems March 21 st, 22 th and 23 rd, 2012 Distributed flow routing model: 1K FRM event Demonstration and Project Yasuto TACHIKAWA Dept. of Civil and Earth Resources

More information

Callisto Installer Guide. I. QuickStart

Callisto Installer Guide. I. QuickStart Callisto Installer Guide This guide describes the Callisto Installer software tool, which is recommended for installing the Callisto application software. This tool simplifies installation but does not

More information

An Overview of ROMS Code. Kate Hedstrom, ARSC January 2011

An Overview of ROMS Code. Kate Hedstrom, ARSC January 2011 An Overview of ROMS Code Kate Hedstrom, ARSC January 2011 Outline Outline of the code cpp cppdefs.h Modules ocean.in Compiling ROMS ls Trunk Atmosphere/ Lib/ ROMS/ Compilers/ makefile User/ Data/ Master/

More information

How to check the location, status and usage of AnyNet Secure SIMs on AWS IoT

How to check the location, status and usage of AnyNet Secure SIMs on AWS IoT How to check the location, status and usage of AnyNet Secure SIMs on AWS IoT The Eseye AWS IoT integration enables look-up of SIM card usage and location by pushing device updates to your AWS IoT Cloud.

More information

McIDAS-V Tutorial Using and Creating Formulas updated September 2013 (software version 1.4)

McIDAS-V Tutorial Using and Creating Formulas updated September 2013 (software version 1.4) McIDAS-V Tutorial Using and Creating Formulas updated September 2013 (software version 1.4) McIDAS-V is a free, open source, visualization and data analysis software package that is the next generation

More information

a ESRIN Via Galileo Galilei - Casella Postale Frascati - Italy Tel. (39) Fax (39)

a ESRIN Via Galileo Galilei - Casella Postale Frascati - Italy Tel. (39) Fax (39) D O C U M E N T document title/ titre du document UIDELINES FOR THE SUBMISSION OF EGISTRATIONS prepared by/préparé par ESA EO R&D Section reference/réference issue/édition 5 revision/révision 1 date of

More information

GMT ex07 : Making Grid File

GMT ex07 : Making Grid File GMT ex07 : Making Grid File 胡植慶 Jyr-Ching HU, Dept. of Geosciences, NTU gmt commands nearneighbor: A "Nearest neighbor" gridding algorithm xyz2grd: blockmean: filter to block average (x,y,z) data by L2

More information

SGLI Level-2 data Mati Kahru

SGLI Level-2 data Mati Kahru SGLI Level-2 data Mati Kahru 2018 1 Working with SGLI Level-2 data Contents Working with SGLI Level-2 data... 1 1 Introduction... 1 2 Evaluating SGLI Level-2 data... 1 3 Finding match-ups in SGLI Level-2

More information

Constellation Level-1C Product Format. Version 1.0

Constellation Level-1C Product Format. Version 1.0 Constellation Level-1C Product Format Version 1.0 September 2 nd, 2014 Japan Aerospace Exploration Agency Revision history revision date section content, reason Version 1.0 Sept. 2 nd 2014 ALL New Reference

More information

The Ohio State University Stackfiles for Satellite Radar Altimeter Data

The Ohio State University Stackfiles for Satellite Radar Altimeter Data The Ohio State University Stackfiles for Satellite Radar Altimeter Data by Yuchan Yi Report No. 495 Geodetic Science The Ohio State University Columbus, Ohio 43210 May 2010 THE OHIO STATE UNIVERSITY STACKFILES

More information

MAR 572 Geophysical Simulation

MAR 572 Geophysical Simulation MAR 572 Geophysical Simulation Wed/Fri 3:00-4:20 pm Endeavour 158 Prof. Marat Khairoutdinov Office hours: Endeavour 121; by email appt Email: marat.khairoutdinov@stonybrook.edu Class website: http://rossby.msrc.sunysb.edu/~marat/mar572.html

More information

Aquaplanets with slab ocean in CESM1

Aquaplanets with slab ocean in CESM1 NCAR Aquaplanets with slab ocean in CESM1 Brian Medeiros November 13, 2013 1 DESCRIPTION This document outlines the steps necessary to run CESM1 configured as an aquaplanet with a slab ocean model. I outline

More information

5.1 Further data input

5.1 Further data input 88 geo111 numerical skills in geoscience 5.1 Further data input Previously, you imported ASCII data into MATLAB using the load command 1. You might not have realized it at the time, but the use of load

More information

LMDZ tutorial. Configurations, input files, forcing data. Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD

LMDZ tutorial. Configurations, input files, forcing data. Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD LMDZ tutorial Configurations, input files, forcing data Lionel GUEZ Olivier BOUCHER (part on aerosols) LMD Contents Configurations LMDZ with realistic physics Aqua-planet or all-land planet Relaxation

More information

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

XEmacs Project Archive - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.ie.xemacs.org Description XEmacs Project Archive Country Ireland Scan Date 31/Oct/2014 Total Dirs 677 Total Files 4,166 Total Data 4.40 GB Top 20 Directories Sorted by Disk

More information

How to design a geographic sundial by means of the Orologi Solari program

How to design a geographic sundial by means of the Orologi Solari program How to design a geographic sundial by means of the Orologi Solari program Geographic sundials show the gnomonic projection of the earth surface on the dial plane: continents, countries, cities etc. The

More information

Radar and SAFNWC data APIs in SHMI

Radar and SAFNWC data APIs in SHMI Radar and SAFNWC data APIs in SHMI Ladislav Méri Ľuboslav Okon SHMI, Bratislava, Slovakia 6 7 February, 2012 (API = Application Programming Interface) Why radar volumes and SAFNWC? Goals: Improve the quantitative

More information

Interpolation. Introduction and basic concepts. Computer User Training Course Paul Dando. User Support Section.

Interpolation. Introduction and basic concepts. Computer User Training Course Paul Dando. User Support Section. Interpolation Introduction and basic concepts Computer User Training Course 2011 Paul Dando User Support Section advisory@ecmwf.int 1 Contents Introduction Overview Spectral Transformations Grid point

More information

NCL variable based on a netcdf variable model

NCL variable based on a netcdf variable model NCL variable based on a netcdf variable model netcdf files self describing (ideally) all info contained within file no external information needed to determine file contents portable [machine independent]

More information

ENVI Tutorial: Introduction to User Functions

ENVI Tutorial: Introduction to User Functions ENVI Tutorial: Introduction to User Functions Table of Contents OVERVIEW OF THIS TUTORIAL...2 Background...2 BAND MATH...3 Open TM Data...3 Explore a Band Math User Function...3 Compile the Band Math Function...4

More information

Online Trajectory Module in COSMO - A short user guide

Online Trajectory Module in COSMO - A short user guide Online Trajectory Module in COSMO - A short user guide Document version: 1.0 (as of June 2014) Annette K. Miltenberger, Stephan Pfahl, Anne Roches, Heini Wernli IAC and C2SM, ETH Zurich Contact: stephan.pfahl@env.ethz.ch

More information

Global Model Test Bed Single Column Model (SCM)

Global Model Test Bed Single Column Model (SCM) Global Model Test Bed Single Column Model (SCM) User and Technical Guide v1.0.1 April 2018 Grant Firl, Laurie Carson National Center for Atmospheric Research and Developmental Testbed Center Ligia Bernardet,

More information

Bulk Statistics. Feature Summary and Revision History. This chapter provides configuration information for:

Bulk Statistics. Feature Summary and Revision History. This chapter provides configuration information for: This chapter provides configuration information for: Feature Summary and Revision History, page 1 Configuring Communication with the Collection Server, page 2 Viewing Collected Data, page 6 Collecting

More information

SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G

SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G SERVICE ORIE TED COMPUTI G ARCHITECTURE FOR CLIMATE MODELI G Monish Advani 1, Varish Mulwad 2, Uzoma Obinna 2 1 Department of Information Systems 2 Department of Computer Science and Electrical Engineering

More information

2 Assembling a consistent time series of sea ice data

2 Assembling a consistent time series of sea ice data Detection of Change in the Arctic Mati Kahru 2012 1 Detection of Change in Arctic Sea-Ice Contents Detection of Change in the Arctic, Ice... 1 1 Introduction... 1 2 Assembling a consistent time series

More information

2 VARIO LUX CONTROL control buttons

2 VARIO LUX CONTROL control buttons VARIO LUX CONTROL with external control unit has connections provided for up to two fluorescent bars each with up to two channels and a temperature sensor for measuring the water temperature. VARIO LUX

More information

Practical Session Instructions. Soil Moisture Retrieval

Practical Session Instructions. Soil Moisture Retrieval Practical Session Instructions Soil Moisture Retrieval Prof. Bob Su & M.Sc. Lichun Wang ITC, The Netherlands (July 2013) Practical on analysis of soil moisture products Objectives: To retrieve the soil

More information

MATHEMATICS CONCEPTS TAUGHT IN THE SCIENCE EXPLORER, FOCUS ON EARTH SCIENCE TEXTBOOK

MATHEMATICS CONCEPTS TAUGHT IN THE SCIENCE EXPLORER, FOCUS ON EARTH SCIENCE TEXTBOOK California, Mathematics Concepts Found in Science Explorer, Focus on Earth Science Textbook (Grade 6) 1 11 Describe the layers of the Earth 2 p. 59-61 Draw a circle with a specified radius or diameter

More information

JAXA Himawari Monitor Aerosol Products. JAXA Earth Observation Research Center (EORC) August 2018

JAXA Himawari Monitor Aerosol Products. JAXA Earth Observation Research Center (EORC) August 2018 JAXA Himawari Monitor Aerosol Products JAXA Earth Observation Research Center (EORC) August 2018 1 JAXA Himawari Monitor JAXA has been developing Himawari 8 products using the retrieval algorithms based

More information

Appendix AMSR-E Level 2 Map format description (NDX D)

Appendix AMSR-E Level 2 Map format description (NDX D) Appendix. 3-3 AMSR-E Level 2 Map format description (NDX-000273D) NDX-000273D AMSR-E Level 2 Map Product Format Description Document Japan Aerospace Exploration Agency (JAXA) COPYRIGHT JAXA Contents 1.

More information

Ballast Water Management (BWM) Equivalent Reporting Form. User Manual

Ballast Water Management (BWM) Equivalent Reporting Form. User Manual Ballast Water Management (BWM) Equivalent Reporting Form User Manual Contents Overview 3 Software Requirements and Setup 4 Downloading the Required Software... 4 Opening BWM Equivalent Reporting Form...

More information

Magics support in CDO

Magics support in CDO Magics support in CDO Creating of contour, vector and graph plots January 2016 Kameswarrao Modali, Ralf Müller, Uwe Schulzweida Max Planck Institute for Meteorology Contents 1 Introduction 3 2 Building

More information

AS COMPUTER SCIENCE 7516/1. Paper 1. Time allowed: 1 hour 45 minutes

AS COMPUTER SCIENCE 7516/1. Paper 1. Time allowed: 1 hour 45 minutes A AS COMPUTER SCIENCE Paper 1 7516/1 Monday 5 June 2017 Morning Time allowed: 1 hour 45 minutes For this paper you must have access to: a computer a printer appropriate software the Electronic Answer Document

More information

Status and description of Level 2 products and algorithm (salinity)

Status and description of Level 2 products and algorithm (salinity) SMOS 7th Workshop, ESRIN, Frascati, 29-31 Oct. 2007 Status and description of Level 2 products and algorithm (salinity) J. Font, J. Boutin, N. Reul, P. Waldteufel, C. Gabarró, S. Zine, J. Tenerelli, M.

More information