Skip to content

Commit

Permalink
Use bigger font for IDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Cees Bassa committed Feb 6, 2019
1 parent 5871db9 commit 9839951
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions rfpng.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ struct select {
int flag,n;
float x[NMAX],y[NMAX],w;
};
struct point {
double mjd;
double freq;
};

void dec2sex(double x,char *s,int f,int len);
void time_axis(double *mjd,int n,float xmin,float xmax,float ymin,float ymax);
Expand Down Expand Up @@ -208,7 +212,7 @@ int main(int argc,char *argv[])
// Filter points
if (create_dat)
filter(s,site_id,sigma,datfile,graves);

time_axis(s.mjd,s.nsub,xmin,xmax,ymin,ymax);

// Freq axis
Expand All @@ -219,7 +223,7 @@ int main(int argc,char *argv[])

// Plot traces
cpgswin(xmin,xmax,fmin,fmax);
cpgsch(0.7);
cpgsch(0.8);
plot_traces(t,nsat,foff);
plot_traces(t,nsat,-foff);
cpgsch(0.8);
Expand Down Expand Up @@ -517,3 +521,4 @@ void filter(struct spectrogram s,int site_id,float sigma,char *filename,int grav

return;
}

0 comments on commit 9839951

Please sign in to comment.