Vertical Profile Viewer
The Vertical Profile Viewer is a feature of OceanGraph that allows you to visualize and compare vertical profiles of oceanographic data.
Overview
With this tool, you can:
- Upload one or more JSON files containing vertical profile data.
- Visualize temperature, salinity, and dissolved oxygen by depth.
- Add brief notes for each uploaded profile.
- Download the annotated charts as images for sharing or further analysis.
This feature is designed for researchers, students, and ocean enthusiasts who wish to analyze and compare their own custom oceanographic data — especially data that follows the variable structure commonly used in Argo float observations.
Supported JSON Format
The JSON structure used in this tool is based on the variable naming conventions of Argo float profiles. Each uploaded file must be a JSON file with the following keys:
{
"pressure": [ ... ],
"potential_temperature": [ ... ],
"absolute_salinity": [ ... ],
"oxygen": [ ... ],
"wmo_id": "2902447",
"cycle_number": 17
}
"pressure"
: array of numbers (required, must not be empty)"potential_temperature"
: array of numbers (same length aspressure
, if present)"absolute_salinity"
: array of numbers (same length aspressure
, if present)"oxygen"
: array of numbers (same length aspressure
, if present)"wmo_id"
: string (required)"cycle_number"
: number (required)
Any additional keys will be ignored. Files that do not follow the required structure or fail validation will be skipped during upload.