From ad50eace76c42b9b7ab4a0a1004ea542320d2f97 Mon Sep 17 00:00:00 2001 From: Kirk Swenson Date: Wed, 27 Nov 2024 10:45:58 -0800 Subject: [PATCH 1/3] fix: import of v2 documents with maps --- v3/src/components/map/map-model-types.ts | 7 ++ v3/src/components/map/v2-map-importer.ts | 25 ++++--- v3/src/v2/codap-v2-types.ts | 92 ++++++++++++++++++++---- 3 files changed, 100 insertions(+), 24 deletions(-) diff --git a/v3/src/components/map/map-model-types.ts b/v3/src/components/map/map-model-types.ts index 3c70ba2d78..896e6143c7 100644 --- a/v3/src/components/map/map-model-types.ts +++ b/v3/src/components/map/map-model-types.ts @@ -4,6 +4,13 @@ export const LatLngModel = types.model("LatLngModel", { lat: 0, lng: 0 }) +.preProcessSnapshot(snap => { + if (Array.isArray(snap)) { + const [lat, lng] = snap + return { lat, lng } + } + return snap +}) export interface ILatLngModel extends Instance {} export interface ILatLngSnapshot extends SnapshotOut {} diff --git a/v3/src/components/map/v2-map-importer.ts b/v3/src/components/map/v2-map-importer.ts index 80468ab5dd..6ffc137a64 100644 --- a/v3/src/components/map/v2-map-importer.ts +++ b/v3/src/components/map/v2-map-importer.ts @@ -1,7 +1,10 @@ import {ITileModelSnapshotIn} from "../../models/tiles/tile-model" import {toV3Id} from "../../utilities/codap-utils" import {V2TileImportArgs} from "../../v2/codap-v2-tile-importers" -import {isV2MapComponent, v3TypeFromV2TypeIndex} from "../../v2/codap-v2-types" +import { + isV2MapComponent, isV2MapCurrentStorage, isV2MapPointLayerStorage, isV2MapPolygonLayerStorage, + v3TypeFromV2TypeIndex +} from "../../v2/codap-v2-types" import {AttrRole} from "../data-display/data-display-types" import {IAttributeDescriptionSnapshot, kDataConfigurationType} from "../data-display/models/data-configuration-model" import {IMapModelContentSnapshot} from "./models/map-content-model" @@ -16,14 +19,20 @@ export function v2MapImporter({v2Component, v2Document, insertTile}: V2TileImpor if (!isV2MapComponent(v2Component)) return const { guid, componentStorage: { name, title = "", mapModelStorage } } = v2Component - const { center, zoom, baseMapLayerName: v2BaseMapLayerName, - layerModels: v2LayerModels } = mapModelStorage + const { center, zoom, baseMapLayerName: v2BaseMapLayerName } = mapModelStorage const baseMapKeyMap: Record = { Topographic: 'topo', Streets: 'streets', Oceans: 'oceans' } const baseMapLayerName = baseMapKeyMap[v2BaseMapLayerName] const layers: Array = [] - v2LayerModels.forEach((v2LayerModel, layerIndex) => { + // Note that v2 associates layers with collections automatically, rather than based on what is imported/restored. + // The imported/restored contents just modify the display properties of the pre-assigned layers, rather than + // determining the structure of the layers as this code implies. + + const v2LayerModels = isV2MapCurrentStorage(v2Component.componentStorage) + ? v2Component.componentStorage.mapModelStorage.layerModels + : [] + v2LayerModels?.forEach((v2LayerModel, layerIndex) => { // Pull out stuff from _links_ and decide if it's a point layer or polygon layer const contextId = v2LayerModel._links_.context.id, _attributeDescriptions: Partial> = {}, @@ -34,7 +43,6 @@ export function v2MapImporter({v2Component, v2Document, insertTile}: V2TileImpor legendAttributeId = v2LegendAttribute?.id, legendAttribute = legendAttributeId ? v2Document.getV3Attribute(legendAttributeId) : undefined, v3LegendAttrId = legendAttribute?.id ?? '', - isPoints = v2LayerModel.pointColor !== undefined, {data, metadata} = v2Document.getDataAndMetadata(contextId), { isVisible, legendAttributeType, strokeSameAsFill, @@ -52,7 +60,7 @@ export function v2MapImporter({v2Component, v2Document, insertTile}: V2TileImpor } } - if (isPoints) { + if (isV2MapPointLayerStorage(v2LayerModel)) { const { pointColor, strokeColor, pointSizeMultiplier, grid, pointsShouldBeVisible, connectingLines @@ -89,11 +97,11 @@ export function v2MapImporter({v2Component, v2Document, insertTile}: V2TileImpor } layers.push(pointLayerSnapshot) } - else { + else if (isV2MapPolygonLayerStorage(v2LayerModel)) { const { areaColor, areaStrokeColor, /* Present in v2 layer model but not yet used in V3 layer model: - areaTransparency, strokeTransparency, areaStrokeTransparency + areaTransparency, areaStrokeTransparency */ } = v2LayerModel // V2 polygon layers don't store their boundary attribute, so we need to find it in the dataset @@ -114,7 +122,6 @@ export function v2MapImporter({v2Component, v2Document, insertTile}: V2TileImpor _itemStrokeSameAsFill: strokeSameAsFill, /* areaTransparency, - strokeTransparency, areaStrokeTransparency */ } diff --git a/v3/src/v2/codap-v2-types.ts b/v3/src/v2/codap-v2-types.ts index b0b04640c2..3ad4e3729e 100644 --- a/v3/src/v2/codap-v2-types.ts +++ b/v3/src/v2/codap-v2-types.ts @@ -383,7 +383,46 @@ export interface ICodapV2GraphStorage extends ICodapV2BaseComponentStorage { plotModels: ICodapV2PlotModel[] } -export interface ICodapV2MapLayerStorage { +interface ICodapV2MapLegacyStorage extends ICodapV2BaseComponentStorage { + // [begin] legacy top-level properties ignored by current v2 code + _links_: { + context: IGuidLink<"DG.DataContextRecord"> + hiddenCases: any[] + } + legendRole: number + legendAttributeType: number + pointColor: string + strokeColor: string + pointSizeMultiplier: number + transparency: number + strokeTransparency: number + // [end] legacy top-level properties ignored by current v2 code + + mapModelStorage: { + center: { lat: number, lng: number } | [lat: number, lng: number] + zoom: number + baseMapLayerName: string + gridMultiplier: number + + // [begin] legacy mapModelStorage properties ignored by current v2 code + pointsShouldBeVisible: boolean + linesShouldBeVisible: boolean + grid: { + gridMultiplier: number + visible: boolean + } + areaColor: string + areaTransparency: string // e.g. "0.5" + areaStrokeColor: string + areaStrokeTransparency: string // e.g. "0.6" + // [end] legacy mapModelStorage properties ignored by current v2 code + } +} +export function isV2MapLegacyStorage(obj: unknown): obj is ICodapV2MapCurrentStorage { + return !!obj && typeof obj === "object" && "legendRole" in obj && obj.legendRole != null +} + +interface ICodapV2MapLayerBaseStorage { _links_: { context: IGuidLink<"DG.DataContextRecord"> hiddenCases: any[], @@ -395,31 +434,54 @@ export interface ICodapV2MapLayerStorage { legendAttributeType: number isVisible: boolean strokeSameAsFill: boolean - // Polygons - areaColor?: string - areaTransparency?: number - areaStrokeColor?: string - areaStrokeTransparency?: number - // Points - pointColor?: string - strokeColor?: string - pointSizeMultiplier?: number - transparency?: number - strokeTransparency?: number - pointsShouldBeVisible?: boolean +} + +export interface ICodapV2MapPointLayerStorage extends ICodapV2MapLayerBaseStorage { + pointColor: string + strokeColor: string + pointSizeMultiplier: number + transparency: number + strokeTransparency: number + pointsShouldBeVisible: boolean grid: { gridMultiplier: number, isVisible: boolean } connectingLines: { isVisible: boolean, enableMeasuresForSelection: boolean } } +export function isV2MapPointLayerStorage(obj: unknown): obj is ICodapV2MapPointLayerStorage { + return !!obj && typeof obj === "object" && "pointColor" in obj && obj.pointColor != null +} + +export interface ICodapV2MapPolygonLayerStorage extends ICodapV2MapLayerBaseStorage { + areaColor: string + areaTransparency: number | string // e.g. "0.5" + areaStrokeColor: string + areaStrokeTransparency: number | string // e.g. "0.6" +} +export function isV2MapPolygonLayerStorage(obj: unknown): obj is ICodapV2MapPolygonLayerStorage { + return !!obj && typeof obj === "object" && "areaColor" in obj && obj.areaColor != null +} + +export type ICodapV2MapLayerStorage = ICodapV2MapPointLayerStorage | ICodapV2MapPolygonLayerStorage -export interface ICodapV2MapStorage extends ICodapV2BaseComponentStorage { +export interface ICodapV2MapCurrentStorage extends ICodapV2BaseComponentStorage { mapModelStorage: { - center: { lat: number, lng: number } + center: { lat: number, lng: number } | [lat: number, lng: number] zoom: number baseMapLayerName: string gridMultiplier: number layerModels: ICodapV2MapLayerStorage[] } } +export function isV2MapCurrentStorage(obj: unknown): obj is ICodapV2MapCurrentStorage { + if (!!obj && typeof obj === "object" && "mapModelStorage" in obj) { + const mapModelStorage = obj.mapModelStorage + if (!!mapModelStorage && typeof mapModelStorage === "object" && "layerModels" in mapModelStorage) { + return Array.isArray(mapModelStorage.layerModels) + } + } + return false +} + +export type ICodapV2MapStorage = ICodapV2MapLegacyStorage | ICodapV2MapCurrentStorage export interface ICodapV2GuideStorage extends ICodapV2BaseComponentStorage { currentItemIndex?: number From 3f532c95c24cecfb8e3df53db4d3d9f2107560ce Mon Sep 17 00:00:00 2001 From: Kirk Swenson Date: Wed, 27 Nov 2024 15:26:19 -0800 Subject: [PATCH 2/3] fix: Map supports points and boundaries from same data set --- .../map/models/map-content-model.ts | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/v3/src/components/map/models/map-content-model.ts b/v3/src/components/map/models/map-content-model.ts index 5fd6b0e766..5ac622f345 100644 --- a/v3/src/components/map/models/map-content-model.ts +++ b/v3/src/components/map/models/map-content-model.ts @@ -15,7 +15,7 @@ import { import {GraphPlace} from '../../axis-graph-shared' import {DataDisplayContentModel} from "../../data-display/models/data-display-content-model" import {isMapPolygonLayerModel, MapPolygonLayerModel} from "./map-polygon-layer-model" -import {MapPointLayerModel} from "./map-point-layer-model" +import {isMapPointLayerModel, MapPointLayerModel} from "./map-point-layer-model" import {ILatLngSnapshot, LatLngModel} from '../map-model-types' import {LeafletMapState} from './leaflet-map-state' import {isMapLayerModel} from "./map-layer-model" @@ -225,24 +225,24 @@ export const MapContentModel = DataDisplayContentModel const layersToCheck = Array.from(self.layers) sharedDataSets.forEach(sharedDataSet => { if (datasetHasLatLongData(sharedDataSet.dataSet)) { - const foundIndex = layersToCheck.findIndex(aLayer => aLayer.data === sharedDataSet.dataSet) - if (foundIndex >= 0) { - const layer = layersToCheck[foundIndex], - dataset = sharedDataSet.dataSet - layer.dataConfiguration.setDataset(dataset, getSharedCaseMetadataFromDataset(dataset)) - // Remove this layer from the list of layers to check since it _is_ present - layersToCheck.splice(foundIndex, 1) + const pointLayer = layersToCheck.find(layer => { + return layer.data === sharedDataSet.dataSet && isMapPointLayerModel(layer) + }) + if (isMapPointLayerModel(pointLayer)) { + pointLayer.setDataset(sharedDataSet.dataSet) + layersToCheck.splice(layersToCheck.indexOf(pointLayer), 1) } else { // Add a new layer for this dataset this.addPointLayer(sharedDataSet.dataSet) } } - // Todo: We should allow both points and polygons from the same dataset - else if (datasetHasBoundaryData(sharedDataSet.dataSet)) { - const layer = layersToCheck.find(aLayer => aLayer.data === sharedDataSet.dataSet) - if (layer && isMapPolygonLayerModel(layer)) { - layer.setDataset(sharedDataSet.dataSet) - layersToCheck.splice(layersToCheck.indexOf(layer), 1) + if (datasetHasBoundaryData(sharedDataSet.dataSet)) { + const polygonLayer = layersToCheck.find(layer => { + return layer.data === sharedDataSet.dataSet && isMapPolygonLayerModel(layer) + }) + if (isMapPolygonLayerModel(polygonLayer)) { + polygonLayer.setDataset(sharedDataSet.dataSet) + layersToCheck.splice(layersToCheck.indexOf(polygonLayer), 1) } else { // Add a new layer for this dataset this.addPolygonLayer(sharedDataSet.dataSet) From 6d86b2d07bb1e51490b977e1759ae6fabd54b072 Mon Sep 17 00:00:00 2001 From: Kirk Swenson Date: Mon, 2 Dec 2024 11:10:34 -0800 Subject: [PATCH 3/3] chore: add jest test for map importer --- v3/src/components/map/v2-map-importer.test.ts | 119 + v3/src/test/v2/roller-coasters-map.codap | 5367 +++++++ v3/src/test/v2/seal-and-shark-demo.codap | 13339 ++++++++++++++++ 3 files changed, 18825 insertions(+) create mode 100644 v3/src/components/map/v2-map-importer.test.ts create mode 100644 v3/src/test/v2/roller-coasters-map.codap create mode 100644 v3/src/test/v2/seal-and-shark-demo.codap diff --git a/v3/src/components/map/v2-map-importer.test.ts b/v3/src/components/map/v2-map-importer.test.ts new file mode 100644 index 0000000000..e9426ff3b1 --- /dev/null +++ b/v3/src/components/map/v2-map-importer.test.ts @@ -0,0 +1,119 @@ +import { DocumentContentModel, IDocumentContentModel } from "../../models/document/document-content" +import { FreeTileRow } from "../../models/document/free-tile-row" +import { SharedModelDocumentManager } from "../../models/document/shared-model-document-manager" +import { ITileModelSnapshotIn } from "../../models/tiles/tile-model" +import { safeJsonParse } from "../../utilities/js-utils" +import { CodapV2Document } from "../../v2/codap-v2-document" +import { ICodapV2DocumentJson } from "../../v2/codap-v2-types" +import { isMapContentModel } from "./models/map-content-model" +import { v2MapImporter } from "./v2-map-importer" +import "./map-registration" + +const fs = require("fs") +const path = require("path") + +function firstMapComponent(v2Document: CodapV2Document) { + return v2Document.components.find(c => c.type === "DG.MapView")! +} + +describe("V2MapImporter imports legacy v2 map documents", () => { + // legacy v2 map document (0252) + const sealAndSharkFile = path.join(__dirname, "../../test/v2", "seal-and-shark-demo.codap") + const sealAndSharkJson = fs.readFileSync(sealAndSharkFile, "utf8") + const sealAndSharkDoc = safeJsonParse(sealAndSharkJson)! + + let v2Document: CodapV2Document + let docContent: Maybe + let sharedModelManager: Maybe + const mockInsertTile = jest.fn((tileSnap: ITileModelSnapshotIn) => { + const tile = docContent!.insertTileSnapshotInDefaultRow(tileSnap) + return tile + }) + + beforeEach(() => { + v2Document = new CodapV2Document(sealAndSharkDoc) + sharedModelManager = new SharedModelDocumentManager() + docContent = DocumentContentModel.create({}, { sharedModelManager }) + docContent.setRowCreator(() => FreeTileRow.create()) + sharedModelManager.setDocument(docContent) + + // load shared models into sharedModelManager + v2Document.contexts.forEach(({ guid }) => { + const { data, metadata } = v2Document.getDataAndMetadata(guid) + data && sharedModelManager!.addSharedModel(data) + metadata?.setData(data?.dataSet) + metadata && sharedModelManager!.addSharedModel(metadata) + }) + + mockInsertTile.mockClear() + }) + + it("imports legacy v2 map components", () => { + const tile = v2MapImporter({ + v2Component: firstMapComponent(v2Document), + v2Document, + insertTile: mockInsertTile + }) + expect(mockInsertTile).toHaveBeenCalledTimes(1) + const mapModel = isMapContentModel(tile?.content) ? tile?.content : undefined + expect(mapModel).toBeDefined() + // layers aren't actually imported from legacy documents + expect(mapModel?.layers.length).toBe(0) + }) +}) + +describe("V2MapImporter imports current v2 map documents", () => { + // current v2 map document (0730) + const rollerCoastersFile = path.join(__dirname, "../../test/v2", "roller-coasters-map.codap") + const rollerCoastersJson = fs.readFileSync(rollerCoastersFile, "utf8") + const rollerCoastersDoc = safeJsonParse(rollerCoastersJson)! + + let v2Document: CodapV2Document + let docContent: Maybe + let sharedModelManager: Maybe + const mockInsertTile = jest.fn((tileSnap: ITileModelSnapshotIn) => { + const tile = docContent!.insertTileSnapshotInDefaultRow(tileSnap) + return tile + }) + + beforeEach(() => { + v2Document = new CodapV2Document(rollerCoastersDoc) + sharedModelManager = new SharedModelDocumentManager() + docContent = DocumentContentModel.create({}, { sharedModelManager }) + docContent.setRowCreator(() => FreeTileRow.create()) + sharedModelManager.setDocument(docContent) + + // load shared models into sharedModelManager + v2Document.contexts.forEach(({ guid }) => { + const { data, metadata } = v2Document.getDataAndMetadata(guid) + data && sharedModelManager!.addSharedModel(data) + metadata?.setData(data?.dataSet) + metadata && sharedModelManager!.addSharedModel(metadata) + }) + + mockInsertTile.mockClear() + }) + + it("handles empty components", () => { + const noTile = v2MapImporter({ + v2Component: {} as any, + v2Document, + insertTile: mockInsertTile + }) + expect(mockInsertTile).toHaveBeenCalledTimes(0) + const mapModel = isMapContentModel(noTile?.content) ? noTile?.content : undefined + expect(mapModel).not.toBeDefined() + }) + + it("imports current v2 map components", () => { + const tile = v2MapImporter({ + v2Component: firstMapComponent(v2Document), + v2Document, + insertTile: mockInsertTile + }) + expect(mockInsertTile).toHaveBeenCalledTimes(1) + const mapModel = isMapContentModel(tile?.content) ? tile?.content : undefined + expect(mapModel).toBeDefined() + expect(mapModel?.layers.length).toBe(2) + }) +}) diff --git a/v3/src/test/v2/roller-coasters-map.codap b/v3/src/test/v2/roller-coasters-map.codap new file mode 100644 index 0000000000..0a07cc5919 --- /dev/null +++ b/v3/src/test/v2/roller-coasters-map.codap @@ -0,0 +1,5367 @@ +{ + "name": "Roller Coasters", + "guid": 1, + "id": 1, + "components": [ + { + "type": "DG.TableView", + "guid": 176, + "id": 176, + "componentStorage": { + "isActive": true, + "horizontalScrollOffset": 0, + "_links_": { + "context": { + "type": "DG.DataContextRecord", + "id": 2 + } + }, + "attributeWidths": [ + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 4 + } + }, + "width": 94 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 5 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 6 + } + }, + "width": 45 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 7 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 8 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 9 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 10 + } + }, + "width": 55 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 11 + } + }, + "width": 67 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 12 + } + }, + "width": 66 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 13 + } + }, + "width": 45 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 14 + } + }, + "width": 49 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 15 + } + }, + "width": 56 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 16 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 17 + } + }, + "width": 45 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 18 + } + }, + "width": 55 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 45812 + } + }, + "width": 60 + }, + { + "_links_": { + "attr": { + "type": "DG.Attribute", + "id": 45813 + } + }, + "width": 45 + } + ], + "rowHeights": [], + "title": "Sample of US Roller Coasters Across Years", + "name": "Sample of US Roller Coasters Across Years", + "userSetTitle": false, + "cannotClose": false + }, + "layout": { + "top": 5, + "left": 5, + "width": 925, + "height": 245, + "zIndex": 469, + "isVisible": true, + "right": 930, + "bottom": 250 + }, + "savedHeight": null + }, + { + "type": "DG.CaseCard", + "guid": 45916, + "id": 45916, + "componentStorage": { + "isActive": false, + "_links_": { + "context": { + "type": "DG.DataContextRecord", + "id": 2 + } + }, + "title": "Sample of US Roller Coasters Across Years", + "name": "Sample of US Roller Coasters Across Years", + "userSetTitle": false, + "cannotClose": false + }, + "layout": { + "top": 10, + "left": 15, + "width": 210, + "height": 464, + "zIndex": 412, + "isVisible": false, + "right": 225, + "bottom": 474 + }, + "savedHeight": null + }, + { + "type": "DG.GuideView", + "guid": 45968, + "id": 45968, + "componentStorage": { + "title": "Roller Coasters Guide", + "items": [ + { + "itemTitle": "Getting Started", + "url": "https://fi-esteem.s3.amazonaws.com/codap_documents/157coasters_getstarted_page1.html" + } + ], + "currentItemIndex": 0, + "isVisible": false, + "userSetTitle": false, + "cannotClose": false + }, + "layout": { + "left": 980, + "top": 5, + "width": 365, + "height": 400, + "zIndex": 456, + "isVisible": false, + "right": 1345, + "bottom": 405 + }, + "savedHeight": null + }, + { + "type": "DG.MapView", + "guid": 46033, + "id": 46033, + "componentStorage": { + "mapModelStorage": { + "center": { + "lat": 38.64031691104339, + "lng": -96.37772499999997 + }, + "zoom": 3.789383909482255, + "baseMapLayerName": "Topographic", + "gridMultiplier": 1, + "layerModels": [ + { + "_links_": { + "hiddenCases": [], + "context": { + "type": "DG.DataContextRecord", + "id": 2 + } + }, + "legendRole": 0, + "legendAttributeType": 0, + "isVisible": true, + "areaColor": "#FF3E00", + "areaTransparency": "0.5", + "areaStrokeColor": "white", + "areaStrokeTransparency": "0.6", + "strokeSameAsFill": false + }, + { + "_links_": { + "hiddenCases": [], + "context": { + "type": "DG.DataContextRecord", + "id": 2 + } + }, + "legendRole": 0, + "legendAttributeType": 0, + "isVisible": true, + "pointColor": "#e6805b", + "strokeColor": "white", + "pointSizeMultiplier": 1, + "transparency": 0.85, + "strokeTransparency": 0.4, + "strokeSameAsFill": false, + "pointsShouldBeVisible": true, + "grid": { + "gridMultiplier": 1, + "isVisible": false + }, + "connectingLines": { + "isVisible": false, + "enableMeasuresForSelection": false + } + } + ] + }, + "title": "Map", + "name": "Map", + "userSetTitle": false, + "cannotClose": false + }, + "layout": { + "width": 530, + "height": 360, + "zIndex": 471, + "left": 5, + "top": 255, + "isVisible": true, + "right": 535, + "bottom": 615 + }, + "savedHeight": null + } + ], + "contexts": [ + { + "type": "DG.DataContext", + "document": 1, + "guid": 2, + "id": 2, + "flexibleGroupingChangeFlag": true, + "name": "157USrollercoasters", + "title": "Sample of US Roller Coasters Across Years", + "collections": [ + { + "areParentChildLinksConfigured": false, + "attrs": [ + { + "name": "State", + "type": "nominal", + "title": "State", + "cid": "id:b7FIvNN0csIAtJdq", + "description": "State where the roller coaster is located", + "_categoryMap": { + "__order": [ + "Alabama", + "Arkansas", + "California", + "Colorado", + "Connecticut", + "Florida", + "Georgia", + "Idaho", + "Illinois", + "Indiana", + "Iowa", + "Kentucky", + "Louisiana", + "Maine", + "Maryland", + "Massachusetts", + "Minnesota", + "Missouri", + "Nevada", + "New Jersey", + "New Mexico", + "New York", + "North Carolina", + "Ohio", + "Oklahoma", + "Pennsylvania", + "South Carolina", + "Tennessee", + "Texas", + "Virginia", + "Washington", + "Wisconsin" + ], + "Tennessee": "#FFB300", + "Texas": "#803E75", + "Pennsylvania": "#FF6800", + "California": "#A6BDD7", + "Connecticut": "#C10020", + "Washington": "#CEA262", + "Colorado": "#817066", + "New York": "#007D34", + "Florida": "#00538A", + "South Carolina": "#F13A13", + "Ohio": "#53377A", + "Georgia": "#FF8E00", + "Missouri": "#B32851", + "Illinois": "#F4C800", + "Virginia": "#7F180D", + "Oklahoma": "#93AA00", + "Maryland": "#593315", + "Minnesota": "#232C16", + "New Jersey": "#FF7A5C", + "Idaho": "#F6768E", + "Indiana": "#FFB300", + "Iowa": "#803E75", + "Nevada": "#FF6800", + "Wisconsin": "#A6BDD7", + "Kentucky": "#C10020", + "Maine": "#CEA262", + "Arkansas": "#817066", + "Massachusetts": "#007D34", + "New Mexico": "#00538A", + "Louisiana": "#F13A13", + "Alabama": "#53377A", + "North Carolina": "#FF8E00" + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 7, + "id": 7, + "precision": null, + "unit": null + }, + { + "name": "Boundary", + "type": null, + "title": "Boundary", + "cid": "id:nxS2FMl7sJ_vNl8Z", + "description": "", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": true, + "renameable": true, + "deleteable": true, + "formula": "lookupBoundary(US_state_boundaries,State)", + "guid": 45970, + "id": 45970, + "precision": 2, + "unit": null + } + ], + "cases": [ + { + "guid": 46001, + "id": 46001, + "itemID": "id:RBArxvcJGO5Tl0Jl", + "values": { + "State": "Alabama" + } + }, + { + "guid": 45999, + "id": 45999, + "itemID": "id:aj-oam-DU3GEfjL6", + "values": { + "State": "Arkansas" + } + }, + { + "guid": 45974, + "id": 45974, + "itemID": "id:3BMN7mV-NyKzGPy3", + "values": { + "State": "California" + } + }, + { + "guid": 45983, + "id": 45983, + "itemID": "id:SRcKwllKNk7OiTg5", + "values": { + "State": "Colorado" + } + }, + { + "guid": 45981, + "id": 45981, + "itemID": "id:DXnjLu2wIP4_-S74", + "values": { + "State": "Connecticut" + } + }, + { + "guid": 45977, + "id": 45977, + "itemID": "id:rXWvtjYdFhUaIyaa", + "values": { + "State": "Florida" + } + }, + { + "guid": 45978, + "id": 45978, + "itemID": "id:NdwuofvWyjl4RZ6u", + "values": { + "State": "Georgia" + } + }, + { + "guid": 45992, + "id": 45992, + "itemID": "id:9JKYZKKlN2Omqtgr", + "values": { + "State": "Idaho" + } + }, + { + "guid": 45986, + "id": 45986, + "itemID": "id:oI7o6xu9hvuvi7ds", + "values": { + "State": "Illinois" + } + }, + { + "guid": 45993, + "id": 45993, + "itemID": "id:MNhCDon3BqbOzQrG", + "values": { + "State": "Indiana" + } + }, + { + "guid": 45997, + "id": 45997, + "itemID": "id:4DNu_TUzgxNjiV09", + "values": { + "State": "Iowa" + } + }, + { + "guid": 45998, + "id": 45998, + "itemID": "id:wlFty2ZhrVrOxChU", + "values": { + "State": "Kentucky" + } + }, + { + "guid": 46004, + "id": 46004, + "itemID": "id:8YSVGdhwWn-asz5T", + "values": { + "State": "Louisiana" + } + }, + { + "guid": 45994, + "id": 45994, + "itemID": "id:py2a2a3m4C-PvR6d", + "values": { + "State": "Maine" + } + }, + { + "guid": 45990, + "id": 45990, + "itemID": "id:rtZEhY4JYH8JNs0o", + "values": { + "State": "Maryland" + } + }, + { + "guid": 46003, + "id": 46003, + "itemID": "id:aLG_qKw9S6_9dpoe", + "values": { + "State": "Massachusetts" + } + }, + { + "guid": 45995, + "id": 45995, + "itemID": "id:OTyxAdUKxSNIGKrr", + "values": { + "State": "Minnesota" + } + }, + { + "guid": 45979, + "id": 45979, + "itemID": "id:c9skxZI9t27W0tVS", + "values": { + "State": "Missouri" + } + }, + { + "guid": 45996, + "id": 45996, + "itemID": "id:s5q_4-jAC_ccQGDb", + "values": { + "State": "Nevada" + } + }, + { + "guid": 45989, + "id": 45989, + "itemID": "id:HaiPl6jq2KpmFusu", + "values": { + "State": "New Jersey" + } + }, + { + "guid": 46000, + "id": 46000, + "itemID": "id:-ByBhji1HUrU97_R", + "values": { + "State": "New Mexico" + } + }, + { + "guid": 45987, + "id": 45987, + "itemID": "id:9JBt8ssxMgxLjXRb", + "values": { + "State": "New York" + } + }, + { + "guid": 46002, + "id": 46002, + "itemID": "id:ugbSN5g902NakuEu", + "values": { + "State": "North Carolina" + } + }, + { + "guid": 45975, + "id": 45975, + "itemID": "id:EknG6lcFM68VPITW", + "values": { + "State": "Ohio" + } + }, + { + "guid": 45988, + "id": 45988, + "itemID": "id:roLwioOZp-mfuPUk", + "values": { + "State": "Oklahoma" + } + }, + { + "guid": 45973, + "id": 45973, + "itemID": "id:2Gb_uD-jEH5gxuaS", + "values": { + "State": "Pennsylvania" + } + }, + { + "guid": 45984, + "id": 45984, + "itemID": "id:q0hM7FtVjAv5KKKm", + "values": { + "State": "South Carolina" + } + }, + { + "guid": 45980, + "id": 45980, + "itemID": "id:-v1HIbNN1aZDzX8Y", + "values": { + "State": "Tennessee" + } + }, + { + "guid": 45976, + "id": 45976, + "itemID": "id:qfFIt8d7ElZPShje", + "values": { + "State": "Texas" + } + }, + { + "guid": 45985, + "id": 45985, + "itemID": "id:h3mFt-UVJAYlDoV7", + "values": { + "State": "Virginia" + } + }, + { + "guid": 45982, + "id": 45982, + "itemID": "id:0Ed9QuAbTsfCp2pF", + "values": { + "State": "Washington" + } + }, + { + "guid": 45991, + "id": 45991, + "itemID": "id:uFa__aLX5lIkjaIV", + "values": { + "State": "Wisconsin" + } + } + ], + "caseName": null, + "childAttrName": null, + "collapseChildren": null, + "guid": 45972, + "id": 45972, + "name": "States", + "title": "States", + "type": "DG.Collection" + }, + { + "areParentChildLinksConfigured": false, + "attrs": [ + { + "name": "Coaster", + "type": "nominal", + "title": "Coaster", + "cid": "id:pLhACNgo8GUidOT-", + "description": "Name of the roller coaster", + "_categoryMap": { + "__order": [ + "Afterburner", + "Alpengeist", + "American Eagle", + "Anaconda", + "Apollos Chariot", + "Arkansas Twister", + "Batman And Robin; The Chiller", + "Batman Knight Flight", + "Batman The Escape", + "Batman The Ride", + "Batman: The Ride", + "Beast", + "Big Bad John", + "Big Bad Wolf", + "Big Bend", + "Blue Streak", + "Bobsleds", + "Boss", + "Boulder Dash", + "California Screamin", + "Cannon Ball", + "Canyon Blaster", + "Chang", + "Cheetah", + "Coaster Thrill Ride", + "Colossus", + "Comet", + "Corkscrew", + "Cyclone", + "Cyclops", + "Deja Vu", + "Demon", + "Desperado", + "Diamond Back", + "Dominator", + "Dragon", + "Dueling Dragons", + "Excalibur", + "Face/Off", + "Fury 325", + "Gemini", + "Georgia Cyclone", + "Georgia Scorcher", + "GhostRider", + "Giant Dipper", + "Goliath", + "Great American Scream Machine", + "Great Bear", + "Great NorEaster", + "Great White", + "High Speed Thrill Coaster", + "Hurricane", + "HyperSonic XLC", + "Incredible Hulk", + "Intimidator", + "Invertigo", + "Iron Wolf", + "Jack Rabbit", + "Jaguar!", + "Joker", + "Joker's Jinx", + "Judge Roy Scream", + "Kraken", + "Kumba", + "Leap The Dips", + "Lightning Rod", + "Loch Ness Monster", + "Magnum XL-200", + "Mamba", + "Manhattan Express", + "Mantis", + "Mean Streak", + "Medusa", + "Millennium Force", + "Montezooma's Revenge", + "Montu", + "New Mexico Rattler", + "Nitro", + "Pegasus", + "Phantoms Revenge", + "Phoenix", + "Raging Bull", + "Rampage", + "Raptor", + "Rattler", + "Raven", + "Revolution", + "Ricochet", + "Riddlers Revenge", + "River King Mine Train", + "Scream!", + "Screamer", + "Screamin Eagle", + "Sidewinder", + "Silver Bullet", + "Silver Comet", + "Skyliner", + "Son Of Beast", + "Starliner", + "Steel Eel", + "Steel Force", + "Steel Venom", + "StormChaser", + "Superman - Ride Of Steel", + "Superman - Ultimate Flight", + "Superman The Escape", + "Superman: Krypton Coaster", + "Swamp Fox", + "Talon", + "Tennessee Tornado", + "Texas Cyclone", + "Texas Giant", + "Thunderbolt", + "Thunderhawk", + "Timber Wolf", + "Titan", + "Top Gun", + "Top Thrill Dragster", + "Tremors", + "Twister", + "Two-Face: The Flip Side", + "Ultra Twister", + "Vapor Trail", + "Viper", + "Volcano, The Blast Coaster", + "Vortex", + "Whirlwind", + "Whizzer", + "Wicked Twister", + "Wild One", + "Wild Thing", + "Wildcat", + "Wildfire", + "X", + "Zeus", + "Zippin Pippin", + "Zonga" + ], + "Zippin Pippin": "#FFB300", + "Revolution": "#803E75", + "Tennessee Tornado": "#FF6800", + "Lightning Rod": "#A6BDD7", + "Judge Roy Scream": "#C10020", + "Batman The Ride": "#CEA262", + "Big Bend": "#817066", + "Texas Cyclone": "#007D34", + "Texas Giant": "#00538A", + "Ultra Twister": "#F13A13", + "Rattler": "#53377A", + "Batman The Escape": "#FF8E00", + "Great White": "#B32851", + "Steel Eel": "#F4C800", + "Titan": "#7F180D", + "Superman: Krypton Coaster": "#93AA00", + "Jack Rabbit": "#593315", + "Thunderhawk": "#232C16", + "Thunderbolt": "#FF7A5C", + "Comet": "#F6768E", + "High Speed Thrill Coaster": "#FFB300", + "Phoenix": "#803E75", + "Skyliner": "#FF6800", + "Whirlwind": "#A6BDD7", + "Wildcat": "#C10020", + "Cyclone": "#CEA262", + "Steel Force": "#817066", + "Great Bear": "#007D34", + "Vapor Trail": "#00538A", + "Leap The Dips": "#F13A13", + "Twister": "#53377A", + "Phantoms Revenge": "#FF8E00", + "Talon": "#B32851", + "Giant Dipper": "#F4C800", + "Demon": "#7F180D", + "Colossus": "#93AA00", + "Montezooma's Revenge": "#593315", + "Viper": "#232C16", + "Top Gun": "#FF7A5C", + "Jaguar!": "#F6768E", + "Screamer": "#FFB300", + "Superman The Escape": "#803E75", + "GhostRider": "#FF6800", + "Invertigo": "#A6BDD7", + "Riddlers Revenge": "#C10020", + "Goliath": "#CEA262", + "Medusa": "#817066", + "California Screamin": "#007D34", + "X": "#00538A", + "Scream!": "#F13A13", + "Zonga": "#53377A", + "Boulder Dash": "#FF8E00", + "Coaster Thrill Ride": "#B32851", + "Wild Thing": "#F4C800", + "Sidewinder": "#7F180D", + "Bobsleds": "#93AA00", + "Silver Comet": "#593315", + "Superman - Ride Of Steel": "#232C16", + "Starliner": "#FF7A5C", + "Kumba": "#F6768E", + "Montu": "#FFB300", + "Dueling Dragons": "#803E75", + "Incredible Hulk": "#FF6800", + "Kraken": "#A6BDD7", + "Swamp Fox": "#C10020", + "Hurricane": "#CEA262", + "Blue Streak": "#817066", + "Gemini": "#007D34", + "Beast": "#00538A", + "Vortex": "#F13A13", + "Magnum XL-200": "#53377A", + "Mean Streak": "#FF8E00", + "Raptor": "#B32851", + "Mantis": "#F4C800", + "Face/Off": "#7F180D", + "Batman Knight Flight": "#93AA00", + "Millennium Force": "#593315", + "Son Of Beast": "#232C16", + "Wicked Twister": "#FF7A5C", + "Top Thrill Dragster": "#F6768E", + "Cannon Ball": "#FFB300", + "Great American Scream Machine": "#803E75", + "Georgia Cyclone": "#FF6800", + "Georgia Scorcher": "#A6BDD7", + "Cheetah": "#C10020", + "Deja Vu": "#CEA262", + "Superman - Ultimate Flight": "#817066", + "River King Mine Train": "#007D34", + "Screamin Eagle": "#00538A", + "Timber Wolf": "#F13A13", + "Mamba": "#53377A", + "Boss": "#FF8E00", + "Wildfire": "#B32851", + "Whizzer": "#F4C800", + "American Eagle": "#7F180D", + "Iron Wolf": "#93AA00", + "Raging Bull": "#593315", + "Loch Ness Monster": "#232C16", + "Big Bad Wolf": "#FF7A5C", + "Anaconda": "#F6768E", + "Alpengeist": "#FFB300", + "Volcano, The Blast Coaster": "#803E75", + "Apollos Chariot": "#FF6800", + "HyperSonic XLC": "#A6BDD7", + "Ricochet": "#C10020", + "Dominator": "#CEA262", + "Silver Bullet": "#817066", + "Diamond Back": "#007D34", + "Wild One": "#00538A", + "Two-Face: The Flip Side": "#F13A13", + "Joker's Jinx": "#53377A", + "Excalibur": "#FF8E00", + "Steel Venom": "#B32851", + "Great NorEaster": "#F4C800", + "Batman And Robin; The Chiller": "#7F180D", + "Nitro": "#93AA00", + "Joker": "#593315", + "Corkscrew": "#232C16", + "Tremors": "#FF7A5C", + "Afterburner": "#F6768E", + "Raven": "#FFB300", + "Dragon": "#803E75", + "Canyon Blaster": "#FF6800", + "Desperado": "#A6BDD7", + "Manhattan Express": "#C10020", + "Cyclops": "#CEA262", + "Pegasus": "#817066", + "Zeus": "#007D34", + "Chang": "#00538A", + "StormChaser": "#F13A13", + "Arkansas Twister": "#53377A", + "Big Bad John": "#FF8E00", + "New Mexico Rattler": "#B32851", + "Batman: The Ride": "#F4C800", + "Rampage": "#7F180D", + "Intimidator": "#93AA00", + "Fury 325": "#593315" + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 4, + "id": 4, + "precision": null, + "unit": null + }, + { + "name": "Park", + "type": "nominal", + "title": "Park", + "cid": "id:eCcXb9YRtJj7LN1l", + "description": "Name of the park where the roller coaster is located", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 5, + "id": 5, + "precision": null, + "unit": null + }, + { + "name": "Top_Speed", + "type": "numeric", + "title": "Top_Speed", + "cid": "id:QCgc4i82CH0y9r-B", + "description": "Maximum speed of roller coaster", + "_categoryMap": { + "23": "#CEA262", + "25": "#F4C800", + "27": "#593315", + "35": "#F6768E", + "37": "#7F180D", + "38": "#CEA262", + "40": "#FFB300", + "41": "#803E75", + "42": "#93AA00", + "44": "#00538A", + "45": "#B32851", + "46": "#FFB300", + "47": "#A6BDD7", + "48": "#A6BDD7", + "50": "#F13A13", + "52": "#817066", + "53": "#C10020", + "54": "#B32851", + "55": "#803E75", + "56": "#803E75", + "57": "#00538A", + "58": "#93AA00", + "60": "#C10020", + "61": "#F6768E", + "62": "#FF7A5C", + "63": "#FF6800", + "65": "#007D34", + "66": "#F4C800", + "67": "#817066", + "68": "#FF7A5C", + "70": "#FF8E00", + "72": "#007D34", + "73": "#A6BDD7", + "74": "#232C16", + "75": "#7F180D", + "76": "#FF6800", + "77": "#FF6800", + "78": "#53377A", + "80": "#593315", + "82": "#232C16", + "85": "#53377A", + "93": "#F13A13", + "95": "#C10020", + "100": "#FFB300", + "120": "#FF8E00", + "__order": [ + "23", + "25", + "27", + "35", + "37", + "38", + "40", + "41", + "42", + "44", + "45", + "46", + "47", + "48", + "50", + "52", + "53", + "54", + "55", + "56", + "57", + "58", + "60", + "61", + "62", + "63", + "65", + "66", + "67", + "68", + "70", + "72", + "73", + "74", + "75", + "76", + "77", + "78", + "80", + "82", + "85", + "93", + "95", + "100", + "120" + ] + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 11, + "id": 11, + "precision": "", + "unit": "mph" + }, + { + "name": "Max_Height", + "type": "numeric", + "title": "Max_Height", + "cid": "id:SXkIGTBcHDhTirTT", + "description": "Highest point of roller coaster", + "_categoryMap": { + "18": "#FF7A5C", + "31": "#FF6800", + "32": "#803E75", + "37": "#232C16", + "40": "#7F180D", + "41": "#CEA262", + "43": "#C10020", + "52": "#B32851", + "55": "#FFB300", + "56": "#803E75", + "60": "#FFB300", + "64": "#803E75", + "65": "#FF6800", + "70": "#FFB300", + "71": "#FF6800", + "75": "#00538A", + "78": "#F6768E", + "79": "#93AA00", + "80": "#93AA00", + "81": "#C10020", + "83": "#F4C800", + "84": "#593315", + "85": "#F6768E", + "90": "#F13A13", + "92": "#F6768E", + "93": "#CEA262", + "94": "#803E75", + "95": "#C10020", + "97": "#007D34", + "98": "#7F180D", + "100": "#FF6800", + "102": "#817066", + "105": "#232C16", + "107": "#FF7A5C", + "108": "#53377A", + "110": "#817066", + "115": "#FF7A5C", + "118": "#F4C800", + "120": "#A6BDD7", + "121": "#A6BDD7", + "122": "#A6BDD7", + "125": "#F13A13", + "127": "#C10020", + "128": "#007D34", + "130": "#817066", + "135": "#00538A", + "137": "#53377A", + "142": "#F6768E", + "143": "#817066", + "145": "#FF8E00", + "148": "#53377A", + "149": "#007D34", + "150": "#FF8E00", + "154": "#C10020", + "155": "#F13A13", + "156": "#93AA00", + "157": "#B32851", + "160": "#007D34", + "161": "#7F180D", + "163": "#803E75", + "165": "#FF8E00", + "168": "#F4C800", + "170": "#53377A", + "173": "#FF7A5C", + "175": "#232C16", + "180": "#00538A", + "185": "#232C16", + "188": "#FF8E00", + "192": "#FFB300", + "195": "#00538A", + "200": "#A6BDD7", + "202": "#CEA262", + "203": "#A6BDD7", + "205": "#F13A13", + "207": "#593315", + "208": "#CEA262", + "209": "#FF6800", + "215": "#93AA00", + "218": "#7F180D", + "230": "#FFB300", + "232": "#CEA262", + "235": "#593315", + "245": "#B32851", + "310": "#F4C800", + "325": "#817066", + "415": "#B32851", + "420": "#593315", + "__order": [ + "18", + "31", + "32", + "37", + "40", + "41", + "43", + "52", + "55", + "56", + "60", + "64", + "65", + "70", + "71", + "75", + "78", + "79", + "80", + "81", + "83", + "84", + "85", + "90", + "92", + "93", + "94", + "95", + "97", + "98", + "100", + "102", + "105", + "107", + "108", + "110", + "115", + "118", + "120", + "121", + "122", + "125", + "127", + "128", + "130", + "135", + "137", + "142", + "143", + "145", + "148", + "149", + "150", + "154", + "155", + "156", + "157", + "160", + "161", + "163", + "165", + "168", + "170", + "173", + "175", + "180", + "185", + "188", + "192", + "195", + "200", + "202", + "203", + "205", + "207", + "208", + "209", + "215", + "218", + "230", + "232", + "235", + "245", + "310", + "325", + "415", + "420" + ] + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 12, + "id": 12, + "precision": "", + "unit": "ft" + }, + { + "name": "Drop", + "type": "numeric", + "title": "Drop", + "cid": "id:IAil12X6-KXq8rS6", + "description": "Length of largest gap between high and low points of roller coaster", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 13, + "id": 13, + "precision": "", + "unit": "ft" + }, + { + "name": "Length", + "type": "numeric", + "title": "Length", + "cid": "id:l131HdDrfnIPlFZG", + "description": "Length of roller coaster track", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 14, + "id": 14, + "precision": "", + "unit": "ft" + }, + { + "name": "Duration", + "type": "numeric", + "title": "Duration", + "cid": "id:So_3zOGlHPaPwtWg", + "description": "Time length of roller coaster ride", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 15, + "id": 15, + "precision": "", + "unit": "sec" + }, + { + "name": "Type", + "type": "nominal", + "title": "Type", + "cid": "id:6_VaY1EK9tauPL6H", + "description": "Material of track (Steel or Wooden)", + "_categoryMap": { + "Wooden": { + "h": 0.9523809523809523, + "s": 0.6666666666666666, + "b": 1, + "colorString": "#ff5586" + }, + "Steel": { + "h": 0.3523809523809525, + "s": 0.6666666666666666, + "b": 1, + "colorString": "#55ff68" + }, + "__order": [ + "Wooden", + "Steel" + ] + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 8, + "id": 8, + "precision": null, + "unit": null + }, + { + "name": "Design", + "type": "nominal", + "title": "Design", + "cid": "id:D_-BcrmTX-3ZIqJW", + "description": "How a passenger is positioned in the roller coaster (Bobsled, Flying, Inverted, Pipeline, Sit down, Stand up, Suspended, Wing)", + "_categoryMap": { + "__order": [ + "4th Dimension", + "Flying", + "Inverted", + "Pipeline", + "Sit Down", + "Stand Up", + "Suspended", + "Wing" + ], + "Sit Down": "#FFB300", + "Inverted": "#803E75", + "Stand Up": "#FF6800", + "4th Dimension": "#A6BDD7", + "Wing": "#C10020", + "Pipeline": "#CEA262", + "Suspended": "#817066", + "Flying": "#007D34" + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 9, + "id": 9, + "precision": null, + "unit": null + }, + { + "name": "Year_Opened", + "type": "numeric", + "title": "Year_Opened", + "cid": "id:6Pu7T61bTBThKgxJ", + "description": "Year when roller coaster opened", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 10, + "id": 10, + "precision": "", + "unit": null + }, + { + "name": "Age_Group", + "type": "nominal", + "title": "Age_Group", + "cid": "id:572iMBAe2ATwYbzg", + "description": "Built [Older (1900-1979), Recent (1980-1999), or Newest (2000-current)]", + "_categoryMap": { + "__order": [ + "older", + "recent", + "newest" + ], + "older": "#FFB300", + "recent": "#803E75", + "newest": "#FF6800" + }, + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 18, + "id": 18, + "precision": null, + "unit": null + }, + { + "name": "Inversions", + "type": "nominal", + "title": "Inversions", + "cid": "id:t351EzQYwQbCXLVp", + "description": "Whether or not roller coaster flips passengers at any point (Yes or No)", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 16, + "id": 16, + "precision": null, + "unit": null + }, + { + "name": "Num_of_Inversions", + "type": "numeric", + "title": "Num_of_Inversions", + "cid": "id:W-tegVnqz7V8ACy6", + "description": "Number of times roller coaster flips passengers", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 17, + "id": 17, + "precision": null, + "unit": null + }, + { + "name": "City", + "type": "nominal", + "title": "City", + "cid": "id:lEikmOOaXfiOcJDH", + "description": "City where the roller coaster is located", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": false, + "renameable": true, + "deleteable": true, + "guid": 6, + "id": 6, + "precision": null, + "unit": null + }, + { + "name": "latitude", + "type": null, + "title": "latitude", + "cid": "id:dL17OpsHAzGJZM7q", + "description": "", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": true, + "renameable": true, + "deleteable": true, + "guid": 45812, + "id": 45812, + "precision": 2, + "unit": null + }, + { + "name": "longitude", + "type": null, + "title": "longitude", + "cid": "id:kY4gNk_C2wiUlT7H", + "description": "", + "blockDisplayOfEmptyCategories": true, + "editable": true, + "hidden": true, + "renameable": true, + "deleteable": true, + "guid": 45813, + "id": 45813, + "precision": 2, + "unit": null + } + ], + "cases": [ + { + "parent": 46001, + "guid": 161, + "id": 161, + "itemID": "id:RBArxvcJGO5Tl0Jl", + "values": { + "Coaster": "Rampage", + "Park": "VisionLand", + "Top_Speed": 56, + "Max_Height": 120, + "Drop": 102, + "Length": 3500, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Bessemer", + "latitude": 33.40178, + "longitude": -86.95444 + } + }, + { + "parent": 45999, + "guid": 132, + "id": 132, + "itemID": "id:aj-oam-DU3GEfjL6", + "values": { + "Coaster": "Arkansas Twister", + "Park": "Magic Springs and Crystal Falls", + "Top_Speed": "", + "Max_Height": 95, + "Drop": 92, + "Length": 3340, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Hot Springs", + "latitude": 34.5037, + "longitude": -93.05518 + } + }, + { + "parent": 45999, + "guid": 154, + "id": 154, + "itemID": "id:3TSDjsftPgyqGGjg", + "values": { + "Coaster": "Big Bad John", + "Park": "Magic Springs and Crystal Falls", + "Top_Speed": 37, + "Max_Height": 32, + "Drop": 41, + "Length": 2349, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Hot Springs", + "latitude": 34.5037, + "longitude": -93.05518 + } + }, + { + "parent": 45974, + "guid": 159, + "id": 159, + "itemID": "id:3BMN7mV-NyKzGPy3", + "values": { + "Coaster": "X", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 76, + "Max_Height": 175, + "Drop": 215, + "Length": 3610, + "Duration": "", + "Type": "Steel", + "Design": "4th Dimension", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 22, + "id": 22, + "itemID": "id:GxjjYZpI-cJK2gxg", + "values": { + "Coaster": "Giant Dipper", + "Park": "Santa Cruz Beach Boardwalk", + "Top_Speed": 55, + "Max_Height": 70, + "Drop": 65, + "Length": 2640, + "Duration": 112, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1924, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Santa Cruz", + "latitude": 36.97412, + "longitude": -122.0308 + } + }, + { + "parent": 45974, + "guid": 43, + "id": 43, + "itemID": "id:lXhX03VWXbsDN9wi", + "values": { + "Coaster": "Colossus", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 62, + "Max_Height": 125, + "Drop": 115, + "Length": 4325, + "Duration": 150, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1978, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.5712" + } + }, + { + "parent": 45974, + "guid": 39, + "id": 39, + "itemID": "id:ZDqIzzobHkPXosSd", + "values": { + "Coaster": "Demon", + "Park": "Paramounts Great America", + "Top_Speed": 50, + "Max_Height": 102, + "Drop": 90, + "Length": 2130, + "Duration": 105, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1976, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Santa Clara", + "latitude": 37.35411, + "longitude": -121.95524 + } + }, + { + "parent": 45974, + "guid": 46, + "id": 46, + "itemID": "id:EtBGxHcD433_aGkI", + "values": { + "Coaster": "Montezooma's Revenge", + "Park": "Knotts Berry Farm", + "Top_Speed": 55, + "Max_Height": 148, + "Drop": 137, + "Length": 800, + "Duration": 36, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1978, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Buena Park", + "latitude": 33.86751, + "longitude": -117.99812 + } + }, + { + "parent": 45974, + "guid": 113, + "id": 113, + "itemID": "id:CODq2LErURFPtxbx", + "values": { + "Coaster": "Riddlers Revenge", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 65, + "Max_Height": 156, + "Drop": 146, + "Length": 4370, + "Duration": 180, + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 109, + "id": 109, + "itemID": "id:qd4TBH0hbLP9L8hG", + "values": { + "Coaster": "GhostRider", + "Park": "Knotts Berry Farm", + "Top_Speed": 56, + "Max_Height": 118, + "Drop": 108, + "Length": 4533, + "Duration": 160, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Buena Park", + "latitude": 33.86751, + "longitude": -117.99812 + } + }, + { + "parent": 45974, + "guid": 67, + "id": 67, + "itemID": "id:EkNDB5XS4WKXOeqp", + "values": { + "Coaster": "Viper", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 70, + "Max_Height": 188, + "Drop": 171, + "Length": 3830, + "Duration": 150, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 86, + "id": 86, + "itemID": "id:H_CJ5qNLQHmKk_8t", + "values": { + "Coaster": "Jaguar!", + "Park": "Knotts Berry Farm", + "Top_Speed": 35, + "Max_Height": 65, + "Drop": 45, + "Length": 2602, + "Duration": 120, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Buena Park", + "latitude": 33.86751, + "longitude": -117.99812 + } + }, + { + "parent": 45974, + "guid": 88, + "id": 88, + "itemID": "id:4UHnr5bDFIvjYYUM", + "values": { + "Coaster": "Screamer", + "Park": "Scandia Amusement Park", + "Top_Speed": 50, + "Max_Height": 90, + "Drop": 80, + "Length": 2600, + "Duration": 116, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Ontario", + "latitude": 34.06334, + "longitude": -117.65089 + } + }, + { + "parent": 45974, + "guid": 103, + "id": 103, + "itemID": "id:P9S4P3CtEO6TVLVf", + "values": { + "Coaster": "Superman The Escape", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 100, + "Max_Height": 415, + "Drop": 328, + "Length": 1235, + "Duration": 28, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 79, + "id": 79, + "itemID": "id:xbbCc-mrgGjQRXxa", + "values": { + "Coaster": "Top Gun", + "Park": "Paramounts Great America", + "Top_Speed": 50, + "Max_Height": 102, + "Drop": 91, + "Length": 2260, + "Duration": 146, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Santa Clara", + "latitude": 37.35411, + "longitude": -121.95524 + } + }, + { + "parent": 45974, + "guid": 111, + "id": 111, + "itemID": "id:dMAvheEzxW9q104X", + "values": { + "Coaster": "Invertigo", + "Park": "Paramounts Great America", + "Top_Speed": 50, + "Max_Height": 161, + "Drop": 138, + "Length": 1014, + "Duration": 90, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Santa Clara", + "latitude": 37.35411, + "longitude": -121.95524 + } + }, + { + "parent": 45974, + "guid": 136, + "id": 136, + "itemID": "id:L0hC90J193qP1BAS", + "values": { + "Coaster": "Goliath", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 85, + "Max_Height": 235, + "Drop": 255, + "Length": 4500, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 139, + "id": 139, + "itemID": "id:dm0BQlcZ1PCtg8Vn", + "values": { + "Coaster": "Medusa", + "Park": "Six Flags Marine World", + "Top_Speed": 65, + "Max_Height": 150, + "Drop": 150, + "Length": 3937, + "Duration": 195, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Vallejo", + "latitude": 38.10409, + "longitude": -122.25664 + } + }, + { + "parent": 45974, + "guid": 144, + "id": 144, + "itemID": "id:ejCZpyAR0FJmtViQ", + "values": { + "Coaster": "California Screamin", + "Park": "Disneys California Adventure", + "Top_Speed": 55, + "Max_Height": "", + "Drop": 108, + "Length": 6072, + "Duration": 156, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Anaheim", + "latitude": 33.83529, + "longitude": -117.9145 + } + }, + { + "parent": 45974, + "guid": 162, + "id": 162, + "itemID": "id:MmSc1-PucJBqcawI", + "values": { + "Coaster": "Scream!", + "Park": "Six Flags Magic Mountain", + "Top_Speed": 63, + "Max_Height": 150, + "Drop": 141, + "Length": 3985, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Valencia", + "latitude": "34.45", + "longitude": "-118.57" + } + }, + { + "parent": 45974, + "guid": 167, + "id": 167, + "itemID": "id:fj01tVEoGEw_puYJ", + "values": { + "Coaster": "Zonga", + "Park": "Six Flags Marine World", + "Top_Speed": 62, + "Max_Height": 115, + "Drop": 98, + "Length": 3675, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Vallejo", + "latitude": 38.10409, + "longitude": -122.25664 + } + }, + { + "parent": 45983, + "guid": 26, + "id": 26, + "itemID": "id:SRcKwllKNk7OiTg5", + "values": { + "Coaster": "Cyclone", + "Park": "Lakeside", + "Top_Speed": "", + "Max_Height": 90, + "Drop": 89, + "Length": 2800, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1940, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Denver", + "latitude": 39.73915, + "longitude": -104.9847 + } + }, + { + "parent": 45983, + "guid": 89, + "id": 89, + "itemID": "id:3YYzymm1Hqg2R50d", + "values": { + "Coaster": "Sidewinder", + "Park": "Six Flags Elitch Gardens", + "Top_Speed": 45, + "Max_Height": 56, + "Drop": 47, + "Length": 635, + "Duration": 66, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Denver", + "latitude": 39.73915, + "longitude": -104.9847 + } + }, + { + "parent": 45981, + "guid": 24, + "id": 24, + "itemID": "id:DXnjLu2wIP4_-S74", + "values": { + "Coaster": "Wildcat", + "Park": "Lake Compounce", + "Top_Speed": 48, + "Max_Height": 85, + "Drop": 78, + "Length": 2746, + "Duration": 75, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1927, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Bristol", + "latitude": 41.67176, + "longitude": -72.94927 + } + }, + { + "parent": 45981, + "guid": 135, + "id": 135, + "itemID": "id:4c-ONFR3RYD7K3pa", + "values": { + "Coaster": "Boulder Dash", + "Park": "Lake Compounce", + "Top_Speed": 60, + "Max_Height": "", + "Drop": 115, + "Length": 4725, + "Duration": 150, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Bristol", + "latitude": 41.67176, + "longitude": -72.94927 + } + }, + { + "parent": 45977, + "guid": 31, + "id": 31, + "itemID": "id:rXWvtjYdFhUaIyaa", + "values": { + "Coaster": "Starliner", + "Park": "Miracle Strip Amusement Park", + "Top_Speed": 55, + "Max_Height": 70, + "Drop": 76, + "Length": 2640, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1963, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Panama City Beach", + "latitude": 30.17659, + "longitude": -85.80549 + } + }, + { + "parent": 45977, + "guid": 78, + "id": 78, + "itemID": "id:AWP56DqWYD5VmYF5", + "values": { + "Coaster": "Kumba", + "Park": "Busch Gardens Tampa", + "Top_Speed": 60, + "Max_Height": 143, + "Drop": 135, + "Length": 3978, + "Duration": 174, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Tampa", + "latitude": 27.94752, + "longitude": -82.45843 + } + }, + { + "parent": 45977, + "guid": 121, + "id": 121, + "itemID": "id:LMP15ugAK2PVcQl5", + "values": { + "Coaster": "Incredible Hulk", + "Park": "Universal Studios Islands of Adventure", + "Top_Speed": 67, + "Max_Height": 110, + "Drop": 105, + "Length": 3700, + "Duration": 135, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Orlando", + "latitude": 28.53834, + "longitude": -81.37924 + } + }, + { + "parent": 45977, + "guid": 93, + "id": 93, + "itemID": "id:IjyS6w58PsYkOxxs", + "values": { + "Coaster": "Montu", + "Park": "Busch Gardens Tampa", + "Top_Speed": 60, + "Max_Height": 150, + "Drop": 128, + "Length": 3983, + "Duration": 180, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Tampa", + "latitude": 27.94752, + "longitude": -82.45843 + } + }, + { + "parent": 45977, + "guid": 117, + "id": 117, + "itemID": "id:WAWauJohWbSoaCjk", + "values": { + "Coaster": "Dueling Dragons", + "Park": "Universal Studios Islands of Adventure", + "Top_Speed": 60, + "Max_Height": 125, + "Drop": 115, + "Length": 3200, + "Duration": 145, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Orlando", + "latitude": 28.53834, + "longitude": -81.37924 + } + }, + { + "parent": 45977, + "guid": 118, + "id": 118, + "itemID": "id:e5LZN2HKxp9N_S-a", + "values": { + "Coaster": "Dueling Dragons", + "Park": "Universal Studios Islands of Adventure", + "Top_Speed": 55, + "Max_Height": 125, + "Drop": 95, + "Length": 3200, + "Duration": 145, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Orlando", + "latitude": 28.53834, + "longitude": -81.37924 + } + }, + { + "parent": 45977, + "guid": 138, + "id": 138, + "itemID": "id:l_TWLroEF6Ww8FuF", + "values": { + "Coaster": "Kraken", + "Park": "SeaWorld Orlando", + "Top_Speed": 65, + "Max_Height": 149, + "Drop": 144, + "Length": 4177, + "Duration": 122, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Orlando", + "latitude": 28.53834, + "longitude": -81.37924 + } + }, + { + "parent": 45978, + "guid": 34, + "id": 34, + "itemID": "id:NdwuofvWyjl4RZ6u", + "values": { + "Coaster": "Cannon Ball", + "Park": "Lake Winnepesaukah", + "Top_Speed": 50, + "Max_Height": 70, + "Drop": 70, + "Length": 2272, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1967, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Rossville", + "latitude": 34.98313, + "longitude": -85.28607 + } + }, + { + "parent": 45978, + "guid": 37, + "id": 37, + "itemID": "id:jLap-eTONzlDbc4i", + "values": { + "Coaster": "Great American Scream Machine", + "Park": "Six Flags Over Georgia", + "Top_Speed": 57, + "Max_Height": 105, + "Drop": 89, + "Length": 3450, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1973, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Austell", + "latitude": 33.82028, + "longitude": -84.64427 + } + }, + { + "parent": 45978, + "guid": 63, + "id": 63, + "itemID": "id:PdnE6AmscdurnaNQ", + "values": { + "Coaster": "Georgia Cyclone", + "Park": "Six Flags Over Georgia", + "Top_Speed": 50, + "Max_Height": 95, + "Drop": 79, + "Length": 2970, + "Duration": 108, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Austell", + "latitude": 33.82028, + "longitude": -84.64427 + } + }, + { + "parent": 45978, + "guid": 120, + "id": 120, + "itemID": "id:hmpOXqRHKV7yo7hL", + "values": { + "Coaster": "Georgia Scorcher", + "Park": "Six Flags Over Georgia", + "Top_Speed": 54, + "Max_Height": 107, + "Drop": 101, + "Length": 3000, + "Duration": 84, + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Austell", + "latitude": 33.82028, + "longitude": -84.64427 + } + }, + { + "parent": 45978, + "guid": 145, + "id": 145, + "itemID": "id:Kd6l1E_3GXbfujqO", + "values": { + "Coaster": "Cheetah", + "Park": "Wild Adventures", + "Top_Speed": 52, + "Max_Height": 92, + "Drop": 90, + "Length": 2680, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Valdosta", + "latitude": 30.8327, + "longitude": -83.27849 + } + }, + { + "parent": 45978, + "guid": 147, + "id": 147, + "itemID": "id:HcuIFm7breBp5TJ_", + "values": { + "Coaster": "Deja Vu", + "Park": "Six Flags Over Georgia", + "Top_Speed": 66, + "Max_Height": 192, + "Drop": 177, + "Length": 1204, + "Duration": 92, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Austell", + "latitude": 33.82028, + "longitude": -84.64427 + } + }, + { + "parent": 45978, + "guid": 157, + "id": 157, + "itemID": "id:yluIxIGukx1eP35f", + "values": { + "Coaster": "Superman - Ultimate Flight", + "Park": "Six Flags Over Georgia", + "Top_Speed": "", + "Max_Height": 115, + "Drop": 100, + "Length": 2760, + "Duration": 120, + "Type": "Steel", + "Design": "Flying", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Austell", + "latitude": 33.82028, + "longitude": -84.64427 + } + }, + { + "parent": 45992, + "guid": 129, + "id": 129, + "itemID": "id:9JKYZKKlN2Omqtgr", + "values": { + "Coaster": "Tremors", + "Park": "Silverwood Theme Park", + "Top_Speed": 60, + "Max_Height": 100, + "Drop": 103, + "Length": 3000, + "Duration": 100, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Athol", + "latitude": 47.94796, + "longitude": -116.70797 + } + }, + { + "parent": 45992, + "guid": 62, + "id": 62, + "itemID": "id:P-a34XavH4hxA-RB", + "values": { + "Coaster": "Corkscrew", + "Park": "Silverwood Theme Park", + "Top_Speed": 46, + "Max_Height": 70, + "Drop": 62, + "Length": 1250, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Athol", + "latitude": 47.94796, + "longitude": -116.70797 + } + }, + { + "parent": 45986, + "guid": 38, + "id": 38, + "itemID": "id:oI7o6xu9hvuvi7ds", + "values": { + "Coaster": "Demon", + "Park": "Six Flags Great America", + "Top_Speed": 50, + "Max_Height": 102, + "Drop": 90, + "Length": 2130, + "Duration": 105, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1976, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 42, + "id": 42, + "itemID": "id:wTx6frWNcb7vMrSv", + "values": { + "Coaster": "Whizzer", + "Park": "Six Flags Great America", + "Top_Speed": 42, + "Max_Height": 70, + "Drop": 64, + "Length": 3100, + "Duration": 120, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1976, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 51, + "id": 51, + "itemID": "id:rKM8vexlpbCizOR6", + "values": { + "Coaster": "American Eagle", + "Park": "Six Flags Great America", + "Top_Speed": 66, + "Max_Height": 127, + "Drop": 147, + "Length": 4650, + "Duration": 143, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1981, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 90, + "id": 90, + "itemID": "id:O7TwLUqYz73hpLJA", + "values": { + "Coaster": "Viper", + "Park": "Six Flags Great America", + "Top_Speed": 50, + "Max_Height": 100, + "Drop": 80, + "Length": 3458, + "Duration": 105, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 124, + "id": 124, + "itemID": "id:IBL2bIK-VMrx5RzL", + "values": { + "Coaster": "Raging Bull", + "Park": "Six Flags Great America", + "Top_Speed": 73, + "Max_Height": 202, + "Drop": 208, + "Length": 5057, + "Duration": 150, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 64, + "id": 64, + "itemID": "id:XIMVA-WgaGlpG3Io", + "values": { + "Coaster": "Iron Wolf", + "Park": "Six Flags Great America", + "Top_Speed": 55, + "Max_Height": 100, + "Drop": 90, + "Length": 2900, + "Duration": 120, + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 146, + "id": 146, + "itemID": "id:BL8A_SMhXtlox-2U", + "values": { + "Coaster": "Deja Vu", + "Park": "Six Flags Great America", + "Top_Speed": 66, + "Max_Height": 192, + "Drop": 177, + "Length": 1204, + "Duration": 92, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45986, + "guid": 164, + "id": 164, + "itemID": "id:UlwPKM0qH8A75T93", + "values": { + "Coaster": "Superman - Ultimate Flight", + "Park": "Six Flags Great America", + "Top_Speed": 50, + "Max_Height": 115, + "Drop": 109, + "Length": 2798, + "Duration": 180, + "Type": "Steel", + "Design": "Flying", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Gurnee", + "latitude": 42.3703, + "longitude": -87.90202 + } + }, + { + "parent": 45993, + "guid": 87, + "id": 87, + "itemID": "id:MNhCDon3BqbOzQrG", + "values": { + "Coaster": "Raven", + "Park": "Holiday World", + "Top_Speed": 48, + "Max_Height": 80, + "Drop": 110, + "Length": 2731, + "Duration": 90, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Santa Claus", + "latitude": 38.12005, + "longitude": -86.91416 + } + }, + { + "parent": 45993, + "guid": 68, + "id": 68, + "itemID": "id:5XDYFWvXV4HgiU9z", + "values": { + "Coaster": "Afterburner", + "Park": "Fun Spot", + "Top_Speed": 45, + "Max_Height": 56, + "Drop": 47, + "Length": 635, + "Duration": 66, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1991, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Angola", + "latitude": 41.63477, + "longitude": -84.99941 + } + }, + { + "parent": 45997, + "guid": 70, + "id": 70, + "itemID": "id:4DNu_TUzgxNjiV09", + "values": { + "Coaster": "Dragon", + "Park": "Adventureland", + "Top_Speed": "", + "Max_Height": 90, + "Drop": 85, + "Length": 2250, + "Duration": 90, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1991, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Altoona", + "latitude": 41.64416, + "longitude": -93.46466 + } + }, + { + "parent": 45998, + "guid": 98, + "id": 98, + "itemID": "id:wlFty2ZhrVrOxChU", + "values": { + "Coaster": "Chang", + "Park": "Six Flags Kentucky Kingdom", + "Top_Speed": 63, + "Max_Height": 154, + "Drop": 144, + "Length": 4155, + "Duration": 150, + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Louisville", + "latitude": 38.25424, + "longitude": -85.75941 + } + }, + { + "parent": 45998, + "guid": 172, + "id": 172, + "itemID": "id:g3tCkH723ZjUa64B", + "values": { + "Coaster": "StormChaser", + "Park": "Kentucky Kingdom", + "Top_Speed": 52, + "Max_Height": 100, + "Drop": "", + "Length": 2744, + "Duration": 100, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2016, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Louisville", + "latitude": 38.25424, + "longitude": -85.75941 + } + }, + { + "parent": 46004, + "guid": 160, + "id": 160, + "itemID": "id:8YSVGdhwWn-asz5T", + "values": { + "Coaster": "Batman: The Ride", + "Park": "Six Flags New Orleans", + "Top_Speed": 50, + "Max_Height": 105, + "Drop": 80, + "Length": 2693, + "Duration": 120, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "New Orleans", + "latitude": 29.95465, + "longitude": -90.07507 + } + }, + { + "parent": 45994, + "guid": 108, + "id": 108, + "itemID": "id:py2a2a3m4C-PvR6d", + "values": { + "Coaster": "Excalibur", + "Park": "Funtown Splashtown U.S.A.", + "Top_Speed": 55, + "Max_Height": 100, + "Drop": 82, + "Length": 2700, + "Duration": 118, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Saco", + "latitude": 43.50092, + "longitude": -70.44283 + } + }, + { + "parent": 45990, + "guid": 55, + "id": 55, + "itemID": "id:rtZEhY4JYH8JNs0o", + "values": { + "Coaster": "Wild One", + "Park": "Six Flags America", + "Top_Speed": 53, + "Max_Height": 98, + "Drop": 88, + "Length": 4000, + "Duration": 112, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1986, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Upper Marlboro", + "latitude": 38.81595, + "longitude": -76.74969 + } + }, + { + "parent": 45990, + "guid": 175, + "id": 175, + "itemID": "id:KKspalvGh5LQ4fWs", + "values": { + "Coaster": "Joker's Jinx", + "Park": "Six Flags America", + "Top_Speed": 60, + "Max_Height": 79, + "Drop": "", + "Length": 2750, + "Duration": 56, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Upper Marlboro", + "latitude": 38.81595, + "longitude": -76.74969 + } + }, + { + "parent": 45990, + "guid": 131, + "id": 131, + "itemID": "id:3C52CR98yBtXU_q-", + "values": { + "Coaster": "Two-Face: The Flip Side", + "Park": "Six Flags America", + "Top_Speed": 50, + "Max_Height": 161, + "Drop": 138, + "Length": 1014, + "Duration": 90, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Upper Marlboro", + "latitude": 38.81595, + "longitude": -76.74969 + } + }, + { + "parent": 45990, + "guid": 143, + "id": 143, + "itemID": "id:bl0rSBtU1Vo0rMwS", + "values": { + "Coaster": "Superman - Ride Of Steel", + "Park": "Six Flags America", + "Top_Speed": 73, + "Max_Height": 200, + "Drop": 190, + "Length": 5350, + "Duration": 130, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Upper Marlboro", + "latitude": 38.81595, + "longitude": -76.74969 + } + }, + { + "parent": 46003, + "guid": 142, + "id": 142, + "itemID": "id:aLG_qKw9S6_9dpoe", + "values": { + "Coaster": "Superman - Ride Of Steel", + "Park": "Six Flags New England", + "Top_Speed": 77, + "Max_Height": 208, + "Drop": 221, + "Length": 5400, + "Duration": 155, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Agawam", + "latitude": "42.07", + "longitude": "-72.61" + } + }, + { + "parent": 45995, + "guid": 58, + "id": 58, + "itemID": "id:OTyxAdUKxSNIGKrr", + "values": { + "Coaster": "Excalibur", + "Park": "Valleyfair!", + "Top_Speed": 55, + "Max_Height": 100, + "Drop": 105, + "Length": 2415, + "Duration": 137, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1989, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Shakopee", + "latitude": 44.79802, + "longitude": -93.5269 + } + }, + { + "parent": 45995, + "guid": 95, + "id": 95, + "itemID": "id:aQq8Dmr25qzkvx8T", + "values": { + "Coaster": "Wild Thing", + "Park": "Valleyfair!", + "Top_Speed": 74, + "Max_Height": 207, + "Drop": 196, + "Length": 5460, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Shakopee", + "latitude": 44.79802, + "longitude": -93.5269 + } + }, + { + "parent": 45995, + "guid": 163, + "id": 163, + "itemID": "id:QxxVS76rWLHNgT18", + "values": { + "Coaster": "Steel Venom", + "Park": "Valleyfair!", + "Top_Speed": 68, + "Max_Height": 185, + "Drop": 175, + "Length": 630, + "Duration": "", + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Shakopee", + "latitude": 44.79802, + "longitude": -93.5269 + } + }, + { + "parent": 45979, + "guid": 40, + "id": 40, + "itemID": "id:c9skxZI9t27W0tVS", + "values": { + "Coaster": "Screamin Eagle", + "Park": "Six Flags St. Louis", + "Top_Speed": 62, + "Max_Height": 110, + "Drop": 92, + "Length": 3872, + "Duration": 150, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1976, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Eureka", + "latitude": 38.50255, + "longitude": -90.6279 + } + }, + { + "parent": 45979, + "guid": 35, + "id": 35, + "itemID": "id:lsnYVZCdC1KqiMLy", + "values": { + "Coaster": "River King Mine Train", + "Park": "Six Flags St. Louis", + "Top_Speed": 37, + "Max_Height": 32, + "Drop": 41, + "Length": 2500, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1971, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Eureka", + "latitude": 38.50255, + "longitude": -90.6279 + } + }, + { + "parent": 45979, + "guid": 61, + "id": 61, + "itemID": "id:ZL8YyNjXEzCt2wmW", + "values": { + "Coaster": "Timber Wolf", + "Park": "Worlds of Fun", + "Top_Speed": 53, + "Max_Height": 100, + "Drop": 95, + "Length": 4230, + "Duration": 133, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1989, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Kansas City", + "latitude": 39.12513, + "longitude": -94.55103 + } + }, + { + "parent": 45979, + "guid": 112, + "id": 112, + "itemID": "id:iDl1doUVZEIbEKh6", + "values": { + "Coaster": "Mamba", + "Park": "Worlds of Fun", + "Top_Speed": 75, + "Max_Height": 205, + "Drop": 205, + "Length": 5600, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Kansas City", + "latitude": 39.12513, + "longitude": -94.55103 + } + }, + { + "parent": 45979, + "guid": 134, + "id": 134, + "itemID": "id:VBpZ-5qlSbfKFCEc", + "values": { + "Coaster": "Boss", + "Park": "Six Flags St. Louis", + "Top_Speed": 66, + "Max_Height": 122, + "Drop": 150, + "Length": 5051, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Eureka", + "latitude": 38.50255, + "longitude": -90.6279 + } + }, + { + "parent": 45979, + "guid": 153, + "id": 153, + "itemID": "id:AnQAZ6COLGN8yA6t", + "values": { + "Coaster": "Wildfire", + "Park": "Silver Dollar City", + "Top_Speed": 66, + "Max_Height": 120, + "Drop": 155, + "Length": 3073, + "Duration": 136, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Branson", + "latitude": 36.6452, + "longitude": -93.26411 + } + }, + { + "parent": 45996, + "guid": 76, + "id": 76, + "itemID": "id:s5q_4-jAC_ccQGDb", + "values": { + "Coaster": "Canyon Blaster", + "Park": "Adventuredome", + "Top_Speed": 41, + "Max_Height": 94, + "Drop": 66, + "Length": 2423, + "Duration": 90, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Las Vegas", + "latitude": 36.17497, + "longitude": -115.13722 + } + }, + { + "parent": 45996, + "guid": 82, + "id": 82, + "itemID": "id:8B1WRo-gTS0GIc1g", + "values": { + "Coaster": "Desperado", + "Park": "Buffalo Bills Resort & Casino", + "Top_Speed": 80, + "Max_Height": 209, + "Drop": 225, + "Length": 5843, + "Duration": 163, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1994, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Primm", + "latitude": "35.61", + "longitude": "-115.39" + } + }, + { + "parent": 45996, + "guid": 101, + "id": 101, + "itemID": "id:cH5ydwMw3RPKrmaq", + "values": { + "Coaster": "Manhattan Express", + "Park": "New York, New York Hotel & Casino", + "Top_Speed": 67, + "Max_Height": 203, + "Drop": 144, + "Length": 4777, + "Duration": 160, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Las Vegas", + "latitude": 36.17497, + "longitude": -115.13722 + } + }, + { + "parent": 45989, + "guid": 91, + "id": 91, + "itemID": "id:HaiPl6jq2KpmFusu", + "values": { + "Coaster": "Great White", + "Park": "Moreys Piers", + "Top_Speed": 50, + "Max_Height": 110, + "Drop": 100, + "Length": 3300, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Wildwood", + "latitude": 38.99178, + "longitude": -74.81489 + } + }, + { + "parent": 45989, + "guid": 59, + "id": 59, + "itemID": "id:o5JROCQ59InGZhff", + "values": { + "Coaster": "Great American Scream Machine", + "Park": "Six Flags Great Adventure", + "Top_Speed": 68, + "Max_Height": 173, + "Drop": 155, + "Length": 3800, + "Duration": 140, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1989, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 106, + "id": 106, + "itemID": "id:2PF6Gf1fTOkyq_W3", + "values": { + "Coaster": "Batman And Robin; The Chiller", + "Park": "Six Flags Great Adventure", + "Top_Speed": 70, + "Max_Height": 200, + "Drop": 139, + "Length": 1137, + "Duration": 32, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 107, + "id": 107, + "itemID": "id:8CjKV68Nj2hMzUUe", + "values": { + "Coaster": "Batman And Robin; The Chiller", + "Park": "Six Flags Great Adventure", + "Top_Speed": 70, + "Max_Height": 200, + "Drop": 105, + "Length": 1229, + "Duration": 48, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 123, + "id": 123, + "itemID": "id:VDU3T1f0DIxBmZa0", + "values": { + "Coaster": "Medusa", + "Park": "Six Flags Great Adventure", + "Top_Speed": 61, + "Max_Height": 142, + "Drop": 132, + "Length": 3985, + "Duration": 140, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 7, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 85, + "id": 85, + "itemID": "id:GKVapNHOMswjen8j", + "values": { + "Coaster": "Great NorEaster", + "Park": "Moreys Piers", + "Top_Speed": 55, + "Max_Height": 115, + "Drop": 95, + "Length": 2170, + "Duration": 125, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Wildwood", + "latitude": 38.99178, + "longitude": -74.81489 + } + }, + { + "parent": 45989, + "guid": 165, + "id": 165, + "itemID": "id:gZZHg6GMnyE4TJvd", + "values": { + "Coaster": "Superman - Ultimate Flight", + "Park": "Six Flags Great Adventure", + "Top_Speed": 60, + "Max_Height": 115, + "Drop": 100, + "Length": 2759, + "Duration": 126, + "Type": "Steel", + "Design": "Flying", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 149, + "id": 149, + "itemID": "id:zk8XRIPeUjt_xQdQ", + "values": { + "Coaster": "Nitro", + "Park": "Six Flags Great Adventure", + "Top_Speed": 80, + "Max_Height": 230, + "Drop": 215, + "Length": 5394, + "Duration": 140, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 45989, + "guid": 174, + "id": 174, + "itemID": "id:5U39InmgoN3IcTWC", + "values": { + "Coaster": "Joker", + "Park": "Six Flags Great Adventure", + "Top_Speed": 38, + "Max_Height": 120, + "Drop": 54, + "Length": 1019, + "Duration": "", + "Type": "Steel", + "Design": "Wing", + "Year_Opened": 2016, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "Jackson", + "latitude": 40.0908, + "longitude": -74.36126 + } + }, + { + "parent": 46000, + "guid": 155, + "id": 155, + "itemID": "id:-ByBhji1HUrU97_R", + "values": { + "Coaster": "New Mexico Rattler", + "Park": "Cliffs Amusement Park", + "Top_Speed": 47, + "Max_Height": 80, + "Drop": 75, + "Length": 2750, + "Duration": 75, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Albuquerque", + "latitude": 35.08449, + "longitude": -106.65114 + } + }, + { + "parent": 45987, + "guid": 30, + "id": 30, + "itemID": "id:9JBt8ssxMgxLjXRb", + "values": { + "Coaster": "Bobsleds", + "Park": "Seabreeze", + "Top_Speed": 23, + "Max_Height": 31, + "Drop": 16, + "Length": 1240, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1962, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Rochester", + "latitude": 43.15478, + "longitude": -77.61556 + } + }, + { + "parent": 45987, + "guid": 81, + "id": 81, + "itemID": "id:ZMJfMnCKZIpGzM5T", + "values": { + "Coaster": "Comet", + "Park": "Great Escape", + "Top_Speed": 55, + "Max_Height": 95, + "Drop": 87, + "Length": 4197, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1994, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Lake George", + "latitude": 43.42618, + "longitude": -73.71234 + } + }, + { + "parent": 45987, + "guid": 125, + "id": 125, + "itemID": "id:JZAXL1bX3_zeszeu", + "values": { + "Coaster": "Silver Comet", + "Park": "Martins Fantasy Island", + "Top_Speed": 50, + "Max_Height": "", + "Drop": 82, + "Length": 2800, + "Duration": 105, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Grand Island", + "latitude": 43.0179, + "longitude": -78.96266 + } + }, + { + "parent": 45987, + "guid": 52, + "id": 52, + "itemID": "id:u8RdbExSAJlfnOLs", + "values": { + "Coaster": "Viper", + "Park": "Six Flags Darien Lake", + "Top_Speed": 50, + "Max_Height": 121, + "Drop": 75, + "Length": 3100, + "Duration": 124, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1982, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Darien Lake", + "latitude": "42.93", + "longitude": "-78.38" + } + }, + { + "parent": 45987, + "guid": 127, + "id": 127, + "itemID": "id:g0OWIRLetsfO0YRI", + "values": { + "Coaster": "Superman - Ride Of Steel", + "Park": "Six Flags Darien Lake", + "Top_Speed": 73, + "Max_Height": 208, + "Drop": 205, + "Length": 5400, + "Duration": 122, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Darien Lake", + "latitude": "42.93", + "longitude": "-78.31" + } + }, + { + "parent": 46002, + "guid": 169, + "id": 169, + "itemID": "id:ugbSN5g902NakuEu", + "values": { + "Coaster": "Intimidator", + "Park": "Carowinds", + "Top_Speed": 75, + "Max_Height": 232, + "Drop": 211, + "Length": 5316, + "Duration": 213, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2010, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Charlotte", + "latitude": 35.22709, + "longitude": -80.84313 + } + }, + { + "parent": 46002, + "guid": 170, + "id": 170, + "itemID": "id:oHKiZ-pl3XCwlJh5", + "values": { + "Coaster": "Fury 325", + "Park": "Carowinds", + "Top_Speed": 95, + "Max_Height": 325, + "Drop": 320, + "Length": 6602, + "Duration": 205, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2015, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Charlotte", + "latitude": 35.22709, + "longitude": -80.84313 + } + }, + { + "parent": 45975, + "guid": 33, + "id": 33, + "itemID": "id:EknG6lcFM68VPITW", + "values": { + "Coaster": "Blue Streak", + "Park": "Cedar Point", + "Top_Speed": 40, + "Max_Height": 78, + "Drop": 72, + "Length": 2558, + "Duration": 105, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1964, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 47, + "id": 47, + "itemID": "id:jH53sgJHluWYwCPG", + "values": { + "Coaster": "Beast", + "Park": "Paramounts Kings Island", + "Top_Speed": 65, + "Max_Height": 110, + "Drop": 141, + "Length": 7359, + "Duration": 250, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1979, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Kings Mills", + "latitude": 39.35561, + "longitude": -84.24855 + } + }, + { + "parent": 45975, + "guid": 44, + "id": 44, + "itemID": "id:_IUOoZIqbn9SGApr", + "values": { + "Coaster": "Gemini", + "Park": "Cedar Point", + "Top_Speed": 60, + "Max_Height": 125, + "Drop": 118, + "Length": 3935, + "Duration": 140, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1978, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 71, + "id": 71, + "itemID": "id:7V-RXMoTAboZJNqn", + "values": { + "Coaster": "Mean Streak", + "Park": "Cedar Point", + "Top_Speed": 65, + "Max_Height": 161, + "Drop": 155, + "Length": 5427, + "Duration": 193, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1991, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 57, + "id": 57, + "itemID": "id:bIa_LSw2ZeZUfbFR", + "values": { + "Coaster": "Vortex", + "Park": "Paramounts Kings Island", + "Top_Speed": 55, + "Max_Height": 148, + "Drop": 138, + "Length": 3800, + "Duration": 150, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1987, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "Kings Mills", + "latitude": 39.35561, + "longitude": -84.24855 + } + }, + { + "parent": 45975, + "guid": 60, + "id": 60, + "itemID": "id:415pty01NTwYBf7o", + "values": { + "Coaster": "Magnum XL-200", + "Park": "Cedar Point", + "Top_Speed": 72, + "Max_Height": 205, + "Drop": 195, + "Length": 5106, + "Duration": 120, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1989, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 83, + "id": 83, + "itemID": "id:_nGleYlQ9tiCtWLP", + "values": { + "Coaster": "Raptor", + "Park": "Cedar Point", + "Top_Speed": 57, + "Max_Height": 137, + "Drop": 119, + "Length": 3790, + "Duration": 136, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1994, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 119, + "id": 119, + "itemID": "id:5C8mUZnqikP7gvLR", + "values": { + "Coaster": "Face/Off", + "Park": "Paramounts Kings Island", + "Top_Speed": 50, + "Max_Height": 161, + "Drop": 138, + "Length": 1014, + "Duration": 90, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Kings Mills", + "latitude": 39.35561, + "longitude": -84.24855 + } + }, + { + "parent": 45975, + "guid": 92, + "id": 92, + "itemID": "id:6Gva6_SC00S9Bvnw", + "values": { + "Coaster": "Mantis", + "Park": "Cedar Point", + "Top_Speed": 60, + "Max_Height": 145, + "Drop": 137, + "Length": 3900, + "Duration": 160, + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 141, + "id": 141, + "itemID": "id:6Ys1nku_Fy-u4ppN", + "values": { + "Coaster": "Son Of Beast", + "Park": "Paramounts Kings Island", + "Top_Speed": 78, + "Max_Height": 218, + "Drop": 214, + "Length": 7032, + "Duration": 140, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Kings Mills", + "latitude": 39.35561, + "longitude": -84.24855 + } + }, + { + "parent": 45975, + "guid": 133, + "id": 133, + "itemID": "id:w9A0QObxIuziQEAY", + "values": { + "Coaster": "Batman Knight Flight", + "Park": "Six Flags Worlds of Adventure", + "Top_Speed": 65, + "Max_Height": 157, + "Drop": 148, + "Length": 4210, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Aurora", + "latitude": 41.31755, + "longitude": -81.34539 + } + }, + { + "parent": 45975, + "guid": 140, + "id": 140, + "itemID": "id:S6i3nUDHojmG7OEw", + "values": { + "Coaster": "Millennium Force", + "Park": "Cedar Point", + "Top_Speed": 93, + "Max_Height": 310, + "Drop": 300, + "Length": 6595, + "Duration": 140, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 166, + "id": 166, + "itemID": "id:ASZDqusq1WY9hb3r", + "values": { + "Coaster": "Top Thrill Dragster", + "Park": "Cedar Point", + "Top_Speed": 120, + "Max_Height": 420, + "Drop": 400, + "Length": 2800, + "Duration": 30, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2003, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45975, + "guid": 158, + "id": 158, + "itemID": "id:hOMbXipd4bkv0c11", + "values": { + "Coaster": "Wicked Twister", + "Park": "Cedar Point", + "Top_Speed": 72, + "Max_Height": 215, + "Drop": 206, + "Length": "", + "Duration": "", + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Sandusky", + "latitude": 40.86351, + "longitude": -82.82257 + } + }, + { + "parent": 45988, + "guid": 49, + "id": 49, + "itemID": "id:roLwioOZp-mfuPUk", + "values": { + "Coaster": "Silver Bullet", + "Park": "Frontier City", + "Top_Speed": 55, + "Max_Height": 83, + "Drop": 75, + "Length": 1942, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1979, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Oklahoma City", + "latitude": 35.46708, + "longitude": -97.51366 + } + }, + { + "parent": 45988, + "guid": 72, + "id": 72, + "itemID": "id:7XpI-qzPSahu3v9w", + "values": { + "Coaster": "Wildcat", + "Park": "Frontier City", + "Top_Speed": 60, + "Max_Height": 75, + "Drop": 65, + "Length": 2653, + "Duration": 130, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1991, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Oklahoma City", + "latitude": 35.46708, + "longitude": -97.51366 + } + }, + { + "parent": 45988, + "guid": 77, + "id": 77, + "itemID": "id:MaMamRMNQ4TgyirS", + "values": { + "Coaster": "Diamond Back", + "Park": "Frontier City", + "Top_Speed": 45, + "Max_Height": 56, + "Drop": 47, + "Length": 635, + "Duration": 66, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Oklahoma City", + "latitude": 35.46708, + "longitude": -97.51366 + } + }, + { + "parent": 45973, + "guid": 20, + "id": 20, + "itemID": "id:2Gb_uD-jEH5gxuaS", + "values": { + "Coaster": "Jack Rabbit", + "Park": "Kennywood Park", + "Top_Speed": 45, + "Max_Height": 40, + "Drop": 70, + "Length": 2132, + "Duration": 96, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1921, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "West Mifflin", + "latitude": 40.3634, + "longitude": -79.86644 + } + }, + { + "parent": 45973, + "guid": 110, + "id": 110, + "itemID": "id:L6bZruDVmoqBYDvM", + "values": { + "Coaster": "Great Bear", + "Park": "Hersheypark", + "Top_Speed": 58, + "Max_Height": 90, + "Drop": 124, + "Length": 2800, + "Duration": 175, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Hershey", + "latitude": 40.28592, + "longitude": -76.65025 + } + }, + { + "parent": 45973, + "guid": 29, + "id": 29, + "itemID": "id:w3GEQbY2T85U67tZ", + "values": { + "Coaster": "High Speed Thrill Coaster", + "Park": "Knoebels", + "Top_Speed": 40, + "Max_Height": 18, + "Drop": 12, + "Length": 200, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1955, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Elysburg", + "latitude": 40.86453, + "longitude": -76.55246 + } + }, + { + "parent": 45973, + "guid": 21, + "id": 21, + "itemID": "id:O4OC1_tO7FOpDOT3", + "values": { + "Coaster": "Thunderhawk", + "Park": "Dorney Park", + "Top_Speed": 45, + "Max_Height": 80, + "Drop": 65, + "Length": 2767, + "Duration": 78, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1923, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Allentown", + "latitude": 40.60843, + "longitude": -75.49018 + } + }, + { + "parent": 45973, + "guid": 23, + "id": 23, + "itemID": "id:H8zREOGu9JUFogEV", + "values": { + "Coaster": "Thunderbolt", + "Park": "Kennywood Park", + "Top_Speed": 55, + "Max_Height": 70, + "Drop": 95, + "Length": 2887, + "Duration": 101, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1924, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "West Mifflin", + "latitude": 40.3634, + "longitude": -79.86644 + } + }, + { + "parent": 45973, + "guid": 27, + "id": 27, + "itemID": "id:iTiThT8yXwc-ffQF", + "values": { + "Coaster": "Comet", + "Park": "Hersheypark", + "Top_Speed": 50, + "Max_Height": 84, + "Drop": 78, + "Length": 3360, + "Duration": 105, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1946, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Hershey", + "latitude": 40.28592, + "longitude": -76.65025 + } + }, + { + "parent": 45973, + "guid": 28, + "id": 28, + "itemID": "id:oGSSnj1bR6zXn6_1", + "values": { + "Coaster": "Comet", + "Park": "Waldameer Park", + "Top_Speed": 25, + "Max_Height": 37, + "Drop": 25, + "Length": 1300, + "Duration": 84, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1951, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Erie", + "latitude": 42.12922, + "longitude": -80.08506 + } + }, + { + "parent": 45973, + "guid": 54, + "id": 54, + "itemID": "id:XJVzyH1HoGiiml1M", + "values": { + "Coaster": "Phoenix", + "Park": "Knoebels", + "Top_Speed": 45, + "Max_Height": 78, + "Drop": 72, + "Length": 3200, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1985, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Elysburg", + "latitude": 40.86453, + "longitude": -76.55246 + } + }, + { + "parent": 45973, + "guid": 56, + "id": 56, + "itemID": "id:pmZ6tTfqUsWyEHzu", + "values": { + "Coaster": "Skyliner", + "Park": "Lakemont Park", + "Top_Speed": "", + "Max_Height": 60, + "Drop": 45, + "Length": 2400, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1987, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Altoona", + "latitude": 40.51868, + "longitude": -78.39474 + } + }, + { + "parent": 45973, + "guid": 96, + "id": 96, + "itemID": "id:AEq3W4ldDzKL3MFu", + "values": { + "Coaster": "Wildcat", + "Park": "Hersheypark", + "Top_Speed": 50, + "Max_Height": 90, + "Drop": 85, + "Length": 3183, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Hershey", + "latitude": 40.28592, + "longitude": -76.65025 + } + }, + { + "parent": 45973, + "guid": 99, + "id": 99, + "itemID": "id:M8pdFW7S9PaplH6Y", + "values": { + "Coaster": "Cyclone", + "Park": "Williams Grove Park", + "Top_Speed": "", + "Max_Height": 65, + "Drop": 60, + "Length": 2300, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Mechanicsburg", + "latitude": 40.21426, + "longitude": -77.00859 + } + }, + { + "parent": 45973, + "guid": 122, + "id": 122, + "itemID": "id:_bQkHGEHP6NKcomN", + "values": { + "Coaster": "Leap The Dips", + "Park": "Lakemont Park", + "Top_Speed": "", + "Max_Height": 41, + "Drop": 9, + "Length": 1452, + "Duration": 60, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Altoona", + "latitude": 40.51868, + "longitude": -78.39474 + } + }, + { + "parent": 45973, + "guid": 130, + "id": 130, + "itemID": "id:DiFHhTQkWQNZLUFP", + "values": { + "Coaster": "Twister", + "Park": "Knoebels", + "Top_Speed": 52, + "Max_Height": 102, + "Drop": 90, + "Length": 3900, + "Duration": 130, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Elysburg", + "latitude": 40.86453, + "longitude": -76.55246 + } + }, + { + "parent": 45973, + "guid": 80, + "id": 80, + "itemID": "id:swYt5yp4KJX3Yhz9", + "values": { + "Coaster": "Whirlwind", + "Park": "Knoebels", + "Top_Speed": "", + "Max_Height": 64, + "Drop": 48, + "Length": 1200, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Elysburg", + "latitude": 40.86453, + "longitude": -76.55246 + } + }, + { + "parent": 45973, + "guid": 102, + "id": 102, + "itemID": "id:coABnWpdWUdbCJZo", + "values": { + "Coaster": "Steel Force", + "Park": "Dorney Park", + "Top_Speed": 75, + "Max_Height": 200, + "Drop": 205, + "Length": 5600, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Allentown", + "latitude": 40.60843, + "longitude": -75.49018 + } + }, + { + "parent": 45973, + "guid": 114, + "id": 114, + "itemID": "id:8SyQ76jHC3v_RnsK", + "values": { + "Coaster": "Vapor Trail", + "Park": "Sesame Place", + "Top_Speed": 27, + "Max_Height": 43, + "Drop": 56, + "Length": 1300, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Langhorne", + "latitude": 40.17455, + "longitude": -74.92267 + } + }, + { + "parent": 45973, + "guid": 150, + "id": 150, + "itemID": "id:I9Mih-bfvgo118pB", + "values": { + "Coaster": "Phantoms Revenge", + "Park": "Kennywood Park", + "Top_Speed": 82, + "Max_Height": 160, + "Drop": 228, + "Length": 3200, + "Duration": 117, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "West Mifflin", + "latitude": 40.3634, + "longitude": -79.86644 + } + }, + { + "parent": 45973, + "guid": 151, + "id": 151, + "itemID": "id:rpLCl4F21_B2GcpL", + "values": { + "Coaster": "Talon", + "Park": "Dorney Park", + "Top_Speed": 58, + "Max_Height": 135, + "Drop": 120, + "Length": 3110, + "Duration": "", + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Allentown", + "latitude": 40.60843, + "longitude": -75.49018 + } + }, + { + "parent": 45984, + "guid": 32, + "id": 32, + "itemID": "id:q0hM7FtVjAv5KKKm", + "values": { + "Coaster": "Swamp Fox", + "Park": "Family Kingdom Amusement Park", + "Top_Speed": 50, + "Max_Height": 75, + "Drop": 65, + "Length": 2400, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1963, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Myrtle Beach", + "latitude": 33.68906, + "longitude": -78.88669 + } + }, + { + "parent": 45984, + "guid": 137, + "id": 137, + "itemID": "id:dt8WFWdK8NhpQeCr", + "values": { + "Coaster": "Hurricane", + "Park": "Myrtle Beach Pavilion", + "Top_Speed": 55, + "Max_Height": 102, + "Drop": 100, + "Length": 3800, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Myrtle Beach", + "latitude": 33.68906, + "longitude": -78.88669 + } + }, + { + "parent": 45980, + "guid": 19, + "id": 19, + "itemID": "id:-v1HIbNN1aZDzX8Y", + "values": { + "Coaster": "Zippin Pippin", + "Park": "Libertyland", + "Top_Speed": 40, + "Max_Height": 70, + "Drop": 70, + "Length": 2865, + "Duration": 90, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1915, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Memphis", + "latitude": 35.14953, + "longitude": -90.04898 + } + }, + { + "parent": 45980, + "guid": 48, + "id": 48, + "itemID": "id:3gHIGEAam4yvIsJK", + "values": { + "Coaster": "Revolution", + "Park": "Libertyland", + "Top_Speed": 55, + "Max_Height": 70, + "Drop": 65, + "Length": 1565, + "Duration": 80, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1979, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Memphis", + "latitude": 35.14953, + "longitude": -90.04898 + } + }, + { + "parent": 45980, + "guid": 128, + "id": 128, + "itemID": "id:6To1jsIpHdvcPBvX", + "values": { + "Coaster": "Tennessee Tornado", + "Park": "Dollywood", + "Top_Speed": 63, + "Max_Height": 163, + "Drop": 128, + "Length": 2682, + "Duration": 108, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Pigeon Forge", + "latitude": 35.78842, + "longitude": -83.55433 + } + }, + { + "parent": 45980, + "guid": 171, + "id": 171, + "itemID": "id:OWnoAa0PXC8RLeQl", + "values": { + "Coaster": "Lightning Rod", + "Park": "Dollywood", + "Top_Speed": 73, + "Max_Height": "", + "Drop": 165, + "Length": 3800, + "Duration": 192, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 2016, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Pigeon Forge", + "latitude": 35.78842, + "longitude": -83.55433 + } + }, + { + "parent": 45976, + "guid": 41, + "id": 41, + "itemID": "id:qfFIt8d7ElZPShje", + "values": { + "Coaster": "Texas Cyclone", + "Park": "Six Flags AstroWorld", + "Top_Speed": "", + "Max_Height": 93, + "Drop": 80, + "Length": 3180, + "Duration": 135, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1976, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Houston", + "latitude": 29.78664, + "longitude": -95.3909 + } + }, + { + "parent": 45976, + "guid": 36, + "id": 36, + "itemID": "id:S1RUo8zomnORQW3K", + "values": { + "Coaster": "Big Bend", + "Park": "Six Flags Over Texas", + "Top_Speed": 52, + "Max_Height": 81, + "Drop": "", + "Length": 2876, + "Duration": 98, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1971, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Arlington", + "latitude": 32.73569, + "longitude": -97.10807 + } + }, + { + "parent": 45976, + "guid": 66, + "id": 66, + "itemID": "id:tOxNX3E5t-AM4Dod", + "values": { + "Coaster": "Ultra Twister", + "Park": "Six Flags AstroWorld", + "Top_Speed": 44, + "Max_Height": 97, + "Drop": 92, + "Length": 1421, + "Duration": 100, + "Type": "Steel", + "Design": "Pipeline", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Houston", + "latitude": 29.78664, + "longitude": -95.3909 + } + }, + { + "parent": 45976, + "guid": 50, + "id": 50, + "itemID": "id:cAG0vf95aTmj6Xi1", + "values": { + "Coaster": "Judge Roy Scream", + "Park": "Six Flags Over Texas", + "Top_Speed": 53, + "Max_Height": 71, + "Drop": 65, + "Length": 2670, + "Duration": 90, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1980, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Arlington", + "latitude": 32.73569, + "longitude": -97.10807 + } + }, + { + "parent": 45976, + "guid": 65, + "id": 65, + "itemID": "id:jjb0qgtPyCJlHQUl", + "values": { + "Coaster": "Texas Giant", + "Park": "Six Flags Over Texas", + "Top_Speed": 65, + "Max_Height": 143, + "Drop": 137, + "Length": 4920, + "Duration": 120, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1990, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Arlington", + "latitude": 32.73569, + "longitude": -97.10807 + } + }, + { + "parent": 45976, + "guid": 73, + "id": 73, + "itemID": "id:WAElS-r_TKC5k9OE", + "values": { + "Coaster": "Rattler", + "Park": "Six Flags Fiesta Texas", + "Top_Speed": 65, + "Max_Height": 180, + "Drop": 124, + "Length": 5080, + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1992, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "San Antonio", + "latitude": 29.4724, + "longitude": -98.52514 + } + }, + { + "parent": 45976, + "guid": 126, + "id": 126, + "itemID": "id:RRnm0dTFLLd8sxCM", + "values": { + "Coaster": "Steel Eel", + "Park": "SeaWorld Of Texas", + "Top_Speed": 65, + "Max_Height": 150, + "Drop": 150, + "Length": 3700, + "Duration": 100, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "San Antonio", + "latitude": 29.4724, + "longitude": -98.52514 + } + }, + { + "parent": 45976, + "guid": 100, + "id": 100, + "itemID": "id:akKcK5BanZUBYFse", + "values": { + "Coaster": "Great White", + "Park": "SeaWorld Of Texas", + "Top_Speed": 50, + "Max_Height": 108, + "Drop": 81, + "Length": 2562, + "Duration": 120, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "San Antonio", + "latitude": 29.4724, + "longitude": -98.52514 + } + }, + { + "parent": 45976, + "guid": 74, + "id": 74, + "itemID": "id:Qp4spkScGAoBmdyx", + "values": { + "Coaster": "Batman The Escape", + "Park": "Six Flags AstroWorld", + "Top_Speed": 55, + "Max_Height": 90, + "Drop": 85, + "Length": 2300, + "Duration": "", + "Type": "Steel", + "Design": "Stand Up", + "Year_Opened": 1993, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 1, + "City": "Houston", + "latitude": 29.78664, + "longitude": -95.3909 + } + }, + { + "parent": 45976, + "guid": 75, + "id": 75, + "itemID": "id:jmOzDSkHVEOll6fx", + "values": { + "Coaster": "Batman The Ride", + "Park": "Six Flags Fiesta Texas", + "Top_Speed": 38, + "Max_Height": 120, + "Drop": 54, + "Length": 1019, + "Duration": "", + "Type": "Steel", + "Design": "Wing", + "Year_Opened": 2015, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "San Antonio", + "latitude": 29.4724, + "longitude": -98.52514 + } + }, + { + "parent": 45976, + "guid": 152, + "id": 152, + "itemID": "id:YGy0grGBx0VjxUrF", + "values": { + "Coaster": "Titan", + "Park": "Six Flags Over Texas", + "Top_Speed": 85, + "Max_Height": 245, + "Drop": 255, + "Length": 5312, + "Duration": 210, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Arlington", + "latitude": 32.73569, + "longitude": -97.10807 + } + }, + { + "parent": 45976, + "guid": 173, + "id": 173, + "itemID": "id:K037CHcGCP8vHKzH", + "values": { + "Coaster": "Superman: Krypton Coaster", + "Park": "Six Flags Fiesta Texas", + "Top_Speed": 70, + "Max_Height": 168, + "Drop": 163, + "Length": 4025, + "Duration": 155, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2000, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 6, + "City": "San Antonio", + "latitude": 29.4724, + "longitude": -98.52514 + } + }, + { + "parent": 45985, + "guid": 45, + "id": 45, + "itemID": "id:h3mFt-UVJAYlDoV7", + "values": { + "Coaster": "Loch Ness Monster", + "Park": "Busch Gardens Williamsburg", + "Top_Speed": 60, + "Max_Height": 130, + "Drop": 114, + "Length": 3240, + "Duration": 130, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1978, + "Age_Group": "older", + "Inversions": "Y", + "Num_of_Inversions": 2, + "City": "Williamsburg", + "latitude": 37.2707, + "longitude": -76.70746 + } + }, + { + "parent": 45985, + "guid": 53, + "id": 53, + "itemID": "id:AqD0g9B0DMLkgB1R", + "values": { + "Coaster": "Big Bad Wolf", + "Park": "Busch Gardens Williamsburg", + "Top_Speed": 48, + "Max_Height": 100, + "Drop": 80, + "Length": 2800, + "Duration": 180, + "Type": "Steel", + "Design": "Suspended", + "Year_Opened": 1984, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Williamsburg", + "latitude": 37.2707, + "longitude": -76.70746 + } + }, + { + "parent": 45985, + "guid": 69, + "id": 69, + "itemID": "id:ITDAcJ4f4DOo-4NN", + "values": { + "Coaster": "Anaconda", + "Park": "Paramounts Kings Dominion", + "Top_Speed": 50, + "Max_Height": 128, + "Drop": 144, + "Length": 2700, + "Duration": 110, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1991, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Doswell", + "latitude": "37.86", + "longitude": "-77.46" + } + }, + { + "parent": 45985, + "guid": 116, + "id": 116, + "itemID": "id:rrjZUkaYtFmlTg-U", + "values": { + "Coaster": "Apollos Chariot", + "Park": "Busch Gardens Williamsburg", + "Top_Speed": 73, + "Max_Height": 170, + "Drop": 210, + "Length": 4882, + "Duration": 135, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1999, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Williamsburg", + "latitude": 37.2707, + "longitude": -76.70746 + } + }, + { + "parent": 45985, + "guid": 97, + "id": 97, + "itemID": "id:ch-qgNO5KzU_flRt", + "values": { + "Coaster": "Alpengeist", + "Park": "Busch Gardens Williamsburg", + "Top_Speed": 67, + "Max_Height": 195, + "Drop": 170, + "Length": 3828, + "Duration": 190, + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "", + "Num_of_Inversions": "", + "City": "Williamsburg", + "latitude": 37.2707, + "longitude": -76.70746 + } + }, + { + "parent": 45985, + "guid": 115, + "id": 115, + "itemID": "id:ZMHNrOHGrK8WnYxO", + "values": { + "Coaster": "Volcano, The Blast Coaster", + "Park": "Paramounts Kings Dominion", + "Top_Speed": 70, + "Max_Height": 155, + "Drop": 80, + "Length": 2757, + "Duration": "", + "Type": "Steel", + "Design": "Inverted", + "Year_Opened": 1998, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 4, + "City": "Doswell", + "latitude": "37.86", + "longitude": "-77.46" + } + }, + { + "parent": 45985, + "guid": 148, + "id": 148, + "itemID": "id:H195KKL9GQiUFly2", + "values": { + "Coaster": "HyperSonic XLC", + "Park": "Paramounts Kings Dominion", + "Top_Speed": 80, + "Max_Height": 165, + "Drop": 133, + "Length": 1560, + "Duration": "", + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2001, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Doswell", + "latitude": "37.86", + "longitude": "-77.46" + } + }, + { + "parent": 45985, + "guid": 156, + "id": 156, + "itemID": "id:MFtKEMXDmZdjSgJw", + "values": { + "Coaster": "Ricochet", + "Park": "Paramounts Kings Dominion", + "Top_Speed": 35, + "Max_Height": 52, + "Drop": 50, + "Length": 1340, + "Duration": 180, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2002, + "Age_Group": "newest", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Doswell", + "latitude": "37.86", + "longitude": "-77.46" + } + }, + { + "parent": 45985, + "guid": 168, + "id": 168, + "itemID": "id:OB9CVejtBSpmFleC", + "values": { + "Coaster": "Dominator", + "Park": "Kings Dominion", + "Top_Speed": 65, + "Max_Height": 157, + "Drop": 148, + "Length": 4210, + "Duration": 126, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 2008, + "Age_Group": "newest", + "Inversions": "Y", + "Num_of_Inversions": 5, + "City": "Doswell", + "latitude": "37.86", + "longitude": "-77.46" + } + }, + { + "parent": 45982, + "guid": 25, + "id": 25, + "itemID": "id:0Ed9QuAbTsfCp2pF", + "values": { + "Coaster": "Coaster Thrill Ride", + "Park": "Puyallup Fair", + "Top_Speed": 50, + "Max_Height": 55, + "Drop": 52, + "Length": 2650, + "Duration": 105, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1935, + "Age_Group": "older", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Puyallup", + "latitude": 47.18538, + "longitude": -122.2929 + } + }, + { + "parent": 45982, + "guid": 104, + "id": 104, + "itemID": "id:qjYAZjltbl4yBZDX", + "values": { + "Coaster": "Wild Thing", + "Park": "Wild Waves and Enchanted Village", + "Top_Speed": "", + "Max_Height": "", + "Drop": 64, + "Length": "", + "Duration": 60, + "Type": "Steel", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "Y", + "Num_of_Inversions": 3, + "City": "Federal Way", + "latitude": 47.32232, + "longitude": -122.31262 + } + }, + { + "parent": 45991, + "guid": 84, + "id": 84, + "itemID": "id:uFa__aLX5lIkjaIV", + "values": { + "Coaster": "Cyclops", + "Park": "Big Chief Carts And Coasters", + "Top_Speed": 58, + "Max_Height": 70, + "Drop": 75, + "Length": 1900, + "Duration": 60, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1995, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Wisconsin Dells", + "latitude": 43.63836, + "longitude": -89.77576 + } + }, + { + "parent": 45991, + "guid": 94, + "id": 94, + "itemID": "id:KwqxQUMXtxGD_fQr", + "values": { + "Coaster": "Pegasus", + "Park": "Big Chief Carts And Coasters", + "Top_Speed": "", + "Max_Height": 60, + "Drop": 45, + "Length": "", + "Duration": "", + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1996, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Wisconsin Dells", + "latitude": 43.63836, + "longitude": -89.77576 + } + }, + { + "parent": 45991, + "guid": 105, + "id": 105, + "itemID": "id:NNMGIDSz54qYR0Ux", + "values": { + "Coaster": "Zeus", + "Park": "Big Chief Carts And Coasters", + "Top_Speed": 60, + "Max_Height": 90, + "Drop": 85, + "Length": 2900, + "Duration": 85, + "Type": "Wooden", + "Design": "Sit Down", + "Year_Opened": 1997, + "Age_Group": "recent", + "Inversions": "N", + "Num_of_Inversions": 0, + "City": "Wisconsin Dells", + "latitude": 43.63836, + "longitude": -89.77576 + } + } + ], + "caseName": null, + "childAttrName": null, + "collapseChildren": null, + "guid": 3, + "id": 3, + "name": "Roller Coasters", + "parent": 45972, + "title": "Roller Coasters", + "type": "DG.Collection" + } + ], + "description": "", + "metadata": null, + "preventReorg": false, + "setAsideItems": [], + "contextStorage": { + "_links_": { + "selectedCases": [] + } + } + } + ], + "globalValues": [], + "appName": "DG", + "appVersion": "2.0", + "appBuildNum": "0730", + "lang": "en", + "idCount": 46033, + "metadata": {} +} diff --git a/v3/src/test/v2/seal-and-shark-demo.codap b/v3/src/test/v2/seal-and-shark-demo.codap new file mode 100644 index 0000000000..3d33d309db --- /dev/null +++ b/v3/src/test/v2/seal-and-shark-demo.codap @@ -0,0 +1,13339 @@ +{ + "name": "Seal_and_Shark_demo", + "guid": 12, + "components": [ + { + "type": "DG.GameView", + "guid": 102, + "componentStorage": { + "currentGameName": "Importer", + "currentGameUrl": "DataGames/JavaScriptGames/Importer/Importer.html", + "_links_": { + "context": { + "type": "DG.DataContextRecord", + "id": 401 + } + }, + "currentGameFormulas": null + }, + "layout": { + "width": 262, + "height": 93, + "left": -4, + "top": 46 + } + }, + { + "type": "DG.TableView", + "guid": 103, + "componentStorage": { + "_links_": { + "context": { + "type": "DG.DataContextRecord", + "id": 401 + } + } + }, + "layout": { + "width": 881, + "height": 171, + "left": -5, + "top": 3 + } + }, + { + "type": "DG.MapView", + "guid": 2940, + "componentStorage": { + "_links_": { + "context": { + "type": "DG.DataContextRecord", + "id": 401 + } + }, + "legendRole": 0, + "legendAttributeType": 0, + "mapModelStorage": { + "center": [ + 37.84, + -122.1 + ], + "zoom": 5, + "baseMapLayerName": "Topographic", + "pointsShouldBeVisible": false, + "grid": { + "gridMultiplier": 1, + "visible": true + } + } + }, + "layout": { + "width": 716, + "height": 482, + "left": 5, + "top": 175 + } + } + ], + "contexts": [ + { + "type": "DG.DataContext", + "document": 12, + "guid": 401, + "collections": [ + { + "labels": { + "singleCase": "track", + "pluralCase": "tracks", + "singleCaseWithArticle": "a track", + "setOfCases": "experiment", + "setOfCasesWithArticle": "an experiment" + }, + "name": "Tracks\u0013", + "caseName": "track", + "areParentChildLinksConfigured": true, + "guid": 601, + "attrs": [ + { + "name": "track_id", + "description": "", + "guid": 1001, + "precision": 2 + }, + { + "name": "species", + "description": "", + "guid": 1002, + "precision": 2 + }, + { + "name": "animal_id", + "description": "", + "guid": 1003, + "precision": 2 + }, + { + "name": "speciesColor", + "description": "", + "guid": 1004, + "precision": 2 + }, + { + "name": "uniqueColor", + "description": "", + "guid": 1005, + "precision": 2 + } + ], + "cases": [ + { + "guid": 2001, + "values": { + "track_id": "4007", + "species": "White Shark", + "animal_id": "190600800", + "speciesColor": "#ff0000", + "uniqueColor": "#df6c00" + } + }, + { + "guid": 2002, + "values": { + "track_id": "4003", + "species": "White Shark", + "animal_id": "190502000", + "speciesColor": "#ff0000", + "uniqueColor": "#02c47d" + } + }, + { + "guid": 2003, + "values": { + "track_id": "2005", + "species": "Elephant Seal", + "animal_id": "981", + "speciesColor": "#ff0000", + "uniqueColor": "#8f03bf" + } + }, + { + "guid": 2004, + "values": { + "track_id": "2000", + "species": "Elephant Seal", + "animal_id": "771", + "speciesColor": "#ff0000", + "uniqueColor": "#d40115" + } + } + ] + }, + { + "name": "Track Points", + "caseName": "track point", + "areParentChildLinksConfigured": true, + "parent": 601, + "guid": 602, + "labels": { + "singleCase": "track point", + "pluralCase": "track points", + "singleCaseWithArticle": "a track point", + "setOfCases": "track", + "setOfCasesWithArticle": "a track" + }, + "attrs": [ + { + "name": "latitude", + "description": "", + "guid": 1006, + "precision": 2 + }, + { + "name": "longitude", + "description": "", + "guid": 1007, + "precision": 2 + }, + { + "name": "depth", + "description": "", + "guid": 1008, + "precision": 2 + }, + { + "name": "temperature", + "description": "", + "guid": 1009, + "precision": 2 + }, + { + "name": "curviness", + "description": "", + "guid": 1010, + "precision": 2 + }, + { + "name": "chl", + "description": "", + "guid": 1011, + "precision": 2 + }, + { + "name": "ds", + "description": "", + "guid": 1012, + "precision": 2 + }, + { + "name": "days", + "description": "", + "guid": 1013, + "precision": 2 + } + ], + "cases": [ + { + "parent": 2001, + "guid": 2005, + "values": { + "latitude": "37.59", + "longitude": "-122.91", + "depth": "-52.5", + "temperature": "15.0", + "curviness": "1.0", + "chl": "7.5", + "ds": "1160456400", + "days": 13431 + } + }, + { + "parent": 2001, + "guid": 2006, + "values": { + "latitude": "37.54", + "longitude": "-122.97", + "depth": "-32.5", + "temperature": "15.0", + "curviness": "1.0", + "chl": "4.1", + "ds": "1160542800", + "days": 13432 + } + }, + { + "parent": 2001, + "guid": 2007, + "values": { + "latitude": "37.49", + "longitude": "-123.04", + "depth": "-56.5", + "temperature": "15.0", + "curviness": "1.0", + "chl": "1.4", + "ds": "1160629200", + "days": 13433 + } + }, + { + "parent": 2001, + "guid": 2008, + "values": { + "latitude": "37.49", + "longitude": "-123.07", + "depth": "-39", + "temperature": "15.1", + "curviness": "1.0", + "chl": "1.4", + "ds": "1160715600", + "days": 13434 + } + }, + { + "parent": 2001, + "guid": 2009, + "values": { + "latitude": "37.48", + "longitude": "-123.08", + "depth": "-42", + "temperature": "15.4", + "curviness": "0.0", + "chl": "1.7", + "ds": "1160802000", + "days": 13435 + } + }, + { + "parent": 2001, + "guid": 2010, + "values": { + "latitude": "37.48", + "longitude": "-123.08", + "depth": "-48", + "temperature": "15.1", + "curviness": "1.1", + "chl": "1.7", + "ds": "1160888400", + "days": 13436 + } + }, + { + "parent": 2001, + "guid": 2011, + "values": { + "latitude": "37.48", + "longitude": "-123.08", + "depth": "-40", + "temperature": "15.0", + "curviness": "1.4", + "chl": "1.7", + "ds": "1160974800", + "days": 13437 + } + }, + { + "parent": 2001, + "guid": 2012, + "values": { + "latitude": "37.46", + "longitude": "-123.12", + "depth": "-101.5", + "temperature": "15.2", + "curviness": "1.9", + "chl": "1.3", + "ds": "1161061200", + "days": 13438 + } + }, + { + "parent": 2001, + "guid": 2013, + "values": { + "latitude": "37.39", + "longitude": "-123.22", + "depth": "-102.5", + "temperature": "15.4", + "curviness": "2.2", + "chl": "0.8", + "ds": "1161147600", + "days": 13439 + } + }, + { + "parent": 2001, + "guid": 2014, + "values": { + "latitude": "37.36", + "longitude": "-123.34", + "depth": "-105", + "temperature": "15.4", + "curviness": "1.9", + "chl": "0.6", + "ds": "1161234000", + "days": 13440 + } + }, + { + "parent": 2001, + "guid": 2015, + "values": { + "latitude": "37.38", + "longitude": "-123.41", + "depth": "-72", + "temperature": "14.8", + "curviness": "1.8", + "chl": "0.6", + "ds": "1161320400", + "days": 13441 + } + }, + { + "parent": 2001, + "guid": 2016, + "values": { + "latitude": "37.45", + "longitude": "-123.38", + "depth": "-56", + "temperature": "14.8", + "curviness": "1.8", + "chl": "0.6", + "ds": "1161406800", + "days": 13442 + } + }, + { + "parent": 2001, + "guid": 2017, + "values": { + "latitude": "37.49", + "longitude": "-123.34", + "depth": "-52.5", + "temperature": "13.9", + "curviness": "1.9", + "chl": "0.7", + "ds": "1161493200", + "days": 13443 + } + }, + { + "parent": 2001, + "guid": 2018, + "values": { + "latitude": "37.46", + "longitude": "-123.34", + "depth": "-88.5", + "temperature": "14.0", + "curviness": "2.3", + "chl": "0.7", + "ds": "1161579600", + "days": 13444 + } + }, + { + "parent": 2001, + "guid": 2019, + "values": { + "latitude": "37.38", + "longitude": "-123.42", + "depth": "-59", + "temperature": "14.3", + "curviness": "4.6", + "chl": "0.6", + "ds": "1161666000", + "days": 13445 + } + }, + { + "parent": 2001, + "guid": 2020, + "values": { + "latitude": "37.34", + "longitude": "-123.48", + "depth": "-76.5", + "temperature": "14.9", + "curviness": "5.3", + "chl": "0.7", + "ds": "1161752400", + "days": 13446 + } + }, + { + "parent": 2001, + "guid": 2021, + "values": { + "latitude": "37.33", + "longitude": "-123.49", + "depth": "-128.5", + "temperature": "15.1", + "curviness": "3.7", + "chl": "0.7", + "ds": "1161838800", + "days": 13447 + } + }, + { + "parent": 2001, + "guid": 2022, + "values": { + "latitude": "37.33", + "longitude": "-123.48", + "depth": "-85.5", + "temperature": "15.1", + "curviness": "2.5", + "chl": "0.7", + "ds": "1161925200", + "days": 13448 + } + }, + { + "parent": 2001, + "guid": 2023, + "values": { + "latitude": "37.33", + "longitude": "-123.48", + "depth": "-101", + "temperature": "14.9", + "curviness": "1.8", + "chl": "0.7", + "ds": "1162011600", + "days": 13449 + } + }, + { + "parent": 2001, + "guid": 2024, + "values": { + "latitude": "37.4", + "longitude": "-123.46", + "depth": "-59.5", + "temperature": "14.7", + "curviness": "1.3", + "chl": "0.6", + "ds": "1162098000", + "days": 13450 + } + }, + { + "parent": 2001, + "guid": 2025, + "values": { + "latitude": "37.46", + "longitude": "-123.46", + "depth": "-63.5", + "temperature": "14.7", + "curviness": "1.1", + "chl": "0.6", + "ds": "1162188000", + "days": 13451 + } + }, + { + "parent": 2001, + "guid": 2026, + "values": { + "latitude": "37.54", + "longitude": "-123.5", + "depth": "-46", + "temperature": "14.5", + "curviness": "1.0", + "chl": "0.6", + "ds": "1162274400", + "days": 13452 + } + }, + { + "parent": 2001, + "guid": 2027, + "values": { + "latitude": "37.67", + "longitude": "-123.51", + "depth": "-19.5", + "temperature": "14.7", + "curviness": "1.1", + "chl": "0.7", + "ds": "1162360800", + "days": 13453 + } + }, + { + "parent": 2001, + "guid": 2028, + "values": { + "latitude": "37.8", + "longitude": "-123.49", + "depth": "-28", + "temperature": "14.3", + "curviness": "1.1", + "chl": "1.3", + "ds": "1162447200", + "days": 13454 + } + }, + { + "parent": 2001, + "guid": 2029, + "values": { + "latitude": "37.95", + "longitude": "-123.46", + "depth": "-41", + "temperature": "13.9", + "curviness": "1.2", + "chl": "1.9", + "ds": "1162533600", + "days": 13455 + } + }, + { + "parent": 2001, + "guid": 2030, + "values": { + "latitude": "38.02", + "longitude": "-123.48", + "depth": "-30.5", + "temperature": "14.2", + "curviness": "1.3", + "chl": "2.1", + "ds": "1162620000", + "days": 13456 + } + }, + { + "parent": 2001, + "guid": 2031, + "values": { + "latitude": "38.05", + "longitude": "-123.5", + "depth": "-19", + "temperature": "14.1", + "curviness": "1.3", + "chl": "5.1", + "ds": "1162706400", + "days": 13457 + } + }, + { + "parent": 2001, + "guid": 2032, + "values": { + "latitude": "38.05", + "longitude": "-123.55", + "depth": "-28.5", + "temperature": "14.3", + "curviness": "1.5", + "chl": "2.6", + "ds": "1162792800", + "days": 13458 + } + }, + { + "parent": 2001, + "guid": 2033, + "values": { + "latitude": "38.09", + "longitude": "-123.5", + "depth": "-34.5", + "temperature": "13.7", + "curviness": "1.7", + "chl": "3.8", + "ds": "1162879200", + "days": 13459 + } + }, + { + "parent": 2001, + "guid": 2034, + "values": { + "latitude": "38.13", + "longitude": "-123.39", + "depth": "-76", + "temperature": "13.3", + "curviness": "2.1", + "chl": "3.6", + "ds": "1162965600", + "days": 13460 + } + }, + { + "parent": 2001, + "guid": 2035, + "values": { + "latitude": "38.15", + "longitude": "-123.27", + "depth": "-46.5", + "temperature": "13.8", + "curviness": "2.6", + "chl": "5.2", + "ds": "1163052000", + "days": 13461 + } + }, + { + "parent": 2001, + "guid": 2036, + "values": { + "latitude": "38.14", + "longitude": "-123.2", + "depth": "-23.5", + "temperature": "13.4", + "curviness": "2.6", + "chl": "5.2", + "ds": "1163138400", + "days": 13462 + } + }, + { + "parent": 2001, + "guid": 2037, + "values": { + "latitude": "38.11", + "longitude": "-123.19", + "depth": "-36.5", + "temperature": "12.8", + "curviness": "1.9", + "chl": "7.4", + "ds": "1163224800", + "days": 13463 + } + }, + { + "parent": 2001, + "guid": 2038, + "values": { + "latitude": "38.11", + "longitude": "-123.22", + "depth": "-31", + "temperature": "12.6", + "curviness": "2.1", + "chl": "5.7", + "ds": "1163311200", + "days": 13464 + } + }, + { + "parent": 2001, + "guid": 2039, + "values": { + "latitude": "38.13", + "longitude": "-123.24", + "depth": "-34.5", + "temperature": "12.7", + "curviness": "3.1", + "chl": "5.7", + "ds": "1163397600", + "days": 13465 + } + }, + { + "parent": 2001, + "guid": 2040, + "values": { + "latitude": "38.15", + "longitude": "-123.3", + "depth": "-28.5", + "temperature": "13.1", + "curviness": "4.7", + "chl": "3.8", + "ds": "1163484000", + "days": 13466 + } + }, + { + "parent": 2001, + "guid": 2041, + "values": { + "latitude": "38.2", + "longitude": "-123.32", + "depth": "-28", + "temperature": "13.1", + "curviness": "2.9", + "chl": "5.0", + "ds": "1163570400", + "days": 13467 + } + }, + { + "parent": 2001, + "guid": 2042, + "values": { + "latitude": "38.23", + "longitude": "-123.27", + "depth": "-51", + "temperature": "13.2", + "curviness": "2.6", + "chl": "7.3", + "ds": "1163656800", + "days": 13468 + } + }, + { + "parent": 2001, + "guid": 2043, + "values": { + "latitude": "38.21", + "longitude": "-123.22", + "depth": "-47", + "temperature": "13.1", + "curviness": "2.3", + "chl": "9.8", + "ds": "1163743200", + "days": 13469 + } + }, + { + "parent": 2001, + "guid": 2044, + "values": { + "latitude": "38.15", + "longitude": "-123.19", + "depth": "-32.5", + "temperature": "13.6", + "curviness": "2.3", + "chl": "5.2", + "ds": "1163829600", + "days": 13470 + } + }, + { + "parent": 2001, + "guid": 2045, + "values": { + "latitude": "38.05", + "longitude": "-123.22", + "depth": "-48.5", + "temperature": "13.7", + "curviness": "1.9", + "chl": "4.8", + "ds": "1163916000", + "days": 13471 + } + }, + { + "parent": 2001, + "guid": 2046, + "values": { + "latitude": "37.96", + "longitude": "-123.24", + "depth": "-51.5", + "temperature": "14.1", + "curviness": "1.5", + "chl": "4.2", + "ds": "1164002400", + "days": 13472 + } + }, + { + "parent": 2001, + "guid": 2047, + "values": { + "latitude": "37.89", + "longitude": "-123.24", + "depth": "-71", + "temperature": "14.2", + "curviness": "1.5", + "chl": "4.0", + "ds": "1164088800", + "days": 13473 + } + }, + { + "parent": 2001, + "guid": 2048, + "values": { + "latitude": "37.85", + "longitude": "-123.22", + "depth": "-30", + "temperature": "14.0", + "curviness": "1.8", + "chl": "2.7", + "ds": "1164175200", + "days": 13474 + } + }, + { + "parent": 2001, + "guid": 2049, + "values": { + "latitude": "37.87", + "longitude": "-123.18", + "depth": "-35.5", + "temperature": "13.8", + "curviness": "2.3", + "chl": "3.1", + "ds": "1164261600", + "days": 13475 + } + }, + { + "parent": 2001, + "guid": 2050, + "values": { + "latitude": "37.87", + "longitude": "-123.15", + "depth": "-80.5", + "temperature": "13.6", + "curviness": "3.7", + "chl": "3.3", + "ds": "1164348000", + "days": 13476 + } + }, + { + "parent": 2001, + "guid": 2051, + "values": { + "latitude": "37.88", + "longitude": "-123.14", + "depth": "-105.5", + "temperature": "13.2", + "curviness": "2.2", + "chl": "3.3", + "ds": "1164434400", + "days": 13477 + } + }, + { + "parent": 2001, + "guid": 2052, + "values": { + "latitude": "37.91", + "longitude": "-123.1", + "depth": "-45.5", + "temperature": "13.0", + "curviness": "1.5", + "chl": "6.7", + "ds": "1164520800", + "days": 13478 + } + }, + { + "parent": 2001, + "guid": 2053, + "values": { + "latitude": "37.94", + "longitude": "-123.07", + "depth": "-46", + "temperature": "13.0", + "curviness": "1.3", + "chl": "5.7", + "ds": "1164607200", + "days": 13479 + } + }, + { + "parent": 2001, + "guid": 2054, + "values": { + "latitude": "37.96", + "longitude": "-123.08", + "depth": "-69.5", + "temperature": "12.8", + "curviness": "1.5", + "chl": "7.2", + "ds": "1164693600", + "days": 13480 + } + }, + { + "parent": 2001, + "guid": 2055, + "values": { + "latitude": "38.01", + "longitude": "-123.08", + "depth": "-112.5", + "temperature": "12.2", + "curviness": "1.6", + "chl": "9.1", + "ds": "1164780000", + "days": 13481 + } + }, + { + "parent": 2001, + "guid": 2056, + "values": { + "latitude": "38.08", + "longitude": "-123.06", + "depth": "-32.5", + "temperature": "12.2", + "curviness": "1.5", + "chl": "14.9", + "ds": "1164866400", + "days": 13482 + } + }, + { + "parent": 2001, + "guid": 2057, + "values": { + "latitude": "38.11", + "longitude": "-123.09", + "depth": "-34.5", + "temperature": "12.1", + "curviness": "1.3", + "chl": "9.9", + "ds": "1164952800", + "days": 13483 + } + }, + { + "parent": 2001, + "guid": 2058, + "values": { + "latitude": "38.16", + "longitude": "-123.14", + "depth": "-32.5", + "temperature": "12.0", + "curviness": "1.2", + "chl": "4.6", + "ds": "1165039200", + "days": 13484 + } + }, + { + "parent": 2001, + "guid": 2059, + "values": { + "latitude": "38.16", + "longitude": "-123.25", + "depth": "-70", + "temperature": "12.0", + "curviness": "1.5", + "chl": "4.0", + "ds": "1165125600", + "days": 13485 + } + }, + { + "parent": 2001, + "guid": 2060, + "values": { + "latitude": "38.16", + "longitude": "-123.41", + "depth": "-49", + "temperature": "12.2", + "curviness": "2.0", + "chl": "1.4", + "ds": "1165212000", + "days": 13486 + } + }, + { + "parent": 2001, + "guid": 2061, + "values": { + "latitude": "38.18", + "longitude": "-123.58", + "depth": "-51.5", + "temperature": "12.7", + "curviness": "2.9", + "chl": "1.1", + "ds": "1165298400", + "days": 13487 + } + }, + { + "parent": 2001, + "guid": 2062, + "values": { + "latitude": "38.23", + "longitude": "-123.7", + "depth": "-44.5", + "temperature": "12.7", + "curviness": "5.3", + "chl": "1.1", + "ds": "1165384800", + "days": 13488 + } + }, + { + "parent": 2001, + "guid": 2063, + "values": { + "latitude": "38.29", + "longitude": "-123.71", + "depth": "-55", + "temperature": "12.4", + "curviness": "9.2", + "chl": "0.9", + "ds": "1165471200", + "days": 13489 + } + }, + { + "parent": 2001, + "guid": 2064, + "values": { + "latitude": "38.34", + "longitude": "-123.61", + "depth": "-57.5", + "temperature": "12.7", + "curviness": "5.0", + "chl": "1.2", + "ds": "1165557600", + "days": 13490 + } + }, + { + "parent": 2001, + "guid": 2065, + "values": { + "latitude": "38.36", + "longitude": "-123.46", + "depth": "-73.5", + "temperature": "12.2", + "curviness": "3.2", + "chl": "2.0", + "ds": "1165644000", + "days": 13491 + } + }, + { + "parent": 2001, + "guid": 2066, + "values": { + "latitude": "38.33", + "longitude": "-123.32", + "depth": "-74.5", + "temperature": "12.4", + "curviness": "2.4", + "chl": "3.2", + "ds": "1165730400", + "days": 13492 + } + }, + { + "parent": 2001, + "guid": 2067, + "values": { + "latitude": "38.25", + "longitude": "-123.25", + "depth": "-47", + "temperature": "12.5", + "curviness": "1.9", + "chl": "2.6", + "ds": "1165816800", + "days": 13493 + } + }, + { + "parent": 2001, + "guid": 2068, + "values": { + "latitude": "38.1", + "longitude": "-123.27", + "depth": "-49", + "temperature": "12.9", + "curviness": "1.7", + "chl": "3.3", + "ds": "1165903200", + "days": 13494 + } + }, + { + "parent": 2001, + "guid": 2069, + "values": { + "latitude": "37.94", + "longitude": "-123.36", + "depth": "-42.5", + "temperature": "13.0", + "curviness": "1.5", + "chl": "1.6", + "ds": "1165989600", + "days": 13495 + } + }, + { + "parent": 2001, + "guid": 2070, + "values": { + "latitude": "37.77", + "longitude": "-123.5", + "depth": "-78", + "temperature": "12.8", + "curviness": "1.3", + "chl": "0.9", + "ds": "1166076000", + "days": 13496 + } + }, + { + "parent": 2001, + "guid": 2071, + "values": { + "latitude": "37.64", + "longitude": "-123.61", + "depth": "-63", + "temperature": "12.4", + "curviness": "1.2", + "chl": "0.7", + "ds": "1166162400", + "days": 13497 + } + }, + { + "parent": 2001, + "guid": 2072, + "values": { + "latitude": "37.6", + "longitude": "-123.6", + "depth": "-39.5", + "temperature": "12.5", + "curviness": "1.2", + "chl": "0.6", + "ds": "1166248800", + "days": 13498 + } + }, + { + "parent": 2001, + "guid": 2073, + "values": { + "latitude": "37.58", + "longitude": "-123.54", + "depth": "-44.5", + "temperature": "12.6", + "curviness": "1.3", + "chl": "0.7", + "ds": "1166335200", + "days": 13499 + } + }, + { + "parent": 2001, + "guid": 2074, + "values": { + "latitude": "37.54", + "longitude": "-123.46", + "depth": "-44", + "temperature": "12.3", + "curviness": "1.5", + "chl": "0.8", + "ds": "1166421600", + "days": 13500 + } + }, + { + "parent": 2001, + "guid": 2075, + "values": { + "latitude": "37.5", + "longitude": "-123.38", + "depth": "-55", + "temperature": "12.3", + "curviness": "1.4", + "chl": "1.4", + "ds": "1166508000", + "days": 13501 + } + }, + { + "parent": 2001, + "guid": 2076, + "values": { + "latitude": "37.41", + "longitude": "-123.34", + "depth": "-53.5", + "temperature": "12.5", + "curviness": "1.2", + "chl": "1.8", + "ds": "1166594400", + "days": 13502 + } + }, + { + "parent": 2001, + "guid": 2077, + "values": { + "latitude": "37.33", + "longitude": "-123.32", + "depth": "-56.5", + "temperature": "12.2", + "curviness": "1.2", + "chl": "1.7", + "ds": "1166680800", + "days": 13503 + } + }, + { + "parent": 2001, + "guid": 2078, + "values": { + "latitude": "37.31", + "longitude": "-123.25", + "depth": "-67", + "temperature": "12.1", + "curviness": "1.3", + "chl": "1.7", + "ds": "1166767200", + "days": 13504 + } + }, + { + "parent": 2001, + "guid": 2079, + "values": { + "latitude": "37.34", + "longitude": "-123.11", + "depth": "-38", + "temperature": "12.1", + "curviness": "1.4", + "chl": "3.1", + "ds": "1166853600", + "days": 13505 + } + }, + { + "parent": 2001, + "guid": 2080, + "values": { + "latitude": "37.33", + "longitude": "-122.98", + "depth": "-42", + "temperature": "12.3", + "curviness": "1.5", + "chl": "2.2", + "ds": "1166940000", + "days": 13506 + } + }, + { + "parent": 2001, + "guid": 2081, + "values": { + "latitude": "37.28", + "longitude": "-122.93", + "depth": "-58.5", + "temperature": "12.4", + "curviness": "1.6", + "chl": "1.1", + "ds": "1167026400", + "days": 13507 + } + }, + { + "parent": 2001, + "guid": 2082, + "values": { + "latitude": "37.21", + "longitude": "-122.92", + "depth": "-82.5", + "temperature": "12.1", + "curviness": "1.8", + "chl": "0.9", + "ds": "1167112800", + "days": 13508 + } + }, + { + "parent": 2001, + "guid": 2083, + "values": { + "latitude": "37.13", + "longitude": "-122.94", + "depth": "-183", + "temperature": "11.9", + "curviness": "1.8", + "chl": "0.9", + "ds": "1167199200", + "days": 13509 + } + }, + { + "parent": 2001, + "guid": 2084, + "values": { + "latitude": "37.03", + "longitude": "-122.99", + "depth": "-86", + "temperature": "11.8", + "curviness": "1.4", + "chl": "0.7", + "ds": "1167285600", + "days": 13510 + } + }, + { + "parent": 2001, + "guid": 2085, + "values": { + "latitude": "36.96", + "longitude": "-123.06", + "depth": "-45", + "temperature": "11.6", + "curviness": "1.2", + "chl": "1.1", + "ds": "1167372000", + "days": 13511 + } + }, + { + "parent": 2001, + "guid": 2086, + "values": { + "latitude": "36.93", + "longitude": "-123.11", + "depth": "-70", + "temperature": "11.5", + "curviness": "1.3", + "chl": "1.1", + "ds": "1167458400", + "days": 13512 + } + }, + { + "parent": 2001, + "guid": 2087, + "values": { + "latitude": "36.92", + "longitude": "-123.15", + "depth": "-72.5", + "temperature": "12.2", + "curviness": "1.8", + "chl": "0.7", + "ds": "1167544800", + "days": 13513 + } + }, + { + "parent": 2001, + "guid": 2088, + "values": { + "latitude": "36.88", + "longitude": "-123.2", + "depth": "-43.5", + "temperature": "11.6", + "curviness": "3.0", + "chl": "0.7", + "ds": "1167631200", + "days": 13514 + } + }, + { + "parent": 2001, + "guid": 2089, + "values": { + "latitude": "36.83", + "longitude": "-123.28", + "depth": "-137", + "temperature": "11.9", + "curviness": "5.4", + "chl": "0.7", + "ds": "1167717600", + "days": 13515 + } + }, + { + "parent": 2001, + "guid": 2090, + "values": { + "latitude": "36.82", + "longitude": "-123.32", + "depth": "-62.5", + "temperature": "11.8", + "curviness": "3.6", + "chl": "0.7", + "ds": "1167804000", + "days": 13516 + } + }, + { + "parent": 2001, + "guid": 2091, + "values": { + "latitude": "36.86", + "longitude": "-123.27", + "depth": "-51", + "temperature": "11.2", + "curviness": "2.4", + "chl": "0.7", + "ds": "1167890400", + "days": 13517 + } + }, + { + "parent": 2001, + "guid": 2092, + "values": { + "latitude": "36.9", + "longitude": "-123.18", + "depth": "-103.5", + "temperature": "11.4", + "curviness": "1.9", + "chl": "0.7", + "ds": "1167976800", + "days": 13518 + } + }, + { + "parent": 2001, + "guid": 2093, + "values": { + "latitude": "36.93", + "longitude": "-123.08", + "depth": "-41.5", + "temperature": "11.5", + "curviness": "1.6", + "chl": "0.7", + "ds": "1168063200", + "days": 13519 + } + }, + { + "parent": 2001, + "guid": 2094, + "values": { + "latitude": "36.91", + "longitude": "-122.98", + "depth": "-36.5", + "temperature": "11.3", + "curviness": "1.4", + "chl": "0.7", + "ds": "1168149600", + "days": 13520 + } + }, + { + "parent": 2001, + "guid": 2095, + "values": { + "latitude": "36.84", + "longitude": "-122.88", + "depth": "-35.5", + "temperature": "11.7", + "curviness": "1.3", + "chl": "0.7", + "ds": "1168236000", + "days": 13521 + } + }, + { + "parent": 2001, + "guid": 2096, + "values": { + "latitude": "36.67", + "longitude": "-122.86", + "depth": "-38", + "temperature": "11.6", + "curviness": "1.2", + "chl": "0.7", + "ds": "1168322400", + "days": 13522 + } + }, + { + "parent": 2001, + "guid": 2097, + "values": { + "latitude": "36.4", + "longitude": "-122.93", + "depth": "-35", + "temperature": "11.6", + "curviness": "1.1", + "chl": "0.6", + "ds": "1168408800", + "days": 13523 + } + }, + { + "parent": 2001, + "guid": 2098, + "values": { + "latitude": "36.06", + "longitude": "-123.04", + "depth": "-46", + "temperature": "11.2", + "curviness": "1.1", + "chl": "0.6", + "ds": "1168495200", + "days": 13524 + } + }, + { + "parent": 2001, + "guid": 2099, + "values": { + "latitude": "35.67", + "longitude": "-123.17", + "depth": "-384.5", + "temperature": "11.2", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168581600", + "days": 13525 + } + }, + { + "parent": 2001, + "guid": 2100, + "values": { + "latitude": "35.36", + "longitude": "-123.17", + "depth": "-247", + "temperature": "11.3", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168668000", + "days": 13526 + } + }, + { + "parent": 2001, + "guid": 2101, + "values": { + "latitude": "35.04", + "longitude": "-123.04", + "depth": "-393", + "temperature": "11.5", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168754400", + "days": 13527 + } + }, + { + "parent": 2001, + "guid": 2102, + "values": { + "latitude": "34.62", + "longitude": "-122.92", + "depth": "-366.5", + "temperature": "12.0", + "curviness": "1.0", + "chl": "0.7", + "ds": "1168840800", + "days": 13528 + } + }, + { + "parent": 2001, + "guid": 2103, + "values": { + "latitude": "34.04", + "longitude": "-122.93", + "depth": "-99", + "temperature": "12.4", + "curviness": "1.0", + "chl": "0.8", + "ds": "1168927200", + "days": 13529 + } + }, + { + "parent": 2001, + "guid": 2104, + "values": { + "latitude": "33.33", + "longitude": "-123.09", + "depth": "-420.5", + "temperature": "12.6", + "curviness": "1.0", + "chl": "0.7", + "ds": "1169013600", + "days": 13530 + } + }, + { + "parent": 2001, + "guid": 2105, + "values": { + "latitude": "32.5", + "longitude": "-123.46", + "depth": "-211.5", + "temperature": "13.3", + "curviness": "1.0", + "chl": "0.6", + "ds": "1169100000", + "days": 13531 + } + }, + { + "parent": 2001, + "guid": 2106, + "values": { + "latitude": "31.6", + "longitude": "-123.97", + "depth": "-403", + "temperature": "13.9", + "curviness": "1.0", + "chl": "0.3", + "ds": "1169186400", + "days": 13532 + } + }, + { + "parent": 2001, + "guid": 2107, + "values": { + "latitude": "30.74", + "longitude": "-124.55", + "depth": "-429.5", + "temperature": "15.1", + "curviness": "1.0", + "chl": "0.2", + "ds": "1169272800", + "days": 13533 + } + }, + { + "parent": 2001, + "guid": 2108, + "values": { + "latitude": "29.91", + "longitude": "-125.12", + "depth": "-364.5", + "temperature": "16.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169359200", + "days": 13534 + } + }, + { + "parent": 2001, + "guid": 2109, + "values": { + "latitude": "29.11", + "longitude": "-125.69", + "depth": "-365.5", + "temperature": "17.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169445600", + "days": 13535 + } + }, + { + "parent": 2001, + "guid": 2110, + "values": { + "latitude": "28.4", + "longitude": "-126.26", + "depth": "-275", + "temperature": "17.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169532000", + "days": 13536 + } + }, + { + "parent": 2001, + "guid": 2111, + "values": { + "latitude": "27.66", + "longitude": "-126.89", + "depth": "-399.5", + "temperature": "17.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169618400", + "days": 13537 + } + }, + { + "parent": 2001, + "guid": 2112, + "values": { + "latitude": "26.93", + "longitude": "-127.59", + "depth": "-445.5", + "temperature": "18.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169704800", + "days": 13538 + } + }, + { + "parent": 2001, + "guid": 2113, + "values": { + "latitude": "26.24", + "longitude": "-128.4", + "depth": "-419.5", + "temperature": "18.7", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169791200", + "days": 13539 + } + }, + { + "parent": 2001, + "guid": 2114, + "values": { + "latitude": "25.71", + "longitude": "-129.13", + "depth": "-429", + "temperature": "19.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169877600", + "days": 13540 + } + }, + { + "parent": 2001, + "guid": 2115, + "values": { + "latitude": "25.2", + "longitude": "-129.82", + "depth": "-802.5", + "temperature": "19.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1169964000", + "days": 13541 + } + }, + { + "parent": 2001, + "guid": 2116, + "values": { + "latitude": "24.65", + "longitude": "-130.53", + "depth": "-443", + "temperature": "19.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170050400", + "days": 13542 + } + }, + { + "parent": 2001, + "guid": 2117, + "values": { + "latitude": "24.16", + "longitude": "-131.18", + "depth": "-423.5", + "temperature": "19.8", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170136800", + "days": 13543 + } + }, + { + "parent": 2001, + "guid": 2118, + "values": { + "latitude": "23.78", + "longitude": "-131.68", + "depth": "-410", + "temperature": "19.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170223200", + "days": 13544 + } + }, + { + "parent": 2001, + "guid": 2119, + "values": { + "latitude": "23.52", + "longitude": "-132.02", + "depth": "-289.5", + "temperature": "20.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170309600", + "days": 13545 + } + }, + { + "parent": 2001, + "guid": 2120, + "values": { + "latitude": "23.23", + "longitude": "-132.33", + "depth": "-386", + "temperature": "20.5", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170396000", + "days": 13546 + } + }, + { + "parent": 2001, + "guid": 2121, + "values": { + "latitude": "22.94", + "longitude": "-132.63", + "depth": "-373", + "temperature": "20.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170482400", + "days": 13547 + } + }, + { + "parent": 2001, + "guid": 2122, + "values": { + "latitude": "22.75", + "longitude": "-132.89", + "depth": "-212.5", + "temperature": "20.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170568800", + "days": 13548 + } + }, + { + "parent": 2001, + "guid": 2123, + "values": { + "latitude": "22.61", + "longitude": "-133.11", + "depth": "-490", + "temperature": "21.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170655200", + "days": 13549 + } + }, + { + "parent": 2001, + "guid": 2124, + "values": { + "latitude": "22.46", + "longitude": "-133.33", + "depth": "-470.5", + "temperature": "21.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170741600", + "days": 13550 + } + }, + { + "parent": 2001, + "guid": 2125, + "values": { + "latitude": "22.27", + "longitude": "-133.57", + "depth": "-475.5", + "temperature": "21.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170828000", + "days": 13551 + } + }, + { + "parent": 2001, + "guid": 2126, + "values": { + "latitude": "22.07", + "longitude": "-133.78", + "depth": "-479", + "temperature": "21.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1170914400", + "days": 13552 + } + }, + { + "parent": 2001, + "guid": 2127, + "values": { + "latitude": "21.88", + "longitude": "-133.96", + "depth": "-397.5", + "temperature": "22.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1171000800", + "days": 13553 + } + }, + { + "parent": 2001, + "guid": 2128, + "values": { + "latitude": "21.68", + "longitude": "-134.13", + "depth": "-483.5", + "temperature": "22.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1171087200", + "days": 13554 + } + }, + { + "parent": 2001, + "guid": 2129, + "values": { + "latitude": "21.49", + "longitude": "-134.29", + "depth": "-448", + "temperature": "22.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1171173600", + "days": 13555 + } + }, + { + "parent": 2001, + "guid": 2130, + "values": { + "latitude": "21.26", + "longitude": "-134.46", + "depth": "-487.5", + "temperature": "22.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1171260000", + "days": 13556 + } + }, + { + "parent": 2001, + "guid": 2131, + "values": { + "latitude": "21.02", + "longitude": "-134.64", + "depth": "-408.5", + "temperature": "22.0", + "curviness": "1.1", + "chl": "0.1", + "ds": "1171346400", + "days": 13557 + } + }, + { + "parent": 2001, + "guid": 2132, + "values": { + "latitude": "20.76", + "longitude": "-134.85", + "depth": "-421.5", + "temperature": "21.7", + "curviness": "1.2", + "chl": "0.1", + "ds": "1171432800", + "days": 13558 + } + }, + { + "parent": 2001, + "guid": 2133, + "values": { + "latitude": "20.49", + "longitude": "-135.13", + "depth": "-427", + "temperature": "21.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1171519200", + "days": 13559 + } + }, + { + "parent": 2001, + "guid": 2134, + "values": { + "latitude": "20.3", + "longitude": "-135.46", + "depth": "-256.5", + "temperature": "21.9", + "curviness": "1.7", + "chl": "0.1", + "ds": "1171605600", + "days": 13560 + } + }, + { + "parent": 2001, + "guid": 2135, + "values": { + "latitude": "20.26", + "longitude": "-135.86", + "depth": "-438", + "temperature": "22.1", + "curviness": "2.1", + "chl": "0.1", + "ds": "1171692000", + "days": 13561 + } + }, + { + "parent": 2001, + "guid": 2136, + "values": { + "latitude": "20.37", + "longitude": "-136.2", + "depth": "-459", + "temperature": "22.0", + "curviness": "2.5", + "chl": "0.1", + "ds": "1171778400", + "days": 13562 + } + }, + { + "parent": 2001, + "guid": 2137, + "values": { + "latitude": "20.62", + "longitude": "-136.45", + "depth": "-424.5", + "temperature": "21.4", + "curviness": "2.5", + "chl": "0.1", + "ds": "1171864800", + "days": 13563 + } + }, + { + "parent": 2001, + "guid": 2138, + "values": { + "latitude": "20.95", + "longitude": "-136.54", + "depth": "-464.5", + "temperature": "21.2", + "curviness": "1.9", + "chl": "0.1", + "ds": "1171951200", + "days": 13564 + } + }, + { + "parent": 2001, + "guid": 2139, + "values": { + "latitude": "21.31", + "longitude": "-136.45", + "depth": "-463", + "temperature": "20.7", + "curviness": "1.5", + "chl": "0.1", + "ds": "1172037600", + "days": 13565 + } + }, + { + "parent": 2001, + "guid": 2140, + "values": { + "latitude": "21.63", + "longitude": "-136.21", + "depth": "-446.5", + "temperature": "20.5", + "curviness": "1.3", + "chl": "0.1", + "ds": "1172124000", + "days": 13566 + } + }, + { + "parent": 2001, + "guid": 2141, + "values": { + "latitude": "21.93", + "longitude": "-135.86", + "depth": "-406.5", + "temperature": "20.6", + "curviness": "1.2", + "chl": "0.1", + "ds": "1172210400", + "days": 13567 + } + }, + { + "parent": 2001, + "guid": 2142, + "values": { + "latitude": "22.27", + "longitude": "-135.33", + "depth": "-436", + "temperature": "20.6", + "curviness": "1.2", + "chl": "0.1", + "ds": "1172296800", + "days": 13568 + } + }, + { + "parent": 2001, + "guid": 2143, + "values": { + "latitude": "22.69", + "longitude": "-134.59", + "depth": "-467", + "temperature": "20.8", + "curviness": "1.1", + "chl": "0.1", + "ds": "1172383200", + "days": 13569 + } + }, + { + "parent": 2001, + "guid": 2144, + "values": { + "latitude": "22.99", + "longitude": "-133.81", + "depth": "-476", + "temperature": "20.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1172469600", + "days": 13570 + } + }, + { + "parent": 2001, + "guid": 2145, + "values": { + "latitude": "23.06", + "longitude": "-133.18", + "depth": "-462", + "temperature": "20.4", + "curviness": "1.1", + "chl": "0.1", + "ds": "1172556000", + "days": 13571 + } + }, + { + "parent": 2001, + "guid": 2146, + "values": { + "latitude": "22.96", + "longitude": "-132.72", + "depth": "-449", + "temperature": "20.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1172642400", + "days": 13572 + } + }, + { + "parent": 2001, + "guid": 2147, + "values": { + "latitude": "22.81", + "longitude": "-132.37", + "depth": "-411", + "temperature": "20.4", + "curviness": "1.1", + "chl": "0.1", + "ds": "1172728800", + "days": 13573 + } + }, + { + "parent": 2001, + "guid": 2148, + "values": { + "latitude": "22.72", + "longitude": "-132.06", + "depth": "-492.5", + "temperature": "20.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1172815200", + "days": 13574 + } + }, + { + "parent": 2001, + "guid": 2149, + "values": { + "latitude": "22.75", + "longitude": "-131.63", + "depth": "-445", + "temperature": "19.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1172901600", + "days": 13575 + } + }, + { + "parent": 2001, + "guid": 2150, + "values": { + "latitude": "22.74", + "longitude": "-131.32", + "depth": "-451", + "temperature": "19.5", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1172988000", + "days": 13576 + } + }, + { + "parent": 2001, + "guid": 2151, + "values": { + "latitude": "22.75", + "longitude": "-131.05", + "depth": "-467", + "temperature": "19.3", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1173074400", + "days": 13577 + } + }, + { + "parent": 2001, + "guid": 2152, + "values": { + "latitude": "22.83", + "longitude": "-130.8", + "depth": "-448.5", + "temperature": "19.8", + "curviness": "1.1", + "chl": "0.1", + "ds": "1173160800", + "days": 13578 + } + }, + { + "parent": 2001, + "guid": 2153, + "values": { + "latitude": "22.94", + "longitude": "-130.57", + "depth": "-430.5", + "temperature": "20.1", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1173247200", + "days": 13579 + } + }, + { + "parent": 2001, + "guid": 2154, + "values": { + "latitude": "22.98", + "longitude": "-130.46", + "depth": "-442", + "temperature": "20.2", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1173333600", + "days": 13580 + } + }, + { + "parent": 2001, + "guid": 2155, + "values": { + "latitude": "23.06", + "longitude": "-130.41", + "depth": "-388.5", + "temperature": "20.2", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1173420000", + "days": 13581 + } + }, + { + "parent": 2001, + "guid": 2156, + "values": { + "latitude": "23.22", + "longitude": "-130.33", + "depth": "-433.5", + "temperature": "20.1", + "curviness": "1.4", + "chl": "0.1", + "ds": "1173506400", + "days": 13582 + } + }, + { + "parent": 2001, + "guid": 2157, + "values": { + "latitude": "23.42", + "longitude": "-130.23", + "depth": "-440", + "temperature": "20.0", + "curviness": "2.1", + "chl": "0.1", + "ds": "1173592800", + "days": 13583 + } + }, + { + "parent": 2001, + "guid": 2158, + "values": { + "latitude": "23.62", + "longitude": "-130.16", + "depth": "-441", + "temperature": "19.9", + "curviness": "3.6", + "chl": "0.1", + "ds": "1173675600", + "days": 13584 + } + }, + { + "parent": 2001, + "guid": 2159, + "values": { + "latitude": "23.77", + "longitude": "-130.13", + "depth": "-603.5", + "temperature": "19.5", + "curviness": "9.7", + "chl": "0.1", + "ds": "1173762000", + "days": 13585 + } + }, + { + "parent": 2001, + "guid": 2160, + "values": { + "latitude": "23.78", + "longitude": "-130.18", + "depth": "-467", + "temperature": "19.6", + "curviness": "8.2", + "chl": "0.1", + "ds": "1173848400", + "days": 13586 + } + }, + { + "parent": 2001, + "guid": 2161, + "values": { + "latitude": "23.67", + "longitude": "-130.31", + "depth": "-416", + "temperature": "19.8", + "curviness": "3.1", + "chl": "0.1", + "ds": "1173934800", + "days": 13587 + } + }, + { + "parent": 2001, + "guid": 2162, + "values": { + "latitude": "23.5", + "longitude": "-130.39", + "depth": "-425.5", + "temperature": "19.7", + "curviness": "2.0", + "chl": "0.1", + "ds": "1174021200", + "days": 13588 + } + }, + { + "parent": 2001, + "guid": 2163, + "values": { + "latitude": "23.32", + "longitude": "-130.37", + "depth": "-384", + "temperature": "19.6", + "curviness": "2.0", + "chl": "0.1", + "ds": "1174107600", + "days": 13589 + } + }, + { + "parent": 2001, + "guid": 2164, + "values": { + "latitude": "23.1", + "longitude": "-130.33", + "depth": "-553.5", + "temperature": "20.3", + "curviness": "1.9", + "chl": "0.1", + "ds": "1174194000", + "days": 13590 + } + }, + { + "parent": 2001, + "guid": 2165, + "values": { + "latitude": "22.84", + "longitude": "-130.37", + "depth": "-427.5", + "temperature": "20.4", + "curviness": "1.7", + "chl": "-999.0", + "ds": "1174280400", + "days": 13591 + } + }, + { + "parent": 2001, + "guid": 2166, + "values": { + "latitude": "22.64", + "longitude": "-130.47", + "depth": "-437", + "temperature": "20.4", + "curviness": "1.6", + "chl": "0.1", + "ds": "1174366800", + "days": 13592 + } + }, + { + "parent": 2001, + "guid": 2167, + "values": { + "latitude": "22.64", + "longitude": "-130.48", + "depth": "-431.5", + "temperature": "20.3", + "curviness": "1.5", + "chl": "0.1", + "ds": "1174453200", + "days": 13593 + } + }, + { + "parent": 2001, + "guid": 2168, + "values": { + "latitude": "22.78", + "longitude": "-130.28", + "depth": "-442.5", + "temperature": "20.3", + "curviness": "1.6", + "chl": "-999.0", + "ds": "1174539600", + "days": 13594 + } + }, + { + "parent": 2001, + "guid": 2169, + "values": { + "latitude": "22.84", + "longitude": "-130.03", + "depth": "-416", + "temperature": "20.2", + "curviness": "1.6", + "chl": "-999.0", + "ds": "1174626000", + "days": 13595 + } + }, + { + "parent": 2001, + "guid": 2170, + "values": { + "latitude": "22.74", + "longitude": "-129.9", + "depth": "-439", + "temperature": "19.8", + "curviness": "1.7", + "chl": "0.1", + "ds": "1174712400", + "days": 13596 + } + }, + { + "parent": 2001, + "guid": 2171, + "values": { + "latitude": "22.57", + "longitude": "-129.86", + "depth": "-445.5", + "temperature": "19.8", + "curviness": "1.6", + "chl": "0.1", + "ds": "1174798800", + "days": 13597 + } + }, + { + "parent": 2001, + "guid": 2172, + "values": { + "latitude": "22.39", + "longitude": "-129.85", + "depth": "-394", + "temperature": "19.8", + "curviness": "1.7", + "chl": "0.0", + "ds": "1174885200", + "days": 13598 + } + }, + { + "parent": 2001, + "guid": 2173, + "values": { + "latitude": "22.25", + "longitude": "-129.83", + "depth": "-384", + "temperature": "20.2", + "curviness": "1.7", + "chl": "0.0", + "ds": "1174971600", + "days": 13599 + } + }, + { + "parent": 2001, + "guid": 2174, + "values": { + "latitude": "22.18", + "longitude": "-129.76", + "depth": "-396.5", + "temperature": "20.0", + "curviness": "1.6", + "chl": "0.0", + "ds": "1175058000", + "days": 13600 + } + }, + { + "parent": 2001, + "guid": 2175, + "values": { + "latitude": "22.19", + "longitude": "-129.67", + "depth": "-397.5", + "temperature": "19.7", + "curviness": "1.4", + "chl": "0.0", + "ds": "1175144400", + "days": 13601 + } + }, + { + "parent": 2001, + "guid": 2176, + "values": { + "latitude": "22.27", + "longitude": "-129.6", + "depth": "-447", + "temperature": "19.7", + "curviness": "1.2", + "chl": "0.1", + "ds": "1175230800", + "days": 13602 + } + }, + { + "parent": 2001, + "guid": 2177, + "values": { + "latitude": "22.54", + "longitude": "-129.36", + "depth": "-445.5", + "temperature": "19.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1175317200", + "days": 13603 + } + }, + { + "parent": 2001, + "guid": 2178, + "values": { + "latitude": "22.92", + "longitude": "-128.94", + "depth": "-426.5", + "temperature": "19.4", + "curviness": "1.0", + "chl": "0.0", + "ds": "1175403600", + "days": 13604 + } + }, + { + "parent": 2001, + "guid": 2179, + "values": { + "latitude": "23.33", + "longitude": "-128.51", + "depth": "-417", + "temperature": "19.2", + "curviness": "1.0", + "chl": "0.0", + "ds": "1175490000", + "days": 13605 + } + }, + { + "parent": 2001, + "guid": 2180, + "values": { + "latitude": "23.78", + "longitude": "-128.08", + "depth": "-410", + "temperature": "19.2", + "curviness": "1.0", + "chl": "0.0", + "ds": "1175576400", + "days": 13606 + } + }, + { + "parent": 2001, + "guid": 2181, + "values": { + "latitude": "24.23", + "longitude": "-127.67", + "depth": "-442.5", + "temperature": "19.3", + "curviness": "1.0", + "chl": "0.0", + "ds": "1175662800", + "days": 13607 + } + }, + { + "parent": 2001, + "guid": 2182, + "values": { + "latitude": "24.69", + "longitude": "-127.3", + "depth": "-436.5", + "temperature": "19.3", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1175749200", + "days": 13608 + } + }, + { + "parent": 2001, + "guid": 2183, + "values": { + "latitude": "25.17", + "longitude": "-126.91", + "depth": "-397", + "temperature": "19.3", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1175835600", + "days": 13609 + } + }, + { + "parent": 2001, + "guid": 2184, + "values": { + "latitude": "25.58", + "longitude": "-126.58", + "depth": "-396.5", + "temperature": "18.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1175922000", + "days": 13610 + } + }, + { + "parent": 2001, + "guid": 2185, + "values": { + "latitude": "25.9", + "longitude": "-126.36", + "depth": "-391", + "temperature": "17.8", + "curviness": "1.0", + "chl": "0.0", + "ds": "1176008400", + "days": 13611 + } + }, + { + "parent": 2001, + "guid": 2186, + "values": { + "latitude": "26.23", + "longitude": "-126.22", + "depth": "-359", + "temperature": "17.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1176094800", + "days": 13612 + } + }, + { + "parent": 2001, + "guid": 2187, + "values": { + "latitude": "26.78", + "longitude": "-125.94", + "depth": "-321", + "temperature": "17.8", + "curviness": "1.0", + "chl": "0.1", + "ds": "1176181200", + "days": 13613 + } + }, + { + "parent": 2001, + "guid": 2188, + "values": { + "latitude": "27.48", + "longitude": "-125.5", + "depth": "-401.5", + "temperature": "17.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1176267600", + "days": 13614 + } + }, + { + "parent": 2001, + "guid": 2189, + "values": { + "latitude": "28.25", + "longitude": "-124.94", + "depth": "-355", + "temperature": "17.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1176354000", + "days": 13615 + } + }, + { + "parent": 2001, + "guid": 2190, + "values": { + "latitude": "29", + "longitude": "-124.3", + "depth": "-355", + "temperature": "16.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1176440400", + "days": 13616 + } + }, + { + "parent": 2001, + "guid": 2191, + "values": { + "latitude": "29.68", + "longitude": "-123.62", + "depth": "-406", + "temperature": "15.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1176526800", + "days": 13617 + } + }, + { + "parent": 2001, + "guid": 2192, + "values": { + "latitude": "30.31", + "longitude": "-122.93", + "depth": "-275", + "temperature": "15.2", + "curviness": "1.3", + "chl": "0.1", + "ds": "1176613200", + "days": 13618 + } + }, + { + "parent": 2001, + "guid": 2193, + "values": { + "latitude": "30.8", + "longitude": "-122.3", + "depth": "-235", + "temperature": "14.3", + "curviness": "1.8", + "chl": "0.2", + "ds": "1176699600", + "days": 13619 + } + }, + { + "parent": 2001, + "guid": 2194, + "values": { + "latitude": "31.14", + "longitude": "-121.76", + "depth": "-254.5", + "temperature": "14.0", + "curviness": "3.6", + "chl": "0.3", + "ds": "1176786000", + "days": 13620 + } + }, + { + "parent": 2001, + "guid": 2195, + "values": { + "latitude": "31.23", + "longitude": "-121.47", + "depth": "-237.5", + "temperature": "14.1", + "curviness": "25.5", + "chl": "0.3", + "ds": "1176872400", + "days": 13621 + } + }, + { + "parent": 2001, + "guid": 2196, + "values": { + "latitude": "31.02", + "longitude": "-121.55", + "depth": "-238", + "temperature": "13.9", + "curviness": "3.4", + "chl": "0.3", + "ds": "1176958800", + "days": 13622 + } + }, + { + "parent": 2001, + "guid": 2197, + "values": { + "latitude": "30.63", + "longitude": "-121.92", + "depth": "-300", + "temperature": "14.4", + "curviness": "1.8", + "chl": "0.2", + "ds": "1177045200", + "days": 13623 + } + }, + { + "parent": 2001, + "guid": 2198, + "values": { + "latitude": "30.08", + "longitude": "-122.55", + "depth": "-372.5", + "temperature": "15.3", + "curviness": "1.3", + "chl": "0.1", + "ds": "1177131600", + "days": 13624 + } + }, + { + "parent": 2001, + "guid": 2199, + "values": { + "latitude": "29.44", + "longitude": "-123.32", + "depth": "-372", + "temperature": "15.6", + "curviness": "1.1", + "chl": "0.1", + "ds": "1177218000", + "days": 13625 + } + }, + { + "parent": 2001, + "guid": 2200, + "values": { + "latitude": "28.77", + "longitude": "-124.15", + "depth": "-355.5", + "temperature": "16.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1177304400", + "days": 13626 + } + }, + { + "parent": 2001, + "guid": 2201, + "values": { + "latitude": "28.07", + "longitude": "-124.98", + "depth": "-344", + "temperature": "17.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1177390800", + "days": 13627 + } + }, + { + "parent": 2001, + "guid": 2202, + "values": { + "latitude": "27.34", + "longitude": "-125.79", + "depth": "-325", + "temperature": "17.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1177477200", + "days": 13628 + } + }, + { + "parent": 2001, + "guid": 2203, + "values": { + "latitude": "26.6", + "longitude": "-126.57", + "depth": "-275", + "temperature": "18.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1177563600", + "days": 13629 + } + }, + { + "parent": 2001, + "guid": 2204, + "values": { + "latitude": "25.86", + "longitude": "-127.27", + "depth": "-407.5", + "temperature": "18.2", + "curviness": "1.0", + "chl": "0.0", + "ds": "1177650000", + "days": 13630 + } + }, + { + "parent": 2001, + "guid": 2205, + "values": { + "latitude": "25.18", + "longitude": "-127.81", + "depth": "-400", + "temperature": "19.1", + "curviness": "1.0", + "chl": "0.0", + "ds": "1177736400", + "days": 13631 + } + }, + { + "parent": 2001, + "guid": 2206, + "values": { + "latitude": "24.55", + "longitude": "-128.23", + "depth": "-378", + "temperature": "19.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1177822800", + "days": 13632 + } + }, + { + "parent": 2001, + "guid": 2207, + "values": { + "latitude": "24.01", + "longitude": "-128.52", + "depth": "-375.5", + "temperature": "19.7", + "curviness": "1.0", + "chl": "0.1", + "ds": "1177909200", + "days": 13633 + } + }, + { + "parent": 2001, + "guid": 2208, + "values": { + "latitude": "23.58", + "longitude": "-128.63", + "depth": "-330", + "temperature": "19.7", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1177995600", + "days": 13634 + } + }, + { + "parent": 2001, + "guid": 2209, + "values": { + "latitude": "23.24", + "longitude": "-128.62", + "depth": "-367.5", + "temperature": "19.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1178082000", + "days": 13635 + } + }, + { + "parent": 2001, + "guid": 2210, + "values": { + "latitude": "22.95", + "longitude": "-128.54", + "depth": "-423", + "temperature": "19.9", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1178168400", + "days": 13636 + } + }, + { + "parent": 2001, + "guid": 2211, + "values": { + "latitude": "22.62", + "longitude": "-128.58", + "depth": "-427", + "temperature": "20.2", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1178254800", + "days": 13637 + } + }, + { + "parent": 2001, + "guid": 2212, + "values": { + "latitude": "22.31", + "longitude": "-128.78", + "depth": "-374", + "temperature": "20.4", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1178341200", + "days": 13638 + } + }, + { + "parent": 2001, + "guid": 2213, + "values": { + "latitude": "22.08", + "longitude": "-129.07", + "depth": "-376", + "temperature": "20.6", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1178427600", + "days": 13639 + } + }, + { + "parent": 2001, + "guid": 2214, + "values": { + "latitude": "21.84", + "longitude": "-129.47", + "depth": "-435", + "temperature": "19.9", + "curviness": "1.3", + "chl": "0.1", + "ds": "1178514000", + "days": 13640 + } + }, + { + "parent": 2001, + "guid": 2215, + "values": { + "latitude": "21.64", + "longitude": "-129.92", + "depth": "-386.5", + "temperature": "21.1", + "curviness": "1.2", + "chl": "0.1", + "ds": "1178600400", + "days": 13641 + } + }, + { + "parent": 2001, + "guid": 2216, + "values": { + "latitude": "21.62", + "longitude": "-130.18", + "depth": "-459", + "temperature": "21.2", + "curviness": "1.2", + "chl": "0.1", + "ds": "1178686800", + "days": 13642 + } + }, + { + "parent": 2001, + "guid": 2217, + "values": { + "latitude": "21.68", + "longitude": "-130.26", + "depth": "-460.5", + "temperature": "20.9", + "curviness": "1.2", + "chl": "0.1", + "ds": "1178773200", + "days": 13643 + } + }, + { + "parent": 2001, + "guid": 2218, + "values": { + "latitude": "21.75", + "longitude": "-130.24", + "depth": "-449", + "temperature": "20.3", + "curviness": "1.2", + "chl": "0.1", + "ds": "1178859600", + "days": 13644 + } + }, + { + "parent": 2001, + "guid": 2219, + "values": { + "latitude": "21.75", + "longitude": "-130.21", + "depth": "-396", + "temperature": "20.3", + "curviness": "1.2", + "chl": "0.1", + "ds": "1178946000", + "days": 13645 + } + }, + { + "parent": 2001, + "guid": 2220, + "values": { + "latitude": "21.59", + "longitude": "-130.29", + "depth": "-403.5", + "temperature": "20.4", + "curviness": "1.2", + "chl": "0.1", + "ds": "1179032400", + "days": 13646 + } + }, + { + "parent": 2001, + "guid": 2221, + "values": { + "latitude": "21.33", + "longitude": "-130.48", + "depth": "-421.5", + "temperature": "20.5", + "curviness": "1.5", + "chl": "0.1", + "ds": "1179118800", + "days": 13647 + } + }, + { + "parent": 2001, + "guid": 2222, + "values": { + "latitude": "21.09", + "longitude": "-130.71", + "depth": "-447", + "temperature": "20.7", + "curviness": "2.6", + "chl": "0.1", + "ds": "1179205200", + "days": 13648 + } + }, + { + "parent": 2001, + "guid": 2223, + "values": { + "latitude": "20.95", + "longitude": "-130.89", + "depth": "-482.5", + "temperature": "21.0", + "curviness": "19.5", + "chl": "0.1", + "ds": "1179291600", + "days": 13649 + } + }, + { + "parent": 2001, + "guid": 2224, + "values": { + "latitude": "20.84", + "longitude": "-131.1", + "depth": "-457", + "temperature": "21.2", + "curviness": "5.4", + "chl": "-999.0", + "ds": "1179378000", + "days": 13650 + } + }, + { + "parent": 2001, + "guid": 2225, + "values": { + "latitude": "20.82", + "longitude": "-131.26", + "depth": "-424", + "temperature": "21.3", + "curviness": "2.8", + "chl": "-999.0", + "ds": "1179464400", + "days": 13651 + } + }, + { + "parent": 2001, + "guid": 2226, + "values": { + "latitude": "20.94", + "longitude": "-131.22", + "depth": "-437.5", + "temperature": "21.3", + "curviness": "2.0", + "chl": "-999.0", + "ds": "1179550800", + "days": 13652 + } + }, + { + "parent": 2001, + "guid": 2227, + "values": { + "latitude": "21.2", + "longitude": "-130.93", + "depth": "-396.5", + "temperature": "21.0", + "curviness": "1.6", + "chl": "0.1", + "ds": "1179637200", + "days": 13653 + } + }, + { + "parent": 2001, + "guid": 2228, + "values": { + "latitude": "21.63", + "longitude": "-130.31", + "depth": "-421", + "temperature": "21.0", + "curviness": "1.4", + "chl": "0.1", + "ds": "1179723600", + "days": 13654 + } + }, + { + "parent": 2001, + "guid": 2229, + "values": { + "latitude": "21.94", + "longitude": "-129.56", + "depth": "-426", + "temperature": "20.8", + "curviness": "1.2", + "chl": "0.1", + "ds": "1179810000", + "days": 13655 + } + }, + { + "parent": 2001, + "guid": 2230, + "values": { + "latitude": "22.06", + "longitude": "-128.92", + "depth": "-410", + "temperature": "20.5", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1179896400", + "days": 13656 + } + }, + { + "parent": 2001, + "guid": 2231, + "values": { + "latitude": "22.04", + "longitude": "-128.48", + "depth": "-441", + "temperature": "20.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1179982800", + "days": 13657 + } + }, + { + "parent": 2001, + "guid": 2232, + "values": { + "latitude": "21.91", + "longitude": "-128.3", + "depth": "-411.5", + "temperature": "20.8", + "curviness": "1.2", + "chl": "0.1", + "ds": "1180069200", + "days": 13658 + } + }, + { + "parent": 2001, + "guid": 2233, + "values": { + "latitude": "21.78", + "longitude": "-128.25", + "depth": "-404.5", + "temperature": "21.1", + "curviness": "1.2", + "chl": "0.1", + "ds": "1180155600", + "days": 13659 + } + }, + { + "parent": 2001, + "guid": 2234, + "values": { + "latitude": "21.78", + "longitude": "-128.22", + "depth": "-377", + "temperature": "21.0", + "curviness": "1.2", + "chl": "0.1", + "ds": "1180242000", + "days": 13660 + } + }, + { + "parent": 2001, + "guid": 2235, + "values": { + "latitude": "22", + "longitude": "-128.09", + "depth": "-372", + "temperature": "21.1", + "curviness": "1.2", + "chl": "0.1", + "ds": "1180328400", + "days": 13661 + } + }, + { + "parent": 2001, + "guid": 2236, + "values": { + "latitude": "22.42", + "longitude": "-127.84", + "depth": "-397.5", + "temperature": "21.3", + "curviness": "1.1", + "chl": "0.0", + "ds": "1180414800", + "days": 13662 + } + }, + { + "parent": 2001, + "guid": 2237, + "values": { + "latitude": "22.98", + "longitude": "-127.46", + "depth": "-393.5", + "temperature": "21.2", + "curviness": "1.1", + "chl": "0.0", + "ds": "1180501200", + "days": 13663 + } + }, + { + "parent": 2001, + "guid": 2238, + "values": { + "latitude": "23.57", + "longitude": "-127.04", + "depth": "-344", + "temperature": "20.6", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1180587600", + "days": 13664 + } + }, + { + "parent": 2001, + "guid": 2239, + "values": { + "latitude": "24.18", + "longitude": "-126.62", + "depth": "-393.5", + "temperature": "20.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1180674000", + "days": 13665 + } + }, + { + "parent": 2001, + "guid": 2240, + "values": { + "latitude": "24.76", + "longitude": "-126.25", + "depth": "-503.5", + "temperature": "19.6", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1180760400", + "days": 13666 + } + }, + { + "parent": 2001, + "guid": 2241, + "values": { + "latitude": "25.25", + "longitude": "-125.99", + "depth": "-392.5", + "temperature": "19.2", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1180846800", + "days": 13667 + } + }, + { + "parent": 2001, + "guid": 2242, + "values": { + "latitude": "25.76", + "longitude": "-125.79", + "depth": "-316.5", + "temperature": "19.1", + "curviness": "1.0", + "chl": "0.0", + "ds": "1180933200", + "days": 13668 + } + }, + { + "parent": 2001, + "guid": 2243, + "values": { + "latitude": "26.26", + "longitude": "-125.57", + "depth": "-398", + "temperature": "19.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181019600", + "days": 13669 + } + }, + { + "parent": 2001, + "guid": 2244, + "values": { + "latitude": "26.73", + "longitude": "-125.37", + "depth": "-323", + "temperature": "19.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181106000", + "days": 13670 + } + }, + { + "parent": 2001, + "guid": 2245, + "values": { + "latitude": "27.2", + "longitude": "-125.15", + "depth": "-263.5", + "temperature": "18.8", + "curviness": "1.0", + "chl": "0.0", + "ds": "1181192400", + "days": 13671 + } + }, + { + "parent": 2001, + "guid": 2246, + "values": { + "latitude": "27.71", + "longitude": "-124.85", + "depth": "-322.5", + "temperature": "18.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181278800", + "days": 13672 + } + }, + { + "parent": 2001, + "guid": 2247, + "values": { + "latitude": "28.28", + "longitude": "-124.38", + "depth": "-246.5", + "temperature": "17.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181365200", + "days": 13673 + } + }, + { + "parent": 2001, + "guid": 2248, + "values": { + "latitude": "28.85", + "longitude": "-123.81", + "depth": "-217", + "temperature": "17.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181451600", + "days": 13674 + } + }, + { + "parent": 2001, + "guid": 2249, + "values": { + "latitude": "29.4", + "longitude": "-123.16", + "depth": "-403", + "temperature": "17.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181538000", + "days": 13675 + } + }, + { + "parent": 2001, + "guid": 2250, + "values": { + "latitude": "29.85", + "longitude": "-122.54", + "depth": "-339", + "temperature": "16.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181624400", + "days": 13676 + } + }, + { + "parent": 2001, + "guid": 2251, + "values": { + "latitude": "30.16", + "longitude": "-122.06", + "depth": "-375", + "temperature": "16.7", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181710800", + "days": 13677 + } + }, + { + "parent": 2001, + "guid": 2252, + "values": { + "latitude": "30.43", + "longitude": "-121.67", + "depth": "-360", + "temperature": "16.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1181797200", + "days": 13678 + } + }, + { + "parent": 2001, + "guid": 2253, + "values": { + "latitude": "30.73", + "longitude": "-121.27", + "depth": "-414", + "temperature": "16.1", + "curviness": "1.1", + "chl": "0.2", + "ds": "1181883600", + "days": 13679 + } + }, + { + "parent": 2001, + "guid": 2254, + "values": { + "latitude": "30.97", + "longitude": "-120.98", + "depth": "-233", + "temperature": "16.1", + "curviness": "1.1", + "chl": "0.3", + "ds": "1181970000", + "days": 13680 + } + }, + { + "parent": 2001, + "guid": 2255, + "values": { + "latitude": "31.11", + "longitude": "-120.81", + "depth": "-270", + "temperature": "16.0", + "curviness": "1.2", + "chl": "0.3", + "ds": "1182056400", + "days": 13681 + } + }, + { + "parent": 2001, + "guid": 2256, + "values": { + "latitude": "31.15", + "longitude": "-120.84", + "depth": "-246", + "temperature": "16.1", + "curviness": "1.2", + "chl": "0.3", + "ds": "1182142800", + "days": 13682 + } + }, + { + "parent": 2001, + "guid": 2257, + "values": { + "latitude": "31.2", + "longitude": "-120.92", + "depth": "-109.5", + "temperature": "16.1", + "curviness": "1.2", + "chl": "0.2", + "ds": "1182229200", + "days": 13683 + } + }, + { + "parent": 2001, + "guid": 2258, + "values": { + "latitude": "31.28", + "longitude": "-121.01", + "depth": "-163.5", + "temperature": "16.0", + "curviness": "1.2", + "chl": "0.2", + "ds": "1182315600", + "days": 13684 + } + }, + { + "parent": 2001, + "guid": 2259, + "values": { + "latitude": "31.39", + "longitude": "-121.08", + "depth": "-119", + "temperature": "15.6", + "curviness": "1.2", + "chl": "0.2", + "ds": "1182402000", + "days": 13685 + } + }, + { + "parent": 2001, + "guid": 2260, + "values": { + "latitude": "31.56", + "longitude": "-121.09", + "depth": "-126", + "temperature": "15.8", + "curviness": "1.2", + "chl": "0.2", + "ds": "1182488400", + "days": 13686 + } + }, + { + "parent": 2001, + "guid": 2261, + "values": { + "latitude": "31.82", + "longitude": "-121", + "depth": "-317", + "temperature": "16.3", + "curviness": "1.2", + "chl": "0.2", + "ds": "1182574800", + "days": 13687 + } + }, + { + "parent": 2001, + "guid": 2262, + "values": { + "latitude": "32.19", + "longitude": "-120.72", + "depth": "-244.5", + "temperature": "16.2", + "curviness": "1.1", + "chl": "0.3", + "ds": "1182661200", + "days": 13688 + } + }, + { + "parent": 2001, + "guid": 2263, + "values": { + "latitude": "32.55", + "longitude": "-120.28", + "depth": "-146.5", + "temperature": "15.0", + "curviness": "1.1", + "chl": "0.4", + "ds": "1182747600", + "days": 13689 + } + }, + { + "parent": 2001, + "guid": 2264, + "values": { + "latitude": "32.75", + "longitude": "-119.95", + "depth": "-266.5", + "temperature": "15.0", + "curviness": "1.0", + "chl": "0.6", + "ds": "1182834000", + "days": 13690 + } + }, + { + "parent": 2001, + "guid": 2265, + "values": { + "latitude": "32.81", + "longitude": "-119.85", + "depth": "-417.5", + "temperature": "15.1", + "curviness": "1.1", + "chl": "1.0", + "ds": "1182920400", + "days": 13691 + } + }, + { + "parent": 2001, + "guid": 2266, + "values": { + "latitude": "32.88", + "longitude": "-119.87", + "depth": "-405.5", + "temperature": "15.0", + "curviness": "1.1", + "chl": "0.7", + "ds": "1183006800", + "days": 13692 + } + }, + { + "parent": 2001, + "guid": 2267, + "values": { + "latitude": "33.07", + "longitude": "-119.76", + "depth": "-303", + "temperature": "15.2", + "curviness": "1.4", + "chl": "4.2", + "ds": "1183093200", + "days": 13693 + } + }, + { + "parent": 2001, + "guid": 2268, + "values": { + "latitude": "33.38", + "longitude": "-119.4", + "depth": "-306", + "temperature": "17.7", + "curviness": "2.1", + "chl": "0.8", + "ds": "1183179600", + "days": 13694 + } + }, + { + "parent": 2001, + "guid": 2269, + "values": { + "latitude": "33.64", + "longitude": "-118.92", + "depth": "-226.5", + "temperature": "19.5", + "curviness": "4.6", + "chl": "0.3", + "ds": "1183266000", + "days": 13695 + } + }, + { + "parent": 2001, + "guid": 2270, + "values": { + "latitude": "33.69", + "longitude": "-118.53", + "depth": "-243", + "temperature": "20.1", + "curviness": "8.8", + "chl": "0.4", + "ds": "1183352400", + "days": 13696 + } + }, + { + "parent": 2001, + "guid": 2271, + "values": { + "latitude": "33.52", + "longitude": "-118.37", + "depth": "-234", + "temperature": "20.4", + "curviness": "9.3", + "chl": "0.3", + "ds": "1183438800", + "days": 13697 + } + }, + { + "parent": 2001, + "guid": 2272, + "values": { + "latitude": "33.21", + "longitude": "-118.43", + "depth": "-354.5", + "temperature": "19.8", + "curviness": "7.0", + "chl": "0.3", + "ds": "1183525200", + "days": 13698 + } + }, + { + "parent": 2001, + "guid": 2273, + "values": { + "latitude": "32.88", + "longitude": "-118.72", + "depth": "-245", + "temperature": "18.7", + "curviness": "4.1", + "chl": "0.6", + "ds": "1183611600", + "days": 13699 + } + }, + { + "parent": 2001, + "guid": 2274, + "values": { + "latitude": "32.59", + "longitude": "-119.19", + "depth": "-225.5", + "temperature": "16.5", + "curviness": "2.8", + "chl": "0.9", + "ds": "1183698000", + "days": 13700 + } + }, + { + "parent": 2001, + "guid": 2275, + "values": { + "latitude": "32.49", + "longitude": "-119.61", + "depth": "-279.5", + "temperature": "15.3", + "curviness": "2.4", + "chl": "2.0", + "ds": "1183784400", + "days": 13701 + } + }, + { + "parent": 2001, + "guid": 2276, + "values": { + "latitude": "32.51", + "longitude": "-119.98", + "depth": "-165.5", + "temperature": "14.8", + "curviness": "2.4", + "chl": "1.1", + "ds": "1183870800", + "days": 13702 + } + }, + { + "parent": 2001, + "guid": 2277, + "values": { + "latitude": "32.69", + "longitude": "-120.17", + "depth": "-120", + "temperature": "15.5", + "curviness": "2.3", + "chl": "0.7", + "ds": "1183957200", + "days": 13703 + } + }, + { + "parent": 2001, + "guid": 2278, + "values": { + "latitude": "32.93", + "longitude": "-120.22", + "depth": "-297", + "temperature": "16.4", + "curviness": "2.1", + "chl": "0.8", + "ds": "1184043600", + "days": 13704 + } + }, + { + "parent": 2001, + "guid": 2279, + "values": { + "latitude": "33.18", + "longitude": "-120.14", + "depth": "-323.5", + "temperature": "17.2", + "curviness": "2.0", + "chl": "1.4", + "ds": "1184130000", + "days": 13705 + } + }, + { + "parent": 2001, + "guid": 2280, + "values": { + "latitude": "33.37", + "longitude": "-120.02", + "depth": "-301", + "temperature": "17.3", + "curviness": "2.7", + "chl": "1.3", + "ds": "1184216400", + "days": 13706 + } + }, + { + "parent": 2001, + "guid": 2281, + "values": { + "latitude": "33.49", + "longitude": "-119.9", + "depth": "-363", + "temperature": "17.7", + "curviness": "6.4", + "chl": "0.8", + "ds": "1184302800", + "days": 13707 + } + }, + { + "parent": 2001, + "guid": 2282, + "values": { + "latitude": "33.54", + "longitude": "-119.83", + "depth": "-133", + "temperature": "17.8", + "curviness": "3.0", + "chl": "0.7", + "ds": "1184389200", + "days": 13708 + } + }, + { + "parent": 2001, + "guid": 2283, + "values": { + "latitude": "33.52", + "longitude": "-119.81", + "depth": "-270.5", + "temperature": "17.7", + "curviness": "1.9", + "chl": "0.6", + "ds": "1184475600", + "days": 13709 + } + }, + { + "parent": 2001, + "guid": 2284, + "values": { + "latitude": "33.42", + "longitude": "-119.84", + "depth": "-234.5", + "temperature": "17.3", + "curviness": "1.4", + "chl": "1.2", + "ds": "1184562000", + "days": 13710 + } + }, + { + "parent": 2001, + "guid": 2285, + "values": { + "latitude": "33.15", + "longitude": "-119.95", + "depth": "-212", + "temperature": "16.3", + "curviness": "1.3", + "chl": "1.3", + "ds": "1184648400", + "days": 13711 + } + }, + { + "parent": 2001, + "guid": 2286, + "values": { + "latitude": "32.64", + "longitude": "-120.36", + "depth": "-143.5", + "temperature": "17.0", + "curviness": "1.7", + "chl": "0.5", + "ds": "1184734800", + "days": 13712 + } + }, + { + "parent": 2001, + "guid": 2287, + "values": { + "latitude": "32.05", + "longitude": "-120.94", + "depth": "-225.5", + "temperature": "17.6", + "curviness": "2.6", + "chl": "0.3", + "ds": "1184821200", + "days": 13713 + } + }, + { + "parent": 2001, + "guid": 2288, + "values": { + "latitude": "31.64", + "longitude": "-121.44", + "depth": "-415.5", + "temperature": "18.0", + "curviness": "3.9", + "chl": "0.2", + "ds": "1184907600", + "days": 13714 + } + }, + { + "parent": 2001, + "guid": 2289, + "values": { + "latitude": "31.45", + "longitude": "-121.78", + "depth": "-318.5", + "temperature": "18.3", + "curviness": "6.0", + "chl": "0.2", + "ds": "1184994000", + "days": 13715 + } + }, + { + "parent": 2001, + "guid": 2290, + "values": { + "latitude": "31.59", + "longitude": "-121.77", + "depth": "-407", + "temperature": "17.9", + "curviness": "10.6", + "chl": "0.2", + "ds": "1185080400", + "days": 13716 + } + }, + { + "parent": 2001, + "guid": 2291, + "values": { + "latitude": "31.96", + "longitude": "-121.42", + "depth": "-225.5", + "temperature": "17.1", + "curviness": "11.3", + "chl": "0.2", + "ds": "1185166800", + "days": 13717 + } + }, + { + "parent": 2001, + "guid": 2292, + "values": { + "latitude": "32.36", + "longitude": "-120.95", + "depth": "-337", + "temperature": "17.2", + "curviness": "3.3", + "chl": "0.3", + "ds": "1185253200", + "days": 13718 + } + }, + { + "parent": 2001, + "guid": 2293, + "values": { + "latitude": "32.64", + "longitude": "-120.6", + "depth": "-168", + "temperature": "16.5", + "curviness": "1.7", + "chl": "0.4", + "ds": "1185339600", + "days": 13719 + } + }, + { + "parent": 2001, + "guid": 2294, + "values": { + "latitude": "32.84", + "longitude": "-120.39", + "depth": "-306.5", + "temperature": "15.8", + "curviness": "1.2", + "chl": "0.4", + "ds": "1185426000", + "days": 13720 + } + }, + { + "parent": 2001, + "guid": 2295, + "values": { + "latitude": "32.94", + "longitude": "-120.36", + "depth": "-180", + "temperature": "15.4", + "curviness": "1.2", + "chl": "0.5", + "ds": "1185512400", + "days": 13721 + } + }, + { + "parent": 2001, + "guid": 2296, + "values": { + "latitude": "32.95", + "longitude": "-120.51", + "depth": "-194", + "temperature": "15.0", + "curviness": "1.3", + "chl": "0.4", + "ds": "1185598800", + "days": 13722 + } + }, + { + "parent": 2001, + "guid": 2297, + "values": { + "latitude": "33", + "longitude": "-120.68", + "depth": "-160.5", + "temperature": "14.8", + "curviness": "1.3", + "chl": "0.4", + "ds": "1185685200", + "days": 13723 + } + }, + { + "parent": 2001, + "guid": 2298, + "values": { + "latitude": "33.13", + "longitude": "-120.79", + "depth": "-248.5", + "temperature": "15.6", + "curviness": "1.4", + "chl": "0.4", + "ds": "1185771600", + "days": 13724 + } + }, + { + "parent": 2001, + "guid": 2299, + "values": { + "latitude": "33.36", + "longitude": "-120.73", + "depth": "-216", + "temperature": "14.5", + "curviness": "1.4", + "chl": "0.6", + "ds": "1185858000", + "days": 13725 + } + }, + { + "parent": 2001, + "guid": 2300, + "values": { + "latitude": "33.6", + "longitude": "-120.57", + "depth": "-195.5", + "temperature": "14.8", + "curviness": "1.5", + "chl": "2.3", + "ds": "1185944400", + "days": 13726 + } + }, + { + "parent": 2001, + "guid": 2301, + "values": { + "latitude": "33.76", + "longitude": "-120.39", + "depth": "-186", + "temperature": "17.4", + "curviness": "1.3", + "chl": "1.7", + "ds": "1186030800", + "days": 13727 + } + }, + { + "parent": 2001, + "guid": 2302, + "values": { + "latitude": "33.81", + "longitude": "-120.31", + "depth": "-101.5", + "temperature": "18.2", + "curviness": "1.2", + "chl": "1.2", + "ds": "1186117200", + "days": 13728 + } + }, + { + "parent": 2001, + "guid": 2303, + "values": { + "latitude": "33.81", + "longitude": "-120.31", + "depth": "-195.5", + "temperature": "18.2", + "curviness": "1.2", + "chl": "1.2", + "ds": "1186203600", + "days": 13729 + } + }, + { + "parent": 2001, + "guid": 2304, + "values": { + "latitude": "33.81", + "longitude": "-120.34", + "depth": "-195", + "temperature": "18.1", + "curviness": "1.3", + "chl": "1.2", + "ds": "1186290000", + "days": 13730 + } + }, + { + "parent": 2001, + "guid": 2305, + "values": { + "latitude": "33.83", + "longitude": "-120.38", + "depth": "-247.5", + "temperature": "18.0", + "curviness": "1.3", + "chl": "1.6", + "ds": "1186376400", + "days": 13731 + } + }, + { + "parent": 2001, + "guid": 2306, + "values": { + "latitude": "33.84", + "longitude": "-120.39", + "depth": "-263.5", + "temperature": "17.8", + "curviness": "1.6", + "chl": "1.6", + "ds": "1186462800", + "days": 13732 + } + }, + { + "parent": 2001, + "guid": 2307, + "values": { + "latitude": "33.85", + "longitude": "-120.35", + "depth": "-181.5", + "temperature": "17.5", + "curviness": "2.6", + "chl": "1.2", + "ds": "1186549200", + "days": 13733 + } + }, + { + "parent": 2001, + "guid": 2308, + "values": { + "latitude": "33.82", + "longitude": "-120.36", + "depth": "-166.5", + "temperature": "17.0", + "curviness": "3.0", + "chl": "1.2", + "ds": "1186635600", + "days": 13734 + } + }, + { + "parent": 2001, + "guid": 2309, + "values": { + "latitude": "33.87", + "longitude": "-120.28", + "depth": "-189.5", + "temperature": "16.2", + "curviness": "2.1", + "chl": "1.2", + "ds": "1186722000", + "days": 13735 + } + }, + { + "parent": 2001, + "guid": 2310, + "values": { + "latitude": "33.95", + "longitude": "-120.09", + "depth": "-252.5", + "temperature": "17.0", + "curviness": "1.7", + "chl": "-999.0", + "ds": "1186808400", + "days": 13736 + } + }, + { + "parent": 2001, + "guid": 2311, + "values": { + "latitude": "33.91", + "longitude": "-120.01", + "depth": "-260.5", + "temperature": "17.2", + "curviness": "1.6", + "chl": "0.8", + "ds": "1186894800", + "days": 13737 + } + }, + { + "parent": 2001, + "guid": 2312, + "values": { + "latitude": "33.77", + "longitude": "-120.03", + "depth": "-402", + "temperature": "17.1", + "curviness": "1.8", + "chl": "0.6", + "ds": "1186981200", + "days": 13738 + } + }, + { + "parent": 2001, + "guid": 2313, + "values": { + "latitude": "33.54", + "longitude": "-120.17", + "depth": "-254.5", + "temperature": "16.6", + "curviness": "2.4", + "chl": "0.9", + "ds": "1187067600", + "days": 13739 + } + }, + { + "parent": 2001, + "guid": 2314, + "values": { + "latitude": "33.21", + "longitude": "-120.49", + "depth": "-317.5", + "temperature": "16.7", + "curviness": "2.6", + "chl": "0.7", + "ds": "1187154000", + "days": 13740 + } + }, + { + "parent": 2001, + "guid": 2315, + "values": { + "latitude": "32.95", + "longitude": "-120.84", + "depth": "-299.5", + "temperature": "16.7", + "curviness": "2.1", + "chl": "0.7", + "ds": "1187240400", + "days": 13741 + } + }, + { + "parent": 2001, + "guid": 2316, + "values": { + "latitude": "32.88", + "longitude": "-121.01", + "depth": "-334.5", + "temperature": "16.3", + "curviness": "2.1", + "chl": "0.8", + "ds": "1187326800", + "days": 13742 + } + }, + { + "parent": 2001, + "guid": 2317, + "values": { + "latitude": "32.97", + "longitude": "-120.99", + "depth": "-305", + "temperature": "16.9", + "curviness": "2.3", + "chl": "0.9", + "ds": "1187413200", + "days": 13743 + } + }, + { + "parent": 2001, + "guid": 2318, + "values": { + "latitude": "33.12", + "longitude": "-120.86", + "depth": "-279.5", + "temperature": "16.4", + "curviness": "3.0", + "chl": "0.8", + "ds": "1187499600", + "days": 13744 + } + }, + { + "parent": 2001, + "guid": 2319, + "values": { + "latitude": "33.22", + "longitude": "-120.77", + "depth": "-400", + "temperature": "16.7", + "curviness": "3.1", + "chl": "0.7", + "ds": "1187586000", + "days": 13745 + } + }, + { + "parent": 2001, + "guid": 2320, + "values": { + "latitude": "33.26", + "longitude": "-120.77", + "depth": "-240", + "temperature": "16.4", + "curviness": "1.4", + "chl": "0.9", + "ds": "1187672400", + "days": 13746 + } + }, + { + "parent": 2001, + "guid": 2321, + "values": { + "latitude": "33.3", + "longitude": "-120.8", + "depth": "-309", + "temperature": "16.2", + "curviness": "1.1", + "chl": "1.2", + "ds": "1187758800", + "days": 13747 + } + }, + { + "parent": 2001, + "guid": 2322, + "values": { + "latitude": "33.36", + "longitude": "-120.84", + "depth": "-281", + "temperature": "17.2", + "curviness": "1.1", + "chl": "1.2", + "ds": "1187845200", + "days": 13748 + } + }, + { + "parent": 2001, + "guid": 2323, + "values": { + "latitude": "33.47", + "longitude": "-120.82", + "depth": "-387.5", + "temperature": "17.3", + "curviness": "1.2", + "chl": "1.1", + "ds": "1187931600", + "days": 13749 + } + }, + { + "parent": 2001, + "guid": 2324, + "values": { + "latitude": "33.64", + "longitude": "-120.7", + "depth": "-103", + "temperature": "17.6", + "curviness": "1.5", + "chl": "1.2", + "ds": "1188018000", + "days": 13750 + } + }, + { + "parent": 2001, + "guid": 2325, + "values": { + "latitude": "33.77", + "longitude": "-120.55", + "depth": "-304.5", + "temperature": "17.7", + "curviness": "2.0", + "chl": "1.5", + "ds": "1188104400", + "days": 13751 + } + }, + { + "parent": 2001, + "guid": 2326, + "values": { + "latitude": "33.81", + "longitude": "-120.48", + "depth": "-311", + "temperature": "17.1", + "curviness": "2.5", + "chl": "1.8", + "ds": "1188190800", + "days": 13752 + } + }, + { + "parent": 2001, + "guid": 2327, + "values": { + "latitude": "33.83", + "longitude": "-120.45", + "depth": "-330.5", + "temperature": "17.3", + "curviness": "2.4", + "chl": "2.1", + "ds": "1188277200", + "days": 13753 + } + }, + { + "parent": 2001, + "guid": 2328, + "values": { + "latitude": "33.8", + "longitude": "-120.45", + "depth": "-346.5", + "temperature": "17.3", + "curviness": "2.3", + "chl": "2.1", + "ds": "1188363600", + "days": 13754 + } + }, + { + "parent": 2001, + "guid": 2329, + "values": { + "latitude": "33.73", + "longitude": "-120.48", + "depth": "-427", + "temperature": "17.0", + "curviness": "2.1", + "chl": "1.8", + "ds": "1188450000", + "days": 13755 + } + }, + { + "parent": 2001, + "guid": 2330, + "values": { + "latitude": "33.67", + "longitude": "-120.55", + "depth": "-277.5", + "temperature": "17.1", + "curviness": "1.8", + "chl": "2.9", + "ds": "1188536400", + "days": 13756 + } + }, + { + "parent": 2001, + "guid": 2331, + "values": { + "latitude": "33.62", + "longitude": "-120.6", + "depth": "-301", + "temperature": "17.2", + "curviness": "1.6", + "chl": "1.2", + "ds": "1188622800", + "days": 13757 + } + }, + { + "parent": 2001, + "guid": 2332, + "values": { + "latitude": "33.63", + "longitude": "-120.54", + "depth": "-370.5", + "temperature": "17.4", + "curviness": "1.4", + "chl": "1.1", + "ds": "1188709200", + "days": 13758 + } + }, + { + "parent": 2001, + "guid": 2333, + "values": { + "latitude": "33.65", + "longitude": "-120.41", + "depth": "-192", + "temperature": "16.4", + "curviness": "1.3", + "chl": "1.7", + "ds": "1188795600", + "days": 13759 + } + }, + { + "parent": 2001, + "guid": 2334, + "values": { + "latitude": "33.71", + "longitude": "-120.2", + "depth": "-351", + "temperature": "16.0", + "curviness": "1.2", + "chl": "1.0", + "ds": "1188882000", + "days": 13760 + } + }, + { + "parent": 2001, + "guid": 2335, + "values": { + "latitude": "33.79", + "longitude": "-119.92", + "depth": "-334", + "temperature": "16.4", + "curviness": "1.1", + "chl": "0.7", + "ds": "1188968400", + "days": 13761 + } + }, + { + "parent": 2001, + "guid": 2336, + "values": { + "latitude": "33.88", + "longitude": "-119.58", + "depth": "-155.5", + "temperature": "18.1", + "curviness": "1.1", + "chl": "0.6", + "ds": "1189054800", + "days": 13762 + } + }, + { + "parent": 2001, + "guid": 2337, + "values": { + "latitude": "33.97", + "longitude": "-119.19", + "depth": "-198.5", + "temperature": "18.8", + "curviness": "1.3", + "chl": "0.8", + "ds": "1189141200", + "days": 13763 + } + }, + { + "parent": 2001, + "guid": 2338, + "values": { + "latitude": "34.07", + "longitude": "-118.73", + "depth": "-75", + "temperature": null, + "curviness": "1.6", + "chl": "-999.0", + "ds": "1189227600", + "days": 13764 + } + }, + { + "parent": 2001, + "guid": 2339, + "values": { + "latitude": "34.08", + "longitude": "-118.34", + "depth": "-187.5", + "temperature": null, + "curviness": "2.0", + "chl": "-999.0", + "ds": "1189314000", + "days": 13765 + } + }, + { + "parent": 2001, + "guid": 2340, + "values": { + "latitude": "34", + "longitude": "-118.09", + "depth": "-100.5", + "temperature": null, + "curviness": "2.2", + "chl": "-999.0", + "ds": "1189400400", + "days": 13766 + } + }, + { + "parent": 2001, + "guid": 2341, + "values": { + "latitude": "33.81", + "longitude": "-118", + "depth": "-174", + "temperature": null, + "curviness": "2.1", + "chl": "-999.0", + "ds": "1189486800", + "days": 13767 + } + }, + { + "parent": 2001, + "guid": 2342, + "values": { + "latitude": "33.51", + "longitude": "-118.11", + "depth": "-106", + "temperature": "18.3", + "curviness": "1.8", + "chl": "0.5", + "ds": "1189573200", + "days": 13768 + } + }, + { + "parent": 2001, + "guid": 2343, + "values": { + "latitude": "33.19", + "longitude": "-118.36", + "depth": "-205", + "temperature": "19.4", + "curviness": "1.4", + "chl": "0.3", + "ds": "1189659600", + "days": 13769 + } + }, + { + "parent": 2001, + "guid": 2344, + "values": { + "latitude": "32.88", + "longitude": "-118.64", + "depth": "-120.5", + "temperature": "18.6", + "curviness": "1.2", + "chl": "0.3", + "ds": "1189746000", + "days": 13770 + } + }, + { + "parent": 2001, + "guid": 2345, + "values": { + "latitude": "32.58", + "longitude": "-118.93", + "depth": "-57.5", + "temperature": "18.3", + "curviness": "1.1", + "chl": "0.3", + "ds": "1189832400", + "days": 13771 + } + }, + { + "parent": 2001, + "guid": 2346, + "values": { + "latitude": "32.29", + "longitude": "-119.28", + "depth": "-106", + "temperature": "18.2", + "curviness": "1.1", + "chl": "0.4", + "ds": "1189918800", + "days": 13772 + } + }, + { + "parent": 2001, + "guid": 2347, + "values": { + "latitude": "32.07", + "longitude": "-119.61", + "depth": "-210.5", + "temperature": "18.6", + "curviness": "1.1", + "chl": "0.3", + "ds": "1190005200", + "days": 13773 + } + }, + { + "parent": 2001, + "guid": 2348, + "values": { + "latitude": "32.02", + "longitude": "-119.77", + "depth": "-137", + "temperature": "18.5", + "curviness": "1.1", + "chl": "0.4", + "ds": "1190091600", + "days": 13774 + } + }, + { + "parent": 2001, + "guid": 2349, + "values": { + "latitude": "32.05", + "longitude": "-119.76", + "depth": "-208", + "temperature": "17.8", + "curviness": "1.1", + "chl": "0.3", + "ds": "1190178000", + "days": 13775 + } + }, + { + "parent": 2001, + "guid": 2350, + "values": { + "latitude": "32.03", + "longitude": "-119.72", + "depth": "-336", + "temperature": "17.8", + "curviness": "1.3", + "chl": "0.4", + "ds": "1190264400", + "days": 13776 + } + }, + { + "parent": 2001, + "guid": 2351, + "values": { + "latitude": "31.96", + "longitude": "-119.72", + "depth": "-157", + "temperature": "18.0", + "curviness": "2.0", + "chl": "0.4", + "ds": "1190350800", + "days": 13777 + } + }, + { + "parent": 2001, + "guid": 2352, + "values": { + "latitude": "31.84", + "longitude": "-119.77", + "depth": "-282", + "temperature": "18.0", + "curviness": "3.3", + "chl": "0.3", + "ds": "1190437200", + "days": 13778 + } + }, + { + "parent": 2001, + "guid": 2353, + "values": { + "latitude": "31.76", + "longitude": "-119.82", + "depth": "-106", + "temperature": "18.1", + "curviness": "2.2", + "chl": "0.3", + "ds": "1190523600", + "days": 13779 + } + }, + { + "parent": 2001, + "guid": 2354, + "values": { + "latitude": "31.74", + "longitude": "-119.82", + "depth": "-411.5", + "temperature": "18.2", + "curviness": "2.0", + "chl": "0.3", + "ds": "1190610000", + "days": 13780 + } + }, + { + "parent": 2001, + "guid": 2355, + "values": { + "latitude": "31.78", + "longitude": "-119.76", + "depth": "-312.5", + "temperature": "18.6", + "curviness": "1.8", + "chl": "0.3", + "ds": "1190696400", + "days": 13781 + } + }, + { + "parent": 2001, + "guid": 2356, + "values": { + "latitude": "31.84", + "longitude": "-119.61", + "depth": "-224", + "temperature": "18.8", + "curviness": "1.9", + "chl": "0.3", + "ds": "1190782800", + "days": 13782 + } + }, + { + "parent": 2001, + "guid": 2357, + "values": { + "latitude": "31.84", + "longitude": "-119.51", + "depth": "-115", + "temperature": "19.0", + "curviness": "2.1", + "chl": "0.3", + "ds": "1190869200", + "days": 13783 + } + }, + { + "parent": 2001, + "guid": 2358, + "values": { + "latitude": "31.74", + "longitude": "-119.53", + "depth": "-68.5", + "temperature": "18.4", + "curviness": "2.9", + "chl": "0.3", + "ds": "1190955600", + "days": 13784 + } + }, + { + "parent": 2001, + "guid": 2359, + "values": { + "latitude": "31.57", + "longitude": "-119.69", + "depth": "-241", + "temperature": "18.4", + "curviness": "1.2", + "chl": "0.3", + "ds": "1191042000", + "days": 13785 + } + }, + { + "parent": 2001, + "guid": 2360, + "values": { + "latitude": "31.44", + "longitude": "-119.86", + "depth": "-155", + "temperature": "18.4", + "curviness": "1.2", + "chl": "0.4", + "ds": "1191128400", + "days": 13786 + } + }, + { + "parent": 2001, + "guid": 2361, + "values": { + "latitude": "31.38", + "longitude": "-119.98", + "depth": "-352.5", + "temperature": "18.4", + "curviness": "1.2", + "chl": "0.4", + "ds": "1191214800", + "days": 13787 + } + }, + { + "parent": 2001, + "guid": 2362, + "values": { + "latitude": "31.38", + "longitude": "-120.04", + "depth": "-303", + "temperature": "18.4", + "curviness": "1.2", + "chl": "0.4", + "ds": "1191301200", + "days": 13788 + } + }, + { + "parent": 2001, + "guid": 2363, + "values": { + "latitude": "31.43", + "longitude": "-119.99", + "depth": "-308", + "temperature": "18.4", + "curviness": "1.2", + "chl": "0.5", + "ds": "1191387600", + "days": 13789 + } + }, + { + "parent": 2002, + "guid": 2364, + "values": { + "latitude": "37.69", + "longitude": "-123.64", + "depth": "-46", + "temperature": "14.0", + "curviness": "1.2", + "chl": "0.8", + "ds": "1132639200", + "days": 13109 + } + }, + { + "parent": 2002, + "guid": 2365, + "values": { + "latitude": "37.43", + "longitude": "-123.7", + "depth": "-47", + "temperature": "14.0", + "curviness": "1.2", + "chl": "0.7", + "ds": "1132725600", + "days": 13110 + } + }, + { + "parent": 2002, + "guid": 2366, + "values": { + "latitude": "36.93", + "longitude": "-124.01", + "depth": "-516", + "temperature": "14.4", + "curviness": "1.1", + "chl": "0.6", + "ds": "1132812000", + "days": 13111 + } + }, + { + "parent": 2002, + "guid": 2367, + "values": { + "latitude": "36.26", + "longitude": "-124.64", + "depth": "-492", + "temperature": "14.7", + "curviness": "1.0", + "chl": "0.8", + "ds": "1132898400", + "days": 13112 + } + }, + { + "parent": 2002, + "guid": 2368, + "values": { + "latitude": "35.45", + "longitude": "-125.47", + "depth": "-40", + "temperature": "15.2", + "curviness": "0.0", + "chl": "0.8", + "ds": "1132984800", + "days": 13113 + } + }, + { + "parent": 2002, + "guid": 2369, + "values": { + "latitude": "34.46", + "longitude": "-126.4", + "depth": "-500", + "temperature": "16.5", + "curviness": "1.0", + "chl": "0.2", + "ds": "1133071200", + "days": 13114 + } + }, + { + "parent": 2002, + "guid": 2370, + "values": { + "latitude": "33.43", + "longitude": "-127.28", + "depth": "-436", + "temperature": "17.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133157600", + "days": 13115 + } + }, + { + "parent": 2002, + "guid": 2371, + "values": { + "latitude": "32.38", + "longitude": "-128.1", + "depth": "-484", + "temperature": "17.8", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133244000", + "days": 13116 + } + }, + { + "parent": 2002, + "guid": 2372, + "values": { + "latitude": "31.37", + "longitude": "-128.86", + "depth": "-476", + "temperature": "18.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133330400", + "days": 13117 + } + }, + { + "parent": 2002, + "guid": 2373, + "values": { + "latitude": "30.41", + "longitude": "-129.51", + "depth": "-500", + "temperature": "19.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133416800", + "days": 13118 + } + }, + { + "parent": 2002, + "guid": 2374, + "values": { + "latitude": "29.5", + "longitude": "-130.02", + "depth": "-484", + "temperature": "20.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133503200", + "days": 13119 + } + }, + { + "parent": 2002, + "guid": 2375, + "values": { + "latitude": "28.63", + "longitude": "-130.44", + "depth": "-7", + "temperature": "20.7", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133589600", + "days": 13120 + } + }, + { + "parent": 2002, + "guid": 2376, + "values": { + "latitude": "27.81", + "longitude": "-130.78", + "depth": "-340", + "temperature": "20.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133676000", + "days": 13121 + } + }, + { + "parent": 2002, + "guid": 2377, + "values": { + "latitude": "27.12", + "longitude": "-131.11", + "depth": "-356", + "temperature": "20.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133762400", + "days": 13122 + } + }, + { + "parent": 2002, + "guid": 2378, + "values": { + "latitude": "26.56", + "longitude": "-131.44", + "depth": "-128", + "temperature": "21.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1133848800", + "days": 13123 + } + }, + { + "parent": 2002, + "guid": 2379, + "values": { + "latitude": "26.09", + "longitude": "-131.78", + "depth": "-244", + "temperature": "21.2", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1133935200", + "days": 13124 + } + }, + { + "parent": 2002, + "guid": 2380, + "values": { + "latitude": "25.7", + "longitude": "-132.11", + "depth": "-484", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134021600", + "days": 13125 + } + }, + { + "parent": 2002, + "guid": 2381, + "values": { + "latitude": "25.34", + "longitude": "-132.41", + "depth": "-460", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134108000", + "days": 13126 + } + }, + { + "parent": 2002, + "guid": 2382, + "values": { + "latitude": "24.97", + "longitude": "-132.65", + "depth": "-428", + "temperature": "21.5", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134194400", + "days": 13127 + } + }, + { + "parent": 2002, + "guid": 2383, + "values": { + "latitude": "24.59", + "longitude": "-132.81", + "depth": "-186", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134280800", + "days": 13128 + } + }, + { + "parent": 2002, + "guid": 2384, + "values": { + "latitude": "24.23", + "longitude": "-132.84", + "depth": "-252", + "temperature": "21.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134367200", + "days": 13129 + } + }, + { + "parent": 2002, + "guid": 2385, + "values": { + "latitude": "23.88", + "longitude": "-132.84", + "depth": "-500", + "temperature": "21.4", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134453600", + "days": 13130 + } + }, + { + "parent": 2002, + "guid": 2386, + "values": { + "latitude": "23.59", + "longitude": "-132.87", + "depth": "-256", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134540000", + "days": 13131 + } + }, + { + "parent": 2002, + "guid": 2387, + "values": { + "latitude": "23.37", + "longitude": "-132.97", + "depth": "-300", + "temperature": "21.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134626400", + "days": 13132 + } + }, + { + "parent": 2002, + "guid": 2388, + "values": { + "latitude": "23.18", + "longitude": "-133.15", + "depth": "-476", + "temperature": "21.8", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134712800", + "days": 13133 + } + }, + { + "parent": 2002, + "guid": 2389, + "values": { + "latitude": "23", + "longitude": "-133.4", + "depth": "-500", + "temperature": "21.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134799200", + "days": 13134 + } + }, + { + "parent": 2002, + "guid": 2390, + "values": { + "latitude": "22.74", + "longitude": "-133.67", + "depth": "-178", + "temperature": "22.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134885600", + "days": 13135 + } + }, + { + "parent": 2002, + "guid": 2391, + "values": { + "latitude": "22.41", + "longitude": "-133.89", + "depth": "-110", + "temperature": "22.1", + "curviness": "1.0", + "chl": "0.1", + "ds": "1134972000", + "days": 13136 + } + }, + { + "parent": 2002, + "guid": 2392, + "values": { + "latitude": "22.06", + "longitude": "-134.04", + "depth": "-492", + "temperature": "22.8", + "curviness": "1.1", + "chl": "0.1", + "ds": "1135058400", + "days": 13137 + } + }, + { + "parent": 2002, + "guid": 2393, + "values": { + "latitude": "21.73", + "longitude": "-134.17", + "depth": "-492", + "temperature": "22.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1135144800", + "days": 13138 + } + }, + { + "parent": 2002, + "guid": 2394, + "values": { + "latitude": "21.43", + "longitude": "-134.28", + "depth": "-212", + "temperature": "23.0", + "curviness": "1.3", + "chl": "0.1", + "ds": "1135231200", + "days": 13139 + } + }, + { + "parent": 2002, + "guid": 2395, + "values": { + "latitude": "21.21", + "longitude": "-134.38", + "depth": "-122", + "temperature": "23.0", + "curviness": "1.5", + "chl": "0.1", + "ds": "1135317600", + "days": 13140 + } + }, + { + "parent": 2002, + "guid": 2396, + "values": { + "latitude": "21.07", + "longitude": "-134.57", + "depth": "-452", + "temperature": "22.8", + "curviness": "1.6", + "chl": "0.1", + "ds": "1135404000", + "days": 13141 + } + }, + { + "parent": 2002, + "guid": 2397, + "values": { + "latitude": "21.07", + "longitude": "-134.8", + "depth": "-460", + "temperature": "22.8", + "curviness": "1.6", + "chl": "0.1", + "ds": "1135490400", + "days": 13142 + } + }, + { + "parent": 2002, + "guid": 2398, + "values": { + "latitude": "21.19", + "longitude": "-134.99", + "depth": "-184", + "temperature": "22.9", + "curviness": "1.4", + "chl": "0.1", + "ds": "1135576800", + "days": 13143 + } + }, + { + "parent": 2002, + "guid": 2399, + "values": { + "latitude": "21.35", + "longitude": "-135.07", + "depth": "-444", + "temperature": "23.0", + "curviness": "1.3", + "chl": "0.1", + "ds": "1135663200", + "days": 13144 + } + }, + { + "parent": 2002, + "guid": 2400, + "values": { + "latitude": "21.51", + "longitude": "-135.12", + "depth": "-142", + "temperature": "22.4", + "curviness": "1.2", + "chl": "0.1", + "ds": "1135749600", + "days": 13145 + } + }, + { + "parent": 2002, + "guid": 2401, + "values": { + "latitude": "21.6", + "longitude": "-135.28", + "depth": "-108", + "temperature": "22.3", + "curviness": "1.3", + "chl": "0.1", + "ds": "1135836000", + "days": 13146 + } + }, + { + "parent": 2002, + "guid": 2402, + "values": { + "latitude": "21.61", + "longitude": "-135.59", + "depth": "-476", + "temperature": "22.3", + "curviness": "1.4", + "chl": "0.1", + "ds": "1135922400", + "days": 13147 + } + }, + { + "parent": 2002, + "guid": 2403, + "values": { + "latitude": "21.56", + "longitude": "-135.93", + "depth": "-460", + "temperature": "22.4", + "curviness": "1.4", + "chl": "0.1", + "ds": "1136008800", + "days": 13148 + } + }, + { + "parent": 2002, + "guid": 2404, + "values": { + "latitude": "21.45", + "longitude": "-136.13", + "depth": "-468", + "temperature": "22.5", + "curviness": "1.3", + "chl": "0.0", + "ds": "1136095200", + "days": 13149 + } + }, + { + "parent": 2002, + "guid": 2405, + "values": { + "latitude": "21.32", + "longitude": "-136.26", + "depth": "-140", + "temperature": "22.5", + "curviness": "1.1", + "chl": "0.0", + "ds": "1136181600", + "days": 13150 + } + }, + { + "parent": 2002, + "guid": 2406, + "values": { + "latitude": "21.19", + "longitude": "-136.38", + "depth": "-460", + "temperature": "22.6", + "curviness": "1.1", + "chl": "0.0", + "ds": "1136268000", + "days": 13151 + } + }, + { + "parent": 2002, + "guid": 2407, + "values": { + "latitude": "21.05", + "longitude": "-136.41", + "depth": "-112", + "temperature": "22.8", + "curviness": "1.1", + "chl": "0.0", + "ds": "1136354400", + "days": 13152 + } + }, + { + "parent": 2002, + "guid": 2408, + "values": { + "latitude": "20.92", + "longitude": "-136.51", + "depth": "-468", + "temperature": "22.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1136440800", + "days": 13153 + } + }, + { + "parent": 2002, + "guid": 2409, + "values": { + "latitude": "20.82", + "longitude": "-136.66", + "depth": "-364", + "temperature": "23.0", + "curviness": "1.3", + "chl": "0.1", + "ds": "1136527200", + "days": 13154 + } + }, + { + "parent": 2002, + "guid": 2410, + "values": { + "latitude": "20.78", + "longitude": "-136.87", + "depth": "-236", + "temperature": "23.0", + "curviness": "1.7", + "chl": "0.1", + "ds": "1136613600", + "days": 13155 + } + }, + { + "parent": 2002, + "guid": 2411, + "values": { + "latitude": "20.78", + "longitude": "-137.12", + "depth": "-90", + "temperature": "23.0", + "curviness": "1.8", + "chl": "0.0", + "ds": "1136700000", + "days": 13156 + } + }, + { + "parent": 2002, + "guid": 2412, + "values": { + "latitude": "20.79", + "longitude": "-137.26", + "depth": "-174", + "temperature": "23.0", + "curviness": "1.6", + "chl": "0.1", + "ds": "1136786400", + "days": 13157 + } + }, + { + "parent": 2002, + "guid": 2413, + "values": { + "latitude": "20.84", + "longitude": "-137.3", + "depth": "-308", + "temperature": "22.6", + "curviness": "1.4", + "chl": "0.1", + "ds": "1136872800", + "days": 13158 + } + }, + { + "parent": 2002, + "guid": 2414, + "values": { + "latitude": "20.95", + "longitude": "-137.26", + "depth": "-452", + "temperature": "22.4", + "curviness": "1.3", + "chl": "0.1", + "ds": "1136959200", + "days": 13159 + } + }, + { + "parent": 2002, + "guid": 2415, + "values": { + "latitude": "21.11", + "longitude": "-137.24", + "depth": "-212", + "temperature": "22.3", + "curviness": "1.3", + "chl": "0.1", + "ds": "1137045600", + "days": 13160 + } + }, + { + "parent": 2002, + "guid": 2416, + "values": { + "latitude": "21.22", + "longitude": "-137.28", + "depth": "-460", + "temperature": "22.4", + "curviness": "1.3", + "chl": "0.1", + "ds": "1137132000", + "days": 13161 + } + }, + { + "parent": 2002, + "guid": 2417, + "values": { + "latitude": "21.31", + "longitude": "-137.34", + "depth": "-364", + "temperature": "22.4", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1137218400", + "days": 13162 + } + }, + { + "parent": 2002, + "guid": 2418, + "values": { + "latitude": "21.31", + "longitude": "-137.51", + "depth": "-284", + "temperature": "22.2", + "curviness": "1.3", + "chl": "0.1", + "ds": "1137304800", + "days": 13163 + } + }, + { + "parent": 2002, + "guid": 2419, + "values": { + "latitude": "21.28", + "longitude": "-137.81", + "depth": "-428", + "temperature": "22.1", + "curviness": "1.3", + "chl": "0.1", + "ds": "1137391200", + "days": 13164 + } + }, + { + "parent": 2002, + "guid": 2420, + "values": { + "latitude": "21.26", + "longitude": "-138.11", + "depth": "-280", + "temperature": "21.9", + "curviness": "1.5", + "chl": "0.1", + "ds": "1137477600", + "days": 13165 + } + }, + { + "parent": 2002, + "guid": 2421, + "values": { + "latitude": "21.29", + "longitude": "-138.43", + "depth": "-292", + "temperature": "21.9", + "curviness": "1.8", + "chl": "0.1", + "ds": "1137564000", + "days": 13166 + } + }, + { + "parent": 2002, + "guid": 2422, + "values": { + "latitude": "21.36", + "longitude": "-138.68", + "depth": "-476", + "temperature": "21.8", + "curviness": "2.4", + "chl": "0.1", + "ds": "1137650400", + "days": 13167 + } + }, + { + "parent": 2002, + "guid": 2423, + "values": { + "latitude": "21.53", + "longitude": "-138.77", + "depth": "-196", + "temperature": "21.2", + "curviness": "3.6", + "chl": "0.1", + "ds": "1137736800", + "days": 13168 + } + }, + { + "parent": 2002, + "guid": 2424, + "values": { + "latitude": "21.7", + "longitude": "-138.71", + "depth": "-160", + "temperature": "21.1", + "curviness": "4.8", + "chl": "0.1", + "ds": "1137823200", + "days": 13169 + } + }, + { + "parent": 2002, + "guid": 2425, + "values": { + "latitude": "21.87", + "longitude": "-138.53", + "depth": "-492", + "temperature": "20.9", + "curviness": "3.0", + "chl": "0.0", + "ds": "1137909600", + "days": 13170 + } + }, + { + "parent": 2002, + "guid": 2426, + "values": { + "latitude": "21.98", + "longitude": "-138.32", + "depth": "-364", + "temperature": "20.9", + "curviness": "1.9", + "chl": "0.1", + "ds": "1137996000", + "days": 13171 + } + }, + { + "parent": 2002, + "guid": 2427, + "values": { + "latitude": "21.95", + "longitude": "-138.11", + "depth": "-102", + "temperature": "21.9", + "curviness": "1.4", + "chl": "0.0", + "ds": "1138082400", + "days": 13172 + } + }, + { + "parent": 2002, + "guid": 2428, + "values": { + "latitude": "21.86", + "longitude": "-137.89", + "depth": "-484", + "temperature": "22.1", + "curviness": "1.3", + "chl": "0.1", + "ds": "1138168800", + "days": 13173 + } + }, + { + "parent": 2002, + "guid": 2429, + "values": { + "latitude": "21.74", + "longitude": "-137.63", + "depth": "-452", + "temperature": "22.3", + "curviness": "1.2", + "chl": "0.1", + "ds": "1138255200", + "days": 13174 + } + }, + { + "parent": 2002, + "guid": 2430, + "values": { + "latitude": "21.65", + "longitude": "-137.4", + "depth": "-444", + "temperature": "22.2", + "curviness": "1.1", + "chl": "0.1", + "ds": "1138341600", + "days": 13175 + } + }, + { + "parent": 2002, + "guid": 2431, + "values": { + "latitude": "21.54", + "longitude": "-137.18", + "depth": "-194", + "temperature": "21.7", + "curviness": "1.1", + "chl": "0.1", + "ds": "1138428000", + "days": 13176 + } + }, + { + "parent": 2002, + "guid": 2432, + "values": { + "latitude": "21.36", + "longitude": "-136.99", + "depth": "-204", + "temperature": "21.6", + "curviness": "1.1", + "chl": "0.1", + "ds": "1138514400", + "days": 13177 + } + }, + { + "parent": 2002, + "guid": 2433, + "values": { + "latitude": "21.1", + "longitude": "-136.88", + "depth": "-468", + "temperature": "21.8", + "curviness": "1.3", + "chl": "0.0", + "ds": "1138600800", + "days": 13178 + } + }, + { + "parent": 2002, + "guid": 2434, + "values": { + "latitude": "20.91", + "longitude": "-136.8", + "depth": "-460", + "temperature": "21.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1138687200", + "days": 13179 + } + }, + { + "parent": 2002, + "guid": 2435, + "values": { + "latitude": "20.81", + "longitude": "-136.72", + "depth": "-244", + "temperature": "21.9", + "curviness": "1.5", + "chl": "0.1", + "ds": "1138773600", + "days": 13180 + } + }, + { + "parent": 2002, + "guid": 2436, + "values": { + "latitude": "20.81", + "longitude": "-136.67", + "depth": "-476", + "temperature": "22.2", + "curviness": "1.7", + "chl": "0.1", + "ds": "1138860000", + "days": 13181 + } + }, + { + "parent": 2002, + "guid": 2437, + "values": { + "latitude": "20.92", + "longitude": "-136.62", + "depth": "-444", + "temperature": "22.2", + "curviness": "2.7", + "chl": "0.1", + "ds": "1138946400", + "days": 13182 + } + }, + { + "parent": 2002, + "guid": 2438, + "values": { + "latitude": "21.04", + "longitude": "-136.55", + "depth": "-468", + "temperature": "21.8", + "curviness": "3.7", + "chl": "0.1", + "ds": "1139032800", + "days": 13183 + } + }, + { + "parent": 2002, + "guid": 2439, + "values": { + "latitude": "21.1", + "longitude": "-136.47", + "depth": "-444", + "temperature": "21.6", + "curviness": "1.8", + "chl": "0.1", + "ds": "1139119200", + "days": 13184 + } + }, + { + "parent": 2002, + "guid": 2440, + "values": { + "latitude": "21.13", + "longitude": "-136.41", + "depth": "-452", + "temperature": "21.6", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1139205600", + "days": 13185 + } + }, + { + "parent": 2002, + "guid": 2441, + "values": { + "latitude": "21.14", + "longitude": "-136.43", + "depth": "-484", + "temperature": "21.8", + "curviness": "1.2", + "chl": "0.0", + "ds": "1139292000", + "days": 13186 + } + }, + { + "parent": 2002, + "guid": 2442, + "values": { + "latitude": "21.18", + "longitude": "-136.55", + "depth": "-452", + "temperature": "22.0", + "curviness": "1.1", + "chl": "0.1", + "ds": "1139378400", + "days": 13187 + } + }, + { + "parent": 2002, + "guid": 2443, + "values": { + "latitude": "21.32", + "longitude": "-136.66", + "depth": "-468", + "temperature": "22.2", + "curviness": "1.1", + "chl": "0.1", + "ds": "1139464800", + "days": 13188 + } + }, + { + "parent": 2002, + "guid": 2444, + "values": { + "latitude": "21.54", + "longitude": "-136.69", + "depth": "-452", + "temperature": "21.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1139551200", + "days": 13189 + } + }, + { + "parent": 2002, + "guid": 2445, + "values": { + "latitude": "21.86", + "longitude": "-136.7", + "depth": "-532", + "temperature": "22.0", + "curviness": "1.1", + "chl": "0.1", + "ds": "1139637600", + "days": 13190 + } + }, + { + "parent": 2002, + "guid": 2446, + "values": { + "latitude": "22.25", + "longitude": "-136.68", + "depth": "-484", + "temperature": "22.0", + "curviness": "1.1", + "chl": "0.1", + "ds": "1139724000", + "days": 13191 + } + }, + { + "parent": 2002, + "guid": 2447, + "values": { + "latitude": "22.62", + "longitude": "-136.67", + "depth": "-332", + "temperature": "21.8", + "curviness": "1.2", + "chl": "0.1", + "ds": "1139810400", + "days": 13192 + } + }, + { + "parent": 2002, + "guid": 2448, + "values": { + "latitude": "23", + "longitude": "-136.76", + "depth": "-484", + "temperature": "21.4", + "curviness": "1.3", + "chl": "0.1", + "ds": "1139896800", + "days": 13193 + } + }, + { + "parent": 2002, + "guid": 2449, + "values": { + "latitude": "23.3", + "longitude": "-136.86", + "depth": "-452", + "temperature": "21.3", + "curviness": "1.5", + "chl": "0.1", + "ds": "1139983200", + "days": 13194 + } + }, + { + "parent": 2002, + "guid": 2450, + "values": { + "latitude": "23.45", + "longitude": "-136.96", + "depth": "-564", + "temperature": "21.4", + "curviness": "1.7", + "chl": "0.1", + "ds": "1140069600", + "days": 13195 + } + }, + { + "parent": 2002, + "guid": 2451, + "values": { + "latitude": "23.4", + "longitude": "-136.97", + "depth": "-468", + "temperature": "21.5", + "curviness": "1.8", + "chl": "0.1", + "ds": "1140156000", + "days": 13196 + } + }, + { + "parent": 2002, + "guid": 2452, + "values": { + "latitude": "23.28", + "longitude": "-136.9", + "depth": "-436", + "temperature": "21.5", + "curviness": "1.7", + "chl": "0.1", + "ds": "1140242400", + "days": 13197 + } + }, + { + "parent": 2002, + "guid": 2453, + "values": { + "latitude": "23.18", + "longitude": "-136.87", + "depth": "-452", + "temperature": "21.7", + "curviness": "1.6", + "chl": "0.1", + "ds": "1140328800", + "days": 13198 + } + }, + { + "parent": 2002, + "guid": 2454, + "values": { + "latitude": "23.13", + "longitude": "-137", + "depth": "-492", + "temperature": "21.5", + "curviness": "1.5", + "chl": "0.1", + "ds": "1140415200", + "days": 13199 + } + }, + { + "parent": 2002, + "guid": 2455, + "values": { + "latitude": "23.15", + "longitude": "-137.27", + "depth": "-388", + "temperature": "21.2", + "curviness": "1.5", + "chl": "0.1", + "ds": "1140501600", + "days": 13200 + } + }, + { + "parent": 2002, + "guid": 2456, + "values": { + "latitude": "23.18", + "longitude": "-137.56", + "depth": "-468", + "temperature": "21.1", + "curviness": "1.4", + "chl": "0.1", + "ds": "1140588000", + "days": 13201 + } + }, + { + "parent": 2002, + "guid": 2457, + "values": { + "latitude": "23.25", + "longitude": "-137.78", + "depth": "-452", + "temperature": "20.7", + "curviness": "1.2", + "chl": "0.1", + "ds": "1140674400", + "days": 13202 + } + }, + { + "parent": 2002, + "guid": 2458, + "values": { + "latitude": "23.38", + "longitude": "-137.97", + "depth": "-492", + "temperature": "21.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1140760800", + "days": 13203 + } + }, + { + "parent": 2002, + "guid": 2459, + "values": { + "latitude": "23.56", + "longitude": "-138.18", + "depth": "-288", + "temperature": "21.2", + "curviness": "1.1", + "chl": "0.1", + "ds": "1140847200", + "days": 13204 + } + }, + { + "parent": 2002, + "guid": 2460, + "values": { + "latitude": "23.83", + "longitude": "-138.33", + "depth": "-500", + "temperature": "21.3", + "curviness": "1.1", + "chl": "0.1", + "ds": "1140933600", + "days": 13205 + } + }, + { + "parent": 2002, + "guid": 2461, + "values": { + "latitude": "24.14", + "longitude": "-138.47", + "depth": "-500", + "temperature": "20.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1141020000", + "days": 13206 + } + }, + { + "parent": 2002, + "guid": 2462, + "values": { + "latitude": "24.43", + "longitude": "-138.61", + "depth": "-500", + "temperature": "20.8", + "curviness": "1.2", + "chl": "0.1", + "ds": "1141106400", + "days": 13207 + } + }, + { + "parent": 2002, + "guid": 2463, + "values": { + "latitude": "24.65", + "longitude": "-138.74", + "depth": "-492", + "temperature": "20.8", + "curviness": "1.6", + "chl": "0.1", + "ds": "1141192800", + "days": 13208 + } + }, + { + "parent": 2002, + "guid": 2464, + "values": { + "latitude": "24.81", + "longitude": "-138.85", + "depth": "-596", + "temperature": "20.8", + "curviness": "2.0", + "chl": "0.1", + "ds": "1141279200", + "days": 13209 + } + }, + { + "parent": 2002, + "guid": 2465, + "values": { + "latitude": "24.87", + "longitude": "-138.91", + "depth": "-468", + "temperature": "21.0", + "curviness": "2.2", + "chl": "0.1", + "ds": "1141365600", + "days": 13210 + } + }, + { + "parent": 2002, + "guid": 2466, + "values": { + "latitude": "24.81", + "longitude": "-138.92", + "depth": "-492", + "temperature": "21.0", + "curviness": "2.8", + "chl": "0.1", + "ds": "1141452000", + "days": 13211 + } + }, + { + "parent": 2002, + "guid": 2467, + "values": { + "latitude": "24.72", + "longitude": "-138.8", + "depth": "-460", + "temperature": "20.7", + "curviness": "3.3", + "chl": "0.1", + "ds": "1141538400", + "days": 13212 + } + }, + { + "parent": 2002, + "guid": 2468, + "values": { + "latitude": "24.63", + "longitude": "-138.59", + "depth": "-460", + "temperature": "20.4", + "curviness": "3.0", + "chl": "0.1", + "ds": "1141624800", + "days": 13213 + } + }, + { + "parent": 2002, + "guid": 2469, + "values": { + "latitude": "24.61", + "longitude": "-138.36", + "depth": "-468", + "temperature": "20.3", + "curviness": "2.9", + "chl": "0.1", + "ds": "1141711200", + "days": 13214 + } + }, + { + "parent": 2002, + "guid": 2470, + "values": { + "latitude": "24.65", + "longitude": "-138.34", + "depth": "-460", + "temperature": "20.6", + "curviness": "4.0", + "chl": "0.1", + "ds": "1141797600", + "days": 13215 + } + }, + { + "parent": 2002, + "guid": 2471, + "values": { + "latitude": "24.75", + "longitude": "-138.62", + "depth": "-476", + "temperature": "20.6", + "curviness": "8.3", + "chl": "0.1", + "ds": "1141884000", + "days": 13216 + } + }, + { + "parent": 2002, + "guid": 2472, + "values": { + "latitude": "24.83", + "longitude": "-139.05", + "depth": "-500", + "temperature": "20.6", + "curviness": "15.0", + "chl": "0.1", + "ds": "1141970400", + "days": 13217 + } + }, + { + "parent": 2002, + "guid": 2473, + "values": { + "latitude": "24.89", + "longitude": "-139.41", + "depth": "-492", + "temperature": "20.7", + "curviness": "12.1", + "chl": "0.1", + "ds": "1142056800", + "days": 13218 + } + }, + { + "parent": 2002, + "guid": 2474, + "values": { + "latitude": "24.93", + "longitude": "-139.55", + "depth": "-468", + "temperature": "20.9", + "curviness": "10.9", + "chl": "0.1", + "ds": "1142143200", + "days": 13219 + } + }, + { + "parent": 2002, + "guid": 2475, + "values": { + "latitude": "24.95", + "longitude": "-139.43", + "depth": "-436", + "temperature": "20.7", + "curviness": "6.7", + "chl": "0.1", + "ds": "1142229600", + "days": 13220 + } + }, + { + "parent": 2002, + "guid": 2476, + "values": { + "latitude": "24.92", + "longitude": "-139.17", + "depth": "-484", + "temperature": "20.6", + "curviness": "3.2", + "chl": "0.1", + "ds": "1142316000", + "days": 13221 + } + }, + { + "parent": 2002, + "guid": 2477, + "values": { + "latitude": "24.87", + "longitude": "-138.82", + "depth": "-468", + "temperature": "20.5", + "curviness": "1.9", + "chl": "0.1", + "ds": "1142402400", + "days": 13222 + } + }, + { + "parent": 2002, + "guid": 2478, + "values": { + "latitude": "24.8", + "longitude": "-138.48", + "depth": "-484", + "temperature": "20.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1142488800", + "days": 13223 + } + }, + { + "parent": 2002, + "guid": 2479, + "values": { + "latitude": "24.72", + "longitude": "-138.14", + "depth": "-468", + "temperature": "20.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1142575200", + "days": 13224 + } + }, + { + "parent": 2002, + "guid": 2480, + "values": { + "latitude": "24.6", + "longitude": "-137.9", + "depth": "-444", + "temperature": "20.6", + "curviness": "1.5", + "chl": "0.1", + "ds": "1142661600", + "days": 13225 + } + }, + { + "parent": 2002, + "guid": 2481, + "values": { + "latitude": "24.41", + "longitude": "-137.8", + "depth": "-452", + "temperature": "20.3", + "curviness": "1.9", + "chl": "0.1", + "ds": "1142748000", + "days": 13226 + } + }, + { + "parent": 2002, + "guid": 2482, + "values": { + "latitude": "24.19", + "longitude": "-137.85", + "depth": "-452", + "temperature": "20.4", + "curviness": "2.4", + "chl": "0.0", + "ds": "1142834400", + "days": 13227 + } + }, + { + "parent": 2002, + "guid": 2483, + "values": { + "latitude": "24.05", + "longitude": "-137.92", + "depth": "-444", + "temperature": "20.5", + "curviness": "3.3", + "chl": "0.1", + "ds": "1142920800", + "days": 13228 + } + }, + { + "parent": 2002, + "guid": 2484, + "values": { + "latitude": "23.99", + "longitude": "-138.03", + "depth": "-436", + "temperature": "21.0", + "curviness": "5.0", + "chl": "0.1", + "ds": "1143007200", + "days": 13229 + } + }, + { + "parent": 2002, + "guid": 2485, + "values": { + "latitude": "24", + "longitude": "-138.18", + "depth": "-468", + "temperature": "21.0", + "curviness": "4.1", + "chl": "0.1", + "ds": "1143093600", + "days": 13230 + } + }, + { + "parent": 2002, + "guid": 2486, + "values": { + "latitude": "24.03", + "longitude": "-138.36", + "depth": "-452", + "temperature": "21.1", + "curviness": "2.2", + "chl": "0.1", + "ds": "1143180000", + "days": 13231 + } + }, + { + "parent": 2002, + "guid": 2487, + "values": { + "latitude": "24.11", + "longitude": "-138.46", + "depth": "-612", + "temperature": "21.5", + "curviness": "1.5", + "chl": "0.1", + "ds": "1143266400", + "days": 13232 + } + }, + { + "parent": 2002, + "guid": 2488, + "values": { + "latitude": "24.25", + "longitude": "-138.41", + "depth": "-484", + "temperature": "21.2", + "curviness": "1.2", + "chl": "0.1", + "ds": "1143352800", + "days": 13233 + } + }, + { + "parent": 2002, + "guid": 2489, + "values": { + "latitude": "24.44", + "longitude": "-138.36", + "depth": "-596", + "temperature": "21.1", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143439200", + "days": 13234 + } + }, + { + "parent": 2002, + "guid": 2490, + "values": { + "latitude": "24.71", + "longitude": "-138.35", + "depth": "-500", + "temperature": "20.8", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143525600", + "days": 13235 + } + }, + { + "parent": 2002, + "guid": 2491, + "values": { + "latitude": "25.03", + "longitude": "-138.42", + "depth": "-516", + "temperature": "20.4", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143612000", + "days": 13236 + } + }, + { + "parent": 2002, + "guid": 2492, + "values": { + "latitude": "25.4", + "longitude": "-138.57", + "depth": "-444", + "temperature": "20.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143698400", + "days": 13237 + } + }, + { + "parent": 2002, + "guid": 2493, + "values": { + "latitude": "25.76", + "longitude": "-138.76", + "depth": "-388", + "temperature": "20.7", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143784800", + "days": 13238 + } + }, + { + "parent": 2002, + "guid": 2494, + "values": { + "latitude": "26.04", + "longitude": "-138.94", + "depth": "-444", + "temperature": "20.8", + "curviness": "1.1", + "chl": "0.0", + "ds": "1143871200", + "days": 13239 + } + }, + { + "parent": 2002, + "guid": 2495, + "values": { + "latitude": "26.28", + "longitude": "-139.27", + "depth": "-468", + "temperature": "20.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1143957600", + "days": 13240 + } + }, + { + "parent": 2002, + "guid": 2496, + "values": { + "latitude": "26.48", + "longitude": "-139.83", + "depth": "-308", + "temperature": "20.5", + "curviness": "1.2", + "chl": "0.1", + "ds": "1144040400", + "days": 13241 + } + }, + { + "parent": 2002, + "guid": 2497, + "values": { + "latitude": "26.65", + "longitude": "-140.46", + "depth": "-428", + "temperature": "20.3", + "curviness": "1.2", + "chl": "0.0", + "ds": "1144126800", + "days": 13242 + } + }, + { + "parent": 2002, + "guid": 2498, + "values": { + "latitude": "26.84", + "longitude": "-140.89", + "depth": "-660", + "temperature": "20.1", + "curviness": "1.2", + "chl": "0.0", + "ds": "1144213200", + "days": 13243 + } + }, + { + "parent": 2002, + "guid": 2499, + "values": { + "latitude": "27.07", + "longitude": "-140.97", + "depth": "-492", + "temperature": "19.8", + "curviness": "1.2", + "chl": "0.0", + "ds": "1144299600", + "days": 13244 + } + }, + { + "parent": 2002, + "guid": 2500, + "values": { + "latitude": "27.29", + "longitude": "-140.85", + "depth": "-444", + "temperature": "19.5", + "curviness": "1.2", + "chl": "0.1", + "ds": "1144386000", + "days": 13245 + } + }, + { + "parent": 2002, + "guid": 2501, + "values": { + "latitude": "27.45", + "longitude": "-140.78", + "depth": "-452", + "temperature": "19.4", + "curviness": "1.3", + "chl": "0.1", + "ds": "1144472400", + "days": 13246 + } + }, + { + "parent": 2002, + "guid": 2502, + "values": { + "latitude": "27.54", + "longitude": "-140.95", + "depth": "-468", + "temperature": "19.3", + "curviness": "1.6", + "chl": "0.1", + "ds": "1144558800", + "days": 13247 + } + }, + { + "parent": 2002, + "guid": 2503, + "values": { + "latitude": "27.56", + "longitude": "-141.31", + "depth": "-476", + "temperature": "19.6", + "curviness": "3.9", + "chl": "0.0", + "ds": "1144645200", + "days": 13248 + } + }, + { + "parent": 2002, + "guid": 2504, + "values": { + "latitude": "27.5", + "longitude": "-141.7", + "depth": "-444", + "temperature": "19.7", + "curviness": "11.2", + "chl": "0.1", + "ds": "1144731600", + "days": 13249 + } + }, + { + "parent": 2002, + "guid": 2505, + "values": { + "latitude": "27.46", + "longitude": "-142.06", + "depth": "-516", + "temperature": "19.9", + "curviness": "3.3", + "chl": "0.1", + "ds": "1144818000", + "days": 13250 + } + }, + { + "parent": 2002, + "guid": 2506, + "values": { + "latitude": "27.45", + "longitude": "-142.23", + "depth": "-452", + "temperature": "19.8", + "curviness": "2.1", + "chl": "0.1", + "ds": "1144904400", + "days": 13251 + } + }, + { + "parent": 2002, + "guid": 2507, + "values": { + "latitude": "27.44", + "longitude": "-142.01", + "depth": "-484", + "temperature": "19.8", + "curviness": "1.7", + "chl": "0.1", + "ds": "1144990800", + "days": 13252 + } + }, + { + "parent": 2002, + "guid": 2508, + "values": { + "latitude": "27.33", + "longitude": "-141.43", + "depth": "-516", + "temperature": "19.2", + "curviness": "1.4", + "chl": "0.0", + "ds": "1145077200", + "days": 13253 + } + }, + { + "parent": 2002, + "guid": 2509, + "values": { + "latitude": "27.04", + "longitude": "-140.65", + "depth": "-460", + "temperature": "19.3", + "curviness": "1.2", + "chl": "0.0", + "ds": "1145163600", + "days": 13254 + } + }, + { + "parent": 2002, + "guid": 2510, + "values": { + "latitude": "26.54", + "longitude": "-139.86", + "depth": "-476", + "temperature": "20.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1145250000", + "days": 13255 + } + }, + { + "parent": 2002, + "guid": 2511, + "values": { + "latitude": "25.88", + "longitude": "-139.19", + "depth": "-484", + "temperature": "20.7", + "curviness": "1.0", + "chl": "0.0", + "ds": "1145336400", + "days": 13256 + } + }, + { + "parent": 2002, + "guid": 2512, + "values": { + "latitude": "25.21", + "longitude": "-138.62", + "depth": "-460", + "temperature": "20.7", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1145422800", + "days": 13257 + } + }, + { + "parent": 2002, + "guid": 2513, + "values": { + "latitude": "24.63", + "longitude": "-138.05", + "depth": "-492", + "temperature": "20.8", + "curviness": "1.0", + "chl": "0.1", + "ds": "1145509200", + "days": 13258 + } + }, + { + "parent": 2002, + "guid": 2514, + "values": { + "latitude": "24.22", + "longitude": "-137.54", + "depth": "-532", + "temperature": "21.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1145595600", + "days": 13259 + } + }, + { + "parent": 2002, + "guid": 2515, + "values": { + "latitude": "23.92", + "longitude": "-137.17", + "depth": "-564", + "temperature": "20.6", + "curviness": "1.1", + "chl": "0.0", + "ds": "1145682000", + "days": 13260 + } + }, + { + "parent": 2002, + "guid": 2516, + "values": { + "latitude": "23.71", + "longitude": "-136.78", + "depth": "-548", + "temperature": "20.6", + "curviness": "1.1", + "chl": "0.1", + "ds": "1145768400", + "days": 13261 + } + }, + { + "parent": 2002, + "guid": 2517, + "values": { + "latitude": "23.58", + "longitude": "-136.2", + "depth": "-476", + "temperature": "20.8", + "curviness": "1.1", + "chl": "0.0", + "ds": "1145854800", + "days": 13262 + } + }, + { + "parent": 2002, + "guid": 2518, + "values": { + "latitude": "23.49", + "longitude": "-135.51", + "depth": "-460", + "temperature": "21.1", + "curviness": "1.3", + "chl": "0.1", + "ds": "1145941200", + "days": 13263 + } + }, + { + "parent": 2002, + "guid": 2519, + "values": { + "latitude": "23.42", + "longitude": "-134.88", + "depth": "-444", + "temperature": "20.9", + "curviness": "1.7", + "chl": "0.0", + "ds": "1146027600", + "days": 13264 + } + }, + { + "parent": 2002, + "guid": 2520, + "values": { + "latitude": "23.31", + "longitude": "-134.52", + "depth": "-444", + "temperature": "20.6", + "curviness": "2.7", + "chl": "0.0", + "ds": "1146114000", + "days": 13265 + } + }, + { + "parent": 2002, + "guid": 2521, + "values": { + "latitude": "23.19", + "longitude": "-134.48", + "depth": "-428", + "temperature": "20.8", + "curviness": "4.0", + "chl": "0.0", + "ds": "1146200400", + "days": 13266 + } + }, + { + "parent": 2002, + "guid": 2522, + "values": { + "latitude": "23.11", + "longitude": "-134.63", + "depth": "-420", + "temperature": "21.0", + "curviness": "3.8", + "chl": "0.0", + "ds": "1146286800", + "days": 13267 + } + }, + { + "parent": 2002, + "guid": 2523, + "values": { + "latitude": "23.14", + "longitude": "-134.89", + "depth": "-428", + "temperature": "21.6", + "curviness": "2.4", + "chl": "0.0", + "ds": "1146373200", + "days": 13268 + } + }, + { + "parent": 2002, + "guid": 2524, + "values": { + "latitude": "23.38", + "longitude": "-135.2", + "depth": "-500", + "temperature": "21.6", + "curviness": "1.6", + "chl": "0.1", + "ds": "1146459600", + "days": 13269 + } + }, + { + "parent": 2002, + "guid": 2525, + "values": { + "latitude": "23.79", + "longitude": "-135.56", + "depth": "-452", + "temperature": "21.5", + "curviness": "1.5", + "chl": "0.0", + "ds": "1146546000", + "days": 13270 + } + }, + { + "parent": 2002, + "guid": 2526, + "values": { + "latitude": "24.21", + "longitude": "-135.83", + "depth": "-492", + "temperature": "21.3", + "curviness": "2.0", + "chl": "0.1", + "ds": "1146632400", + "days": 13271 + } + }, + { + "parent": 2002, + "guid": 2527, + "values": { + "latitude": "24.6", + "longitude": "-136.02", + "depth": "-484", + "temperature": "21.0", + "curviness": "3.3", + "chl": "0.0", + "ds": "1146718800", + "days": 13272 + } + }, + { + "parent": 2002, + "guid": 2528, + "values": { + "latitude": "24.86", + "longitude": "-136.11", + "depth": "-516", + "temperature": "20.9", + "curviness": "4.0", + "chl": "0.0", + "ds": "1146805200", + "days": 13273 + } + }, + { + "parent": 2002, + "guid": 2529, + "values": { + "latitude": "24.99", + "longitude": "-136.09", + "depth": "-500", + "temperature": "20.9", + "curviness": "2.8", + "chl": "0.0", + "ds": "1146891600", + "days": 13274 + } + }, + { + "parent": 2002, + "guid": 2530, + "values": { + "latitude": "24.93", + "longitude": "-135.83", + "depth": "-452", + "temperature": "21.1", + "curviness": "2.0", + "chl": "0.0", + "ds": "1146978000", + "days": 13275 + } + }, + { + "parent": 2002, + "guid": 2531, + "values": { + "latitude": "24.71", + "longitude": "-135.32", + "depth": "-468", + "temperature": "20.6", + "curviness": "1.6", + "chl": "0.1", + "ds": "1147064400", + "days": 13276 + } + }, + { + "parent": 2002, + "guid": 2532, + "values": { + "latitude": "24.32", + "longitude": "-134.65", + "depth": "-444", + "temperature": "20.1", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1147150800", + "days": 13277 + } + }, + { + "parent": 2002, + "guid": 2533, + "values": { + "latitude": "23.84", + "longitude": "-133.9", + "depth": "-564", + "temperature": "20.4", + "curviness": "1.2", + "chl": "0.0", + "ds": "1147237200", + "days": 13278 + } + }, + { + "parent": 2002, + "guid": 2534, + "values": { + "latitude": "23.35", + "longitude": "-133.33", + "depth": "-404", + "temperature": "20.9", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1147323600", + "days": 13279 + } + }, + { + "parent": 2002, + "guid": 2535, + "values": { + "latitude": "22.84", + "longitude": "-133.13", + "depth": "-428", + "temperature": "21.0", + "curviness": "1.4", + "chl": "0.1", + "ds": "1147410000", + "days": 13280 + } + }, + { + "parent": 2002, + "guid": 2536, + "values": { + "latitude": "22.29", + "longitude": "-133.17", + "depth": "-460", + "temperature": "21.1", + "curviness": "1.8", + "chl": "0.1", + "ds": "1147496400", + "days": 13281 + } + }, + { + "parent": 2002, + "guid": 2537, + "values": { + "latitude": "21.86", + "longitude": "-133.24", + "depth": "-428", + "temperature": "21.4", + "curviness": "2.9", + "chl": "0.0", + "ds": "1147582800", + "days": 13282 + } + }, + { + "parent": 2002, + "guid": 2538, + "values": { + "latitude": "21.66", + "longitude": "-133.29", + "depth": "-404", + "temperature": "21.6", + "curviness": "6.5", + "chl": "-999.0", + "ds": "1147669200", + "days": 13283 + } + }, + { + "parent": 2002, + "guid": 2539, + "values": { + "latitude": "21.78", + "longitude": "-133.38", + "depth": "-444", + "temperature": "21.8", + "curviness": "3.2", + "chl": "0.1", + "ds": "1147755600", + "days": 13284 + } + }, + { + "parent": 2002, + "guid": 2540, + "values": { + "latitude": "22.07", + "longitude": "-133.51", + "depth": "-404", + "temperature": "22.5", + "curviness": "1.9", + "chl": "0.1", + "ds": "1147842000", + "days": 13285 + } + }, + { + "parent": 2002, + "guid": 2541, + "values": { + "latitude": "22.43", + "longitude": "-133.7", + "depth": "-420", + "temperature": "22.3", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1147928400", + "days": 13286 + } + }, + { + "parent": 2002, + "guid": 2542, + "values": { + "latitude": "22.82", + "longitude": "-133.99", + "depth": "-420", + "temperature": "22.0", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1148014800", + "days": 13287 + } + }, + { + "parent": 2002, + "guid": 2543, + "values": { + "latitude": "23.29", + "longitude": "-134.31", + "depth": "-444", + "temperature": "22.2", + "curviness": "1.1", + "chl": "0.1", + "ds": "1148101200", + "days": 13288 + } + }, + { + "parent": 2002, + "guid": 2544, + "values": { + "latitude": "23.79", + "longitude": "-134.68", + "depth": "-436", + "temperature": "22.2", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1148187600", + "days": 13289 + } + }, + { + "parent": 2002, + "guid": 2545, + "values": { + "latitude": "24.3", + "longitude": "-134.99", + "depth": "-452", + "temperature": "21.4", + "curviness": "1.2", + "chl": "0.1", + "ds": "1148274000", + "days": 13290 + } + }, + { + "parent": 2002, + "guid": 2546, + "values": { + "latitude": "24.75", + "longitude": "-135.09", + "depth": "-460", + "temperature": "21.5", + "curviness": "1.2", + "chl": "0.0", + "ds": "1148360400", + "days": 13291 + } + }, + { + "parent": 2002, + "guid": 2547, + "values": { + "latitude": "25.16", + "longitude": "-134.96", + "depth": "-468", + "temperature": "21.1", + "curviness": "1.2", + "chl": "0.0", + "ds": "1148446800", + "days": 13292 + } + }, + { + "parent": 2002, + "guid": 2548, + "values": { + "latitude": "25.49", + "longitude": "-134.74", + "depth": "-484", + "temperature": "21.2", + "curviness": "1.4", + "chl": "0.0", + "ds": "1148533200", + "days": 13293 + } + }, + { + "parent": 2002, + "guid": 2549, + "values": { + "latitude": "25.75", + "longitude": "-134.45", + "depth": "-452", + "temperature": "21.3", + "curviness": "1.8", + "chl": "0.1", + "ds": "1148619600", + "days": 13294 + } + }, + { + "parent": 2002, + "guid": 2550, + "values": { + "latitude": "25.9", + "longitude": "-134.23", + "depth": "-452", + "temperature": "20.6", + "curviness": "2.6", + "chl": "0.1", + "ds": "1148706000", + "days": 13295 + } + }, + { + "parent": 2002, + "guid": 2551, + "values": { + "latitude": "25.97", + "longitude": "-134.08", + "depth": "-444", + "temperature": "20.5", + "curviness": "2.2", + "chl": "0.0", + "ds": "1148792400", + "days": 13296 + } + }, + { + "parent": 2002, + "guid": 2552, + "values": { + "latitude": "25.93", + "longitude": "-133.98", + "depth": "-396", + "temperature": "20.4", + "curviness": "1.6", + "chl": "0.1", + "ds": "1148878800", + "days": 13297 + } + }, + { + "parent": 2002, + "guid": 2553, + "values": { + "latitude": "25.79", + "longitude": "-133.96", + "depth": "-420", + "temperature": "20.4", + "curviness": "1.3", + "chl": "0.0", + "ds": "1148965200", + "days": 13298 + } + }, + { + "parent": 2002, + "guid": 2554, + "values": { + "latitude": "25.43", + "longitude": "-133.88", + "depth": "-484", + "temperature": "20.9", + "curviness": "1.1", + "chl": "0.0", + "ds": "1149051600", + "days": 13299 + } + }, + { + "parent": 2002, + "guid": 2555, + "values": { + "latitude": "24.82", + "longitude": "-133.72", + "depth": "-476", + "temperature": "21.1", + "curviness": "1.1", + "chl": "0.1", + "ds": "1149138000", + "days": 13300 + } + }, + { + "parent": 2002, + "guid": 2556, + "values": { + "latitude": "24.1", + "longitude": "-133.5", + "depth": "-388", + "temperature": "21.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1149224400", + "days": 13301 + } + }, + { + "parent": 2002, + "guid": 2557, + "values": { + "latitude": "23.37", + "longitude": "-133.24", + "depth": "-444", + "temperature": "21.6", + "curviness": "1.1", + "chl": "0.1", + "ds": "1149310800", + "days": 13302 + } + }, + { + "parent": 2002, + "guid": 2558, + "values": { + "latitude": "22.7", + "longitude": "-132.98", + "depth": "-452", + "temperature": "21.8", + "curviness": "1.2", + "chl": "0.1", + "ds": "1149397200", + "days": 13303 + } + }, + { + "parent": 2002, + "guid": 2559, + "values": { + "latitude": "22.19", + "longitude": "-132.81", + "depth": "-404", + "temperature": "21.8", + "curviness": "1.5", + "chl": "0.0", + "ds": "1149483600", + "days": 13304 + } + }, + { + "parent": 2002, + "guid": 2560, + "values": { + "latitude": "21.84", + "longitude": "-132.69", + "depth": "-452", + "temperature": "21.7", + "curviness": "2.0", + "chl": "0.0", + "ds": "1149570000", + "days": 13305 + } + }, + { + "parent": 2002, + "guid": 2561, + "values": { + "latitude": "21.73", + "longitude": "-132.56", + "depth": "-412", + "temperature": "21.8", + "curviness": "3.4", + "chl": "0.0", + "ds": "1149656400", + "days": 13306 + } + }, + { + "parent": 2002, + "guid": 2562, + "values": { + "latitude": "21.84", + "longitude": "-132.48", + "depth": "-372", + "temperature": "21.7", + "curviness": "9.4", + "chl": "0.0", + "ds": "1149742800", + "days": 13307 + } + }, + { + "parent": 2002, + "guid": 2563, + "values": { + "latitude": "22.12", + "longitude": "-132.44", + "depth": "-388", + "temperature": "21.8", + "curviness": "3.9", + "chl": "0.0", + "ds": "1149829200", + "days": 13308 + } + }, + { + "parent": 2002, + "guid": 2564, + "values": { + "latitude": "22.5", + "longitude": "-132.46", + "depth": "-500", + "temperature": "21.9", + "curviness": "1.9", + "chl": "0.0", + "ds": "1149915600", + "days": 13309 + } + }, + { + "parent": 2002, + "guid": 2565, + "values": { + "latitude": "22.87", + "longitude": "-132.54", + "depth": "-380", + "temperature": "21.9", + "curviness": "1.4", + "chl": "0.0", + "ds": "1150002000", + "days": 13310 + } + }, + { + "parent": 2002, + "guid": 2566, + "values": { + "latitude": "23.17", + "longitude": "-132.7", + "depth": "-372", + "temperature": "21.8", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1150088400", + "days": 13311 + } + }, + { + "parent": 2002, + "guid": 2567, + "values": { + "latitude": "23.32", + "longitude": "-132.84", + "depth": "-264", + "temperature": "21.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1150174800", + "days": 13312 + } + }, + { + "parent": 2002, + "guid": 2568, + "values": { + "latitude": "23.41", + "longitude": "-132.82", + "depth": "-372", + "temperature": "21.7", + "curviness": "1.9", + "chl": "-999.0", + "ds": "1150261200", + "days": 13313 + } + }, + { + "parent": 2002, + "guid": 2569, + "values": { + "latitude": "23.54", + "longitude": "-132.53", + "depth": "-404", + "temperature": "21.6", + "curviness": "4.7", + "chl": "-999.0", + "ds": "1150347600", + "days": 13314 + } + }, + { + "parent": 2002, + "guid": 2570, + "values": { + "latitude": "23.67", + "longitude": "-132.08", + "depth": "-484", + "temperature": "21.6", + "curviness": "10.8", + "chl": "0.0", + "ds": "1150434000", + "days": 13315 + } + }, + { + "parent": 2002, + "guid": 2571, + "values": { + "latitude": "23.75", + "longitude": "-131.67", + "depth": "-340", + "temperature": "21.3", + "curviness": "2.9", + "chl": "0.0", + "ds": "1150520400", + "days": 13316 + } + }, + { + "parent": 2002, + "guid": 2572, + "values": { + "latitude": "23.7", + "longitude": "-131.54", + "depth": "-396", + "temperature": "21.4", + "curviness": "2.0", + "chl": "-999.0", + "ds": "1150606800", + "days": 13317 + } + }, + { + "parent": 2002, + "guid": 2573, + "values": { + "latitude": "23.49", + "longitude": "-131.76", + "depth": "-404", + "temperature": "21.6", + "curviness": "1.6", + "chl": "-999.0", + "ds": "1150693200", + "days": 13318 + } + }, + { + "parent": 2002, + "guid": 2574, + "values": { + "latitude": "23.12", + "longitude": "-132.22", + "depth": "-272", + "temperature": "21.8", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1150779600", + "days": 13319 + } + }, + { + "parent": 2002, + "guid": 2575, + "values": { + "latitude": "22.58", + "longitude": "-132.67", + "depth": "-404", + "temperature": "22.0", + "curviness": "1.2", + "chl": "0.1", + "ds": "1150866000", + "days": 13320 + } + }, + { + "parent": 2002, + "guid": 2576, + "values": { + "latitude": "21.86", + "longitude": "-132.95", + "depth": "-340", + "temperature": "22.1", + "curviness": "1.2", + "chl": "0.1", + "ds": "1150952400", + "days": 13321 + } + }, + { + "parent": 2002, + "guid": 2577, + "values": { + "latitude": "21.05", + "longitude": "-133.16", + "depth": "-364", + "temperature": "22.4", + "curviness": "1.3", + "chl": "0.1", + "ds": "1151038800", + "days": 13322 + } + }, + { + "parent": 2002, + "guid": 2578, + "values": { + "latitude": "20.29", + "longitude": "-133.32", + "depth": "-476", + "temperature": "22.5", + "curviness": "1.5", + "chl": "0.1", + "ds": "1151125200", + "days": 13323 + } + }, + { + "parent": 2002, + "guid": 2579, + "values": { + "latitude": "19.76", + "longitude": "-133.39", + "depth": "-436", + "temperature": "21.9", + "curviness": "1.9", + "chl": "0.1", + "ds": "1151211600", + "days": 13324 + } + }, + { + "parent": 2002, + "guid": 2580, + "values": { + "latitude": "19.58", + "longitude": "-133.29", + "depth": "-428", + "temperature": "21.9", + "curviness": "3.2", + "chl": "0.1", + "ds": "1151298000", + "days": 13325 + } + }, + { + "parent": 2002, + "guid": 2581, + "values": { + "latitude": "19.65", + "longitude": "-133.08", + "depth": "-428", + "temperature": "21.9", + "curviness": "22.1", + "chl": "0.1", + "ds": "1151384400", + "days": 13326 + } + }, + { + "parent": 2002, + "guid": 2582, + "values": { + "latitude": "19.89", + "longitude": "-132.91", + "depth": "-444", + "temperature": "21.9", + "curviness": "3.4", + "chl": "0.1", + "ds": "1151470800", + "days": 13327 + } + }, + { + "parent": 2002, + "guid": 2583, + "values": { + "latitude": "20.2", + "longitude": "-132.93", + "depth": "-492", + "temperature": "22.0", + "curviness": "1.6", + "chl": "0.1", + "ds": "1151557200", + "days": 13328 + } + }, + { + "parent": 2002, + "guid": 2584, + "values": { + "latitude": "20.61", + "longitude": "-133.02", + "depth": "-516", + "temperature": "22.1", + "curviness": "1.1", + "chl": "0.1", + "ds": "1151643600", + "days": 13329 + } + }, + { + "parent": 2002, + "guid": 2585, + "values": { + "latitude": "21.12", + "longitude": "-133.07", + "depth": "-436", + "temperature": "22.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1151730000", + "days": 13330 + } + }, + { + "parent": 2002, + "guid": 2586, + "values": { + "latitude": "21.71", + "longitude": "-133.11", + "depth": "-428", + "temperature": "21.7", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1151816400", + "days": 13331 + } + }, + { + "parent": 2002, + "guid": 2587, + "values": { + "latitude": "22.37", + "longitude": "-133.15", + "depth": "-372", + "temperature": "21.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1151902800", + "days": 13332 + } + }, + { + "parent": 2002, + "guid": 2588, + "values": { + "latitude": "23.13", + "longitude": "-133.19", + "depth": "-252", + "temperature": "21.1", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1151989200", + "days": 13333 + } + }, + { + "parent": 2002, + "guid": 2589, + "values": { + "latitude": "23.89", + "longitude": "-133.19", + "depth": "-388", + "temperature": "21.6", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1152075600", + "days": 13334 + } + }, + { + "parent": 2002, + "guid": 2590, + "values": { + "latitude": "24.6", + "longitude": "-133.17", + "depth": "-324", + "temperature": "21.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1152162000", + "days": 13335 + } + }, + { + "parent": 2002, + "guid": 2591, + "values": { + "latitude": "25.26", + "longitude": "-133.1", + "depth": "-388", + "temperature": "21.3", + "curviness": "1.0", + "chl": "0.1", + "ds": "1152248400", + "days": 13336 + } + }, + { + "parent": 2002, + "guid": 2592, + "values": { + "latitude": "25.9", + "longitude": "-132.93", + "depth": "-396", + "temperature": "20.4", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1152334800", + "days": 13337 + } + }, + { + "parent": 2002, + "guid": 2593, + "values": { + "latitude": "26.6", + "longitude": "-132.79", + "depth": "-404", + "temperature": "20.0", + "curviness": "1.0", + "chl": "0.1", + "ds": "1152421200", + "days": 13338 + } + }, + { + "parent": 2002, + "guid": 2594, + "values": { + "latitude": "27.29", + "longitude": "-132.77", + "depth": "-428", + "temperature": "21.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1152507600", + "days": 13339 + } + }, + { + "parent": 2002, + "guid": 2595, + "values": { + "latitude": "27.99", + "longitude": "-132.8", + "depth": "-308", + "temperature": "21.6", + "curviness": "1.0", + "chl": "0.1", + "ds": "1152594000", + "days": 13340 + } + }, + { + "parent": 2002, + "guid": 2596, + "values": { + "latitude": "28.7", + "longitude": "-132.83", + "depth": "-428", + "temperature": "21.3", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1152680400", + "days": 13341 + } + }, + { + "parent": 2002, + "guid": 2597, + "values": { + "latitude": "29.4", + "longitude": "-132.95", + "depth": "-428", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1152766800", + "days": 13342 + } + }, + { + "parent": 2002, + "guid": 2598, + "values": { + "latitude": "30.04", + "longitude": "-133.08", + "depth": "-380", + "temperature": "21.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1152853200", + "days": 13343 + } + }, + { + "parent": 2002, + "guid": 2599, + "values": { + "latitude": "30.51", + "longitude": "-133.22", + "depth": "-420", + "temperature": "21.4", + "curviness": "1.1", + "chl": "0.1", + "ds": "1152939600", + "days": 13344 + } + }, + { + "parent": 2002, + "guid": 2600, + "values": { + "latitude": "30.77", + "longitude": "-133.37", + "depth": "-324", + "temperature": "21.6", + "curviness": "1.2", + "chl": "0.1", + "ds": "1153026000", + "days": 13345 + } + }, + { + "parent": 2002, + "guid": 2601, + "values": { + "latitude": "30.86", + "longitude": "-133.48", + "depth": "-516", + "temperature": "20.7", + "curviness": "1.4", + "chl": "0.1", + "ds": "1153112400", + "days": 13346 + } + }, + { + "parent": 2002, + "guid": 2602, + "values": { + "latitude": "30.9", + "longitude": "-133.48", + "depth": "-468", + "temperature": "21.0", + "curviness": "2.2", + "chl": "0.1", + "ds": "1153198800", + "days": 13347 + } + }, + { + "parent": 2002, + "guid": 2603, + "values": { + "latitude": "30.86", + "longitude": "-133.53", + "depth": "-564", + "temperature": "21.8", + "curviness": "11.3", + "chl": "0.1", + "ds": "1153285200", + "days": 13348 + } + }, + { + "parent": 2002, + "guid": 2604, + "values": { + "latitude": "30.78", + "longitude": "-133.55", + "depth": "-452", + "temperature": "21.9", + "curviness": "2.0", + "chl": "0.1", + "ds": "1153371600", + "days": 13349 + } + }, + { + "parent": 2002, + "guid": 2605, + "values": { + "latitude": "30.68", + "longitude": "-133.58", + "depth": "-492", + "temperature": "21.7", + "curviness": "1.3", + "chl": "0.1", + "ds": "1153458000", + "days": 13350 + } + }, + { + "parent": 2002, + "guid": 2606, + "values": { + "latitude": "30.54", + "longitude": "-133.56", + "depth": "-420", + "temperature": "20.4", + "curviness": "1.1", + "chl": "0.0", + "ds": "1153544400", + "days": 13351 + } + }, + { + "parent": 2002, + "guid": 2607, + "values": { + "latitude": "30.35", + "longitude": "-133.37", + "depth": "-296", + "temperature": "20.4", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1153630800", + "days": 13352 + } + }, + { + "parent": 2002, + "guid": 2608, + "values": { + "latitude": "30.1", + "longitude": "-132.88", + "depth": "-436", + "temperature": "20.9", + "curviness": "1.1", + "chl": "0.1", + "ds": "1153717200", + "days": 13353 + } + }, + { + "parent": 2002, + "guid": 2609, + "values": { + "latitude": "29.77", + "longitude": "-132.19", + "depth": "-420", + "temperature": "21.2", + "curviness": "1.1", + "chl": "0.1", + "ds": "1153803600", + "days": 13354 + } + }, + { + "parent": 2002, + "guid": 2610, + "values": { + "latitude": "29.39", + "longitude": "-131.42", + "depth": "-420", + "temperature": "20.6", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1153890000", + "days": 13355 + } + }, + { + "parent": 2002, + "guid": 2611, + "values": { + "latitude": "28.98", + "longitude": "-130.82", + "depth": "-380", + "temperature": "21.0", + "curviness": "1.2", + "chl": "0.1", + "ds": "1153976400", + "days": 13356 + } + }, + { + "parent": 2002, + "guid": 2612, + "values": { + "latitude": "28.62", + "longitude": "-130.42", + "depth": "-380", + "temperature": "21.4", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1154062800", + "days": 13357 + } + }, + { + "parent": 2002, + "guid": 2613, + "values": { + "latitude": "28.51", + "longitude": "-130.01", + "depth": "-444", + "temperature": "21.4", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1154149200", + "days": 13358 + } + }, + { + "parent": 2002, + "guid": 2614, + "values": { + "latitude": "28.72", + "longitude": "-129.47", + "depth": "-444", + "temperature": "20.8", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1154235600", + "days": 13359 + } + }, + { + "parent": 2002, + "guid": 2615, + "values": { + "latitude": "29.25", + "longitude": "-128.71", + "depth": "-460", + "temperature": "20.4", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1154322000", + "days": 13360 + } + }, + { + "parent": 2002, + "guid": 2616, + "values": { + "latitude": "29.95", + "longitude": "-127.82", + "depth": "-452", + "temperature": "20.2", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1154408400", + "days": 13361 + } + }, + { + "parent": 2002, + "guid": 2617, + "values": { + "latitude": "30.78", + "longitude": "-126.86", + "depth": "-428", + "temperature": "19.4", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1154494800", + "days": 13362 + } + }, + { + "parent": 2002, + "guid": 2618, + "values": { + "latitude": "31.7", + "longitude": "-125.84", + "depth": "-428", + "temperature": "19.2", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1154581200", + "days": 13363 + } + }, + { + "parent": 2002, + "guid": 2619, + "values": { + "latitude": "32.67", + "longitude": "-124.73", + "depth": "-388", + "temperature": "19.2", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1154667600", + "days": 13364 + } + }, + { + "parent": 2002, + "guid": 2620, + "values": { + "latitude": "33.59", + "longitude": "-123.66", + "depth": "-404", + "temperature": "17.4", + "curviness": "1.1", + "chl": "0.1", + "ds": "1154754000", + "days": 13365 + } + }, + { + "parent": 2002, + "guid": 2621, + "values": { + "latitude": "34.42", + "longitude": "-122.82", + "depth": "-468", + "temperature": "17.9", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1154840400", + "days": 13366 + } + }, + { + "parent": 2002, + "guid": 2622, + "values": { + "latitude": "35.13", + "longitude": "-122.43", + "depth": "-316", + "temperature": "18.0", + "curviness": "1.1", + "chl": "0.3", + "ds": "1154926800", + "days": 13367 + } + }, + { + "parent": 2002, + "guid": 2623, + "values": { + "latitude": "35.74", + "longitude": "-122.51", + "depth": "-260", + "temperature": "17.4", + "curviness": "1.2", + "chl": "1.0", + "ds": "1155013200", + "days": 13368 + } + }, + { + "parent": 2002, + "guid": 2624, + "values": { + "latitude": "36.25", + "longitude": "-122.82", + "depth": "-142", + "temperature": "16.1", + "curviness": "1.2", + "chl": "2.2", + "ds": "1155099600", + "days": 13369 + } + }, + { + "parent": 2002, + "guid": 2625, + "values": { + "latitude": "36.62", + "longitude": "-123.23", + "depth": "-90", + "temperature": "15.6", + "curviness": "1.2", + "chl": "0.5", + "ds": "1155186000", + "days": 13370 + } + }, + { + "parent": 2002, + "guid": 2626, + "values": { + "latitude": "36.87", + "longitude": "-123.43", + "depth": "-45", + "temperature": "15.7", + "curviness": "1.2", + "chl": "0.6", + "ds": "1155272400", + "days": 13371 + } + }, + { + "parent": 2002, + "guid": 2627, + "values": { + "latitude": "37.01", + "longitude": "-123.4", + "depth": "-68", + "temperature": "15.5", + "curviness": "1.2", + "chl": "0.6", + "ds": "1155358800", + "days": 13372 + } + }, + { + "parent": 2002, + "guid": 2628, + "values": { + "latitude": "37.1", + "longitude": "-123.25", + "depth": "-73", + "temperature": "15.4", + "curviness": "1.3", + "chl": "0.7", + "ds": "1155445200", + "days": 13373 + } + }, + { + "parent": 2002, + "guid": 2629, + "values": { + "latitude": "37.15", + "longitude": "-123.06", + "depth": "-60", + "temperature": "15.7", + "curviness": "1.5", + "chl": "1.6", + "ds": "1155531600", + "days": 13374 + } + }, + { + "parent": 2002, + "guid": 2630, + "values": { + "latitude": "37.19", + "longitude": "-122.95", + "depth": "-63", + "temperature": "16.0", + "curviness": "1.4", + "chl": "2.6", + "ds": "1155618000", + "days": 13375 + } + }, + { + "parent": 2002, + "guid": 2631, + "values": { + "latitude": "37.24", + "longitude": "-122.85", + "depth": "-58", + "temperature": "16.0", + "curviness": "1.1", + "chl": "5.4", + "ds": "1155704400", + "days": 13376 + } + }, + { + "parent": 2002, + "guid": 2632, + "values": { + "latitude": "37.27", + "longitude": "-122.78", + "depth": "-41", + "temperature": "15.7", + "curviness": "1.2", + "chl": "5.8", + "ds": "1155790800", + "days": 13377 + } + }, + { + "parent": 2002, + "guid": 2633, + "values": { + "latitude": "37.31", + "longitude": "-122.77", + "depth": "-46", + "temperature": "15.6", + "curviness": "1.8", + "chl": "2.6", + "ds": "1155877200", + "days": 13378 + } + }, + { + "parent": 2002, + "guid": 2634, + "values": { + "latitude": "37.32", + "longitude": "-122.74", + "depth": "-38", + "temperature": "15.6", + "curviness": "2.0", + "chl": "5.5", + "ds": "1155963600", + "days": 13379 + } + }, + { + "parent": 2002, + "guid": 2635, + "values": { + "latitude": "37.32", + "longitude": "-122.65", + "depth": "-60", + "temperature": "15.5", + "curviness": "1.8", + "chl": "6.7", + "ds": "1156050000", + "days": 13380 + } + }, + { + "parent": 2002, + "guid": 2636, + "values": { + "latitude": "37.34", + "longitude": "-122.63", + "depth": "-50", + "temperature": "15.5", + "curviness": "1.7", + "chl": "6.7", + "ds": "1156136400", + "days": 13381 + } + }, + { + "parent": 2002, + "guid": 2637, + "values": { + "latitude": "37.38", + "longitude": "-122.71", + "depth": "-48", + "temperature": "15.5", + "curviness": "1.6", + "chl": "3.1", + "ds": "1156222800", + "days": 13382 + } + }, + { + "parent": 2002, + "guid": 2638, + "values": { + "latitude": "37.46", + "longitude": "-122.9", + "depth": "-70", + "temperature": "15.0", + "curviness": "1.7", + "chl": "5.8", + "ds": "1156309200", + "days": 13383 + } + }, + { + "parent": 2002, + "guid": 2639, + "values": { + "latitude": "37.55", + "longitude": "-123.02", + "depth": "-54", + "temperature": "14.4", + "curviness": "2.1", + "chl": "8.6", + "ds": "1156395600", + "days": 13384 + } + }, + { + "parent": 2002, + "guid": 2640, + "values": { + "latitude": "37.62", + "longitude": "-123.01", + "depth": "-59", + "temperature": "14.3", + "curviness": "2.7", + "chl": "5.0", + "ds": "1156482000", + "days": 13385 + } + }, + { + "parent": 2002, + "guid": 2641, + "values": { + "latitude": "37.67", + "longitude": "-122.96", + "depth": "-60", + "temperature": "14.6", + "curviness": "3.9", + "chl": "3.2", + "ds": "1156568400", + "days": 13386 + } + }, + { + "parent": 2002, + "guid": 2642, + "values": { + "latitude": "37.69", + "longitude": "-122.94", + "depth": "0", + "temperature": "14.7", + "curviness": "5.3", + "chl": "2.1", + "ds": "1156654800", + "days": 13387 + } + }, + { + "parent": 2003, + "guid": 2643, + "values": { + "latitude": "37.2374", + "longitude": "-123.0599", + "depth": "0", + "temperature": "13.1", + "curviness": "13.0", + "chl": "10.6", + "ds": "1148965200", + "days": 13298 + } + }, + { + "parent": 2003, + "guid": 2644, + "values": { + "latitude": "37.9739", + "longitude": "-124.0185", + "depth": "-337", + "temperature": "12.5", + "curviness": "5.5", + "chl": "1.1", + "ds": "1149051600", + "days": 13299 + } + }, + { + "parent": 2003, + "guid": 2645, + "values": { + "latitude": "38.6042", + "longitude": "-124.6982", + "depth": "-399", + "temperature": "12.8", + "curviness": "2.9", + "chl": "0.7", + "ds": "1149138000", + "days": 13300 + } + }, + { + "parent": 2003, + "guid": 2646, + "values": { + "latitude": "39.1314", + "longitude": "-125.4594", + "depth": "-398", + "temperature": "14.0", + "curviness": "1.5", + "chl": "0.6", + "ds": "1149224400", + "days": 13301 + } + }, + { + "parent": 2003, + "guid": 2647, + "values": { + "latitude": "39.8126", + "longitude": "-125.9202", + "depth": "-500", + "temperature": "13.2", + "curviness": "0.0", + "chl": "0.3", + "ds": "1149310800", + "days": 13302 + } + }, + { + "parent": 2003, + "guid": 2648, + "values": { + "latitude": "40.5088", + "longitude": "-126.2317", + "depth": "-527", + "temperature": "13.2", + "curviness": "1.0", + "chl": "0.3", + "ds": "1149397200", + "days": 13303 + } + }, + { + "parent": 2003, + "guid": 2649, + "values": { + "latitude": "41.0754", + "longitude": "-126.8524", + "depth": "-560", + "temperature": "12.8", + "curviness": "1.0", + "chl": "0.3", + "ds": "1149483600", + "days": 13304 + } + }, + { + "parent": 2003, + "guid": 2650, + "values": { + "latitude": "41.5959", + "longitude": "-127.443", + "depth": "-477", + "temperature": "14.0", + "curviness": "1.0", + "chl": "0.2", + "ds": "1149570000", + "days": 13305 + } + }, + { + "parent": 2003, + "guid": 2651, + "values": { + "latitude": "42.2403", + "longitude": "-127.6977", + "depth": "-590", + "temperature": "13.8", + "curviness": "1.0", + "chl": "0.2", + "ds": "1149656400", + "days": 13306 + } + }, + { + "parent": 2003, + "guid": 2652, + "values": { + "latitude": "42.9734", + "longitude": "-127.8279", + "depth": "-382", + "temperature": "13.8", + "curviness": "1.0", + "chl": "0.2", + "ds": "1149742800", + "days": 13307 + } + }, + { + "parent": 2003, + "guid": 2653, + "values": { + "latitude": "43.8005", + "longitude": "-128.1263", + "depth": "-466", + "temperature": "13.7", + "curviness": "1.0", + "chl": "0.2", + "ds": "1149829200", + "days": 13308 + } + }, + { + "parent": 2003, + "guid": 2654, + "values": { + "latitude": "44.3093", + "longitude": "-128.739", + "depth": "-503", + "temperature": "13.8", + "curviness": "1.0", + "chl": "0.2", + "ds": "1149915600", + "days": 13309 + } + }, + { + "parent": 2003, + "guid": 2655, + "values": { + "latitude": "44.8377", + "longitude": "-129.0645", + "depth": "-644", + "temperature": "13.6", + "curviness": "1.0", + "chl": "0.2", + "ds": "1150002000", + "days": 13310 + } + }, + { + "parent": 2003, + "guid": 2656, + "values": { + "latitude": "45.4439", + "longitude": "-129.518", + "depth": "-560", + "temperature": "13.0", + "curviness": "1.1", + "chl": "0.2", + "ds": "1150088400", + "days": 13311 + } + }, + { + "parent": 2003, + "guid": 2657, + "values": { + "latitude": "46.0287", + "longitude": "-129.6052", + "depth": "-418", + "temperature": "12.5", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1150174800", + "days": 13312 + } + }, + { + "parent": 2003, + "guid": 2658, + "values": { + "latitude": "46.4478", + "longitude": "-130.1146", + "depth": "-586", + "temperature": "12.5", + "curviness": "1.2", + "chl": "0.2", + "ds": "1150261200", + "days": 13313 + } + }, + { + "parent": 2003, + "guid": 2659, + "values": { + "latitude": "46.825", + "longitude": "-130.3325", + "depth": "-445", + "temperature": "11.8", + "curviness": "1.2", + "chl": "0.2", + "ds": "1150347600", + "days": 13314 + } + }, + { + "parent": 2003, + "guid": 2660, + "values": { + "latitude": "46.9568", + "longitude": "-130.4514", + "depth": "-617", + "temperature": "11.8", + "curviness": "1.2", + "chl": "0.2", + "ds": "1150434000", + "days": 13315 + } + }, + { + "parent": 2003, + "guid": 2661, + "values": { + "latitude": "46.9503", + "longitude": "-130.2833", + "depth": "-579", + "temperature": "12.2", + "curviness": "1.3", + "chl": "0.2", + "ds": "1150520400", + "days": 13316 + } + }, + { + "parent": 2003, + "guid": 2662, + "values": { + "latitude": "46.9131", + "longitude": "-129.6802", + "depth": "-574", + "temperature": "12.6", + "curviness": "1.4", + "chl": "0.2", + "ds": "1150693200", + "days": 13318 + } + }, + { + "parent": 2003, + "guid": 2663, + "values": { + "latitude": "47.2835", + "longitude": "-129.8631", + "depth": "-606", + "temperature": "12.4", + "curviness": "1.4", + "chl": "0.2", + "ds": "1150779600", + "days": 13319 + } + }, + { + "parent": 2003, + "guid": 2664, + "values": { + "latitude": "47.6561", + "longitude": "-129.8159", + "depth": "-628", + "temperature": "12.4", + "curviness": "1.4", + "chl": "0.2", + "ds": "1150866000", + "days": 13320 + } + }, + { + "parent": 2003, + "guid": 2665, + "values": { + "latitude": "48.1346", + "longitude": "-130.0056", + "depth": "-432", + "temperature": "11.8", + "curviness": "1.3", + "chl": "0.2", + "ds": "1150952400", + "days": 13321 + } + }, + { + "parent": 2003, + "guid": 2666, + "values": { + "latitude": "48.4662", + "longitude": "-129.8613", + "depth": "-287", + "temperature": "11.2", + "curviness": "1.2", + "chl": "0.3", + "ds": "1151038800", + "days": 13322 + } + }, + { + "parent": 2003, + "guid": 2667, + "values": { + "latitude": "48.4097", + "longitude": "-129.945", + "depth": "-485", + "temperature": "13.6", + "curviness": "1.1", + "chl": "0.3", + "ds": "1151211600", + "days": 13324 + } + }, + { + "parent": 2003, + "guid": 2668, + "values": { + "latitude": "48.8441", + "longitude": "-130.3348", + "depth": "-601", + "temperature": "11.4", + "curviness": "1.1", + "chl": "0.3", + "ds": "1151298000", + "days": 13325 + } + }, + { + "parent": 2003, + "guid": 2669, + "values": { + "latitude": "49.1151", + "longitude": "-130.3806", + "depth": "-272", + "temperature": "11.0", + "curviness": "2.0", + "chl": "0.2", + "ds": "1151384400", + "days": 13326 + } + }, + { + "parent": 2003, + "guid": 2670, + "values": { + "latitude": "49.5043", + "longitude": "-130.6333", + "depth": "-587", + "temperature": "13.1", + "curviness": "2.8", + "chl": "0.7", + "ds": "1151470800", + "days": 13327 + } + }, + { + "parent": 2003, + "guid": 2671, + "values": { + "latitude": "49.9667", + "longitude": "-130.7937", + "depth": "-277", + "temperature": "13.0", + "curviness": "2.8", + "chl": "1.2", + "ds": "1151557200", + "days": 13328 + } + }, + { + "parent": 2003, + "guid": 2672, + "values": { + "latitude": "50.3162", + "longitude": "-130.6226", + "depth": "-601", + "temperature": "12.8", + "curviness": "2.9", + "chl": "1.0", + "ds": "1151643600", + "days": 13329 + } + }, + { + "parent": 2003, + "guid": 2673, + "values": { + "latitude": "50.3167", + "longitude": "-130.8276", + "depth": "-434", + "temperature": "12.2", + "curviness": "2.5", + "chl": "0.5", + "ds": "1151730000", + "days": 13330 + } + }, + { + "parent": 2003, + "guid": 2674, + "values": { + "latitude": "49.4185", + "longitude": "-131.307", + "depth": "-407", + "temperature": "13.8", + "curviness": "2.1", + "chl": "0.3", + "ds": "1151902800", + "days": 13332 + } + }, + { + "parent": 2003, + "guid": 2675, + "values": { + "latitude": "48.9525", + "longitude": "-131.8744", + "depth": "-304", + "temperature": "13.5", + "curviness": "1.7", + "chl": "0.2", + "ds": "1151989200", + "days": 13333 + } + }, + { + "parent": 2003, + "guid": 2676, + "values": { + "latitude": "48.5698", + "longitude": "-132.0836", + "depth": "-623", + "temperature": "13.9", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1152075600", + "days": 13334 + } + }, + { + "parent": 2003, + "guid": 2677, + "values": { + "latitude": "48.1126", + "longitude": "-132.3295", + "depth": "-619", + "temperature": "14.3", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1152162000", + "days": 13335 + } + }, + { + "parent": 2003, + "guid": 2678, + "values": { + "latitude": "47.8382", + "longitude": "-132.4433", + "depth": "-321", + "temperature": "12.4", + "curviness": "1.0", + "chl": "0.2", + "ds": "1152248400", + "days": 13336 + } + }, + { + "parent": 2003, + "guid": 2679, + "values": { + "latitude": "47.4732", + "longitude": "-132.36", + "depth": "-648", + "temperature": "12.4", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1152334800", + "days": 13337 + } + }, + { + "parent": 2003, + "guid": 2680, + "values": { + "latitude": "47.1893", + "longitude": "-132.3723", + "depth": "-624", + "temperature": "12.9", + "curviness": "1.4", + "chl": "0.2", + "ds": "1152421200", + "days": 13338 + } + }, + { + "parent": 2003, + "guid": 2681, + "values": { + "latitude": "46.9352", + "longitude": "-132.7951", + "depth": "-618", + "temperature": "14.4", + "curviness": "1.9", + "chl": "0.2", + "ds": "1152507600", + "days": 13339 + } + }, + { + "parent": 2003, + "guid": 2682, + "values": { + "latitude": "46.6054", + "longitude": "-133.1616", + "depth": "-606", + "temperature": "15.0", + "curviness": "2.2", + "chl": "0.1", + "ds": "1152594000", + "days": 13340 + } + }, + { + "parent": 2003, + "guid": 2683, + "values": { + "latitude": "46.3829", + "longitude": "-133.3196", + "depth": "-320", + "temperature": "15.2", + "curviness": "3.0", + "chl": "0.2", + "ds": "1152680400", + "days": 13341 + } + }, + { + "parent": 2003, + "guid": 2684, + "values": { + "latitude": "46.4317", + "longitude": "-133.4113", + "depth": "-653", + "temperature": "15.1", + "curviness": "3.9", + "chl": "-999.0", + "ds": "1152766800", + "days": 13342 + } + }, + { + "parent": 2003, + "guid": 2685, + "values": { + "latitude": "46.3213", + "longitude": "-132.2018", + "depth": "-308", + "temperature": "14.4", + "curviness": "5.1", + "chl": "0.2", + "ds": "1152939600", + "days": 13344 + } + }, + { + "parent": 2003, + "guid": 2686, + "values": { + "latitude": "46.6474", + "longitude": "-132.2398", + "depth": "-444", + "temperature": "14.6", + "curviness": "13.5", + "chl": "-999.0", + "ds": "1153112400", + "days": 13346 + } + }, + { + "parent": 2003, + "guid": 2687, + "values": { + "latitude": "46.46", + "longitude": "-132.8362", + "depth": "-262", + "temperature": "14.7", + "curviness": "7.3", + "chl": "0.1", + "ds": "1153198800", + "days": 13347 + } + }, + { + "parent": 2003, + "guid": 2688, + "values": { + "latitude": "46.6674", + "longitude": "-132.9429", + "depth": "-600", + "temperature": "14.8", + "curviness": "10.1", + "chl": "-999.0", + "ds": "1153285200", + "days": 13348 + } + }, + { + "parent": 2003, + "guid": 2689, + "values": { + "latitude": "46.8204", + "longitude": "-133.2823", + "depth": "-615", + "temperature": "14.8", + "curviness": "9.4", + "chl": "-999.0", + "ds": "1153371600", + "days": 13349 + } + }, + { + "parent": 2003, + "guid": 2690, + "values": { + "latitude": "46.8535", + "longitude": "-133.1965", + "depth": "-608", + "temperature": "15.3", + "curviness": "1.8", + "chl": "-999.0", + "ds": "1153458000", + "days": 13350 + } + }, + { + "parent": 2003, + "guid": 2691, + "values": { + "latitude": "47.0938", + "longitude": "-133.0531", + "depth": "-612", + "temperature": "16.3", + "curviness": "1.8", + "chl": "0.1", + "ds": "1153544400", + "days": 13351 + } + }, + { + "parent": 2003, + "guid": 2692, + "values": { + "latitude": "46.9986", + "longitude": "-133.3393", + "depth": "-604", + "temperature": "15.6", + "curviness": "2.6", + "chl": "-999.0", + "ds": "1153630800", + "days": 13352 + } + }, + { + "parent": 2003, + "guid": 2693, + "values": { + "latitude": "46.6692", + "longitude": "-133.4793", + "depth": "-635", + "temperature": "16.1", + "curviness": "6.5", + "chl": "0.1", + "ds": "1153717200", + "days": 13353 + } + }, + { + "parent": 2003, + "guid": 2694, + "values": { + "latitude": "46.5895", + "longitude": "-133.8637", + "depth": "-330", + "temperature": "16.1", + "curviness": "6.6", + "chl": "-999.0", + "ds": "1153803600", + "days": 13354 + } + }, + { + "parent": 2003, + "guid": 2695, + "values": { + "latitude": "47.0924", + "longitude": "-134.3317", + "depth": "-576", + "temperature": "15.4", + "curviness": "4.9", + "chl": "0.2", + "ds": "1153890000", + "days": 13355 + } + }, + { + "parent": 2003, + "guid": 2696, + "values": { + "latitude": "47.5027", + "longitude": "-134.4397", + "depth": "-602", + "temperature": "14.9", + "curviness": "3.6", + "chl": "0.1", + "ds": "1153976400", + "days": 13356 + } + }, + { + "parent": 2003, + "guid": 2697, + "values": { + "latitude": "47.4724", + "longitude": "-133.7589", + "depth": "-610", + "temperature": "14.9", + "curviness": "2.4", + "chl": "-999.0", + "ds": "1154062800", + "days": 13357 + } + }, + { + "parent": 2003, + "guid": 2698, + "values": { + "latitude": "47.1877", + "longitude": "-133.1075", + "depth": "-314", + "temperature": "16.1", + "curviness": "1.9", + "chl": "0.2", + "ds": "1154149200", + "days": 13358 + } + }, + { + "parent": 2003, + "guid": 2699, + "values": { + "latitude": "47.0129", + "longitude": "-132.5418", + "depth": "-616", + "temperature": "16.0", + "curviness": "1.5", + "chl": "0.2", + "ds": "1154235600", + "days": 13359 + } + }, + { + "parent": 2003, + "guid": 2700, + "values": { + "latitude": "46.9554", + "longitude": "-132.067", + "depth": "-328", + "temperature": "15.8", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1154322000", + "days": 13360 + } + }, + { + "parent": 2003, + "guid": 2701, + "values": { + "latitude": "46.849", + "longitude": "-131.4467", + "depth": "-609", + "temperature": "16.1", + "curviness": "1.0", + "chl": "0.2", + "ds": "1154408400", + "days": 13361 + } + }, + { + "parent": 2003, + "guid": 2702, + "values": { + "latitude": "46.9666", + "longitude": "-130.7469", + "depth": "-512", + "temperature": "16.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1154494800", + "days": 13362 + } + }, + { + "parent": 2003, + "guid": 2703, + "values": { + "latitude": "47.0262", + "longitude": "-129.9911", + "depth": "-618", + "temperature": "15.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1154581200", + "days": 13363 + } + }, + { + "parent": 2003, + "guid": 2704, + "values": { + "latitude": "46.8885", + "longitude": "-129.4827", + "depth": "-594", + "temperature": "15.5", + "curviness": "1.1", + "chl": "0.1", + "ds": "1154667600", + "days": 13364 + } + }, + { + "parent": 2003, + "guid": 2705, + "values": { + "latitude": "46.8387", + "longitude": "-128.9154", + "depth": "-404", + "temperature": "15.6", + "curviness": "1.3", + "chl": "0.2", + "ds": "1154754000", + "days": 13365 + } + }, + { + "parent": 2003, + "guid": 2706, + "values": { + "latitude": "46.8448", + "longitude": "-128.6724", + "depth": "-602", + "temperature": "15.3", + "curviness": "2.7", + "chl": "0.2", + "ds": "1154840400", + "days": 13366 + } + }, + { + "parent": 2003, + "guid": 2707, + "values": { + "latitude": "46.7982", + "longitude": "-128.5661", + "depth": "-677", + "temperature": "15.4", + "curviness": "3.9", + "chl": "0.2", + "ds": "1154926800", + "days": 13367 + } + }, + { + "parent": 2003, + "guid": 2708, + "values": { + "latitude": "46.7913", + "longitude": "-128.7769", + "depth": "-565", + "temperature": "16.8", + "curviness": "3.4", + "chl": "0.2", + "ds": "1155013200", + "days": 13368 + } + }, + { + "parent": 2003, + "guid": 2709, + "values": { + "latitude": "46.7609", + "longitude": "-128.3173", + "depth": "-635", + "temperature": "16.6", + "curviness": "3.0", + "chl": "0.3", + "ds": "1155099600", + "days": 13369 + } + }, + { + "parent": 2003, + "guid": 2710, + "values": { + "latitude": "47.0509", + "longitude": "-128.5091", + "depth": "-619", + "temperature": "16.7", + "curviness": "2.2", + "chl": "-999.0", + "ds": "1155186000", + "days": 13370 + } + }, + { + "parent": 2003, + "guid": 2711, + "values": { + "latitude": "47.5373", + "longitude": "-129.6516", + "depth": "-625", + "temperature": "14.8", + "curviness": "2.1", + "chl": "0.3", + "ds": "1155358800", + "days": 13372 + } + }, + { + "parent": 2003, + "guid": 2712, + "values": { + "latitude": "47.8165", + "longitude": "-130.15", + "depth": "-606", + "temperature": "14.7", + "curviness": "1.9", + "chl": "0.2", + "ds": "1155445200", + "days": 13373 + } + }, + { + "parent": 2003, + "guid": 2713, + "values": { + "latitude": "48.0137", + "longitude": "-129.9428", + "depth": "-481", + "temperature": "15.2", + "curviness": "1.8", + "chl": "-999.0", + "ds": "1155531600", + "days": 13374 + } + }, + { + "parent": 2003, + "guid": 2714, + "values": { + "latitude": "47.9061", + "longitude": "-129.9065", + "depth": "-541", + "temperature": "16.0", + "curviness": "1.4", + "chl": "0.2", + "ds": "1155618000", + "days": 13375 + } + }, + { + "parent": 2003, + "guid": 2715, + "values": { + "latitude": "47.8592", + "longitude": "-130.1329", + "depth": "-385", + "temperature": "16.2", + "curviness": "1.5", + "chl": "-999.0", + "ds": "1155704400", + "days": 13376 + } + }, + { + "parent": 2003, + "guid": 2716, + "values": { + "latitude": "47.7352", + "longitude": "-130.2614", + "depth": "-399", + "temperature": "16.4", + "curviness": "2.3", + "chl": "0.2", + "ds": "1155790800", + "days": 13377 + } + }, + { + "parent": 2003, + "guid": 2717, + "values": { + "latitude": "47.7106", + "longitude": "-130.27", + "depth": "-217", + "temperature": "16.2", + "curviness": "2.7", + "chl": "0.2", + "ds": "1155877200", + "days": 13378 + } + }, + { + "parent": 2003, + "guid": 2718, + "values": { + "latitude": "47.9005", + "longitude": "-130.4026", + "depth": "-634", + "temperature": "16.0", + "curviness": "3.3", + "chl": "-999.0", + "ds": "1155963600", + "days": 13379 + } + }, + { + "parent": 2003, + "guid": 2719, + "values": { + "latitude": "48.0988", + "longitude": "-130.4257", + "depth": "-424", + "temperature": "16.1", + "curviness": "2.2", + "chl": "-999.0", + "ds": "1156050000", + "days": 13380 + } + }, + { + "parent": 2003, + "guid": 2720, + "values": { + "latitude": "48.2736", + "longitude": "-130.299", + "depth": "-597", + "temperature": "16.2", + "curviness": "1.9", + "chl": "0.2", + "ds": "1156136400", + "days": 13381 + } + }, + { + "parent": 2003, + "guid": 2721, + "values": { + "latitude": "48.353", + "longitude": "-129.972", + "depth": "-627", + "temperature": "16.2", + "curviness": "1.9", + "chl": "0.3", + "ds": "1156222800", + "days": 13382 + } + }, + { + "parent": 2003, + "guid": 2722, + "values": { + "latitude": "48.3866", + "longitude": "-129.886", + "depth": "-633", + "temperature": "15.9", + "curviness": "2.9", + "chl": "0.3", + "ds": "1156309200", + "days": 13383 + } + }, + { + "parent": 2003, + "guid": 2723, + "values": { + "latitude": "48.4478", + "longitude": "-129.9693", + "depth": "-622", + "temperature": "15.3", + "curviness": "2.9", + "chl": "0.3", + "ds": "1156395600", + "days": 13384 + } + }, + { + "parent": 2003, + "guid": 2724, + "values": { + "latitude": "48.5787", + "longitude": "-129.9163", + "depth": "-609", + "temperature": "15.4", + "curviness": "2.2", + "chl": "0.3", + "ds": "1156482000", + "days": 13385 + } + }, + { + "parent": 2003, + "guid": 2725, + "values": { + "latitude": "48.5891", + "longitude": "-130.0297", + "depth": "-645", + "temperature": "15.8", + "curviness": "1.7", + "chl": "0.3", + "ds": "1156568400", + "days": 13386 + } + }, + { + "parent": 2003, + "guid": 2726, + "values": { + "latitude": "48.4636", + "longitude": "-130.2636", + "depth": "-626", + "temperature": "16.0", + "curviness": "1.3", + "chl": "0.2", + "ds": "1156654800", + "days": 13387 + } + }, + { + "parent": 2003, + "guid": 2727, + "values": { + "latitude": "48.2193", + "longitude": "-130.8859", + "depth": "-370", + "temperature": "15.5", + "curviness": "1.3", + "chl": "0.3", + "ds": "1156741200", + "days": 13388 + } + }, + { + "parent": 2003, + "guid": 2728, + "values": { + "latitude": "48.1534", + "longitude": "-131.3782", + "depth": "-618", + "temperature": "15.8", + "curviness": "1.2", + "chl": "0.3", + "ds": "1156827600", + "days": 13389 + } + }, + { + "parent": 2003, + "guid": 2729, + "values": { + "latitude": "48.2858", + "longitude": "-131.9266", + "depth": "-642", + "temperature": "15.6", + "curviness": "1.2", + "chl": "0.3", + "ds": "1156914000", + "days": 13390 + } + }, + { + "parent": 2003, + "guid": 2730, + "values": { + "latitude": "48.6032", + "longitude": "-132.4706", + "depth": "-316", + "temperature": "15.2", + "curviness": "1.2", + "chl": "0.2", + "ds": "1157000400", + "days": 13391 + } + }, + { + "parent": 2003, + "guid": 2731, + "values": { + "latitude": "48.9096", + "longitude": "-132.8339", + "depth": "-624", + "temperature": "15.2", + "curviness": "1.2", + "chl": "0.3", + "ds": "1157086800", + "days": 13392 + } + }, + { + "parent": 2003, + "guid": 2732, + "values": { + "latitude": "49.1555", + "longitude": "-133.2361", + "depth": "-385", + "temperature": "15.2", + "curviness": "1.2", + "chl": "0.3", + "ds": "1157173200", + "days": 13393 + } + }, + { + "parent": 2003, + "guid": 2733, + "values": { + "latitude": "49.1434", + "longitude": "-133.781", + "depth": "-403", + "temperature": "14.9", + "curviness": "1.2", + "chl": "0.5", + "ds": "1157259600", + "days": 13394 + } + }, + { + "parent": 2003, + "guid": 2734, + "values": { + "latitude": "49.3519", + "longitude": "-134.0568", + "depth": "-592", + "temperature": "14.8", + "curviness": "1.9", + "chl": "0.5", + "ds": "1157346000", + "days": 13395 + } + }, + { + "parent": 2003, + "guid": 2735, + "values": { + "latitude": "49.4871", + "longitude": "-134.2315", + "depth": "-595", + "temperature": "14.9", + "curviness": "3.4", + "chl": "0.5", + "ds": "1157432400", + "days": 13396 + } + }, + { + "parent": 2003, + "guid": 2736, + "values": { + "latitude": "49.3753", + "longitude": "-134.1565", + "depth": "-602", + "temperature": "14.9", + "curviness": "5.1", + "chl": "0.6", + "ds": "1157518800", + "days": 13397 + } + }, + { + "parent": 2003, + "guid": 2737, + "values": { + "latitude": "49.6021", + "longitude": "-134.5871", + "depth": "-620", + "temperature": "14.8", + "curviness": "4.8", + "chl": "0.4", + "ds": "1157605200", + "days": 13398 + } + }, + { + "parent": 2003, + "guid": 2738, + "values": { + "latitude": "49.6499", + "longitude": "-134.3739", + "depth": "-634", + "temperature": "14.5", + "curviness": "6.0", + "chl": "0.4", + "ds": "1157691600", + "days": 13399 + } + }, + { + "parent": 2003, + "guid": 2739, + "values": { + "latitude": "49.4526", + "longitude": "-133.668", + "depth": "-661", + "temperature": "14.7", + "curviness": "3.1", + "chl": "0.4", + "ds": "1157778000", + "days": 13400 + } + }, + { + "parent": 2003, + "guid": 2740, + "values": { + "latitude": "49.1487", + "longitude": "-133.5353", + "depth": "-292", + "temperature": "14.7", + "curviness": "2.2", + "chl": "0.4", + "ds": "1157864400", + "days": 13401 + } + }, + { + "parent": 2003, + "guid": 2741, + "values": { + "latitude": "48.884", + "longitude": "-133.7048", + "depth": "-617", + "temperature": "14.8", + "curviness": "2.4", + "chl": "0.4", + "ds": "1157950800", + "days": 13402 + } + }, + { + "parent": 2003, + "guid": 2742, + "values": { + "latitude": "48.7885", + "longitude": "-133.8697", + "depth": "-627", + "temperature": "14.8", + "curviness": "1.6", + "chl": "0.4", + "ds": "1158037200", + "days": 13403 + } + }, + { + "parent": 2003, + "guid": 2743, + "values": { + "latitude": "48.7484", + "longitude": "-133.8297", + "depth": "-612", + "temperature": "15.1", + "curviness": "1.5", + "chl": "0.4", + "ds": "1158123600", + "days": 13404 + } + }, + { + "parent": 2003, + "guid": 2744, + "values": { + "latitude": "48.6664", + "longitude": "-133.799", + "depth": "-587", + "temperature": "15.1", + "curviness": "1.3", + "chl": "0.4", + "ds": "1158210000", + "days": 13405 + } + }, + { + "parent": 2003, + "guid": 2745, + "values": { + "latitude": "48.5599", + "longitude": "-133.8336", + "depth": "-585", + "temperature": "14.9", + "curviness": "1.2", + "chl": "0.4", + "ds": "1158296400", + "days": 13406 + } + }, + { + "parent": 2003, + "guid": 2746, + "values": { + "latitude": "48.5077", + "longitude": "-133.9937", + "depth": "-595", + "temperature": "14.8", + "curviness": "1.4", + "chl": "0.4", + "ds": "1158382800", + "days": 13407 + } + }, + { + "parent": 2003, + "guid": 2747, + "values": { + "latitude": "48.447", + "longitude": "-134.1619", + "depth": "-629", + "temperature": "14.7", + "curviness": "1.8", + "chl": "0.4", + "ds": "1158469200", + "days": 13408 + } + }, + { + "parent": 2003, + "guid": 2748, + "values": { + "latitude": "48.4572", + "longitude": "-134.0409", + "depth": "-651", + "temperature": "14.9", + "curviness": "1.6", + "chl": "0.5", + "ds": "1158555600", + "days": 13409 + } + }, + { + "parent": 2003, + "guid": 2749, + "values": { + "latitude": "48.3314", + "longitude": "-134.2764", + "depth": "-612", + "temperature": "14.7", + "curviness": "1.4", + "chl": "0.5", + "ds": "1158642000", + "days": 13410 + } + }, + { + "parent": 2003, + "guid": 2750, + "values": { + "latitude": "48.1722", + "longitude": "-134.6431", + "depth": "-638", + "temperature": "14.6", + "curviness": "1.3", + "chl": "0.2", + "ds": "1158728400", + "days": 13411 + } + }, + { + "parent": 2003, + "guid": 2751, + "values": { + "latitude": "48.2614", + "longitude": "-135.0139", + "depth": "-647", + "temperature": "13.8", + "curviness": "1.3", + "chl": "0.3", + "ds": "1158814800", + "days": 13412 + } + }, + { + "parent": 2003, + "guid": 2752, + "values": { + "latitude": "48.948", + "longitude": "-135.5961", + "depth": "-638", + "temperature": "13.4", + "curviness": "1.4", + "chl": "0.2", + "ds": "1158987600", + "days": 13414 + } + }, + { + "parent": 2003, + "guid": 2753, + "values": { + "latitude": "49.1912", + "longitude": "-135.9662", + "depth": "-629", + "temperature": "13.4", + "curviness": "1.7", + "chl": "0.2", + "ds": "1159074000", + "days": 13415 + } + }, + { + "parent": 2003, + "guid": 2754, + "values": { + "latitude": "49.4008", + "longitude": "-136.4971", + "depth": "-611", + "temperature": "14.0", + "curviness": "1.8", + "chl": "0.2", + "ds": "1159160400", + "days": 13416 + } + }, + { + "parent": 2003, + "guid": 2755, + "values": { + "latitude": "49.5462", + "longitude": "-136.9809", + "depth": "-400", + "temperature": "13.6", + "curviness": "2.6", + "chl": "0.2", + "ds": "1159246800", + "days": 13417 + } + }, + { + "parent": 2003, + "guid": 2756, + "values": { + "latitude": "49.3437", + "longitude": "-137.4097", + "depth": "-626", + "temperature": "13.4", + "curviness": "4.4", + "chl": "0.2", + "ds": "1159333200", + "days": 13418 + } + }, + { + "parent": 2003, + "guid": 2757, + "values": { + "latitude": "49.1193", + "longitude": "-137.5469", + "depth": "-657", + "temperature": "14.4", + "curviness": "6.3", + "chl": "0.3", + "ds": "1159419600", + "days": 13419 + } + }, + { + "parent": 2003, + "guid": 2758, + "values": { + "latitude": "48.8174", + "longitude": "-137.2639", + "depth": "-640", + "temperature": "15.1", + "curviness": "3.2", + "chl": "0.2", + "ds": "1159506000", + "days": 13420 + } + }, + { + "parent": 2003, + "guid": 2759, + "values": { + "latitude": "48.648", + "longitude": "-137.2028", + "depth": "-631", + "temperature": "14.7", + "curviness": "2.0", + "chl": "0.3", + "ds": "1159592400", + "days": 13421 + } + }, + { + "parent": 2003, + "guid": 2760, + "values": { + "latitude": "48.453", + "longitude": "-136.7323", + "depth": "-635", + "temperature": "14.7", + "curviness": "1.4", + "chl": "0.4", + "ds": "1159678800", + "days": 13422 + } + }, + { + "parent": 2003, + "guid": 2761, + "values": { + "latitude": "48.4951", + "longitude": "-136.2369", + "depth": "-655", + "temperature": "14.7", + "curviness": "1.3", + "chl": "0.4", + "ds": "1159765200", + "days": 13423 + } + }, + { + "parent": 2003, + "guid": 2762, + "values": { + "latitude": "48.5638", + "longitude": "-136.0426", + "depth": "-474", + "temperature": "14.7", + "curviness": "1.2", + "chl": "0.3", + "ds": "1159851600", + "days": 13424 + } + }, + { + "parent": 2003, + "guid": 2763, + "values": { + "latitude": "48.2357", + "longitude": "-135.8798", + "depth": "-610", + "temperature": "15.0", + "curviness": "1.2", + "chl": "0.4", + "ds": "1159938000", + "days": 13425 + } + }, + { + "parent": 2003, + "guid": 2764, + "values": { + "latitude": "48.066", + "longitude": "-135.6854", + "depth": "-615", + "temperature": "15.5", + "curviness": "1.3", + "chl": "0.4", + "ds": "1160024400", + "days": 13426 + } + }, + { + "parent": 2003, + "guid": 2765, + "values": { + "latitude": "47.7789", + "longitude": "-134.7056", + "depth": "-592", + "temperature": "15.0", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1160283600", + "days": 13429 + } + }, + { + "parent": 2003, + "guid": 2766, + "values": { + "latitude": "47.8709", + "longitude": "-133.8017", + "depth": "-548", + "temperature": "14.0", + "curviness": "1.5", + "chl": "0.6", + "ds": "1160542800", + "days": 13432 + } + }, + { + "parent": 2003, + "guid": 2767, + "values": { + "latitude": "47.8048", + "longitude": "-133.799", + "depth": "-303", + "temperature": "14.3", + "curviness": "1.5", + "chl": "0.6", + "ds": "1160629200", + "days": 13433 + } + }, + { + "parent": 2003, + "guid": 2768, + "values": { + "latitude": "47.7339", + "longitude": "-133.7614", + "depth": "-597", + "temperature": "14.5", + "curviness": "1.5", + "chl": "0.5", + "ds": "1160715600", + "days": 13434 + } + }, + { + "parent": 2003, + "guid": 2769, + "values": { + "latitude": "48.0229", + "longitude": "-133.5672", + "depth": "-311", + "temperature": "15.0", + "curviness": "1.5", + "chl": "0.5", + "ds": "1160802000", + "days": 13435 + } + }, + { + "parent": 2003, + "guid": 2770, + "values": { + "latitude": "47.9539", + "longitude": "-133.3724", + "depth": "-378", + "temperature": "15.3", + "curviness": "1.7", + "chl": "0.5", + "ds": "1160974800", + "days": 13437 + } + }, + { + "parent": 2003, + "guid": 2771, + "values": { + "latitude": "47.8711", + "longitude": "-133.5493", + "depth": "-408", + "temperature": "14.9", + "curviness": "3.7", + "chl": "0.4", + "ds": "1161061200", + "days": 13438 + } + }, + { + "parent": 2003, + "guid": 2772, + "values": { + "latitude": "47.7722", + "longitude": "-133.5826", + "depth": "-604", + "temperature": "13.3", + "curviness": "6.9", + "chl": "0.4", + "ds": "1161147600", + "days": 13439 + } + }, + { + "parent": 2003, + "guid": 2773, + "values": { + "latitude": "47.7047", + "longitude": "-133.4327", + "depth": "-516", + "temperature": "13.2", + "curviness": "4.9", + "chl": "0.3", + "ds": "1161234000", + "days": 13440 + } + }, + { + "parent": 2003, + "guid": 2774, + "values": { + "latitude": "47.6965", + "longitude": "-133.267", + "depth": "-689", + "temperature": "13.2", + "curviness": "4.1", + "chl": "-999.0", + "ds": "1161320400", + "days": 13441 + } + }, + { + "parent": 2003, + "guid": 2775, + "values": { + "latitude": "47.6706", + "longitude": "-133.1933", + "depth": "-544", + "temperature": "13.2", + "curviness": "3.5", + "chl": "0.4", + "ds": "1161406800", + "days": 13442 + } + }, + { + "parent": 2003, + "guid": 2776, + "values": { + "latitude": "47.5084", + "longitude": "-133.5862", + "depth": "-615", + "temperature": "13.4", + "curviness": "6.5", + "chl": "0.3", + "ds": "1161493200", + "days": 13443 + } + }, + { + "parent": 2003, + "guid": 2777, + "values": { + "latitude": "47.7547", + "longitude": "-133.452", + "depth": "-305", + "temperature": "14.0", + "curviness": "7.5", + "chl": "0.4", + "ds": "1161666000", + "days": 13445 + } + }, + { + "parent": 2003, + "guid": 2778, + "values": { + "latitude": "47.6787", + "longitude": "-133.2431", + "depth": "-610", + "temperature": "14.3", + "curviness": "3.5", + "chl": "0.4", + "ds": "1161752400", + "days": 13446 + } + }, + { + "parent": 2003, + "guid": 2779, + "values": { + "latitude": "47.6471", + "longitude": "-133.4751", + "depth": "-607", + "temperature": "14.1", + "curviness": "2.8", + "chl": "0.3", + "ds": "1161838800", + "days": 13447 + } + }, + { + "parent": 2003, + "guid": 2780, + "values": { + "latitude": "47.744", + "longitude": "-134.0883", + "depth": "-586", + "temperature": "14.2", + "curviness": "2.4", + "chl": "0.6", + "ds": "1161925200", + "days": 13448 + } + }, + { + "parent": 2003, + "guid": 2781, + "values": { + "latitude": "47.897", + "longitude": "-133.9805", + "depth": "-324", + "temperature": "13.8", + "curviness": "3.4", + "chl": "0.6", + "ds": "1162011600", + "days": 13449 + } + }, + { + "parent": 2003, + "guid": 2782, + "values": { + "latitude": "47.9813", + "longitude": "-133.8061", + "depth": "-665", + "temperature": "13.3", + "curviness": "2.8", + "chl": "0.6", + "ds": "1162188000", + "days": 13451 + } + }, + { + "parent": 2003, + "guid": 2783, + "values": { + "latitude": "48.0743", + "longitude": "-134.0893", + "depth": "-293", + "temperature": "13.1", + "curviness": "1.9", + "chl": "0.6", + "ds": "1162274400", + "days": 13452 + } + }, + { + "parent": 2003, + "guid": 2784, + "values": { + "latitude": "48.1192", + "longitude": "-134.0821", + "depth": "-312", + "temperature": "13.1", + "curviness": "1.8", + "chl": "-999.0", + "ds": "1162360800", + "days": 13453 + } + }, + { + "parent": 2003, + "guid": 2785, + "values": { + "latitude": "48.1124", + "longitude": "-134.2213", + "depth": "-575", + "temperature": "13.0", + "curviness": "2.1", + "chl": "-999.0", + "ds": "1162533600", + "days": 13455 + } + }, + { + "parent": 2003, + "guid": 2786, + "values": { + "latitude": "47.9965", + "longitude": "-133.9779", + "depth": "-225", + "temperature": "13.0", + "curviness": "3.2", + "chl": "-999.0", + "ds": "1162620000", + "days": 13456 + } + }, + { + "parent": 2003, + "guid": 2787, + "values": { + "latitude": "47.715", + "longitude": "-134.5585", + "depth": "-222", + "temperature": "13.7", + "curviness": "6.0", + "chl": "0.8", + "ds": "1162706400", + "days": 13457 + } + }, + { + "parent": 2003, + "guid": 2788, + "values": { + "latitude": "47.8661", + "longitude": "-134.9828", + "depth": "-315", + "temperature": "13.6", + "curviness": "10.7", + "chl": "-999.0", + "ds": "1162792800", + "days": 13458 + } + }, + { + "parent": 2003, + "guid": 2789, + "values": { + "latitude": "48.1312", + "longitude": "-135.3529", + "depth": "-197", + "temperature": "13.2", + "curviness": "12.3", + "chl": "-999.0", + "ds": "1162879200", + "days": 13459 + } + }, + { + "parent": 2003, + "guid": 2790, + "values": { + "latitude": "48.1983", + "longitude": "-135.3822", + "depth": "-665", + "temperature": "12.7", + "curviness": "11.6", + "chl": "0.5", + "ds": "1162965600", + "days": 13460 + } + }, + { + "parent": 2003, + "guid": 2791, + "values": { + "latitude": "47.7298", + "longitude": "-135.1034", + "depth": "-335", + "temperature": "12.8", + "curviness": "71.3", + "chl": "0.7", + "ds": "1163052000", + "days": 13461 + } + }, + { + "parent": 2003, + "guid": 2792, + "values": { + "latitude": "47.8194", + "longitude": "-134.4476", + "depth": "-581", + "temperature": "12.5", + "curviness": "4.4", + "chl": "0.4", + "ds": "1163224800", + "days": 13463 + } + }, + { + "parent": 2003, + "guid": 2793, + "values": { + "latitude": "47.8201", + "longitude": "-134.136", + "depth": "-303", + "temperature": "12.6", + "curviness": "2.4", + "chl": "0.6", + "ds": "1163311200", + "days": 13464 + } + }, + { + "parent": 2003, + "guid": 2794, + "values": { + "latitude": "47.9678", + "longitude": "-133.8035", + "depth": "-303", + "temperature": "12.1", + "curviness": "1.8", + "chl": "0.5", + "ds": "1163397600", + "days": 13465 + } + }, + { + "parent": 2003, + "guid": 2795, + "values": { + "latitude": "47.9637", + "longitude": "-133.916", + "depth": "-325", + "temperature": "12.1", + "curviness": "1.6", + "chl": "0.4", + "ds": "1163484000", + "days": 13466 + } + }, + { + "parent": 2003, + "guid": 2796, + "values": { + "latitude": "47.9647", + "longitude": "-134.0126", + "depth": "-264", + "temperature": "12.0", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1163570400", + "days": 13467 + } + }, + { + "parent": 2003, + "guid": 2797, + "values": { + "latitude": "47.894", + "longitude": "-133.7571", + "depth": "-394", + "temperature": "11.8", + "curviness": "1.5", + "chl": "-999.0", + "ds": "1163656800", + "days": 13468 + } + }, + { + "parent": 2003, + "guid": 2798, + "values": { + "latitude": "48.0317", + "longitude": "-133.4725", + "depth": "-243", + "temperature": "11.6", + "curviness": "1.6", + "chl": "0.5", + "ds": "1163743200", + "days": 13469 + } + }, + { + "parent": 2003, + "guid": 2799, + "values": { + "latitude": "48.0842", + "longitude": "-133.5469", + "depth": "-330", + "temperature": "11.2", + "curviness": "2.2", + "chl": "-999.0", + "ds": "1163829600", + "days": 13470 + } + }, + { + "parent": 2003, + "guid": 2800, + "values": { + "latitude": "48.0476", + "longitude": "-133.3795", + "depth": "-361", + "temperature": "11.2", + "curviness": "1.9", + "chl": "0.5", + "ds": "1163916000", + "days": 13471 + } + }, + { + "parent": 2003, + "guid": 2801, + "values": { + "latitude": "48.3907", + "longitude": "-133.1172", + "depth": "-356", + "temperature": "11.1", + "curviness": "1.8", + "chl": "-999.0", + "ds": "1164002400", + "days": 13472 + } + }, + { + "parent": 2003, + "guid": 2802, + "values": { + "latitude": "48.6384", + "longitude": "-133.0026", + "depth": "-485", + "temperature": "10.6", + "curviness": "1.8", + "chl": "0.3", + "ds": "1164088800", + "days": 13473 + } + }, + { + "parent": 2003, + "guid": 2803, + "values": { + "latitude": "48.5573", + "longitude": "-132.9609", + "depth": "-660", + "temperature": "10.5", + "curviness": "1.8", + "chl": "0.4", + "ds": "1164175200", + "days": 13474 + } + }, + { + "parent": 2003, + "guid": 2804, + "values": { + "latitude": "48.6485", + "longitude": "-133.2572", + "depth": "-306", + "temperature": "10.1", + "curviness": "1.7", + "chl": "-999.0", + "ds": "1164261600", + "days": 13475 + } + }, + { + "parent": 2003, + "guid": 2805, + "values": { + "latitude": "48.8783", + "longitude": "-133.4243", + "depth": "-257", + "temperature": "10.1", + "curviness": "1.9", + "chl": "-999.0", + "ds": "1164348000", + "days": 13476 + } + }, + { + "parent": 2003, + "guid": 2806, + "values": { + "latitude": "48.929", + "longitude": "-133.2785", + "depth": "-268", + "temperature": "10.1", + "curviness": "5.0", + "chl": "-999.0", + "ds": "1164434400", + "days": 13477 + } + }, + { + "parent": 2003, + "guid": 2807, + "values": { + "latitude": "48.8939", + "longitude": "-133.3814", + "depth": "-240", + "temperature": "10.0", + "curviness": "8.1", + "chl": "-999.0", + "ds": "1164520800", + "days": 13478 + } + }, + { + "parent": 2003, + "guid": 2808, + "values": { + "latitude": "48.9053", + "longitude": "-133.3096", + "depth": "-682", + "temperature": "9.9", + "curviness": "4.8", + "chl": "-999.0", + "ds": "1164607200", + "days": 13479 + } + }, + { + "parent": 2003, + "guid": 2809, + "values": { + "latitude": "49.0277", + "longitude": "-133.1554", + "depth": "-292", + "temperature": "9.8", + "curviness": "1.8", + "chl": "0.4", + "ds": "1164693600", + "days": 13480 + } + }, + { + "parent": 2003, + "guid": 2810, + "values": { + "latitude": "48.9238", + "longitude": "-132.8934", + "depth": "-253", + "temperature": "9.6", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1164780000", + "days": 13481 + } + }, + { + "parent": 2003, + "guid": 2811, + "values": { + "latitude": "48.6532", + "longitude": "-132.805", + "depth": "-301", + "temperature": "9.6", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1164866400", + "days": 13482 + } + }, + { + "parent": 2003, + "guid": 2812, + "values": { + "latitude": "48.6862", + "longitude": "-132.733", + "depth": "-340", + "temperature": "9.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1164952800", + "days": 13483 + } + }, + { + "parent": 2003, + "guid": 2813, + "values": { + "latitude": "48.4161", + "longitude": "-132.4695", + "depth": "-770", + "temperature": "9.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165039200", + "days": 13484 + } + }, + { + "parent": 2003, + "guid": 2814, + "values": { + "latitude": "48.0419", + "longitude": "-131.7891", + "depth": "-269", + "temperature": "10.3", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165125600", + "days": 13485 + } + }, + { + "parent": 2003, + "guid": 2815, + "values": { + "latitude": "47.8258", + "longitude": "-131.325", + "depth": "-252", + "temperature": "10.7", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165212000", + "days": 13486 + } + }, + { + "parent": 2003, + "guid": 2816, + "values": { + "latitude": "47.5677", + "longitude": "-130.7633", + "depth": "-401", + "temperature": "10.5", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165298400", + "days": 13487 + } + }, + { + "parent": 2003, + "guid": 2817, + "values": { + "latitude": "47.1715", + "longitude": "-130.474", + "depth": "-510", + "temperature": "10.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165384800", + "days": 13488 + } + }, + { + "parent": 2003, + "guid": 2818, + "values": { + "latitude": "46.9225", + "longitude": "-129.9355", + "depth": "-505", + "temperature": "10.7", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165471200", + "days": 13489 + } + }, + { + "parent": 2003, + "guid": 2819, + "values": { + "latitude": "46.8591", + "longitude": "-129.7108", + "depth": "-279", + "temperature": "10.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1165557600", + "days": 13490 + } + }, + { + "parent": 2003, + "guid": 2820, + "values": { + "latitude": "46.6521", + "longitude": "-129.7528", + "depth": "-543", + "temperature": "10.8", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1165644000", + "days": 13491 + } + }, + { + "parent": 2003, + "guid": 2821, + "values": { + "latitude": "46.2544", + "longitude": "-129.6604", + "depth": "-589", + "temperature": "10.6", + "curviness": "1.2", + "chl": "0.5", + "ds": "1165730400", + "days": 13492 + } + }, + { + "parent": 2003, + "guid": 2822, + "values": { + "latitude": "46.0136", + "longitude": "-129.3684", + "depth": "-476", + "temperature": "11.0", + "curviness": "1.3", + "chl": "0.5", + "ds": "1165816800", + "days": 13493 + } + }, + { + "parent": 2003, + "guid": 2823, + "values": { + "latitude": "46.0485", + "longitude": "-129.3279", + "depth": "-172", + "temperature": "11.1", + "curviness": "1.6", + "chl": "0.5", + "ds": "1165903200", + "days": 13494 + } + }, + { + "parent": 2003, + "guid": 2824, + "values": { + "latitude": "46.0925", + "longitude": "-129.3399", + "depth": "-254", + "temperature": "11.0", + "curviness": "1.7", + "chl": "0.5", + "ds": "1165989600", + "days": 13495 + } + }, + { + "parent": 2003, + "guid": 2825, + "values": { + "latitude": "46.1133", + "longitude": "-129.3701", + "depth": "-253", + "temperature": "10.9", + "curviness": "1.8", + "chl": "0.5", + "ds": "1166076000", + "days": 13496 + } + }, + { + "parent": 2003, + "guid": 2826, + "values": { + "latitude": "46.107", + "longitude": "-129.2814", + "depth": "-539", + "temperature": "11.0", + "curviness": "2.0", + "chl": "0.5", + "ds": "1166162400", + "days": 13497 + } + }, + { + "parent": 2003, + "guid": 2827, + "values": { + "latitude": "46.0676", + "longitude": "-128.9956", + "depth": "-539", + "temperature": "10.4", + "curviness": "2.1", + "chl": "0.4", + "ds": "1166248800", + "days": 13498 + } + }, + { + "parent": 2003, + "guid": 2828, + "values": { + "latitude": "46.0876", + "longitude": "-129.1617", + "depth": "-289", + "temperature": "9.9", + "curviness": "1.7", + "chl": "0.4", + "ds": "1166335200", + "days": 13499 + } + }, + { + "parent": 2003, + "guid": 2829, + "values": { + "latitude": "46.0825", + "longitude": "-129.2145", + "depth": "-542", + "temperature": "9.8", + "curviness": "1.7", + "chl": "0.5", + "ds": "1166421600", + "days": 13500 + } + }, + { + "parent": 2003, + "guid": 2830, + "values": { + "latitude": "46.056", + "longitude": "-129.0682", + "depth": "-403", + "temperature": "9.8", + "curviness": "1.5", + "chl": "0.4", + "ds": "1166508000", + "days": 13501 + } + }, + { + "parent": 2003, + "guid": 2831, + "values": { + "latitude": "46.0893", + "longitude": "-128.971", + "depth": "-548", + "temperature": "10.0", + "curviness": "1.5", + "chl": "0.4", + "ds": "1166594400", + "days": 13502 + } + }, + { + "parent": 2003, + "guid": 2832, + "values": { + "latitude": "45.8844", + "longitude": "-128.6995", + "depth": "-496", + "temperature": "10.3", + "curviness": "1.5", + "chl": "0.4", + "ds": "1166680800", + "days": 13503 + } + }, + { + "parent": 2003, + "guid": 2833, + "values": { + "latitude": "45.6683", + "longitude": "-128.484", + "depth": "-568", + "temperature": "10.4", + "curviness": "1.5", + "chl": "-999.0", + "ds": "1166767200", + "days": 13504 + } + }, + { + "parent": 2003, + "guid": 2834, + "values": { + "latitude": "45.5907", + "longitude": "-128.57", + "depth": "-304", + "temperature": "10.3", + "curviness": "1.5", + "chl": "-999.0", + "ds": "1166853600", + "days": 13505 + } + }, + { + "parent": 2003, + "guid": 2835, + "values": { + "latitude": "45.4652", + "longitude": "-128.5038", + "depth": "-533", + "temperature": "10.2", + "curviness": "1.5", + "chl": "0.3", + "ds": "1166940000", + "days": 13506 + } + }, + { + "parent": 2003, + "guid": 2836, + "values": { + "latitude": "45.4194", + "longitude": "-128.4329", + "depth": "-314", + "temperature": "10.2", + "curviness": "1.7", + "chl": "-999.0", + "ds": "1167026400", + "days": 13507 + } + }, + { + "parent": 2003, + "guid": 2837, + "values": { + "latitude": "45.308", + "longitude": "-128.1447", + "depth": "-292", + "temperature": "10.1", + "curviness": "1.4", + "chl": "0.3", + "ds": "1167112800", + "days": 13508 + } + }, + { + "parent": 2003, + "guid": 2838, + "values": { + "latitude": "45.2998", + "longitude": "-128.3732", + "depth": "-513", + "temperature": "9.7", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1167199200", + "days": 13509 + } + }, + { + "parent": 2003, + "guid": 2839, + "values": { + "latitude": "45.288", + "longitude": "-128.4586", + "depth": "-298", + "temperature": "9.5", + "curviness": "1.3", + "chl": "0.3", + "ds": "1167285600", + "days": 13510 + } + }, + { + "parent": 2003, + "guid": 2840, + "values": { + "latitude": "45.1097", + "longitude": "-128.4948", + "depth": "-246", + "temperature": "9.6", + "curviness": "1.2", + "chl": "0.4", + "ds": "1167372000", + "days": 13511 + } + }, + { + "parent": 2003, + "guid": 2841, + "values": { + "latitude": "45.2227", + "longitude": "-128.5103", + "depth": "-319", + "temperature": "9.8", + "curviness": "1.2", + "chl": "0.4", + "ds": "1167458400", + "days": 13512 + } + }, + { + "parent": 2003, + "guid": 2842, + "values": { + "latitude": "44.5092", + "longitude": "-128.1281", + "depth": "-553", + "temperature": "9.2", + "curviness": "1.2", + "chl": "0.4", + "ds": "1167631200", + "days": 13514 + } + }, + { + "parent": 2003, + "guid": 2843, + "values": { + "latitude": "44.0522", + "longitude": "-128.0614", + "depth": "-311", + "temperature": "10.3", + "curviness": "1.1", + "chl": "0.5", + "ds": "1167717600", + "days": 13515 + } + }, + { + "parent": 2003, + "guid": 2844, + "values": { + "latitude": "43.6111", + "longitude": "-127.766", + "depth": "-304", + "temperature": "10.2", + "curviness": "1.1", + "chl": "0.6", + "ds": "1167804000", + "days": 13516 + } + }, + { + "parent": 2003, + "guid": 2845, + "values": { + "latitude": "43.1525", + "longitude": "-127.4609", + "depth": "-297", + "temperature": "10.3", + "curviness": "1.1", + "chl": "0.5", + "ds": "1167890400", + "days": 13517 + } + }, + { + "parent": 2003, + "guid": 2846, + "values": { + "latitude": "42.6448", + "longitude": "-127.0038", + "depth": "-307", + "temperature": "10.5", + "curviness": "1.0", + "chl": "0.5", + "ds": "1167976800", + "days": 13518 + } + }, + { + "parent": 2003, + "guid": 2847, + "values": { + "latitude": "42.0108", + "longitude": "-126.7437", + "depth": "-536", + "temperature": "9.9", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168063200", + "days": 13519 + } + }, + { + "parent": 2003, + "guid": 2848, + "values": { + "latitude": "41.2808", + "longitude": "-126.5894", + "depth": "-273", + "temperature": "10.3", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168149600", + "days": 13520 + } + }, + { + "parent": 2003, + "guid": 2849, + "values": { + "latitude": "40.8453", + "longitude": "-126.2061", + "depth": "-540", + "temperature": "10.9", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168236000", + "days": 13521 + } + }, + { + "parent": 2003, + "guid": 2850, + "values": { + "latitude": "40.2215", + "longitude": "-125.9308", + "depth": "-286", + "temperature": "11.4", + "curviness": "1.0", + "chl": "0.7", + "ds": "1168322400", + "days": 13522 + } + }, + { + "parent": 2003, + "guid": 2851, + "values": { + "latitude": "39.6941", + "longitude": "-125.3726", + "depth": "-561", + "temperature": "10.9", + "curviness": "1.0", + "chl": "0.6", + "ds": "1168408800", + "days": 13523 + } + }, + { + "parent": 2003, + "guid": 2852, + "values": { + "latitude": "39.0924", + "longitude": "-124.8284", + "depth": "-158", + "temperature": "10.5", + "curviness": "1.3", + "chl": "0.7", + "ds": "1168495200", + "days": 13524 + } + }, + { + "parent": 2003, + "guid": 2853, + "values": { + "latitude": "38.2909", + "longitude": "-123.6354", + "depth": "-313", + "temperature": "10.2", + "curviness": "1.7", + "chl": "0.6", + "ds": "1168668000", + "days": 13526 + } + }, + { + "parent": 2003, + "guid": 2854, + "values": { + "latitude": "37.806", + "longitude": "-122.966", + "depth": "-119", + "temperature": "9.4", + "curviness": "2.4", + "chl": "1.5", + "ds": "1168754400", + "days": 13527 + } + }, + { + "parent": 2003, + "guid": 2855, + "values": { + "latitude": "37.3758", + "longitude": "-122.5097", + "depth": "-102", + "temperature": "9.8", + "curviness": "4.4", + "chl": "1.9", + "ds": "1168840800", + "days": 13528 + } + }, + { + "parent": 2004, + "guid": 2856, + "values": { + "latitude": "36.7131", + "longitude": "-122.9482", + "depth": "0", + "temperature": "11.6", + "curviness": "1.6", + "chl": "1.7", + "ds": "1140156000", + "days": 13196 + } + }, + { + "parent": 2004, + "guid": 2857, + "values": { + "latitude": "36.3781", + "longitude": "-124.0547", + "depth": "-496", + "temperature": "12.5", + "curviness": "1.5", + "chl": "1.0", + "ds": "1140242400", + "days": 13197 + } + }, + { + "parent": 2004, + "guid": 2858, + "values": { + "latitude": "36.8009", + "longitude": "-125.3722", + "depth": "-538", + "temperature": "12.6", + "curviness": "1.4", + "chl": "0.7", + "ds": "1140415200", + "days": 13199 + } + }, + { + "parent": 2004, + "guid": 2859, + "values": { + "latitude": "36.9293", + "longitude": "-126.2891", + "depth": "-666", + "temperature": "12.4", + "curviness": "1.1", + "chl": "0.5", + "ds": "1140501600", + "days": 13200 + } + }, + { + "parent": 2004, + "guid": 2860, + "values": { + "latitude": "37.1337", + "longitude": "-127.1966", + "depth": "-524", + "temperature": "13.0", + "curviness": "0.0", + "chl": "0.3", + "ds": "1140588000", + "days": 13201 + } + }, + { + "parent": 2004, + "guid": 2861, + "values": { + "latitude": "37.5517", + "longitude": "-127.7349", + "depth": "-618", + "temperature": "13.5", + "curviness": "1.1", + "chl": "0.2", + "ds": "1140674400", + "days": 13202 + } + }, + { + "parent": 2004, + "guid": 2862, + "values": { + "latitude": "38.0558", + "longitude": "-128.1686", + "depth": "-636", + "temperature": "12.5", + "curviness": "1.0", + "chl": "0.5", + "ds": "1140760800", + "days": 13203 + } + }, + { + "parent": 2004, + "guid": 2863, + "values": { + "latitude": "38.395", + "longitude": "-129.1681", + "depth": "-331", + "temperature": "12.4", + "curviness": "1.0", + "chl": "0.3", + "ds": "1140847200", + "days": 13204 + } + }, + { + "parent": 2004, + "guid": 2864, + "values": { + "latitude": "38.863", + "longitude": "-129.918", + "depth": "-601", + "temperature": "12.6", + "curviness": "1.0", + "chl": "0.3", + "ds": "1140933600", + "days": 13205 + } + }, + { + "parent": 2004, + "guid": 2865, + "values": { + "latitude": "39.1214", + "longitude": "-130.6683", + "depth": "-368", + "temperature": "12.8", + "curviness": "1.0", + "chl": "0.2", + "ds": "1141020000", + "days": 13206 + } + }, + { + "parent": 2004, + "guid": 2866, + "values": { + "latitude": "39.2922", + "longitude": "-131.3936", + "depth": "-535", + "temperature": "12.9", + "curviness": "1.0", + "chl": "0.2", + "ds": "1141106400", + "days": 13207 + } + }, + { + "parent": 2004, + "guid": 2867, + "values": { + "latitude": "39.8527", + "longitude": "-132.0355", + "depth": "-589", + "temperature": "12.2", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141192800", + "days": 13208 + } + }, + { + "parent": 2004, + "guid": 2868, + "values": { + "latitude": "40.2367", + "longitude": "-132.6636", + "depth": "-332", + "temperature": "12.4", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141279200", + "days": 13209 + } + }, + { + "parent": 2004, + "guid": 2869, + "values": { + "latitude": "40.5012", + "longitude": "-133.5646", + "depth": "-316", + "temperature": "12.4", + "curviness": "1.0", + "chl": "0.2", + "ds": "1141365600", + "days": 13210 + } + }, + { + "parent": 2004, + "guid": 2870, + "values": { + "latitude": "40.869", + "longitude": "-134.2621", + "depth": "-367", + "temperature": "11.6", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141452000", + "days": 13211 + } + }, + { + "parent": 2004, + "guid": 2871, + "values": { + "latitude": "41.2393", + "longitude": "-135.0103", + "depth": "-309", + "temperature": "11.2", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141538400", + "days": 13212 + } + }, + { + "parent": 2004, + "guid": 2872, + "values": { + "latitude": "41.5163", + "longitude": "-135.8155", + "depth": "-686", + "temperature": "10.4", + "curviness": "1.0", + "chl": "0.3", + "ds": "1141624800", + "days": 13213 + } + }, + { + "parent": 2004, + "guid": 2873, + "values": { + "latitude": "42.0799", + "longitude": "-137.4889", + "depth": "-679", + "temperature": "9.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141797600", + "days": 13215 + } + }, + { + "parent": 2004, + "guid": 2874, + "values": { + "latitude": "42.3551", + "longitude": "-138.3715", + "depth": "-369", + "temperature": "9.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141884000", + "days": 13216 + } + }, + { + "parent": 2004, + "guid": 2875, + "values": { + "latitude": "42.4644", + "longitude": "-139.2146", + "depth": "-607", + "temperature": "10.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1141970400", + "days": 13217 + } + }, + { + "parent": 2004, + "guid": 2876, + "values": { + "latitude": "42.7867", + "longitude": "-139.9318", + "depth": "-452", + "temperature": "9.4", + "curviness": "1.0", + "chl": "0.4", + "ds": "1142056800", + "days": 13218 + } + }, + { + "parent": 2004, + "guid": 2877, + "values": { + "latitude": "43.1691", + "longitude": "-140.7448", + "depth": "-423", + "temperature": "9.0", + "curviness": "1.0", + "chl": "0.3", + "ds": "1142143200", + "days": 13219 + } + }, + { + "parent": 2004, + "guid": 2878, + "values": { + "latitude": "43.4602", + "longitude": "-141.72", + "depth": "-348", + "temperature": "8.6", + "curviness": "1.0", + "chl": "0.3", + "ds": "1142229600", + "days": 13220 + } + }, + { + "parent": 2004, + "guid": 2879, + "values": { + "latitude": "43.7555", + "longitude": "-143.1986", + "depth": "-773", + "temperature": "8.4", + "curviness": "1.0", + "chl": "0.3", + "ds": "1142402400", + "days": 13222 + } + }, + { + "parent": 2004, + "guid": 2880, + "values": { + "latitude": "43.9875", + "longitude": "-143.859", + "depth": "-578", + "temperature": "8.5", + "curviness": "1.0", + "chl": "0.2", + "ds": "1142488800", + "days": 13223 + } + }, + { + "parent": 2004, + "guid": 2881, + "values": { + "latitude": "44.2826", + "longitude": "-144.512", + "depth": "-438", + "temperature": "8.3", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1142575200", + "days": 13224 + } + }, + { + "parent": 2004, + "guid": 2882, + "values": { + "latitude": "44.3251", + "longitude": "-145.358", + "depth": "-390", + "temperature": "7.9", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1142661600", + "days": 13225 + } + }, + { + "parent": 2004, + "guid": 2883, + "values": { + "latitude": "44.4682", + "longitude": "-146.058", + "depth": "-544", + "temperature": "8.1", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1142748000", + "days": 13226 + } + }, + { + "parent": 2004, + "guid": 2884, + "values": { + "latitude": "44.7619", + "longitude": "-146.8362", + "depth": "-448", + "temperature": "8.0", + "curviness": "1.1", + "chl": "0.2", + "ds": "1142834400", + "days": 13227 + } + }, + { + "parent": 2004, + "guid": 2885, + "values": { + "latitude": "44.8903", + "longitude": "-147.8255", + "depth": "-375", + "temperature": "7.8", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1142920800", + "days": 13228 + } + }, + { + "parent": 2004, + "guid": 2886, + "values": { + "latitude": "45.066", + "longitude": "-148.4753", + "depth": "-555", + "temperature": "7.5", + "curviness": "1.2", + "chl": "-999.0", + "ds": "1143007200", + "days": 13229 + } + }, + { + "parent": 2004, + "guid": 2887, + "values": { + "latitude": "44.9954", + "longitude": "-149.1988", + "depth": "-466", + "temperature": "7.4", + "curviness": "1.2", + "chl": "0.3", + "ds": "1143093600", + "days": 13230 + } + }, + { + "parent": 2004, + "guid": 2888, + "values": { + "latitude": "45.1311", + "longitude": "-149.6815", + "depth": "-513", + "temperature": "7.2", + "curviness": "1.3", + "chl": "0.2", + "ds": "1143180000", + "days": 13231 + } + }, + { + "parent": 2004, + "guid": 2889, + "values": { + "latitude": "45.4856", + "longitude": "-149.8498", + "depth": "-268", + "temperature": "7.0", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1143266400", + "days": 13232 + } + }, + { + "parent": 2004, + "guid": 2890, + "values": { + "latitude": "45.7305", + "longitude": "-149.7062", + "depth": "-328", + "temperature": "6.8", + "curviness": "1.3", + "chl": "-999.0", + "ds": "1143352800", + "days": 13233 + } + }, + { + "parent": 2004, + "guid": 2891, + "values": { + "latitude": "45.58", + "longitude": "-149.6837", + "depth": "-425", + "temperature": "6.8", + "curviness": "1.4", + "chl": "0.3", + "ds": "1143439200", + "days": 13234 + } + }, + { + "parent": 2004, + "guid": 2892, + "values": { + "latitude": "45.3381", + "longitude": "-150.2717", + "depth": "-609", + "temperature": "7.3", + "curviness": "1.4", + "chl": "0.2", + "ds": "1143525600", + "days": 13235 + } + }, + { + "parent": 2004, + "guid": 2893, + "values": { + "latitude": "45.4571", + "longitude": "-150.7054", + "depth": "-474", + "temperature": "7.4", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1143612000", + "days": 13236 + } + }, + { + "parent": 2004, + "guid": 2894, + "values": { + "latitude": "45.487", + "longitude": "-151.263", + "depth": "-439", + "temperature": "7.5", + "curviness": "1.4", + "chl": "-999.0", + "ds": "1143698400", + "days": 13237 + } + }, + { + "parent": 2004, + "guid": 2895, + "values": { + "latitude": "45.4712", + "longitude": "-151.802", + "depth": "-813", + "temperature": "7.2", + "curviness": "1.3", + "chl": "0.2", + "ds": "1143784800", + "days": 13238 + } + }, + { + "parent": 2004, + "guid": 2896, + "values": { + "latitude": "45.5853", + "longitude": "-152.0243", + "depth": "-575", + "temperature": "7.1", + "curviness": "1.2", + "chl": "0.3", + "ds": "1143871200", + "days": 13239 + } + }, + { + "parent": 2004, + "guid": 2897, + "values": { + "latitude": "45.735", + "longitude": "-152.4299", + "depth": "-564", + "temperature": "6.9", + "curviness": "1.2", + "chl": "0.2", + "ds": "1143957600", + "days": 13240 + } + }, + { + "parent": 2004, + "guid": 2898, + "values": { + "latitude": "45.8251", + "longitude": "-152.616", + "depth": "-311", + "temperature": "6.9", + "curviness": "1.8", + "chl": "-999.0", + "ds": "1144040400", + "days": 13241 + } + }, + { + "parent": 2004, + "guid": 2899, + "values": { + "latitude": "45.929", + "longitude": "-152.5987", + "depth": "-466", + "temperature": "7.2", + "curviness": "2.6", + "chl": "-999.0", + "ds": "1144126800", + "days": 13242 + } + }, + { + "parent": 2004, + "guid": 2900, + "values": { + "latitude": "45.9068", + "longitude": "-152.5275", + "depth": "-835", + "temperature": "6.8", + "curviness": "2.8", + "chl": "0.2", + "ds": "1144213200", + "days": 13243 + } + }, + { + "parent": 2004, + "guid": 2901, + "values": { + "latitude": "45.8068", + "longitude": "-152.631", + "depth": "-847", + "temperature": "6.6", + "curviness": "2.8", + "chl": "-999.0", + "ds": "1144299600", + "days": 13244 + } + }, + { + "parent": 2004, + "guid": 2902, + "values": { + "latitude": "45.9147", + "longitude": "-152.6028", + "depth": "-359", + "temperature": "6.5", + "curviness": "2.1", + "chl": "-999.0", + "ds": "1144386000", + "days": 13245 + } + }, + { + "parent": 2004, + "guid": 2903, + "values": { + "latitude": "45.8069", + "longitude": "-152.2773", + "depth": "-451", + "temperature": "6.9", + "curviness": "2.2", + "chl": "0.2", + "ds": "1144472400", + "days": 13246 + } + }, + { + "parent": 2004, + "guid": 2904, + "values": { + "latitude": "45.7942", + "longitude": "-152.131", + "depth": "-720", + "temperature": "7.1", + "curviness": "1.6", + "chl": "0.2", + "ds": "1144558800", + "days": 13247 + } + }, + { + "parent": 2004, + "guid": 2905, + "values": { + "latitude": "45.9867", + "longitude": "-152.1591", + "depth": "-452", + "temperature": "7.0", + "curviness": "1.5", + "chl": "0.3", + "ds": "1144645200", + "days": 13248 + } + }, + { + "parent": 2004, + "guid": 2906, + "values": { + "latitude": "46.1552", + "longitude": "-151.9917", + "depth": "-510", + "temperature": "7.1", + "curviness": "1.3", + "chl": "0.2", + "ds": "1144731600", + "days": 13249 + } + }, + { + "parent": 2004, + "guid": 2907, + "values": { + "latitude": "46.2682", + "longitude": "-151.7225", + "depth": "-268", + "temperature": "6.9", + "curviness": "1.2", + "chl": "0.3", + "ds": "1144818000", + "days": 13250 + } + }, + { + "parent": 2004, + "guid": 2908, + "values": { + "latitude": "45.9512", + "longitude": "-151.506", + "depth": "-463", + "temperature": "7.1", + "curviness": "1.2", + "chl": "0.3", + "ds": "1144904400", + "days": 13251 + } + }, + { + "parent": 2004, + "guid": 2909, + "values": { + "latitude": "45.8763", + "longitude": "-150.5933", + "depth": "-778", + "temperature": "7.0", + "curviness": "1.2", + "chl": "0.3", + "ds": "1144990800", + "days": 13252 + } + }, + { + "parent": 2004, + "guid": 2910, + "values": { + "latitude": "45.9403", + "longitude": "-149.8579", + "depth": "-779", + "temperature": "7.0", + "curviness": "1.1", + "chl": "0.3", + "ds": "1145077200", + "days": 13253 + } + }, + { + "parent": 2004, + "guid": 2911, + "values": { + "latitude": "45.7933", + "longitude": "-149.1985", + "depth": "-820", + "temperature": "7.5", + "curviness": "1.1", + "chl": "-999.0", + "ds": "1145163600", + "days": 13254 + } + }, + { + "parent": 2004, + "guid": 2912, + "values": { + "latitude": "45.5621", + "longitude": "-148.3833", + "depth": "-708", + "temperature": "7.0", + "curviness": "1.0", + "chl": "0.3", + "ds": "1145250000", + "days": 13255 + } + }, + { + "parent": 2004, + "guid": 2913, + "values": { + "latitude": "45.1826", + "longitude": "-147.774", + "depth": "-875", + "temperature": "7.5", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1145336400", + "days": 13256 + } + }, + { + "parent": 2004, + "guid": 2914, + "values": { + "latitude": "44.8437", + "longitude": "-147.1653", + "depth": "-800", + "temperature": "7.7", + "curviness": "1.0", + "chl": "0.3", + "ds": "1145422800", + "days": 13257 + } + }, + { + "parent": 2004, + "guid": 2915, + "values": { + "latitude": "44.5437", + "longitude": "-146.4183", + "depth": "-877", + "temperature": "7.4", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1145509200", + "days": 13258 + } + }, + { + "parent": 2004, + "guid": 2916, + "values": { + "latitude": "43.8716", + "longitude": "-144.8206", + "depth": "-794", + "temperature": "7.9", + "curviness": "1.0", + "chl": "0.3", + "ds": "1145682000", + "days": 13260 + } + }, + { + "parent": 2004, + "guid": 2917, + "values": { + "latitude": "43.6228", + "longitude": "-144.3157", + "depth": "-895", + "temperature": "8.1", + "curviness": "1.0", + "chl": "0.3", + "ds": "1145768400", + "days": 13261 + } + }, + { + "parent": 2004, + "guid": 2918, + "values": { + "latitude": "43.4051", + "longitude": "-143.6929", + "depth": "-879", + "temperature": "8.6", + "curviness": "1.0", + "chl": "0.2", + "ds": "1145854800", + "days": 13262 + } + }, + { + "parent": 2004, + "guid": 2919, + "values": { + "latitude": "43.0521", + "longitude": "-142.9507", + "depth": "-253", + "temperature": "8.3", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1145941200", + "days": 13263 + } + }, + { + "parent": 2004, + "guid": 2920, + "values": { + "latitude": "42.6102", + "longitude": "-142.2088", + "depth": "-427", + "temperature": "8.5", + "curviness": "1.0", + "chl": "0.2", + "ds": "1146027600", + "days": 13264 + } + }, + { + "parent": 2004, + "guid": 2921, + "values": { + "latitude": "42.2738", + "longitude": "-141.1283", + "depth": "-565", + "temperature": "9.6", + "curviness": "1.0", + "chl": "0.2", + "ds": "1146114000", + "days": 13265 + } + }, + { + "parent": 2004, + "guid": 2922, + "values": { + "latitude": "41.9416", + "longitude": "-140.1722", + "depth": "-546", + "temperature": "9.9", + "curviness": "1.0", + "chl": "0.4", + "ds": "1146200400", + "days": 13266 + } + }, + { + "parent": 2004, + "guid": 2923, + "values": { + "latitude": "41.616", + "longitude": "-139.2529", + "depth": "-869", + "temperature": "10.7", + "curviness": "1.0", + "chl": "0.4", + "ds": "1146286800", + "days": 13267 + } + }, + { + "parent": 2004, + "guid": 2924, + "values": { + "latitude": "41.3106", + "longitude": "-138.4927", + "depth": "-818", + "temperature": "10.2", + "curviness": "1.0", + "chl": "0.5", + "ds": "1146373200", + "days": 13268 + } + }, + { + "parent": 2004, + "guid": 2925, + "values": { + "latitude": "41.0555", + "longitude": "-137.8433", + "depth": "-761", + "temperature": "11.0", + "curviness": "1.0", + "chl": "-999.0", + "ds": "1146459600", + "days": 13269 + } + }, + { + "parent": 2004, + "guid": 2926, + "values": { + "latitude": "40.5182", + "longitude": "-135.9115", + "depth": "-653", + "temperature": "11.5", + "curviness": "1.0", + "chl": "0.2", + "ds": "1146632400", + "days": 13271 + } + }, + { + "parent": 2004, + "guid": 2927, + "values": { + "latitude": "40.2638", + "longitude": "-134.8603", + "depth": "-707", + "temperature": "11.8", + "curviness": "1.0", + "chl": "0.2", + "ds": "1146718800", + "days": 13272 + } + }, + { + "parent": 2004, + "guid": 2928, + "values": { + "latitude": "40.0163", + "longitude": "-133.9856", + "depth": "-636", + "temperature": "12.0", + "curviness": "1.0", + "chl": "0.2", + "ds": "1146805200", + "days": 13273 + } + }, + { + "parent": 2004, + "guid": 2929, + "values": { + "latitude": "39.7074", + "longitude": "-133.0797", + "depth": "-610", + "temperature": "12.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1146891600", + "days": 13274 + } + }, + { + "parent": 2004, + "guid": 2930, + "values": { + "latitude": "39.4524", + "longitude": "-132.0396", + "depth": "-717", + "temperature": "12.2", + "curviness": "1.0", + "chl": "0.1", + "ds": "1146978000", + "days": 13275 + } + }, + { + "parent": 2004, + "guid": 2931, + "values": { + "latitude": "39.2135", + "longitude": "-131.0292", + "depth": "-637", + "temperature": "12.9", + "curviness": "1.0", + "chl": "0.1", + "ds": "1147064400", + "days": 13276 + } + }, + { + "parent": 2004, + "guid": 2932, + "values": { + "latitude": "38.8938", + "longitude": "-129.9427", + "depth": "-687", + "temperature": "11.9", + "curviness": "1.0", + "chl": "0.2", + "ds": "1147150800", + "days": 13277 + } + }, + { + "parent": 2004, + "guid": 2933, + "values": { + "latitude": "38.5407", + "longitude": "-128.8631", + "depth": "-675", + "temperature": "12.1", + "curviness": "1.0", + "chl": "0.3", + "ds": "1147237200", + "days": 13278 + } + }, + { + "parent": 2004, + "guid": 2934, + "values": { + "latitude": "38.2725", + "longitude": "-128.0423", + "depth": "-660", + "temperature": "12.4", + "curviness": "1.0", + "chl": "0.4", + "ds": "1147323600", + "days": 13279 + } + }, + { + "parent": 2004, + "guid": 2935, + "values": { + "latitude": "38.0383", + "longitude": "-127.1478", + "depth": "-466", + "temperature": "12.0", + "curviness": "1.0", + "chl": "0.6", + "ds": "1147410000", + "days": 13280 + } + }, + { + "parent": 2004, + "guid": 2936, + "values": { + "latitude": "37.2831", + "longitude": "-124.8743", + "depth": "-646", + "temperature": "13.0", + "curviness": "1.1", + "chl": "0.9", + "ds": "1147582800", + "days": 13282 + } + }, + { + "parent": 2004, + "guid": 2937, + "values": { + "latitude": "37.015", + "longitude": "-123.7344", + "depth": "-424", + "temperature": "13.4", + "curviness": "1.4", + "chl": "1.2", + "ds": "1147669200", + "days": 13283 + } + }, + { + "parent": 2004, + "guid": 2938, + "values": { + "latitude": "36.9931", + "longitude": "-122.6162", + "depth": "-373", + "temperature": "12.7", + "curviness": "2.0", + "chl": "14.8", + "ds": "1147755600", + "days": 13284 + } + }, + { + "parent": 2004, + "guid": 2939, + "values": { + "latitude": "37.0534", + "longitude": "-122.2349", + "depth": "-634", + "temperature": null, + "curviness": "3.3", + "chl": "-999.0", + "ds": "1147842000", + "days": 13285 + } + } + ] + } + ], + "contextStorage": { + + } + } + ], + "globalValues": [ + + ], + "appName": "DG", + "appVersion": "1.1", + "appBuildNum": "0252" +}