ISCE_INSAR/components/zerodop/GPUtopozero/include/Peg.h

19 lines
193 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
//
// Author: Joshua Cohen
// Copyright 2016
//
#ifndef PEG_H
#define PEG_H
struct Peg {
double lat;
double lon;
double hdg;
Peg();
Peg(double,double,double);
};
#endif