GET api/v2/groundwater/geophysicallogs/geoplogpicks

Returns list of groundwater Geophysical Log picks by well ID

NameDescriptionType
aquifer

Groundwater aquifer

string
comment

Comments

string
gLogBaseDepth

Depth at base of aquifer (feet)

decimal number
gLogBaseElev

Elevation at base of aquifer (feet above mean sea level)

integer
gLogThickness

Total thickness of the sand layers in aquifer (feet)

integer
gLogTopDepth

Depth at top of aquifer (feet)

decimal number
gLogTopElev

Elevation at top of aquifer (feet above mean sea level)

integer
modified

Last date time that this record was modified in the DWR database

date
wellId

Unique ID of well in DWR database

integer
wellName

Name of well in DWR database

string

Response Formats

application/json, text/json
Sample:
[
  {
    "wellId": 1,
    "wellName": "sample string 2",
    "aquifer": "sample string 3",
    "gLogTopDepth": 1.1,
    "gLogBaseDepth": 1.1,
    "gLogTopElev": 1,
    "gLogBaseElev": 1,
    "gLogThickness": 1,
    "comment": "sample string 4",
    "modified": "2024-05-22T08:44:09.0295528-06:00"
  },
  {
    "wellId": 1,
    "wellName": "sample string 2",
    "aquifer": "sample string 3",
    "gLogTopDepth": 1.1,
    "gLogBaseDepth": 1.1,
    "gLogTopElev": 1,
    "gLogBaseElev": 1,
    "gLogThickness": 1,
    "comment": "sample string 4",
    "modified": "2024-05-22T08:44:09.0295528-06:00"
  }
]
application/xml, text/xml
Sample:
<ArrayOfGeophysicalLogPick xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <GeophysicalLogPick>
    <aquifer>sample string 3</aquifer>
    <comment>sample string 4</comment>
    <gLogBaseDepth>1.1</gLogBaseDepth>
    <gLogBaseElev>1</gLogBaseElev>
    <gLogThickness>1</gLogThickness>
    <gLogTopDepth>1.1</gLogTopDepth>
    <gLogTopElev>1</gLogTopElev>
    <modified>2024-05-22T08:44:09.0295528-06:00</modified>
    <wellId>1</wellId>
    <wellName>sample string 2</wellName>
  </GeophysicalLogPick>
  <GeophysicalLogPick>
    <aquifer>sample string 3</aquifer>
    <comment>sample string 4</comment>
    <gLogBaseDepth>1.1</gLogBaseDepth>
    <gLogBaseElev>1</gLogBaseElev>
    <gLogThickness>1</gLogThickness>
    <gLogTopDepth>1.1</gLogTopDepth>
    <gLogTopElev>1</gLogTopElev>
    <modified>2024-05-22T08:44:09.0295528-06:00</modified>
    <wellId>1</wellId>
    <wellName>sample string 2</wellName>
  </GeophysicalLogPick>
</ArrayOfGeophysicalLogPick>