Online Links:
Online Links:
| Range of values | |
|---|---|
| Minimum: | -76.126683 |
| Maximum: | -76.106167 |
| Units: | decimal degrees |
| Range of values | |
|---|---|
| Minimum: | 39.0724 |
| Maximum: | 39.090933 |
| Units: | decimal degrees |
| Range of values | |
|---|---|
| Minimum: | 0.3 |
| Maximum: | 4.6 |
| Units: | meters |
| Range of values | |
|---|---|
| Minimum: | 20 |
| Maximum: | 24.2 |
| Units: | degrees Celsius |
| Range of values | |
|---|---|
| Minimum: | 135 |
| Maximum: | 135 |
| Units: | days |
AWK script "awkgps":
BEGIN {
FS = ","
}
{
FS = ","
ARGC = 2
depth = -9999
temp = -9999
if ($1=="$GPRMC")
{
utctime = $2
latdeg = substr($4,1,2)
latmin = substr($4,3,6)
declat = latdeg + (latmin/60)
londeg = substr($6,1,3)
lonmin = substr($6,4,6)
declon = -1 * (londeg + (lonmin/60))
holddepth = -9999
}
if ($1=="$SDDPT")
{
depthreal = $2
holddepth = depthreal
}
if ($1=="$SDMTW")
{
temp = $2
if (holddepth > -1) {
printf("%s, %9.6f, %9.6f, %3.1f, %4.1f, %s\n", utctime, declon, declat, holddepth, temp, ARGV[2])
}
else {
printf("%s, %9.6f, %9.6f, %3.1f, %4.1f, %s\n", utctime, declon, declat, depth, temp, ARGV[2])
}
holddepth = -9999
}
}
This AWK script was initialized by "doawk" - shell script run under CYGWIN (UNIX like environment that runs under Windows):
files=`ls *.gps | cut -d. -f1 | tr "[A-Z"] ["a-z"]` for file in $files do awk -f awkgps $file.gps $file > $file.txt doneData sources used in this process:
| Access_Constraints | None. |
|---|---|
| Use_Constraints | The public domain data from the U.S. Government are freely redistributable with proper metadata and source attribution. Please recognize the U.S. Geological Survey as the originator of the dataset. |
| Data format: | This WinZip file contains the point shapefile as well as the associated metadata files. in format Shapefile (version ArcGIS 9.2) Size: 0.112 |
|---|---|
| Network links: |
https://pubs.usgs.gov/of/2010/1094/html/catalog.html https://pubs.usgs.gov/of/2010/1094/data/navigation/resgpspnts_jd135.zip |
| Media you can order: | DVD-ROM (Density 4.75 GBytes) (format UDF) |