# include # include # include # include # include int main ( ); void timestamp ( ); /******************************************************************************/ int main ( ) /******************************************************************************/ /* Purpose: MAIN is the main program for TEMPERATURE_SCATTER3D. Discussion: TEMPERATURE_SCATTER3D creates a 3D scatter plot of temperature. Licensing: This code is distributed under the MIT license. Modified: 19 July 2018 Author: John Burkardt */ { char command_filename[] = "temperature_commands.txt"; FILE *command; char data_filename[] = "temperature_data.txt"; char plot_filename[] = "temperature_scatter3d.png"; timestamp ( ); printf ( "\n" ); printf ( "TEMPERATURE_SCATTER3D:\n" ); printf ( " C version\n" ); printf ( " Create a 3D scatter plot of\n" ); printf ( " January temperatures across the US.\n" ); printf ( " Create corresponding GNUPLOT input files.\n" ); /* Create the command file. */ command = fopen ( command_filename, "wt" ); fprintf ( command, "# %s\n", command_filename ); fprintf ( command, "#\n" ); fprintf ( command, "# Usage:\n" ); fprintf ( command, "# gnuplot < %s\n", command_filename ); fprintf ( command, "#\n" ); fprintf ( command, "set term png\n" ); fprintf ( command, "set output '%s'\n", plot_filename ); fprintf ( command, "set xlabel '<--- -Longitude --->'\n" ); fprintf ( command, "set ylabel '<--- Latitude --->'\n" ); fprintf ( command, "set zlabel '<--- January Temperature --->'\n" ); fprintf ( command, "set title 'January temperatures across US'\n" ); fprintf ( command, "set grid\n" ); fprintf ( command, "unset key\n" ); fprintf ( command, "splot '%s' using 2:3:1 with points pt 7 ps 2\n", data_filename ); fprintf ( command, "quit\n" ); fclose ( command ); printf ( "\n" ); printf ( "TEMPERATURE_SCATTER3D:\n" ); printf ( " Plot commands stored in \"%s\".\n", command_filename ); /* Terminate. */ printf ( "\n" ); printf ( "TEMPERATURE_SCATTER3D:\n" ); printf ( " Normal end of execution.\n" ); printf ( "\n" ); timestamp ( ); return 0; } /******************************************************************************/ void timestamp ( ) /******************************************************************************/ /* Purpose: TIMESTAMP prints the current YMDHMS date as a time stamp. Example: 17 June 2014 09:45:54 AM Licensing: This code is distributed under the MIT license. Modified: 17 June 2014 Author: John Burkardt Parameters: None */ { # define TIME_SIZE 40 static char time_buffer[TIME_SIZE]; const struct tm *tm; time_t now; now = time ( NULL ); tm = localtime ( &now ); strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm ); printf ( "%s\n", time_buffer ); return; # undef TIME_SIZE }