|
IPMSI Precipitation Validation - Texas A&M Corpus Christi
Monthly Tip Data
These Comma Seperated Variables (CSV) files contain the time of each tip for a given gauge over
and entire month. The first line contains the gauge id, longitude and latitude. The next line contains
the column headers, followed by the actual data. These files are easily imported using Excel or
python Pandas.
To read into python Pandas, do the following:
import pandas as pd
f = 'PIERS0029_2023_09_tips_A.csv'
df = pd.read_csv(f, skiprows=1)
df.index = df['Date']
df = df.drop(columns=['Date'])
df
Current Daily Gauge Totals
Current Report Date: 07/30/2026
Report generated 07/30/2026 @ 13:40:07 Local (07/30/2026 @ 17:40:07 UTC)
Warning: include(/d1/wallops-prf/Gauge/daily_report_table.html): Failed to open stream: No such file or directory in /d1/wallops-prf/IPMSI/Sites/TAMU-CC/index.php on line 56
Warning: include(): Failed opening '/d1/wallops-prf/Gauge/daily_report_table.html' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') in /d1/wallops-prf/IPMSI/Sites/TAMU-CC/index.php on line 56
Latest Integral Rain Parameters from Parsivel
Latest DSD Mesh from Parsivel
|