A Brief Guide for Using the HMI Vector Magnetogram

Size: px
Start display at page:

Download "A Brief Guide for Using the HMI Vector Magnetogram"

Transcription

1 A Brief Guide for Using the HMI Vector Magnetogram v0.0 Nov Xudong Sun and the HMI Vector Team 1. Read Rice compressed HMI fits images Most HMI fits images (including the vector data) are stored in Rice compressed format, in which floats are scaled into ints. The scaling is determined by the BSCALE and BZERO keywords, which are present in the headers. When reading an image via a fits reader, the ints are converted back to floats. The HMI team suggests using the IDL module fitsio_read_image.pro to deal with the Rice compressed data. The module requires a share object fitsio.so. To read in the field strength for the cutout image of the Feb 16 12:00 UT record, IDL> data = fitsio_read_image(file, hdr) IDL> help, data DATA DOUBLE = Array[650, 600] IDL> print, data[0,0] NaN The SSW module read_sdo.pro can also be used to read Rice compressed data. Be warned that it does not treat missing values properly 1. The missing values are 1<<31 as indicated by the BLANK keyword. While fitsio_read_image converts them into NaNs, read_sdo reads them as a regular number, e07. One simple work-around is to find any values less than -1.e07 (and set them to NaNs if one wishes), since no magnetic field has such value. IDL> print, data[0,0] e+07 IDL> nan_pos = where(data le - 1.e07) IDL> if (nan_pos[0] ne - 1) then data[nan_pos] =!values.f_nan For a more detailed description and alternatives, see access.htm 2. Keyword examples Keywords in the fits header follow the WCS standard. A few ad-hoc keywords are provided for additional information. T_OBS: center time of the averaging window for the 720 s cadence data. 1 For this first release, only part of the disk is processed according to the automatic feature identification result. Thus, there are missing values in the cutout images.

2 CROTA2: negative solar p-angle. CRPIX1/CRPIX2: reference pixel address. For a cutout image, it refers to the disk center with regard to the lower-left corner of the cutout, which has an address of (1, 1). For a remapped image, it refers to the patch center with regard to the lower-left corner. CRVAL1/CRVAL2: For a cutout image, it is always 0 arcsec (for disk center). For a remapped image, it s the Carrington longitude/latitude (for patch center). CRLN_OBS/ CRLT_OBS: Carrington longitude and latitude of disk center. For a cutout image: IDL> print, index.t_obs _11:59:54_TAI IDL> print, index.crota IDL> print, index.crpix1, index.crpix IDL> print, index.crval1, index.crval For a remapped image: IDL> file = hmi_test.b_720s_cea _120000_tai.br.fits IDL> print, index.crota IDL> print, index.crpix1, index.crpix IDL> print, index.crval1, index.crval Using the geometry information: co-alignment with AIA image Based on the keywords in the header we can determine the position of any pixel in the cutout with regard to the solar disk. This information can then be used to co-align with other solar images. We again use the Feb 16 12:00 frame as example. Let s determine the position of pixel (475, 450), with lower-left (1,1). IDL> cosa = cos (index.crota2 *!dtor) & sina = sin (index.crota2 *!dtor) IDL> cdelt = index.cdelt1 IDL> crval1 = index.crval1 & crval2 = index.crval2 IDL> ; (475, 450) relative to disk center IDL> pix1 = index.crpix1 & pix2 = index.crpix2 IDL> ; to the west of disk center:

3 IDL> wx = (pix1 * cosa - pix2 * sina) * cdelt + crval1 IDL> ; to the north of disk center: IDL> wy = (pix2 * cosa + pix1 * sina) * cdelt + crval2 IDL> print, wx, wy Let s extract a 300x300 HMI cutout with its upper-right corner at (475, 450). After 180 rotation, this pixel becomes the lower-left corner. Since we have (wx, wy) for this pixel, we may get the corresponding AIA cutout easily. These two cutouts have their lower-left corner registered to the nearest full pixel. IDL> field = data[175:474, 150:449] IDL> ; Approximate treatment for 180 degree p- angle IDL> field = rotate(field, 2) IDL> ; Get AIA 193 cutout IDL> file_aia = AIA _115919_0193.fits IDL> read_sdo, file_aia, index_a, data_a IDL> ; Get lower- left pixel address IDL> llx = round (index_a.crpix1 + wx / index_a.cdelt1) - 1 IDL> lly = round (index_a.crpix2 + wy / index_a.cdelt2) - 1 IDL> ; Get subregion dimension IDL> nx = round (300 * cdelt / index_a.cdelt1) IDL> ny = round (300 * cdelt / index_a.cdelt2) IDL> print, llx, lly, nx, ny IDL> aia = data_a[llx:llx+nx - 1, lly:lly+ny- 1] Below is a plot of the cutouts. 4. Transformation of field vectors (basic) The cutout images present the field vectors in three components: field strength 2, inclination, azimuth. The convention of angles are as follows. Inclination is with regard to the line-of-sight (LOS) direction ranging 2 HMI has a fixed unity filling-factor, thus all field are essentially mean flux density.

4 from 0 to points towards Earth, 180 into the plane of sky. Azimuth is defined with regard to the +y direction of the native image (up), ranging from 0 to 360, increasing counter-clockwise (CCW). Note that the HMI images usually has a p-angle of about 180, so the 0 azimuth is actually point toward south. We convert the cutout data into LOS, EW and NS components. Be careful about the sign of EW and NS components, when p-angle is 180. IDL> file_field = hmi_test.b_720s_cutout _120000_tai.field.fits IDL> file_inclination = hmi_test.b_720s_cutout _120000_tai.inclination.fits IDL> file_azimuth = hmi_test.b_720s_cutout _120000_tai.azimuth.fits IDL> field = fitsio_read_image(file_field) IDL> inclination = fitsio_read_image(file_inclination) IDL> azimuth = fitsio_read_image(file_azimuth) IDL> ; LOS field IDL> b_los = field * cos (inclination *!dtor) IDL> ; Transverse field IDL> b_trans = field * sin (inclination *!dtor) IDL> ; EW component, E positive for 180 degree p- angle IDL> b_ew = - b_trans * sin (azimuth *!dtor) IDL> ; NS component, S positive for 180 degree p- angle IDL> b_ns = b_trans * cos (azimuth *!dtor) 5. Transformation of field vectors (advanced) Field vectors can be transformed into LOS/transverse components easily, as shown above. One may want to transform them into the more useful vertical/horizontal decomposition. The remapped series provided in this release uses equation (1) provided in Gary and Hagyard (1990). In that convection, the field vector is denoted and B x, B y and B z. B z is normal to the solar surface, B x and B y form a plane tangent to the surface, with +y pointing north. Note that B z is essentially the radial component, or B r in the remapped series in this release. Similarly, B x is B p, B y is -B t. For each pixel, one will need the following information to perform the transformation: the latitude and longitude of disk center, the solar p-angle, and the latitude and longitude of the very pixel. The first three can be found in the fits header. The last two can be computed from the header information. For this particular release, latitude and longitude values at each point are provided as images in the DRMS series. One can get them from the JSOC lookdata webpage, from the hmi_test.b_720s_cutout data series. The data segments are named lat and lon respectively. Alternatively, one may use the SSW routine xy2lonlat.pro to compute the latitude and longitude of a pixel. IDL> ; We are using pixel (475, 450) in example 2 IDL> ; We already computed the needed distance from disk center wx and wy IDL> ang = [ , ] IDL> ; date0 is obsolete in this case IDL> date0 = IDL> ; b- angle is just the latitude of the disk center

5 IDL> b0 = index.crlt_obs *!dtor IDL> ; Solar radius is provided in arcsec IDL> rsun = index.rsun_obs IDL> ; Use xy2lonlat IDL> position = xy2lonlat (ang, date0, b0=b0, radius=rsun) IDL> print, position IDL> ; the longitude is relative to disk center, the disk center Carrington longitude is IDL> print, index.crln_obs IDL> ; Carrington longitude of the pixel IDL> print, The value obtained from the HMI pipeline result lon and lat images are and , the longitude is Carrington longitude. The difference with SSW result is ~ degree.

hmi_test.b_720s_cea List of All Keywords, Links, and Segments

hmi_test.b_720s_cea List of All Keywords, Links, and Segments hmi_test.b_720s_cea List of All Keywords, Links, and Segments keyword type scope default unit note cparms_sg000 string variable compress Rice none Bp_bzero double variable 0 none Bp_bscale double variable

More information

CSI 769 Fall 2010 Solar and Heliospheric Physics

CSI 769 Fall 2010 Solar and Heliospheric Physics CSI 769 Fall 2010 Solar and Heliospheric Physics Project: Potential Field Source Surface Model of Solar Corona Assignment date: Oct. 03, 2010 Due date: Oct. 21, 2010 1. Introduction Solar corona is a highly

More information

Prime Index Object Name type note source keyword ORIGIN (string) ORIGIN Location where file made constant in jsd keyword DATE (string) Date_time of

Prime Index Object Name type note source keyword ORIGIN (string) ORIGIN Location where file made constant in jsd keyword DATE (string) Date_time of HMI lev0 Prime Index Object Name type note source ORIGIN (string) ORIGIN Location where file made constant in jsd DATE (string) Date_time of processing; ISO 8601 ingest_lev0 DATE OBS (string) [DATE-OBS]

More information

11. JSOC 12. HMI 13. AIA

11. JSOC 12. HMI 13. AIA See change log on last page(s). Items suggested for change or questions are highlighted in colors. JSOC Keywords used for metadata... 2 Keyword Syntax Standards... 2 Naming Syntax Issues... 2 DRMS and

More information

AIA DATA ANALYSIS HOW TO GET AIA DATA USING SOLARSOFT

AIA DATA ANALYSIS HOW TO GET AIA DATA USING SOLARSOFT AIA DATA ANALYSIS HOW TO GET AIA DATA USING SOLARSOFT SDO SUMMER SCHOOL ~ August 2010 ~ Yunnan, China Mark Cheung & Marc DeRosa cheung@lmsal.com & derosa@lmsal.com LMSAL INTRO TO SOLARSOFT SolarSoft =

More information

GEOG 4110/5100 Advanced Remote Sensing Lecture 4

GEOG 4110/5100 Advanced Remote Sensing Lecture 4 GEOG 4110/5100 Advanced Remote Sensing Lecture 4 Geometric Distortion Relevant Reading: Richards, Sections 2.11-2.17 Geometric Distortion Geometric Distortion: Errors in image geometry, (location, dimensions,

More information

HMI Global Helioseismology Data Analysis Pipeline. Tim Larson

HMI Global Helioseismology Data Analysis Pipeline. Tim Larson HMI Global Helioseismology Data Analysis Pipeline Tim Larson tplarson@sun.stanford.edu dopplergrams remap to regular grid in longitude, sin(latitude) fourier transform in longitude calculate plm s and

More information

16.6. Parametric Surfaces. Parametric Surfaces. Parametric Surfaces. Vector Calculus. Parametric Surfaces and Their Areas

16.6. Parametric Surfaces. Parametric Surfaces. Parametric Surfaces. Vector Calculus. Parametric Surfaces and Their Areas 16 Vector Calculus 16.6 and Their Areas Copyright Cengage Learning. All rights reserved. Copyright Cengage Learning. All rights reserved. and Their Areas Here we use vector functions to describe more general

More information

AIA Data processing and Distribution: from Telemetry to Science data

AIA Data processing and Distribution: from Telemetry to Science data AIA Data processing and Distribution: from Telemetry to Science data AIA and HMI impose novel requirements on the data processing and distribution. The volume of data places constraints on the frequency

More information

and how to label right triangles:

and how to label right triangles: Grade 9 IGCSE A1: Chapter 6 Trigonometry Items you need at some point in the unit of study: Graph Paper Exercise 2&3: Solving Right Triangles using Trigonometry Trigonometry is a branch of mathematics

More information

Supplementary Material: The Rotation Matrix

Supplementary Material: The Rotation Matrix Supplementary Material: The Rotation Matrix Computer Science 4766/6778 Department of Computer Science Memorial University of Newfoundland January 16, 2014 COMP 4766/6778 (MUN) The Rotation Matrix January

More information

( ) Derivation of Polar Reduction Formula for a Calculator Robert Bernecky April, 2018 ( )

( ) Derivation of Polar Reduction Formula for a Calculator Robert Bernecky April, 2018 ( ) Derivation of Polar Reduction Formula for a Calculator Robert Bernecky April, 2018 1 Problem Statement The polar reduction formula takes an observer's assumed position (lat, lon), and a body's celestial

More information

The Nautical Almanac's Concise Sight Reduction Tables

The Nautical Almanac's Concise Sight Reduction Tables The Nautical Almanac's Concise Sight Reduction Tables W. Robert Bernecky February, 2015 This document describes the mathematics used to derive the Nautical Almanac's Concise Sight Reduction Tables (NACSR).

More information

LOCAL GEODETIC HORIZON COORDINATES

LOCAL GEODETIC HORIZON COORDINATES LOCAL GEODETIC HOIZON COODINATES In many surveying applications it is necessary to convert geocentric Cartesian coordinates X,,Z to local geodetic horizon Cartesian coordinates E,N,U (East,North,Up). Figure

More information

Accessing and Exploiting Solar Dynamics Observatory (SDO) Data in Europe. Veronique Delouille

Accessing and Exploiting Solar Dynamics Observatory (SDO) Data in Europe. Veronique Delouille Accessing and Exploiting Solar Dynamics Observatory (SDO) Data in Europe Veronique Delouille SWWT plenary meeting, 28 June 2011 Introduction As from NASA policy: Data from SDO mission are freely available

More information

mosaic_mask.pl David Makovoz, 04/30/04 Version 1.2 Table of Contents

mosaic_mask.pl David Makovoz, 04/30/04 Version 1.2 Table of Contents mosaic_mask.pl mosaic_mask.pl David Makovoz, 4/3/4 Version. Table of Contents mosaic_mask.pl... Overview.... Input Image Requirements... Input and Output.... Input Data.... Namelist Configuration file...

More information

BASIC MATHEMATICS FOR CADASTRAL MAPPING

BASIC MATHEMATICS FOR CADASTRAL MAPPING BASIC MATHEMATICS FOR CADASTRAL MAPPING Chapter 5 2015 Cadastral Mapping Manual 5-1 Introduction Data which a mapper must use to solve problems comes from a myriad of sources both new and old. The general

More information

NATIONAL RADIO ASTRONOMY OBSERVATORY VLA ANTENNA MEMORANDUM NO. 1. April 3, 1968 THE RELATIONSHIP BETWEEN ANTENNA SITES ON THE ARMS OF THE WYE

NATIONAL RADIO ASTRONOMY OBSERVATORY VLA ANTENNA MEMORANDUM NO. 1. April 3, 1968 THE RELATIONSHIP BETWEEN ANTENNA SITES ON THE ARMS OF THE WYE NATIONAL RADIO ASTRONOMY OBSERVATORY VLA ANTENNA MEMORANDUM NO. 1 April 3, 1968 THE RELATIONSHIP BETWEEN ANTENNA SITES ON THE ARMS OF THE WYE A. J. Burford INTRODUCTION This memorandum discusses two methods

More information

Lab 21.1 The Tangent Galvanometer

Lab 21.1 The Tangent Galvanometer Name School Date Lab 21.1 The Tangent Galvanometer Purpose To investigate the magnetic field at the center of a current-carrying loop of wire. To verify the right-hand rule for the field inside a current

More information

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides) LATITUDE FORMULA FOR 1:24000 SCALE WITH 2.5 TICK MARKS Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

More information

Joint Astronomy Centre James Clerk Maxwell Telescope

Joint Astronomy Centre James Clerk Maxwell Telescope Joint Astronomy Centre James Clerk Maxwell Telescope PTCS TCS/UN/004 Nick Rees, Russell Kackley 4 August 2003 Description of the JAC Telescope Control System serial line interface Contents 1 Introduction

More information

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides) LATITUDE FORMULA FOR 1:24000 SCALE WITH 2.5 TICK MARKS Distance in mm from nearest latitude line to location x 150 = seconds of latitude Distance in mm between latitude 2.5 tick marks (along the sides)

More information

Astromechanics. 12. Satellite Look Angle

Astromechanics. 12. Satellite Look Angle Astromechanics 12. Satellite Look Angle The satellite look angle refers to the angle that one would look for a satellite at a given time from a specified position on the Earth. For example, if you had

More information

mmm Internal Report #13 -^ /y ELAINE LITMAN

mmm Internal Report #13 -^ /y ELAINE LITMAN QUIET2QiE imwfmmge MiLXSIS mmm Internal Report #13 -^ /y ELAINE LITMAN QUIETZON is a program to compute the power density expected at Green Bank from any proposed transmitter site in the Radio Quiet Zone.

More information

Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics

Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics Fall 2016 Semester METR 3113 Atmospheric Dynamics I: Introduction to Atmospheric Kinematics and Dynamics Lecture 5 August 31 2016 Topics: Polar coordinate system Conversion of polar coordinates to 2-D

More information

pvextractor Documentation

pvextractor Documentation pvextractor Documentation Release 0.0.dev289 Adam Ginsburg and Thomas Robitaille Sep 12, 2017 Contents I Extracting slices programmatically 3 1 Defining a path 5 2 Extracting a slice 7 3 Saving the slice

More information

LECTURE TWO Representations, Projections and Coordinates

LECTURE TWO Representations, Projections and Coordinates LECTURE TWO Representations, Projections and Coordinates GEOGRAPHIC COORDINATE SYSTEMS Why project? What is the difference between a Geographic and Projected coordinate system? PROJECTED COORDINATE SYSTEMS

More information

Math For Surveyors. James A. Coan Sr. PLS

Math For Surveyors. James A. Coan Sr. PLS Math For Surveyors James A. Coan Sr. PLS Topics Covered 1) The Right Triangle 2) Oblique Triangles 3) Azimuths, Angles, & Bearings 4) Coordinate geometry (COGO) 5) Law of Sines 6) Bearing, Bearing Intersections

More information

Tangent Galvanometer

Tangent Galvanometer Tangent Galvanometer KET Virtual Physics Labs Worksheet Lab 13-1 As you work through the steps in the lab procedure, record your experimental values and the results on this worksheet. Use the exact values

More information

Visualisation Pipeline : The Virtual Camera

Visualisation Pipeline : The Virtual Camera Visualisation Pipeline : The Virtual Camera The Graphics Pipeline 3D Pipeline The Virtual Camera The Camera is defined by using a parallelepiped as a view volume with two of the walls used as the near

More information

Camera Parameters Estimation from Hand-labelled Sun Sositions in Image Sequences

Camera Parameters Estimation from Hand-labelled Sun Sositions in Image Sequences Camera Parameters Estimation from Hand-labelled Sun Sositions in Image Sequences Jean-François Lalonde, Srinivasa G. Narasimhan and Alexei A. Efros {jlalonde,srinivas,efros}@cs.cmu.edu CMU-RI-TR-8-32 July

More information

Section 20: Graphics

Section 20: Graphics Section 20: Graphics CNC 88HS Graphics Graphics Menu The graphics menu of the page editor has been designed to allow the user to view the part path of the current program in memory. The graphics can be

More information

Section 1.2: Points and Lines

Section 1.2: Points and Lines Section 1.2: Points and Lines Objective: Graph points and lines using x and y coordinates. Often, to get an idea of the behavior of an equation we will make a picture that represents the solutions to the

More information

HEALPix C Subroutines Overview

HEALPix C Subroutines Overview HEALPix C Subroutines Overview Revision: Version 3.31; January 6, 2017 Prepared by: Abstract: Eric Hivon, Anthony J. Banday, Matthias Bartelmann, Frode K. Hansen, Krzysztof M. Górski, Martin Reinecke and

More information

1. Be sure to complete the exploration before working on the rest of this worksheet.

1. Be sure to complete the exploration before working on the rest of this worksheet. PreCalculus Worksheet 4.1 1. Be sure to complete the exploration before working on the rest of this worksheet.. The following angles are given to you in radian measure. Without converting to degrees, draw

More information

Computer Data Logging Formats

Computer Data Logging Formats Computer Data Logging Formats Recording Formats - General Information After many years the first SARA data recording format was agreed upon at the 1991 conference. This article is intended to record the

More information

Within the FITS Format 1. R. J. Hanisch. D. G. Wells. DRAFT { February 1988 { DRAFT

Within the FITS Format 1. R. J. Hanisch. D. G. Wells. DRAFT { February 1988 { DRAFT 1 Introduction World Coordinate Systems Representations Within the FITS Format 1 R. J. Hanisch Space Telescope Science Institute D. G. Wells National Radio Astronomy Observatory DRAFT { February 1988 {

More information

3.1 Units. Angle Unit. Direction Reference

3.1 Units. Angle Unit. Direction Reference Various settings allow the user to configure the software to function to his/her preference. It is important to review all the settings prior to using the software to ensure they are set to produce the

More information

Interpreting SECCHI White Light Images: FOV Sensitivity & Stereo Viewing

Interpreting SECCHI White Light Images: FOV Sensitivity & Stereo Viewing Interpreting SECCHI White Light Images: FOV Sensitivity & Stereo Viewing Paulett Liewer,, JPL; Russ Howard & Dennis Socker,, NRL SECCHI Consortium Meeting - July 2001 Abingdon,, England 1. Motivation:

More information

Module 4. Stereographic projection: concept and application. Lecture 4. Stereographic projection: concept and application

Module 4. Stereographic projection: concept and application. Lecture 4. Stereographic projection: concept and application Module 4 Stereographic projection: concept and application Lecture 4 Stereographic projection: concept and application 1 NPTEL Phase II : IIT Kharagpur : Prof. R. N. Ghosh, Dept of Metallurgical and Materials

More information

SES 123 Global and Regional Energy Lab Worksheet

SES 123 Global and Regional Energy Lab Worksheet SES 123 Global and Regional Energy Lab Worksheet Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

a. b. c. d. e. f. g. h.

a. b. c. d. e. f. g. h. Sec. Right Triangle Trigonometry Right Triangle Trigonometry Sides Find the requested unknown side of the following triangles. Name: a. b. c. d.? 44 8 5? 7? 44 9 58 0? e. f. g. h.?? 4 7 5? 38 44 6 49º?

More information

ENGI Parametric & Polar Curves Page 2-01

ENGI Parametric & Polar Curves Page 2-01 ENGI 3425 2. Parametric & Polar Curves Page 2-01 2. Parametric and Polar Curves Contents: 2.1 Parametric Vector Functions 2.2 Parametric Curve Sketching 2.3 Polar Coordinates r f 2.4 Polar Curve Sketching

More information

T.4 Applications of Right Angle Trigonometry

T.4 Applications of Right Angle Trigonometry 22 T.4 Applications of Right Angle Trigonometry Solving Right Triangles Geometry of right triangles has many applications in the real world. It is often used by carpenters, surveyors, engineers, navigators,

More information

Reduction of Field Observations

Reduction of Field Observations Reduction of Field Observations GNSS/GPS measurements or Latitudes, Longitudes, HAE: We re interested in projected coordinates, e.g., State Plane Survey measurements in a projected coordinate system, on

More information

VERY LARGE TELESCOPE 3D Visualization Tool Cookbook

VERY LARGE TELESCOPE 3D Visualization Tool Cookbook European Organisation for Astronomical Research in the Southern Hemisphere VERY LARGE TELESCOPE 3D Visualization Tool Cookbook VLT-SPE-ESO-19500-5652 Issue 1.0 10 July 2012 Prepared: Mark Westmoquette

More information

A Novel Algorithm for Solar Potential Estimation in Complex Urban Scenes

A Novel Algorithm for Solar Potential Estimation in Complex Urban Scenes ASPRS 2017 Annual Conference 1 A Novel Algorithm for Solar Potential Estimation in Complex Urban Scenes Partha P. Acharjee and Venkat Devarajan The University of Texas at Arlington, Texas, USA Abstract:

More information

The Helioseismic and Magnetic Imager (HMI) Vector Magnetic Field Pipeline: Overview and Performance

The Helioseismic and Magnetic Imager (HMI) Vector Magnetic Field Pipeline: Overview and Performance Solar Physics DOI: 10.1007/ - - - - The Helioseismic and Magnetic Imager (HMI) Vector Magnetic Field Pipeline: Overview and Performance J. Todd Hoeksema 1, Yang Liu 1, Keiji Hayashi 1, Xudong Sun 1, Jesper

More information

Lecture 12: Grids Steven Skiena. skiena

Lecture 12: Grids Steven Skiena.   skiena Lecture 12: Grids Steven Skiena Department of Computer Science State University of New York Stony Brook, NY 11794 4400 http://www.cs.sunysb.edu/ skiena Rectilinear Grids Rectilinear grids are typically

More information

SWAP Image Calibration. Daniel B. Seaton, D. Shaun Bloomfield, ROB & TCD SWAP Teams

SWAP Image Calibration. Daniel B. Seaton, D. Shaun Bloomfield, ROB & TCD SWAP Teams SWAP Image Calibration Daniel B. Seaton, D. Shaun Bloomfield, ROB & TCD SWAP Teams Primary Image Calibration Steps Implemented Dark Subtraction Pixel Map Correction Image Scaling, Rotation, & Centering

More information

Strategy. Using Strategy 1

Strategy. Using Strategy 1 Strategy Using Strategy 1 Scan Path / Strategy It is important to visualize the scan path you want for a feature before you begin taking points on your part. You want to try to place your points in a way

More information

February 13, notebook

February 13, notebook Module 12 Lesson 1: Graphing on the coordinate plane Lesson 2: Independent and dependent variables in tables and graphs Lesson 3: Writing equations from tables Lesson 4: Representing Algebraic relationships

More information

TCRSR Band Angles. (Draft 02) October 1, 2008

TCRSR Band Angles. (Draft 02) October 1, 2008 TCRSR Band Angles (Draft 02) October 1, 2008 1 Coordinate system The origin of the coordinate system is at the top-center of the MFR head diffuser. The TCRSR is aligned so the axis of rotation is N-S and

More information

Geometric Correction

Geometric Correction CEE 6150: Digital Image Processing Geometric Correction 1 Sources of Distortion Sensor Characteristics optical distortion aspect ratio non-linear mirror velocity detector geometry & scanning sequence Viewing

More information

Coordinate Transformation Conventions for ASTROSAT CZT Imager. Dipankar Bhattacharya

Coordinate Transformation Conventions for ASTROSAT CZT Imager. Dipankar Bhattacharya Coordinate Transformation Conventions for ASTROSAT CZT Imager Dipankar Bhattacharya Version 1.2 October 2015 1 Introduction This document summarizes the coordinate transformation conventions being used

More information

Solar Panel Irradiation Exposure efficiency of solar panels with shadow

Solar Panel Irradiation Exposure efficiency of solar panels with shadow Solar Panel Irradiation Exposure efficiency of solar panels with shadow Frits F.M. de Mul MEDPHYS Software & Services 2012 www.medphys.nl email: info(at)medphys.nl Solar Panel Irradiation 1. Local Times,

More information

Lesson 7 Determining Direction. Key Terms. azimuth back azimuth degree grid azimuth grid north magnetic azimuth magnetic north true north

Lesson 7 Determining Direction. Key Terms. azimuth back azimuth degree grid azimuth grid north magnetic azimuth magnetic north true north Lesson 7 Determining Direction U.S. ARMY Key Terms J R O T C azimuth back azimuth degree grid azimuth grid north magnetic azimuth magnetic north true north WHAT YOU WILL LEARN TO DO Calculate direction

More information

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes

Jim Lambers MAT 169 Fall Semester Lecture 33 Notes Jim Lambers MAT 169 Fall Semester 2009-10 Lecture 33 Notes These notes correspond to Section 9.3 in the text. Polar Coordinates Throughout this course, we have denoted a point in the plane by an ordered

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

These notes are designed to provide an introductory-level knowledge appropriate to understanding the basics of digital data formats.

These notes are designed to provide an introductory-level knowledge appropriate to understanding the basics of digital data formats. A brief guide to binary data Mike Sandiford, March 2001 These notes are designed to provide an introductory-level knowledge appropriate to understanding the basics of digital data formats. The problem

More information

FM CHAPTER 6 DIRECTION

FM CHAPTER 6 DIRECTION CHAPTER 6 DIRECTION Being in the right place at the prescribed time is necessary to successfully accomplish military missions. Direction plays an important role in a soldier's everyday life. It can be

More information

6-1. METHODS OF EXPRESSING DIRECTION

6-1. METHODS OF EXPRESSING DIRECTION CHAPTER 6 DIRECTION Being in the right place at the prescribed time is necessary to successfully accomplish military missions. Direction plays an important role in a soldier's everyday life. It can be

More information

Definition of Basic Polar Data Product

Definition of Basic Polar Data Product Definition of Basic Polar Data Product OPERA project 1d3: working document WD 02 03 Iwan Holleman and Gianmario Galli Date: September 22, 2003 1 1 Introduction During the OPERA project an additional deliverable

More information

Trigonometric Ratios and Functions

Trigonometric Ratios and Functions Algebra 2/Trig Unit 8 Notes Packet Name: Date: Period: # Trigonometric Ratios and Functions (1) Worksheet (Pythagorean Theorem and Special Right Triangles) (2) Worksheet (Special Right Triangles) (3) Page

More information

LESSON 6: DETERMINING DIRECTION

LESSON 6: DETERMINING DIRECTION LESSON 6: DETERMINING DIRECTION PURPOSE Directions play an important role in everyday life. People oftentimes express them as right, left, straight ahead, and so forth; but then the question arises, to

More information

1 Introduction. Reconstruction of Solar Coronal Linear Force-Free Magnetic Field. Iranian Journal of Astronomy and Astrophysics

1 Introduction. Reconstruction of Solar Coronal Linear Force-Free Magnetic Field. Iranian Journal of Astronomy and Astrophysics Iranian Journal of Astronomy and Astrophysics Vol. 2, No. 1, 2015 Available online at http:// journals.du.ac.ir Iranian Journal of Astronomy and Astrophysics Reconstruction of Solar Coronal Linear Force-Free

More information

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6 Polar Coordinates Any point in the plane can be described by the Cartesian coordinates (x, y), where x and y are measured along the corresponding axes. However, this is not the only way to represent points

More information

AP m H THEORETICAL ANALYSIS FRESNEL LEN. I l l

AP m H THEORETICAL ANALYSIS FRESNEL LEN. I l l I l l AP m H FRESNEL LEN THEORETICAL ANALYSIS 31 CHAPTER 2 FRESNEL LENS : THEORETICAL ANALYSIS Solar thermal systems for intermediate temperature range (100 C - 250 C) essentially use solar concentrators.

More information

DAY 1 - GEOMETRY FLASHBACK

DAY 1 - GEOMETRY FLASHBACK DAY 1 - GEOMETRY FLASHBACK Sine Opposite Hypotenuse Cosine Adjacent Hypotenuse sin θ = opp. hyp. cos θ = adj. hyp. tan θ = opp. adj. Tangent Opposite Adjacent a 2 + b 2 = c 2 csc θ = hyp. opp. sec θ =

More information

A Quick Review of Trigonometry

A Quick Review of Trigonometry A Quick Review of Trigonometry As a starting point, we consider a ray with vertex located at the origin whose head is pointing in the direction of the positive real numbers. By rotating the given ray (initial

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

WHERE THEORY MEETS PRACTICE

WHERE THEORY MEETS PRACTICE world from others, leica geosystems WHERE THEORY MEETS PRACTICE A NEW BULLETIN COLUMN BY CHARLES GHILANI ON PRACTICAL ASPECTS OF SURVEYING WITH A THEORETICAL SLANT february 2012 ² ACSM BULLETIN ² 27 USGS

More information

UKOOA DATA EXCHANGE FORMAT P5/94 PIPELINE POSITION DATA

UKOOA DATA EXCHANGE FORMAT P5/94 PIPELINE POSITION DATA FOR UKOOA COUNCIL: 9 NOVEMBER 1994 [AGENDA ITEM 6.2] U.K. OFFSHORE OPERATORS ASSOCIATION (Surveying and Positioning Committee) UKOOA DATA EXCHANGE FORMAT P5/94 PIPELINE POSITION DATA UKOOA Data Exchange

More information

Parallel Transport on the Torus

Parallel Transport on the Torus MLI Home Mathematics The Torus Parallel Transport Parallel Transport on the Torus Because it really is all about the torus, baby After reading about the torus s curvature, shape operator, and geodesics,

More information

UNIVERSITY OF HAWAII AT MANOA Institute for Astrononmy

UNIVERSITY OF HAWAII AT MANOA Institute for Astrononmy Pan-STARRS Document Control PSDC-xxx-xxx-01 UNIVERSITY OF HAWAII AT MANOA Institute for Astrononmy Pan-STARRS Project Management System PS1 Postage Stamp Server System/Subsystem Description Grant Award

More information

Use of n-vector for Radar Applications

Use of n-vector for Radar Applications Use of n-vector for Radar Applications Nina Ødegaard, Kenneth Gade Norwegian Defence Research Establishment Kjeller, NORWAY email: Nina.Odegaard@ffi.no Kenneth.Gade@ffi.no Abstract: This paper aims to

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

Theodolite and Angles Measurement

Theodolite and Angles Measurement Building & Construction Technology Engineering Department Theodolite and Angles Measurement Lecture 1 Theodolite and Angles Measurement Lecture No. 1 Main Objectives Lecturer Date of Lecture General advices

More information

CHAPTER 2 SENSOR DATA SIMULATION: A KINEMATIC APPROACH

CHAPTER 2 SENSOR DATA SIMULATION: A KINEMATIC APPROACH 27 CHAPTER 2 SENSOR DATA SIMULATION: A KINEMATIC APPROACH 2.1 INTRODUCTION The standard technique of generating sensor data for navigation is the dynamic approach. As revealed in the literature (John Blakelock

More information

Higher Surveying Dr. Ajay Dashora Department of Civil Engineering Indian Institute of Technology, Guwahati

Higher Surveying Dr. Ajay Dashora Department of Civil Engineering Indian Institute of Technology, Guwahati Higher Surveying Dr. Ajay Dashora Department of Civil Engineering Indian Institute of Technology, Guwahati Module - 2 Lecture - 03 Coordinate System and Reference Frame Hello everyone. Welcome back on

More information

Activity 1.1.1: Using Google Earth to View the World

Activity 1.1.1: Using Google Earth to View the World Learning Objectives Upon completion of this activity, you will be able to: Explain the purpose of Google Earth. Explain the different versions of Google Earth. Explain the hardware and software requirements

More information

Youngstown State University Trigonometry Final Exam Review (Math 1511)

Youngstown State University Trigonometry Final Exam Review (Math 1511) Youngstown State University Trigonometry Final Exam Review (Math 1511) 1. Convert each angle measure to decimal degree form. (Round your answers to thousandths place). a) 75 54 30" b) 145 18". Convert

More information

1.1.1 Orientation Coordinate Systems

1.1.1 Orientation Coordinate Systems 1.1.1 Orientation 1.1.1.1 Coordinate Systems The velocity measurement is a vector in the direction of the transducer beam, which we refer to as beam coordinates. Beam coordinates can be converted to a

More information

SES 123 Global and Regional Energy Lab Procedures

SES 123 Global and Regional Energy Lab Procedures SES 123 Global and Regional Energy Lab Procedures Introduction An important aspect to understand about our planet is global temperatures, including spatial variations, such as between oceans and continents

More information

Section 10.1 Polar Coordinates

Section 10.1 Polar Coordinates Section 10.1 Polar Coordinates Up until now, we have always graphed using the rectangular coordinate system (also called the Cartesian coordinate system). In this section we will learn about another system,

More information

Altogether step 2 is now a robust black box: a single IDL command including data ordering and getting (sdo_getdata_rr.pro).

Altogether step 2 is now a robust black box: a single IDL command including data ordering and getting (sdo_getdata_rr.pro). file: sdo-manual.txt = simple manual for my SDO data processing init: Dec 8 2013 Rob Rutten Sac Peak last: last: Nov 14 2017 Rob Rutten Deil func: status: all below programs are functional I think site:

More information

Pre-calculus Chapter 4 Part 1 NAME: P.

Pre-calculus Chapter 4 Part 1 NAME: P. Pre-calculus NAME: P. Date Day Lesson Assigned Due 2/12 Tuesday 4.3 Pg. 284: Vocab: 1-3. Ex: 1, 2, 7-13, 27-32, 43, 44, 47 a-c, 57, 58, 63-66 (degrees only), 69, 72, 74, 75, 78, 79, 81, 82, 86, 90, 94,

More information

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below:

To graph the point (r, θ), simply go out r units along the initial ray, then rotate through the angle θ. The point (1, 5π 6. ) is graphed below: Polar Coordinates Any point in the plane can be described by the Cartesian coordinates (x, y), where x and y are measured along the corresponding axes. However, this is not the only way to represent points

More information

Pointing and Beam-Rotation with an Array-Detector System

Pointing and Beam-Rotation with an Array-Detector System Pointing and Beam-Rotation with an Array-Detector System (Jürgen Stutzki, Version V1.6) Page 1 Version Date Author Description 1.1 10. Nov. 2008 JSt initial draft 1.2 15. Nov. 2008 JSt consistent description

More information

Overview of The 180 Ambiguity in Solar Vector Magnetic Field Measurements and Present Methods for Solving It

Overview of The 180 Ambiguity in Solar Vector Magnetic Field Measurements and Present Methods for Solving It Overview of The 180 Ambiguity in Solar Vector Magnetic Field Measurements and Present Methods for Solving It K. D. Leka NorthWest Research Associates Boulder, Colorado Early synoptic instruments made it

More information

Name: Block: What I can do for this unit:

Name: Block: What I can do for this unit: Unit 8: Trigonometry Student Tracking Sheet Math 10 Common Name: Block: What I can do for this unit: After Practice After Review How I Did 8-1 I can use and understand triangle similarity and the Pythagorean

More information

Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps

Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps Relating Local Vision Measurements to Global Navigation Satellite Systems Using Waypoint Based Maps John W. Allen Samuel Gin College of Engineering GPS and Vehicle Dynamics Lab Auburn University Auburn,

More information

Triangle meshes I. CS 4620 Lecture Kavita Bala (with previous instructor Marschner) Cornell CS4620 Fall 2015 Lecture 2

Triangle meshes I. CS 4620 Lecture Kavita Bala (with previous instructor Marschner) Cornell CS4620 Fall 2015 Lecture 2 Triangle meshes I CS 4620 Lecture 2 1 Shape http://fc00.deviantart.net/fs70/f/2014/220/5/3/audi_r8_render_by_smiska333-d7u9pjt.jpg spheres Andrzej Barabasz approximate sphere Rineau & Yvinec CGAL manual

More information

Optical Distortion and its Representation

Optical Distortion and its Representation Optical Distortion and its Representation Frank Masci August 7, 001 Frank Masci (1) Aims Due to off-axis reflective elements, there will be some degree of distortion (change) in pixel scale across the

More information

PACS Spectrometer Simulation and the Extended to Point Correction

PACS Spectrometer Simulation and the Extended to Point Correction PACS Spectrometer Simulation and the Extended to Point Correction Jeroen de Jong February 11, 2016 Abstract This technical note describes simulating a PACS observation with a model source and its application

More information

State Plane Coordinates and Computations using them GISC Spring 2013

State Plane Coordinates and Computations using them GISC Spring 2013 State Plane Coordinates and Computations using them GISC-3325 - Spring 2013 Map Projections From UNAVCO site hosting.soonet.ca/eliris/gpsgis/lec2geodesy.html Taken from Ghilani, SPC State Plane Coordinate

More information

Midterm Review January 2018 Honors Precalculus/Trigonometry

Midterm Review January 2018 Honors Precalculus/Trigonometry Midterm Review January 2018 Honors Precalculus/Trigonometry Use the triangle below to find the exact value of each of the trigonometric functions in questions 1 6. Make sure your answers are completely

More information

Working with M 3 Data. Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010

Working with M 3 Data. Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010 Working with M 3 Data Jeff Nettles M 3 Data Tutorial at AGU December 13, 2010 For Reference Slides and example data from today s workshop available at http://m3dataquest.jpl.nasa.gov See Green et al. (2010)

More information

TV Broadcast Contours

TV Broadcast Contours TV Broadcast Contours Identification Information: Citation: Citation Information: Title: TV Broadcast Contours Geospatial Data Presentation Form: vector digital data Online Linkage: HIFLD Open Data (https://gii.dhs.gov/hifld/data/open)

More information

The simulation requires several input parameters that may be categorized as following:

The simulation requires several input parameters that may be categorized as following: User Manual Author and Developer: Pavlos Paschalis National and Kapodistrian University of Athens Physics Department Cosmic Ray Station Principal Investigator Prof. Helen Mavromichalaki 2016 1. Versioning

More information