@gravity-ui/chartkit 5.17.0 → 5.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/ChartKit.css +0 -1
- package/build/components/SplitPane/Pane.d.ts +14 -0
- package/build/components/SplitPane/Pane.js +26 -0
- package/build/components/SplitPane/Resizer.d.ts +18 -0
- package/build/components/SplitPane/Resizer.js +26 -0
- package/build/components/SplitPane/SplitPane.d.ts +59 -0
- package/build/components/SplitPane/SplitPane.js +235 -0
- package/build/{plugins/highcharts/renderer/components/StyledSplitPane → components/SplitPane}/StyledSplitPane.css +0 -1
- package/build/{plugins/highcharts/renderer/components/StyledSplitPane → components/SplitPane}/StyledSplitPane.d.ts +1 -1
- package/build/{plugins/highcharts/renderer/components/StyledSplitPane → components/SplitPane}/StyledSplitPane.js +3 -3
- package/build/components/SplitPane/constants.d.ts +4 -0
- package/build/components/SplitPane/constants.js +4 -0
- package/build/components/SplitPane/index.d.ts +8 -0
- package/build/components/SplitPane/index.js +18 -0
- package/build/components/SplitPane/types.d.ts +2 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.js +1 -0
- package/build/constants/misc.d.ts +10 -0
- package/build/constants/misc.js +19 -0
- package/build/hooks/index.d.ts +1 -0
- package/build/hooks/index.js +1 -0
- package/build/hooks/misc.d.ts +1 -0
- package/build/hooks/misc.js +8 -0
- package/build/plugins/d3/index.d.ts +1 -1
- package/build/plugins/d3/index.js +2 -1
- package/build/plugins/d3/renderer/D3Widget.d.ts +5 -1
- package/build/plugins/d3/renderer/D3Widget.js +31 -66
- package/build/plugins/d3/renderer/withSplitPane/TooltipContent.d.ts +8 -0
- package/build/plugins/d3/renderer/withSplitPane/TooltipContent.js +12 -0
- package/build/plugins/d3/renderer/withSplitPane/useWithSplitPaneState.d.ts +19 -0
- package/build/plugins/d3/renderer/withSplitPane/useWithSplitPaneState.js +46 -0
- package/build/plugins/d3/renderer/withSplitPane/withSplitPane.d.ts +4 -0
- package/build/plugins/d3/renderer/withSplitPane/withSplitPane.js +100 -0
- package/build/plugins/d3/types.d.ts +2 -2
- package/build/plugins/highcharts/renderer/HighchartsWidget.d.ts +2 -2
- package/build/plugins/highcharts/renderer/components/HighchartsComponent.js +1 -1
- package/build/plugins/highcharts/renderer/components/withSplitPane/withSplitPane.js +1 -1
- package/build/types/index.js +1 -0
- package/build/types/widget-data/pie.d.ts +1 -1
- package/build/types/widget.d.ts +6 -3
- package/build/utils/index.d.ts +1 -0
- package/build/utils/index.js +1 -0
- package/build/utils/misc.d.ts +2 -0
- package/build/utils/misc.js +7 -0
- package/package.json +4 -4
- package/build/plugins/d3/examples/ExampleWrapper.d.ts +0 -7
- package/build/plugins/d3/examples/ExampleWrapper.js +0 -5
- package/build/plugins/d3/examples/area/Basic.d.ts +0 -2
- package/build/plugins/d3/examples/area/Basic.js +0 -34
- package/build/plugins/d3/examples/area/NegativeValues.d.ts +0 -2
- package/build/plugins/d3/examples/area/NegativeValues.js +0 -24
- package/build/plugins/d3/examples/area/PercentStacking.d.ts +0 -2
- package/build/plugins/d3/examples/area/PercentStacking.js +0 -47
- package/build/plugins/d3/examples/area/StackedArea.d.ts +0 -2
- package/build/plugins/d3/examples/area/StackedArea.js +0 -47
- package/build/plugins/d3/examples/area/TwoYAxis.d.ts +0 -2
- package/build/plugins/d3/examples/area/TwoYAxis.js +0 -58
- package/build/plugins/d3/examples/bar-x/Basic.d.ts +0 -4
- package/build/plugins/d3/examples/bar-x/Basic.js +0 -88
- package/build/plugins/d3/examples/bar-x/DataLabels.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/DataLabels.js +0 -48
- package/build/plugins/d3/examples/bar-x/GroupedColumns.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/GroupedColumns.js +0 -48
- package/build/plugins/d3/examples/bar-x/NegativeValues.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/NegativeValues.js +0 -41
- package/build/plugins/d3/examples/bar-x/PercentStack.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/PercentStack.js +0 -47
- package/build/plugins/d3/examples/bar-x/StackedColumns.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/StackedColumns.js +0 -47
- package/build/plugins/d3/examples/bar-x/TwoYAxis.d.ts +0 -2
- package/build/plugins/d3/examples/bar-x/TwoYAxis.js +0 -58
- package/build/plugins/d3/examples/bar-y/Basic.d.ts +0 -2
- package/build/plugins/d3/examples/bar-y/Basic.js +0 -45
- package/build/plugins/d3/examples/bar-y/GroupedColumns.d.ts +0 -2
- package/build/plugins/d3/examples/bar-y/GroupedColumns.js +0 -50
- package/build/plugins/d3/examples/bar-y/NegativeValues.d.ts +0 -2
- package/build/plugins/d3/examples/bar-y/NegativeValues.js +0 -40
- package/build/plugins/d3/examples/bar-y/PercentStacking.d.ts +0 -2
- package/build/plugins/d3/examples/bar-y/PercentStacking.js +0 -49
- package/build/plugins/d3/examples/bar-y/StackedColumns.d.ts +0 -2
- package/build/plugins/d3/examples/bar-y/StackedColumns.js +0 -49
- package/build/plugins/d3/examples/combined/LineAndBarX.d.ts +0 -2
- package/build/plugins/d3/examples/combined/LineAndBarX.js +0 -63
- package/build/plugins/d3/examples/line/Basic.d.ts +0 -2
- package/build/plugins/d3/examples/line/Basic.js +0 -68
- package/build/plugins/d3/examples/line/DataLabels.d.ts +0 -2
- package/build/plugins/d3/examples/line/DataLabels.js +0 -91
- package/build/plugins/d3/examples/line/LineWithMarkers.d.ts +0 -2
- package/build/plugins/d3/examples/line/LineWithMarkers.js +0 -69
- package/build/plugins/d3/examples/line/LogarithmicAxis.d.ts +0 -2
- package/build/plugins/d3/examples/line/LogarithmicAxis.js +0 -38
- package/build/plugins/d3/examples/line/Shapes.d.ts +0 -2
- package/build/plugins/d3/examples/line/Shapes.js +0 -93
- package/build/plugins/d3/examples/line/TwoYAxis.d.ts +0 -2
- package/build/plugins/d3/examples/line/TwoYAxis.js +0 -58
- package/build/plugins/d3/examples/mars-weather.d.ts +0 -13
- package/build/plugins/d3/examples/mars-weather.js +0 -1203
- package/build/plugins/d3/examples/nintendoGames.d.ts +0 -92
- package/build/plugins/d3/examples/nintendoGames.js +0 -12264
- package/build/plugins/d3/examples/pie/Basic.d.ts +0 -2
- package/build/plugins/d3/examples/pie/Basic.js +0 -32
- package/build/plugins/d3/examples/pie/Donut.d.ts +0 -2
- package/build/plugins/d3/examples/pie/Donut.js +0 -33
- package/build/plugins/d3/examples/pie/DonutWithTotals.d.ts +0 -2
- package/build/plugins/d3/examples/pie/DonutWithTotals.js +0 -36
- package/build/plugins/d3/examples/scatter/Basic.d.ts +0 -2
- package/build/plugins/d3/examples/scatter/Basic.js +0 -47
- package/build/plugins/d3/examples/scatter/TwoYAxis.d.ts +0 -2
- package/build/plugins/d3/examples/scatter/TwoYAxis.js +0 -58
- package/build/plugins/d3/renderer/components/AxisX.d.ts +0 -19
- package/build/plugins/d3/renderer/components/AxisX.js +0 -108
- package/build/plugins/d3/renderer/components/AxisY.d.ts +0 -11
- package/build/plugins/d3/renderer/components/AxisY.js +0 -199
- package/build/plugins/d3/renderer/components/Chart.d.ts +0 -10
- package/build/plugins/d3/renderer/components/Chart.js +0 -145
- package/build/plugins/d3/renderer/components/Legend.d.ts +0 -12
- package/build/plugins/d3/renderer/components/Legend.js +0 -278
- package/build/plugins/d3/renderer/components/PlotTitle.d.ts +0 -7
- package/build/plugins/d3/renderer/components/PlotTitle.js +0 -12
- package/build/plugins/d3/renderer/components/Title.d.ts +0 -7
- package/build/plugins/d3/renderer/components/Title.js +0 -8
- package/build/plugins/d3/renderer/components/Tooltip/DefaultContent.d.ts +0 -10
- package/build/plugins/d3/renderer/components/Tooltip/DefaultContent.js +0 -102
- package/build/plugins/d3/renderer/components/Tooltip/index.d.ts +0 -12
- package/build/plugins/d3/renderer/components/Tooltip/index.js +0 -28
- package/build/plugins/d3/renderer/components/index.d.ts +0 -1
- package/build/plugins/d3/renderer/components/index.js +0 -1
- package/build/plugins/d3/renderer/components/styles.css +0 -140
- package/build/plugins/d3/renderer/constants/defaults/axis.d.ts +0 -14
- package/build/plugins/d3/renderer/constants/defaults/axis.js +0 -18
- package/build/plugins/d3/renderer/constants/defaults/index.d.ts +0 -3
- package/build/plugins/d3/renderer/constants/defaults/index.js +0 -3
- package/build/plugins/d3/renderer/constants/defaults/legend.d.ts +0 -12
- package/build/plugins/d3/renderer/constants/defaults/legend.js +0 -12
- package/build/plugins/d3/renderer/constants/defaults/series-options.d.ts +0 -24
- package/build/plugins/d3/renderer/constants/defaults/series-options.js +0 -106
- package/build/plugins/d3/renderer/constants/index.d.ts +0 -3
- package/build/plugins/d3/renderer/constants/index.js +0 -24
- package/build/plugins/d3/renderer/d3-dispatcher.d.ts +0 -1
- package/build/plugins/d3/renderer/d3-dispatcher.js +0 -4
- package/build/plugins/d3/renderer/hooks/index.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/index.js +0 -10
- package/build/plugins/d3/renderer/hooks/useAxisScales/index.d.ts +0 -25
- package/build/plugins/d3/renderer/hooks/useAxisScales/index.js +0 -183
- package/build/plugins/d3/renderer/hooks/useChartDimensions/index.d.ts +0 -16
- package/build/plugins/d3/renderer/hooks/useChartDimensions/index.js +0 -34
- package/build/plugins/d3/renderer/hooks/useChartDimensions/utils.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/useChartDimensions/utils.js +0 -32
- package/build/plugins/d3/renderer/hooks/useChartOptions/chart.d.ts +0 -6
- package/build/plugins/d3/renderer/hooks/useChartOptions/chart.js +0 -28
- package/build/plugins/d3/renderer/hooks/useChartOptions/index.d.ts +0 -7
- package/build/plugins/d3/renderer/hooks/useChartOptions/index.js +0 -21
- package/build/plugins/d3/renderer/hooks/useChartOptions/title.d.ts +0 -5
- package/build/plugins/d3/renderer/hooks/useChartOptions/title.js +0 -18
- package/build/plugins/d3/renderer/hooks/useChartOptions/tooltip.d.ts +0 -5
- package/build/plugins/d3/renderer/hooks/useChartOptions/tooltip.js +0 -5
- package/build/plugins/d3/renderer/hooks/useChartOptions/types.d.ts +0 -47
- package/build/plugins/d3/renderer/hooks/useChartOptions/x-axis.d.ts +0 -7
- package/build/plugins/d3/renderer/hooks/useChartOptions/x-axis.js +0 -114
- package/build/plugins/d3/renderer/hooks/useChartOptions/y-axis.d.ts +0 -7
- package/build/plugins/d3/renderer/hooks/useChartOptions/y-axis.js +0 -116
- package/build/plugins/d3/renderer/hooks/useSeries/constants.d.ts +0 -8
- package/build/plugins/d3/renderer/hooks/useSeries/constants.js +0 -19
- package/build/plugins/d3/renderer/hooks/useSeries/index.d.ts +0 -29
- package/build/plugins/d3/renderer/hooks/useSeries/index.js +0 -82
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-area.d.ts +0 -19
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-area.js +0 -63
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-bar-x.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-bar-x.js +0 -38
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-bar-y.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-bar-y.js +0 -49
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-legend.d.ts +0 -27
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-legend.js +0 -144
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-line.d.ts +0 -22
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-line.js +0 -82
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-options.d.ts +0 -3
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-options.js +0 -5
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-pie.d.ts +0 -9
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-pie.js +0 -62
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-scatter.d.ts +0 -11
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-scatter.js +0 -47
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-treemap.d.ts +0 -11
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-treemap.js +0 -38
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-waterfall.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/useSeries/prepare-waterfall.js +0 -37
- package/build/plugins/d3/renderer/hooks/useSeries/prepareSeries.d.ts +0 -10
- package/build/plugins/d3/renderer/hooks/useSeries/prepareSeries.js +0 -65
- package/build/plugins/d3/renderer/hooks/useSeries/types.d.ts +0 -254
- package/build/plugins/d3/renderer/hooks/useSeries/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useSeries/utils.d.ts +0 -7
- package/build/plugins/d3/renderer/hooks/useSeries/utils.js +0 -33
- package/build/plugins/d3/renderer/hooks/useShapes/HtmlLayer.d.ts +0 -8
- package/build/plugins/d3/renderer/hooks/useShapes/HtmlLayer.js +0 -22
- package/build/plugins/d3/renderer/hooks/useShapes/area/index.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/area/index.js +0 -144
- package/build/plugins/d3/renderer/hooks/useShapes/area/prepare-data.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/area/prepare-data.js +0 -158
- package/build/plugins/d3/renderer/hooks/useShapes/area/types.d.ts +0 -28
- package/build/plugins/d3/renderer/hooks/useShapes/area/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/index.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/index.js +0 -96
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/prepare-data.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/prepare-data.js +0 -160
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/types.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/bar-x/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/index.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/index.js +0 -84
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/prepare-data.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/prepare-data.js +0 -169
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/types.d.ts +0 -14
- package/build/plugins/d3/renderer/hooks/useShapes/bar-y/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/constants.d.ts +0 -3
- package/build/plugins/d3/renderer/hooks/useShapes/constants.js +0 -3
- package/build/plugins/d3/renderer/hooks/useShapes/index.d.ts +0 -33
- package/build/plugins/d3/renderer/hooks/useShapes/index.js +0 -153
- package/build/plugins/d3/renderer/hooks/useShapes/line/index.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/line/index.js +0 -131
- package/build/plugins/d3/renderer/hooks/useShapes/line/prepare-data.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/line/prepare-data.js +0 -91
- package/build/plugins/d3/renderer/hooks/useShapes/line/types.d.ts +0 -30
- package/build/plugins/d3/renderer/hooks/useShapes/line/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/marker.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/marker.js +0 -76
- package/build/plugins/d3/renderer/hooks/useShapes/pie/index.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/pie/index.js +0 -172
- package/build/plugins/d3/renderer/hooks/useShapes/pie/prepare-data.d.ts +0 -9
- package/build/plugins/d3/renderer/hooks/useShapes/pie/prepare-data.js +0 -186
- package/build/plugins/d3/renderer/hooks/useShapes/pie/types.d.ts +0 -42
- package/build/plugins/d3/renderer/hooks/useShapes/pie/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/pie/utils.d.ts +0 -4
- package/build/plugins/d3/renderer/hooks/useShapes/pie/utils.js +0 -15
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/index.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/index.js +0 -69
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/prepare-data.d.ts +0 -11
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/prepare-data.js +0 -31
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/types.d.ts +0 -18
- package/build/plugins/d3/renderer/hooks/useShapes/scatter/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/styles.css +0 -36
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/index.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/index.js +0 -99
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/prepare-data.d.ts +0 -7
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/prepare-data.js +0 -114
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/types.d.ts +0 -17
- package/build/plugins/d3/renderer/hooks/useShapes/treemap/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useShapes/utils.d.ts +0 -29
- package/build/plugins/d3/renderer/hooks/useShapes/utils.js +0 -53
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/index.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/index.js +0 -128
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/prepare-data.d.ts +0 -12
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/prepare-data.js +0 -133
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/types.d.ts +0 -15
- package/build/plugins/d3/renderer/hooks/useShapes/waterfall/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useSplit/index.d.ts +0 -14
- package/build/plugins/d3/renderer/hooks/useSplit/index.js +0 -57
- package/build/plugins/d3/renderer/hooks/useSplit/types.d.ts +0 -17
- package/build/plugins/d3/renderer/hooks/useSplit/types.js +0 -1
- package/build/plugins/d3/renderer/hooks/useTooltip/index.d.ts +0 -13
- package/build/plugins/d3/renderer/hooks/useTooltip/index.js +0 -17
- package/build/plugins/d3/renderer/hooks/useTooltip/types.d.ts +0 -1
- package/build/plugins/d3/renderer/hooks/useTooltip/types.js +0 -1
- package/build/plugins/d3/renderer/types/index.d.ts +0 -24
- package/build/plugins/d3/renderer/types/index.js +0 -1
- package/build/plugins/d3/renderer/utils/axis-generators/bottom.d.ts +0 -24
- package/build/plugins/d3/renderer/utils/axis-generators/bottom.js +0 -126
- package/build/plugins/d3/renderer/utils/axis-generators/index.d.ts +0 -1
- package/build/plugins/d3/renderer/utils/axis-generators/index.js +0 -1
- package/build/plugins/d3/renderer/utils/axis.d.ts +0 -31
- package/build/plugins/d3/renderer/utils/axis.js +0 -71
- package/build/plugins/d3/renderer/utils/color.d.ts +0 -10
- package/build/plugins/d3/renderer/utils/color.js +0 -43
- package/build/plugins/d3/renderer/utils/get-closest-data.d.ts +0 -15
- package/build/plugins/d3/renderer/utils/get-closest-data.js +0 -172
- package/build/plugins/d3/renderer/utils/index.d.ts +0 -78
- package/build/plugins/d3/renderer/utils/index.js +0 -211
- package/build/plugins/d3/renderer/utils/labels.d.ts +0 -6
- package/build/plugins/d3/renderer/utils/labels.js +0 -44
- package/build/plugins/d3/renderer/utils/legend.d.ts +0 -8
- package/build/plugins/d3/renderer/utils/legend.js +0 -23
- package/build/plugins/d3/renderer/utils/math.d.ts +0 -25
- package/build/plugins/d3/renderer/utils/math.js +0 -51
- package/build/plugins/d3/renderer/utils/series/index.d.ts +0 -1
- package/build/plugins/d3/renderer/utils/series/index.js +0 -1
- package/build/plugins/d3/renderer/utils/series/waterfall.d.ts +0 -4
- package/build/plugins/d3/renderer/utils/series/waterfall.js +0 -25
- package/build/plugins/d3/renderer/utils/symbol.d.ts +0 -3
- package/build/plugins/d3/renderer/utils/symbol.js +0 -36
- package/build/plugins/d3/renderer/utils/text.d.ts +0 -29
- package/build/plugins/d3/renderer/utils/text.js +0 -139
- package/build/plugins/d3/renderer/utils/time.d.ts +0 -3
- package/build/plugins/d3/renderer/utils/time.js +0 -34
- package/build/plugins/d3/renderer/validation/__mocks__/index.d.ts +0 -3
- package/build/plugins/d3/renderer/validation/__mocks__/index.js +0 -44
- package/build/plugins/d3/renderer/validation/index.d.ts +0 -2
- package/build/plugins/d3/renderer/validation/index.js +0 -221
- package/build/plugins/d3/utils/index.d.ts +0 -4
- package/build/plugins/d3/utils/index.js +0 -4
- package/build/plugins/d3/utils/pie-center-text.d.ts +0 -7
- package/build/plugins/d3/utils/pie-center-text.js +0 -23
- /package/build/{plugins/d3/renderer/hooks/useChartOptions → components/SplitPane}/types.js +0 -0
|
@@ -1,1203 +0,0 @@
|
|
|
1
|
-
// source: https://www.kaggle.com/datasets/thedevastator/mars-weather-data-from-2012-to-2018
|
|
2
|
-
export default [
|
|
3
|
-
{
|
|
4
|
-
id: '541',
|
|
5
|
-
terrestrial_date: '2014-04-14',
|
|
6
|
-
sol: 600,
|
|
7
|
-
ls: 116,
|
|
8
|
-
season: 'Month 4',
|
|
9
|
-
min_temp: -81,
|
|
10
|
-
max_temp: -25,
|
|
11
|
-
pressure: 787,
|
|
12
|
-
wind_speed: null,
|
|
13
|
-
atmo_opacity: 'Sunny',
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
id: '543',
|
|
17
|
-
terrestrial_date: '2014-04-13',
|
|
18
|
-
sol: 599,
|
|
19
|
-
ls: 115,
|
|
20
|
-
season: 'Month 4',
|
|
21
|
-
min_temp: -84,
|
|
22
|
-
max_temp: -20,
|
|
23
|
-
pressure: 788,
|
|
24
|
-
wind_speed: null,
|
|
25
|
-
atmo_opacity: 'Sunny',
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
id: '542',
|
|
29
|
-
terrestrial_date: '2014-04-12',
|
|
30
|
-
sol: 598,
|
|
31
|
-
ls: 115,
|
|
32
|
-
season: 'Month 4',
|
|
33
|
-
min_temp: -84,
|
|
34
|
-
max_temp: -25,
|
|
35
|
-
pressure: 787,
|
|
36
|
-
wind_speed: null,
|
|
37
|
-
atmo_opacity: 'Sunny',
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
id: '540',
|
|
41
|
-
terrestrial_date: '2014-04-11',
|
|
42
|
-
sol: 597,
|
|
43
|
-
ls: 114,
|
|
44
|
-
season: 'Month 4',
|
|
45
|
-
min_temp: -84,
|
|
46
|
-
max_temp: -26,
|
|
47
|
-
pressure: 790,
|
|
48
|
-
wind_speed: null,
|
|
49
|
-
atmo_opacity: 'Sunny',
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
id: '539',
|
|
53
|
-
terrestrial_date: '2014-04-10',
|
|
54
|
-
sol: 596,
|
|
55
|
-
ls: 114,
|
|
56
|
-
season: 'Month 4',
|
|
57
|
-
min_temp: -82,
|
|
58
|
-
max_temp: -24,
|
|
59
|
-
pressure: 791,
|
|
60
|
-
wind_speed: null,
|
|
61
|
-
atmo_opacity: 'Sunny',
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
id: '538',
|
|
65
|
-
terrestrial_date: '2014-04-09',
|
|
66
|
-
sol: 595,
|
|
67
|
-
ls: 113,
|
|
68
|
-
season: 'Month 4',
|
|
69
|
-
min_temp: -83,
|
|
70
|
-
max_temp: -25,
|
|
71
|
-
pressure: 792,
|
|
72
|
-
wind_speed: null,
|
|
73
|
-
atmo_opacity: 'Sunny',
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
id: '537',
|
|
77
|
-
terrestrial_date: '2014-04-08',
|
|
78
|
-
sol: 594,
|
|
79
|
-
ls: 113,
|
|
80
|
-
season: 'Month 4',
|
|
81
|
-
min_temp: -83,
|
|
82
|
-
max_temp: -22,
|
|
83
|
-
pressure: 793,
|
|
84
|
-
wind_speed: null,
|
|
85
|
-
atmo_opacity: 'Sunny',
|
|
86
|
-
},
|
|
87
|
-
{
|
|
88
|
-
id: '536',
|
|
89
|
-
terrestrial_date: '2014-04-07',
|
|
90
|
-
sol: 593,
|
|
91
|
-
ls: 112,
|
|
92
|
-
season: 'Month 4',
|
|
93
|
-
min_temp: -83,
|
|
94
|
-
max_temp: -23,
|
|
95
|
-
pressure: 795,
|
|
96
|
-
wind_speed: null,
|
|
97
|
-
atmo_opacity: 'Sunny',
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
id: '534',
|
|
101
|
-
terrestrial_date: '2014-04-06',
|
|
102
|
-
sol: 592,
|
|
103
|
-
ls: 112,
|
|
104
|
-
season: 'Month 4',
|
|
105
|
-
min_temp: -83,
|
|
106
|
-
max_temp: -26,
|
|
107
|
-
pressure: 795,
|
|
108
|
-
wind_speed: null,
|
|
109
|
-
atmo_opacity: 'Sunny',
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
id: '533',
|
|
113
|
-
terrestrial_date: '2014-04-05',
|
|
114
|
-
sol: 591,
|
|
115
|
-
ls: 111,
|
|
116
|
-
season: 'Month 4',
|
|
117
|
-
min_temp: -82,
|
|
118
|
-
max_temp: -26,
|
|
119
|
-
pressure: 795,
|
|
120
|
-
wind_speed: null,
|
|
121
|
-
atmo_opacity: 'Sunny',
|
|
122
|
-
},
|
|
123
|
-
{
|
|
124
|
-
id: '535',
|
|
125
|
-
terrestrial_date: '2014-04-04',
|
|
126
|
-
sol: 590,
|
|
127
|
-
ls: 111,
|
|
128
|
-
season: 'Month 4',
|
|
129
|
-
min_temp: -82,
|
|
130
|
-
max_temp: -26,
|
|
131
|
-
pressure: 797,
|
|
132
|
-
wind_speed: null,
|
|
133
|
-
atmo_opacity: 'Sunny',
|
|
134
|
-
},
|
|
135
|
-
{
|
|
136
|
-
id: '531',
|
|
137
|
-
terrestrial_date: '2014-04-03',
|
|
138
|
-
sol: 589,
|
|
139
|
-
ls: 110,
|
|
140
|
-
season: 'Month 4',
|
|
141
|
-
min_temp: -85,
|
|
142
|
-
max_temp: -27,
|
|
143
|
-
pressure: 798,
|
|
144
|
-
wind_speed: null,
|
|
145
|
-
atmo_opacity: 'Sunny',
|
|
146
|
-
},
|
|
147
|
-
{
|
|
148
|
-
id: '532',
|
|
149
|
-
terrestrial_date: '2014-04-02',
|
|
150
|
-
sol: 588,
|
|
151
|
-
ls: 110,
|
|
152
|
-
season: 'Month 4',
|
|
153
|
-
min_temp: -84,
|
|
154
|
-
max_temp: -24,
|
|
155
|
-
pressure: 799,
|
|
156
|
-
wind_speed: null,
|
|
157
|
-
atmo_opacity: 'Sunny',
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
id: '530',
|
|
161
|
-
terrestrial_date: '2014-04-01',
|
|
162
|
-
sol: 587,
|
|
163
|
-
ls: 109,
|
|
164
|
-
season: 'Month 4',
|
|
165
|
-
min_temp: -85,
|
|
166
|
-
max_temp: -28,
|
|
167
|
-
pressure: 801,
|
|
168
|
-
wind_speed: null,
|
|
169
|
-
atmo_opacity: 'Sunny',
|
|
170
|
-
},
|
|
171
|
-
{
|
|
172
|
-
id: '529',
|
|
173
|
-
terrestrial_date: '2014-03-31',
|
|
174
|
-
sol: 586,
|
|
175
|
-
ls: 109,
|
|
176
|
-
season: 'Month 4',
|
|
177
|
-
min_temp: -82,
|
|
178
|
-
max_temp: -24,
|
|
179
|
-
pressure: 802,
|
|
180
|
-
wind_speed: null,
|
|
181
|
-
atmo_opacity: 'Sunny',
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
id: '527',
|
|
185
|
-
terrestrial_date: '2014-03-30',
|
|
186
|
-
sol: 585,
|
|
187
|
-
ls: 109,
|
|
188
|
-
season: 'Month 4',
|
|
189
|
-
min_temp: -83,
|
|
190
|
-
max_temp: -26,
|
|
191
|
-
pressure: 802,
|
|
192
|
-
wind_speed: null,
|
|
193
|
-
atmo_opacity: 'Sunny',
|
|
194
|
-
},
|
|
195
|
-
{
|
|
196
|
-
id: '528',
|
|
197
|
-
terrestrial_date: '2014-03-29',
|
|
198
|
-
sol: 584,
|
|
199
|
-
ls: 108,
|
|
200
|
-
season: 'Month 4',
|
|
201
|
-
min_temp: -82,
|
|
202
|
-
max_temp: -25,
|
|
203
|
-
pressure: 804,
|
|
204
|
-
wind_speed: null,
|
|
205
|
-
atmo_opacity: 'Sunny',
|
|
206
|
-
},
|
|
207
|
-
{
|
|
208
|
-
id: '526',
|
|
209
|
-
terrestrial_date: '2014-03-28',
|
|
210
|
-
sol: 583,
|
|
211
|
-
ls: 108,
|
|
212
|
-
season: 'Month 4',
|
|
213
|
-
min_temp: -82,
|
|
214
|
-
max_temp: -27,
|
|
215
|
-
pressure: 806,
|
|
216
|
-
wind_speed: null,
|
|
217
|
-
atmo_opacity: 'Sunny',
|
|
218
|
-
},
|
|
219
|
-
{
|
|
220
|
-
id: '525',
|
|
221
|
-
terrestrial_date: '2014-03-27',
|
|
222
|
-
sol: 582,
|
|
223
|
-
ls: 107,
|
|
224
|
-
season: 'Month 4',
|
|
225
|
-
min_temp: -84,
|
|
226
|
-
max_temp: -27,
|
|
227
|
-
pressure: 807,
|
|
228
|
-
wind_speed: null,
|
|
229
|
-
atmo_opacity: 'Sunny',
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
id: '524',
|
|
233
|
-
terrestrial_date: '2014-03-26',
|
|
234
|
-
sol: 581,
|
|
235
|
-
ls: 107,
|
|
236
|
-
season: 'Month 4',
|
|
237
|
-
min_temp: -84,
|
|
238
|
-
max_temp: -28,
|
|
239
|
-
pressure: 808,
|
|
240
|
-
wind_speed: null,
|
|
241
|
-
atmo_opacity: 'Sunny',
|
|
242
|
-
},
|
|
243
|
-
{
|
|
244
|
-
id: '523',
|
|
245
|
-
terrestrial_date: '2014-03-25',
|
|
246
|
-
sol: 580,
|
|
247
|
-
ls: 106,
|
|
248
|
-
season: 'Month 4',
|
|
249
|
-
min_temp: -83,
|
|
250
|
-
max_temp: -24,
|
|
251
|
-
pressure: 810,
|
|
252
|
-
wind_speed: null,
|
|
253
|
-
atmo_opacity: 'Sunny',
|
|
254
|
-
},
|
|
255
|
-
{
|
|
256
|
-
id: '522',
|
|
257
|
-
terrestrial_date: '2014-03-24',
|
|
258
|
-
sol: 579,
|
|
259
|
-
ls: 106,
|
|
260
|
-
season: 'Month 4',
|
|
261
|
-
min_temp: -82,
|
|
262
|
-
max_temp: -22,
|
|
263
|
-
pressure: 811,
|
|
264
|
-
wind_speed: null,
|
|
265
|
-
atmo_opacity: 'Sunny',
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
id: '521',
|
|
269
|
-
terrestrial_date: '2014-03-22',
|
|
270
|
-
sol: 578,
|
|
271
|
-
ls: 105,
|
|
272
|
-
season: 'Month 4',
|
|
273
|
-
min_temp: -83,
|
|
274
|
-
max_temp: -23,
|
|
275
|
-
pressure: 812,
|
|
276
|
-
wind_speed: null,
|
|
277
|
-
atmo_opacity: 'Sunny',
|
|
278
|
-
},
|
|
279
|
-
{
|
|
280
|
-
id: '519',
|
|
281
|
-
terrestrial_date: '2014-03-21',
|
|
282
|
-
sol: 577,
|
|
283
|
-
ls: 105,
|
|
284
|
-
season: 'Month 4',
|
|
285
|
-
min_temp: -84,
|
|
286
|
-
max_temp: -27,
|
|
287
|
-
pressure: 813,
|
|
288
|
-
wind_speed: null,
|
|
289
|
-
atmo_opacity: 'Sunny',
|
|
290
|
-
},
|
|
291
|
-
{
|
|
292
|
-
id: '520',
|
|
293
|
-
terrestrial_date: '2014-03-20',
|
|
294
|
-
sol: 576,
|
|
295
|
-
ls: 104,
|
|
296
|
-
season: 'Month 4',
|
|
297
|
-
min_temp: -84,
|
|
298
|
-
max_temp: -26,
|
|
299
|
-
pressure: 815,
|
|
300
|
-
wind_speed: null,
|
|
301
|
-
atmo_opacity: 'Sunny',
|
|
302
|
-
},
|
|
303
|
-
{
|
|
304
|
-
id: '518',
|
|
305
|
-
terrestrial_date: '2014-03-19',
|
|
306
|
-
sol: 575,
|
|
307
|
-
ls: 104,
|
|
308
|
-
season: 'Month 4',
|
|
309
|
-
min_temp: -82,
|
|
310
|
-
max_temp: -26,
|
|
311
|
-
pressure: 816,
|
|
312
|
-
wind_speed: null,
|
|
313
|
-
atmo_opacity: 'Sunny',
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
id: '517',
|
|
317
|
-
terrestrial_date: '2014-03-18',
|
|
318
|
-
sol: 574,
|
|
319
|
-
ls: 103,
|
|
320
|
-
season: 'Month 4',
|
|
321
|
-
min_temp: -85,
|
|
322
|
-
max_temp: -23,
|
|
323
|
-
pressure: 817,
|
|
324
|
-
wind_speed: null,
|
|
325
|
-
atmo_opacity: 'Sunny',
|
|
326
|
-
},
|
|
327
|
-
{
|
|
328
|
-
id: '516',
|
|
329
|
-
terrestrial_date: '2014-03-17',
|
|
330
|
-
sol: 573,
|
|
331
|
-
ls: 103,
|
|
332
|
-
season: 'Month 4',
|
|
333
|
-
min_temp: -84,
|
|
334
|
-
max_temp: -27,
|
|
335
|
-
pressure: 819,
|
|
336
|
-
wind_speed: null,
|
|
337
|
-
atmo_opacity: 'Sunny',
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
id: '514',
|
|
341
|
-
terrestrial_date: '2014-03-16',
|
|
342
|
-
sol: 572,
|
|
343
|
-
ls: 102,
|
|
344
|
-
season: 'Month 4',
|
|
345
|
-
min_temp: -85,
|
|
346
|
-
max_temp: -27,
|
|
347
|
-
pressure: 820,
|
|
348
|
-
wind_speed: null,
|
|
349
|
-
atmo_opacity: 'Sunny',
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
id: '515',
|
|
353
|
-
terrestrial_date: '2014-03-15',
|
|
354
|
-
sol: 571,
|
|
355
|
-
ls: 102,
|
|
356
|
-
season: 'Month 4',
|
|
357
|
-
min_temp: -84,
|
|
358
|
-
max_temp: -26,
|
|
359
|
-
pressure: 821,
|
|
360
|
-
wind_speed: null,
|
|
361
|
-
atmo_opacity: 'Sunny',
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
id: '513',
|
|
365
|
-
terrestrial_date: '2014-03-14',
|
|
366
|
-
sol: 570,
|
|
367
|
-
ls: 102,
|
|
368
|
-
season: 'Month 4',
|
|
369
|
-
min_temp: -84,
|
|
370
|
-
max_temp: -26,
|
|
371
|
-
pressure: 823,
|
|
372
|
-
wind_speed: null,
|
|
373
|
-
atmo_opacity: 'Sunny',
|
|
374
|
-
},
|
|
375
|
-
{
|
|
376
|
-
id: '512',
|
|
377
|
-
terrestrial_date: '2014-03-13',
|
|
378
|
-
sol: 569,
|
|
379
|
-
ls: 101,
|
|
380
|
-
season: 'Month 4',
|
|
381
|
-
min_temp: -85,
|
|
382
|
-
max_temp: -27,
|
|
383
|
-
pressure: 825,
|
|
384
|
-
wind_speed: null,
|
|
385
|
-
atmo_opacity: 'Sunny',
|
|
386
|
-
},
|
|
387
|
-
{
|
|
388
|
-
id: '511',
|
|
389
|
-
terrestrial_date: '2014-03-12',
|
|
390
|
-
sol: 568,
|
|
391
|
-
ls: 101,
|
|
392
|
-
season: 'Month 4',
|
|
393
|
-
min_temp: -86,
|
|
394
|
-
max_temp: -28,
|
|
395
|
-
pressure: 825,
|
|
396
|
-
wind_speed: null,
|
|
397
|
-
atmo_opacity: 'Sunny',
|
|
398
|
-
},
|
|
399
|
-
{
|
|
400
|
-
id: '510',
|
|
401
|
-
terrestrial_date: '2014-03-11',
|
|
402
|
-
sol: 567,
|
|
403
|
-
ls: 100,
|
|
404
|
-
season: 'Month 4',
|
|
405
|
-
min_temp: -86,
|
|
406
|
-
max_temp: -28,
|
|
407
|
-
pressure: 827,
|
|
408
|
-
wind_speed: null,
|
|
409
|
-
atmo_opacity: 'Sunny',
|
|
410
|
-
},
|
|
411
|
-
{
|
|
412
|
-
id: '507',
|
|
413
|
-
terrestrial_date: '2014-03-10',
|
|
414
|
-
sol: 566,
|
|
415
|
-
ls: 100,
|
|
416
|
-
season: 'Month 4',
|
|
417
|
-
min_temp: -86,
|
|
418
|
-
max_temp: -27,
|
|
419
|
-
pressure: 829,
|
|
420
|
-
wind_speed: null,
|
|
421
|
-
atmo_opacity: 'Sunny',
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
id: '508',
|
|
425
|
-
terrestrial_date: '2014-03-09',
|
|
426
|
-
sol: 565,
|
|
427
|
-
ls: 99,
|
|
428
|
-
season: 'Month 4',
|
|
429
|
-
min_temp: -85,
|
|
430
|
-
max_temp: -27,
|
|
431
|
-
pressure: 830,
|
|
432
|
-
wind_speed: null,
|
|
433
|
-
atmo_opacity: 'Sunny',
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
id: '509',
|
|
437
|
-
terrestrial_date: '2014-03-08',
|
|
438
|
-
sol: 564,
|
|
439
|
-
ls: 99,
|
|
440
|
-
season: 'Month 4',
|
|
441
|
-
min_temp: -86,
|
|
442
|
-
max_temp: -27,
|
|
443
|
-
pressure: 831,
|
|
444
|
-
wind_speed: null,
|
|
445
|
-
atmo_opacity: 'Sunny',
|
|
446
|
-
},
|
|
447
|
-
{
|
|
448
|
-
id: '505',
|
|
449
|
-
terrestrial_date: '2014-03-07',
|
|
450
|
-
sol: 563,
|
|
451
|
-
ls: 98,
|
|
452
|
-
season: 'Month 4',
|
|
453
|
-
min_temp: -87,
|
|
454
|
-
max_temp: -31,
|
|
455
|
-
pressure: 833,
|
|
456
|
-
wind_speed: null,
|
|
457
|
-
atmo_opacity: 'Sunny',
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
id: '506',
|
|
461
|
-
terrestrial_date: '2014-03-06',
|
|
462
|
-
sol: 562,
|
|
463
|
-
ls: 98,
|
|
464
|
-
season: 'Month 4',
|
|
465
|
-
min_temp: -85,
|
|
466
|
-
max_temp: -23,
|
|
467
|
-
pressure: 834,
|
|
468
|
-
wind_speed: null,
|
|
469
|
-
atmo_opacity: 'Sunny',
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
id: '504',
|
|
473
|
-
terrestrial_date: '2014-03-05',
|
|
474
|
-
sol: 561,
|
|
475
|
-
ls: 97,
|
|
476
|
-
season: 'Month 4',
|
|
477
|
-
min_temp: -85,
|
|
478
|
-
max_temp: -23,
|
|
479
|
-
pressure: 835,
|
|
480
|
-
wind_speed: null,
|
|
481
|
-
atmo_opacity: 'Sunny',
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
id: '503',
|
|
485
|
-
terrestrial_date: '2014-03-04',
|
|
486
|
-
sol: 560,
|
|
487
|
-
ls: 97,
|
|
488
|
-
season: 'Month 4',
|
|
489
|
-
min_temp: -86,
|
|
490
|
-
max_temp: -23,
|
|
491
|
-
pressure: 836,
|
|
492
|
-
wind_speed: null,
|
|
493
|
-
atmo_opacity: 'Sunny',
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
id: '502',
|
|
497
|
-
terrestrial_date: '2014-03-03',
|
|
498
|
-
sol: 559,
|
|
499
|
-
ls: 96,
|
|
500
|
-
season: 'Month 4',
|
|
501
|
-
min_temp: -85,
|
|
502
|
-
max_temp: -27,
|
|
503
|
-
pressure: 838,
|
|
504
|
-
wind_speed: null,
|
|
505
|
-
atmo_opacity: 'Sunny',
|
|
506
|
-
},
|
|
507
|
-
{
|
|
508
|
-
id: '500',
|
|
509
|
-
terrestrial_date: '2014-03-02',
|
|
510
|
-
sol: 558,
|
|
511
|
-
ls: 96,
|
|
512
|
-
season: 'Month 4',
|
|
513
|
-
min_temp: -85,
|
|
514
|
-
max_temp: -26,
|
|
515
|
-
pressure: 839,
|
|
516
|
-
wind_speed: null,
|
|
517
|
-
atmo_opacity: 'Sunny',
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
id: '498',
|
|
521
|
-
terrestrial_date: '2014-03-01',
|
|
522
|
-
sol: 557,
|
|
523
|
-
ls: 96,
|
|
524
|
-
season: 'Month 4',
|
|
525
|
-
min_temp: -85,
|
|
526
|
-
max_temp: -29,
|
|
527
|
-
pressure: 840,
|
|
528
|
-
wind_speed: null,
|
|
529
|
-
atmo_opacity: 'Sunny',
|
|
530
|
-
},
|
|
531
|
-
{
|
|
532
|
-
id: '501',
|
|
533
|
-
terrestrial_date: '2014-02-28',
|
|
534
|
-
sol: 556,
|
|
535
|
-
ls: 95,
|
|
536
|
-
season: 'Month 4',
|
|
537
|
-
min_temp: -85,
|
|
538
|
-
max_temp: -29,
|
|
539
|
-
pressure: 842,
|
|
540
|
-
wind_speed: null,
|
|
541
|
-
atmo_opacity: 'Sunny',
|
|
542
|
-
},
|
|
543
|
-
{
|
|
544
|
-
id: '499',
|
|
545
|
-
terrestrial_date: '2014-02-27',
|
|
546
|
-
sol: 555,
|
|
547
|
-
ls: 95,
|
|
548
|
-
season: 'Month 4',
|
|
549
|
-
min_temp: -85,
|
|
550
|
-
max_temp: -31,
|
|
551
|
-
pressure: 843,
|
|
552
|
-
wind_speed: null,
|
|
553
|
-
atmo_opacity: 'Sunny',
|
|
554
|
-
},
|
|
555
|
-
{
|
|
556
|
-
id: '497',
|
|
557
|
-
terrestrial_date: '2014-02-26',
|
|
558
|
-
sol: 554,
|
|
559
|
-
ls: 94,
|
|
560
|
-
season: 'Month 4',
|
|
561
|
-
min_temp: -84,
|
|
562
|
-
max_temp: -22,
|
|
563
|
-
pressure: 843,
|
|
564
|
-
wind_speed: null,
|
|
565
|
-
atmo_opacity: 'Sunny',
|
|
566
|
-
},
|
|
567
|
-
{
|
|
568
|
-
id: '496',
|
|
569
|
-
terrestrial_date: '2014-02-25',
|
|
570
|
-
sol: 553,
|
|
571
|
-
ls: 94,
|
|
572
|
-
season: 'Month 4',
|
|
573
|
-
min_temp: -84,
|
|
574
|
-
max_temp: -26,
|
|
575
|
-
pressure: 845,
|
|
576
|
-
wind_speed: null,
|
|
577
|
-
atmo_opacity: 'Sunny',
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
id: '493',
|
|
581
|
-
terrestrial_date: '2014-02-24',
|
|
582
|
-
sol: 552,
|
|
583
|
-
ls: 93,
|
|
584
|
-
season: 'Month 4',
|
|
585
|
-
min_temp: -86,
|
|
586
|
-
max_temp: -29,
|
|
587
|
-
pressure: 847,
|
|
588
|
-
wind_speed: null,
|
|
589
|
-
atmo_opacity: 'Sunny',
|
|
590
|
-
},
|
|
591
|
-
{
|
|
592
|
-
id: '495',
|
|
593
|
-
terrestrial_date: '2014-02-23',
|
|
594
|
-
sol: 551,
|
|
595
|
-
ls: 93,
|
|
596
|
-
season: 'Month 4',
|
|
597
|
-
min_temp: -85,
|
|
598
|
-
max_temp: -28,
|
|
599
|
-
pressure: 848,
|
|
600
|
-
wind_speed: null,
|
|
601
|
-
atmo_opacity: 'Sunny',
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
id: '494',
|
|
605
|
-
terrestrial_date: '2014-02-22',
|
|
606
|
-
sol: 550,
|
|
607
|
-
ls: 92,
|
|
608
|
-
season: 'Month 4',
|
|
609
|
-
min_temp: -85,
|
|
610
|
-
max_temp: -27,
|
|
611
|
-
pressure: 850,
|
|
612
|
-
wind_speed: null,
|
|
613
|
-
atmo_opacity: 'Sunny',
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
id: '492',
|
|
617
|
-
terrestrial_date: '2014-02-21',
|
|
618
|
-
sol: 549,
|
|
619
|
-
ls: 92,
|
|
620
|
-
season: 'Month 4',
|
|
621
|
-
min_temp: -87,
|
|
622
|
-
max_temp: -23,
|
|
623
|
-
pressure: 851,
|
|
624
|
-
wind_speed: null,
|
|
625
|
-
atmo_opacity: 'Sunny',
|
|
626
|
-
},
|
|
627
|
-
{
|
|
628
|
-
id: '491',
|
|
629
|
-
terrestrial_date: '2014-02-20',
|
|
630
|
-
sol: 548,
|
|
631
|
-
ls: 91,
|
|
632
|
-
season: 'Month 4',
|
|
633
|
-
min_temp: -86,
|
|
634
|
-
max_temp: -28,
|
|
635
|
-
pressure: 852,
|
|
636
|
-
wind_speed: null,
|
|
637
|
-
atmo_opacity: 'Sunny',
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
id: '488',
|
|
641
|
-
terrestrial_date: '2014-02-19',
|
|
642
|
-
sol: 547,
|
|
643
|
-
ls: 91,
|
|
644
|
-
season: 'Month 4',
|
|
645
|
-
min_temp: -85,
|
|
646
|
-
max_temp: -29,
|
|
647
|
-
pressure: 853,
|
|
648
|
-
wind_speed: null,
|
|
649
|
-
atmo_opacity: 'Sunny',
|
|
650
|
-
},
|
|
651
|
-
{
|
|
652
|
-
id: '489',
|
|
653
|
-
terrestrial_date: '2014-02-18',
|
|
654
|
-
sol: 546,
|
|
655
|
-
ls: 91,
|
|
656
|
-
season: 'Month 4',
|
|
657
|
-
min_temp: -85,
|
|
658
|
-
max_temp: -34,
|
|
659
|
-
pressure: 855,
|
|
660
|
-
wind_speed: null,
|
|
661
|
-
atmo_opacity: 'Sunny',
|
|
662
|
-
},
|
|
663
|
-
{
|
|
664
|
-
id: '490',
|
|
665
|
-
terrestrial_date: '2014-02-17',
|
|
666
|
-
sol: 545,
|
|
667
|
-
ls: 90,
|
|
668
|
-
season: 'Month 4',
|
|
669
|
-
min_temp: -85,
|
|
670
|
-
max_temp: -29,
|
|
671
|
-
pressure: 856,
|
|
672
|
-
wind_speed: null,
|
|
673
|
-
atmo_opacity: 'Sunny',
|
|
674
|
-
},
|
|
675
|
-
{
|
|
676
|
-
id: '487',
|
|
677
|
-
terrestrial_date: '2014-02-16',
|
|
678
|
-
sol: 544,
|
|
679
|
-
ls: 90,
|
|
680
|
-
season: 'Month 4',
|
|
681
|
-
min_temp: -86,
|
|
682
|
-
max_temp: -27,
|
|
683
|
-
pressure: 857,
|
|
684
|
-
wind_speed: null,
|
|
685
|
-
atmo_opacity: 'Sunny',
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
id: '486',
|
|
689
|
-
terrestrial_date: '2014-02-15',
|
|
690
|
-
sol: 543,
|
|
691
|
-
ls: 89,
|
|
692
|
-
season: 'Month 3',
|
|
693
|
-
min_temp: -84,
|
|
694
|
-
max_temp: -26,
|
|
695
|
-
pressure: 858,
|
|
696
|
-
wind_speed: null,
|
|
697
|
-
atmo_opacity: 'Sunny',
|
|
698
|
-
},
|
|
699
|
-
{
|
|
700
|
-
id: '477',
|
|
701
|
-
terrestrial_date: '2014-02-13',
|
|
702
|
-
sol: 542,
|
|
703
|
-
ls: 89,
|
|
704
|
-
season: 'Month 3',
|
|
705
|
-
min_temp: -85,
|
|
706
|
-
max_temp: -28,
|
|
707
|
-
pressure: 859,
|
|
708
|
-
wind_speed: null,
|
|
709
|
-
atmo_opacity: 'Sunny',
|
|
710
|
-
},
|
|
711
|
-
{
|
|
712
|
-
id: '482',
|
|
713
|
-
terrestrial_date: '2014-02-12',
|
|
714
|
-
sol: 541,
|
|
715
|
-
ls: 88,
|
|
716
|
-
season: 'Month 3',
|
|
717
|
-
min_temp: -84,
|
|
718
|
-
max_temp: -27,
|
|
719
|
-
pressure: 861,
|
|
720
|
-
wind_speed: null,
|
|
721
|
-
atmo_opacity: 'Sunny',
|
|
722
|
-
},
|
|
723
|
-
{
|
|
724
|
-
id: '481',
|
|
725
|
-
terrestrial_date: '2014-02-11',
|
|
726
|
-
sol: 540,
|
|
727
|
-
ls: 88,
|
|
728
|
-
season: 'Month 3',
|
|
729
|
-
min_temp: -84,
|
|
730
|
-
max_temp: -29,
|
|
731
|
-
pressure: 862,
|
|
732
|
-
wind_speed: null,
|
|
733
|
-
atmo_opacity: 'Sunny',
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
id: '476',
|
|
737
|
-
terrestrial_date: '2014-02-10',
|
|
738
|
-
sol: 539,
|
|
739
|
-
ls: 87,
|
|
740
|
-
season: 'Month 3',
|
|
741
|
-
min_temp: -85,
|
|
742
|
-
max_temp: -23,
|
|
743
|
-
pressure: 864,
|
|
744
|
-
wind_speed: null,
|
|
745
|
-
atmo_opacity: 'Sunny',
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
id: '472',
|
|
749
|
-
terrestrial_date: '2014-02-09',
|
|
750
|
-
sol: 538,
|
|
751
|
-
ls: 87,
|
|
752
|
-
season: 'Month 3',
|
|
753
|
-
min_temp: -85,
|
|
754
|
-
max_temp: -25,
|
|
755
|
-
pressure: 865,
|
|
756
|
-
wind_speed: null,
|
|
757
|
-
atmo_opacity: 'Sunny',
|
|
758
|
-
},
|
|
759
|
-
{
|
|
760
|
-
id: '469',
|
|
761
|
-
terrestrial_date: '2014-02-08',
|
|
762
|
-
sol: 537,
|
|
763
|
-
ls: 86,
|
|
764
|
-
season: 'Month 3',
|
|
765
|
-
min_temp: -83,
|
|
766
|
-
max_temp: -28,
|
|
767
|
-
pressure: 865,
|
|
768
|
-
wind_speed: null,
|
|
769
|
-
atmo_opacity: 'Sunny',
|
|
770
|
-
},
|
|
771
|
-
{
|
|
772
|
-
id: '470',
|
|
773
|
-
terrestrial_date: '2014-02-07',
|
|
774
|
-
sol: 536,
|
|
775
|
-
ls: 86,
|
|
776
|
-
season: 'Month 3',
|
|
777
|
-
min_temp: -83,
|
|
778
|
-
max_temp: -29,
|
|
779
|
-
pressure: 867,
|
|
780
|
-
wind_speed: null,
|
|
781
|
-
atmo_opacity: 'Sunny',
|
|
782
|
-
},
|
|
783
|
-
{
|
|
784
|
-
id: '468',
|
|
785
|
-
terrestrial_date: '2014-02-06',
|
|
786
|
-
sol: 535,
|
|
787
|
-
ls: 86,
|
|
788
|
-
season: 'Month 3',
|
|
789
|
-
min_temp: -88,
|
|
790
|
-
max_temp: -29,
|
|
791
|
-
pressure: 868,
|
|
792
|
-
wind_speed: null,
|
|
793
|
-
atmo_opacity: 'Sunny',
|
|
794
|
-
},
|
|
795
|
-
{
|
|
796
|
-
id: '467',
|
|
797
|
-
terrestrial_date: '2014-02-05',
|
|
798
|
-
sol: 534,
|
|
799
|
-
ls: 85,
|
|
800
|
-
season: 'Month 3',
|
|
801
|
-
min_temp: -86,
|
|
802
|
-
max_temp: -29,
|
|
803
|
-
pressure: 869,
|
|
804
|
-
wind_speed: null,
|
|
805
|
-
atmo_opacity: 'Sunny',
|
|
806
|
-
},
|
|
807
|
-
{
|
|
808
|
-
id: '466',
|
|
809
|
-
terrestrial_date: '2014-02-04',
|
|
810
|
-
sol: 533,
|
|
811
|
-
ls: 85,
|
|
812
|
-
season: 'Month 3',
|
|
813
|
-
min_temp: -87,
|
|
814
|
-
max_temp: -30,
|
|
815
|
-
pressure: 871,
|
|
816
|
-
wind_speed: null,
|
|
817
|
-
atmo_opacity: 'Sunny',
|
|
818
|
-
},
|
|
819
|
-
{
|
|
820
|
-
id: '464',
|
|
821
|
-
terrestrial_date: '2014-02-03',
|
|
822
|
-
sol: 532,
|
|
823
|
-
ls: 84,
|
|
824
|
-
season: 'Month 3',
|
|
825
|
-
min_temp: -88,
|
|
826
|
-
max_temp: -23,
|
|
827
|
-
pressure: 872,
|
|
828
|
-
wind_speed: null,
|
|
829
|
-
atmo_opacity: 'Sunny',
|
|
830
|
-
},
|
|
831
|
-
{
|
|
832
|
-
id: '465',
|
|
833
|
-
terrestrial_date: '2014-02-02',
|
|
834
|
-
sol: 531,
|
|
835
|
-
ls: 84,
|
|
836
|
-
season: 'Month 3',
|
|
837
|
-
min_temp: -87,
|
|
838
|
-
max_temp: -22,
|
|
839
|
-
pressure: 872,
|
|
840
|
-
wind_speed: null,
|
|
841
|
-
atmo_opacity: 'Sunny',
|
|
842
|
-
},
|
|
843
|
-
{
|
|
844
|
-
id: '463',
|
|
845
|
-
terrestrial_date: '2014-02-01',
|
|
846
|
-
sol: 530,
|
|
847
|
-
ls: 83,
|
|
848
|
-
season: 'Month 3',
|
|
849
|
-
min_temp: -87,
|
|
850
|
-
max_temp: -28,
|
|
851
|
-
pressure: 873,
|
|
852
|
-
wind_speed: null,
|
|
853
|
-
atmo_opacity: 'Sunny',
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
id: '462',
|
|
857
|
-
terrestrial_date: '2014-01-31',
|
|
858
|
-
sol: 529,
|
|
859
|
-
ls: 83,
|
|
860
|
-
season: 'Month 3',
|
|
861
|
-
min_temp: -87,
|
|
862
|
-
max_temp: -23,
|
|
863
|
-
pressure: 875,
|
|
864
|
-
wind_speed: null,
|
|
865
|
-
atmo_opacity: 'Sunny',
|
|
866
|
-
},
|
|
867
|
-
{
|
|
868
|
-
id: '461',
|
|
869
|
-
terrestrial_date: '2014-01-30',
|
|
870
|
-
sol: 528,
|
|
871
|
-
ls: 82,
|
|
872
|
-
season: 'Month 3',
|
|
873
|
-
min_temp: -86,
|
|
874
|
-
max_temp: -26,
|
|
875
|
-
pressure: 876,
|
|
876
|
-
wind_speed: null,
|
|
877
|
-
atmo_opacity: 'Sunny',
|
|
878
|
-
},
|
|
879
|
-
{
|
|
880
|
-
id: '460',
|
|
881
|
-
terrestrial_date: '2014-01-29',
|
|
882
|
-
sol: 527,
|
|
883
|
-
ls: 82,
|
|
884
|
-
season: 'Month 3',
|
|
885
|
-
min_temp: -86,
|
|
886
|
-
max_temp: -23,
|
|
887
|
-
pressure: 877,
|
|
888
|
-
wind_speed: null,
|
|
889
|
-
atmo_opacity: 'Sunny',
|
|
890
|
-
},
|
|
891
|
-
{
|
|
892
|
-
id: '459',
|
|
893
|
-
terrestrial_date: '2014-01-28',
|
|
894
|
-
sol: 526,
|
|
895
|
-
ls: 82,
|
|
896
|
-
season: 'Month 3',
|
|
897
|
-
min_temp: -87,
|
|
898
|
-
max_temp: -24,
|
|
899
|
-
pressure: 878,
|
|
900
|
-
wind_speed: null,
|
|
901
|
-
atmo_opacity: 'Sunny',
|
|
902
|
-
},
|
|
903
|
-
{
|
|
904
|
-
id: '456',
|
|
905
|
-
terrestrial_date: '2014-01-27',
|
|
906
|
-
sol: 525,
|
|
907
|
-
ls: 81,
|
|
908
|
-
season: 'Month 3',
|
|
909
|
-
min_temp: -87,
|
|
910
|
-
max_temp: -29,
|
|
911
|
-
pressure: 878,
|
|
912
|
-
wind_speed: null,
|
|
913
|
-
atmo_opacity: 'Sunny',
|
|
914
|
-
},
|
|
915
|
-
{
|
|
916
|
-
id: '457',
|
|
917
|
-
terrestrial_date: '2014-01-26',
|
|
918
|
-
sol: 524,
|
|
919
|
-
ls: 81,
|
|
920
|
-
season: 'Month 3',
|
|
921
|
-
min_temp: -85,
|
|
922
|
-
max_temp: -27,
|
|
923
|
-
pressure: 880,
|
|
924
|
-
wind_speed: null,
|
|
925
|
-
atmo_opacity: 'Sunny',
|
|
926
|
-
},
|
|
927
|
-
{
|
|
928
|
-
id: '458',
|
|
929
|
-
terrestrial_date: '2014-01-25',
|
|
930
|
-
sol: 523,
|
|
931
|
-
ls: 80,
|
|
932
|
-
season: 'Month 3',
|
|
933
|
-
min_temp: -85,
|
|
934
|
-
max_temp: -25,
|
|
935
|
-
pressure: 881,
|
|
936
|
-
wind_speed: null,
|
|
937
|
-
atmo_opacity: 'Sunny',
|
|
938
|
-
},
|
|
939
|
-
{
|
|
940
|
-
id: '455',
|
|
941
|
-
terrestrial_date: '2014-01-24',
|
|
942
|
-
sol: 522,
|
|
943
|
-
ls: 80,
|
|
944
|
-
season: 'Month 3',
|
|
945
|
-
min_temp: -85,
|
|
946
|
-
max_temp: -26,
|
|
947
|
-
pressure: 881,
|
|
948
|
-
wind_speed: null,
|
|
949
|
-
atmo_opacity: 'Sunny',
|
|
950
|
-
},
|
|
951
|
-
{
|
|
952
|
-
id: '454',
|
|
953
|
-
terrestrial_date: '2014-01-23',
|
|
954
|
-
sol: 521,
|
|
955
|
-
ls: 79,
|
|
956
|
-
season: 'Month 3',
|
|
957
|
-
min_temp: -87,
|
|
958
|
-
max_temp: -26,
|
|
959
|
-
pressure: 882,
|
|
960
|
-
wind_speed: null,
|
|
961
|
-
atmo_opacity: 'Sunny',
|
|
962
|
-
},
|
|
963
|
-
{
|
|
964
|
-
id: '453',
|
|
965
|
-
terrestrial_date: '2014-01-22',
|
|
966
|
-
sol: 520,
|
|
967
|
-
ls: 79,
|
|
968
|
-
season: 'Month 3',
|
|
969
|
-
min_temp: -86,
|
|
970
|
-
max_temp: -24,
|
|
971
|
-
pressure: 884,
|
|
972
|
-
wind_speed: null,
|
|
973
|
-
atmo_opacity: 'Sunny',
|
|
974
|
-
},
|
|
975
|
-
{
|
|
976
|
-
id: '452',
|
|
977
|
-
terrestrial_date: '2014-01-21',
|
|
978
|
-
sol: 519,
|
|
979
|
-
ls: 78,
|
|
980
|
-
season: 'Month 3',
|
|
981
|
-
min_temp: -86,
|
|
982
|
-
max_temp: -25,
|
|
983
|
-
pressure: 884,
|
|
984
|
-
wind_speed: null,
|
|
985
|
-
atmo_opacity: 'Sunny',
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
id: '451',
|
|
989
|
-
terrestrial_date: '2014-01-20',
|
|
990
|
-
sol: 518,
|
|
991
|
-
ls: 78,
|
|
992
|
-
season: 'Month 3',
|
|
993
|
-
min_temp: -85,
|
|
994
|
-
max_temp: -29,
|
|
995
|
-
pressure: 885,
|
|
996
|
-
wind_speed: null,
|
|
997
|
-
atmo_opacity: 'Sunny',
|
|
998
|
-
},
|
|
999
|
-
{
|
|
1000
|
-
id: '448',
|
|
1001
|
-
terrestrial_date: '2014-01-19',
|
|
1002
|
-
sol: 517,
|
|
1003
|
-
ls: 77,
|
|
1004
|
-
season: 'Month 3',
|
|
1005
|
-
min_temp: -86,
|
|
1006
|
-
max_temp: -27,
|
|
1007
|
-
pressure: 885,
|
|
1008
|
-
wind_speed: null,
|
|
1009
|
-
atmo_opacity: 'Sunny',
|
|
1010
|
-
},
|
|
1011
|
-
{
|
|
1012
|
-
id: '449',
|
|
1013
|
-
terrestrial_date: '2014-01-18',
|
|
1014
|
-
sol: 516,
|
|
1015
|
-
ls: 77,
|
|
1016
|
-
season: 'Month 3',
|
|
1017
|
-
min_temp: -86,
|
|
1018
|
-
max_temp: -25,
|
|
1019
|
-
pressure: 888,
|
|
1020
|
-
wind_speed: null,
|
|
1021
|
-
atmo_opacity: 'Sunny',
|
|
1022
|
-
},
|
|
1023
|
-
{
|
|
1024
|
-
id: '450',
|
|
1025
|
-
terrestrial_date: '2014-01-17',
|
|
1026
|
-
sol: 515,
|
|
1027
|
-
ls: 77,
|
|
1028
|
-
season: 'Month 3',
|
|
1029
|
-
min_temp: -86,
|
|
1030
|
-
max_temp: -23,
|
|
1031
|
-
pressure: 888,
|
|
1032
|
-
wind_speed: null,
|
|
1033
|
-
atmo_opacity: 'Sunny',
|
|
1034
|
-
},
|
|
1035
|
-
{
|
|
1036
|
-
id: '447',
|
|
1037
|
-
terrestrial_date: '2014-01-16',
|
|
1038
|
-
sol: 514,
|
|
1039
|
-
ls: 76,
|
|
1040
|
-
season: 'Month 3',
|
|
1041
|
-
min_temp: -86,
|
|
1042
|
-
max_temp: -29,
|
|
1043
|
-
pressure: 888,
|
|
1044
|
-
wind_speed: null,
|
|
1045
|
-
atmo_opacity: 'Sunny',
|
|
1046
|
-
},
|
|
1047
|
-
{
|
|
1048
|
-
id: '445',
|
|
1049
|
-
terrestrial_date: '2014-01-15',
|
|
1050
|
-
sol: 513,
|
|
1051
|
-
ls: 76,
|
|
1052
|
-
season: 'Month 3',
|
|
1053
|
-
min_temp: -86,
|
|
1054
|
-
max_temp: -29,
|
|
1055
|
-
pressure: 889,
|
|
1056
|
-
wind_speed: null,
|
|
1057
|
-
atmo_opacity: 'Sunny',
|
|
1058
|
-
},
|
|
1059
|
-
{
|
|
1060
|
-
id: '444',
|
|
1061
|
-
terrestrial_date: '2014-01-14',
|
|
1062
|
-
sol: 512,
|
|
1063
|
-
ls: 75,
|
|
1064
|
-
season: 'Month 3',
|
|
1065
|
-
min_temp: -86,
|
|
1066
|
-
max_temp: -24,
|
|
1067
|
-
pressure: 890,
|
|
1068
|
-
wind_speed: null,
|
|
1069
|
-
atmo_opacity: 'Sunny',
|
|
1070
|
-
},
|
|
1071
|
-
{
|
|
1072
|
-
id: '446',
|
|
1073
|
-
terrestrial_date: '2014-01-13',
|
|
1074
|
-
sol: 511,
|
|
1075
|
-
ls: 75,
|
|
1076
|
-
season: 'Month 3',
|
|
1077
|
-
min_temp: -85,
|
|
1078
|
-
max_temp: -31,
|
|
1079
|
-
pressure: 892,
|
|
1080
|
-
wind_speed: null,
|
|
1081
|
-
atmo_opacity: 'Sunny',
|
|
1082
|
-
},
|
|
1083
|
-
{
|
|
1084
|
-
id: '441',
|
|
1085
|
-
terrestrial_date: '2014-01-12',
|
|
1086
|
-
sol: 510,
|
|
1087
|
-
ls: 74,
|
|
1088
|
-
season: 'Month 3',
|
|
1089
|
-
min_temp: -85,
|
|
1090
|
-
max_temp: -31,
|
|
1091
|
-
pressure: 892,
|
|
1092
|
-
wind_speed: null,
|
|
1093
|
-
atmo_opacity: 'Sunny',
|
|
1094
|
-
},
|
|
1095
|
-
{
|
|
1096
|
-
id: '443',
|
|
1097
|
-
terrestrial_date: '2014-01-11',
|
|
1098
|
-
sol: 509,
|
|
1099
|
-
ls: 74,
|
|
1100
|
-
season: 'Month 3',
|
|
1101
|
-
min_temp: -86,
|
|
1102
|
-
max_temp: -30,
|
|
1103
|
-
pressure: 895,
|
|
1104
|
-
wind_speed: null,
|
|
1105
|
-
atmo_opacity: 'Sunny',
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
id: '442',
|
|
1109
|
-
terrestrial_date: '2014-01-10',
|
|
1110
|
-
sol: 508,
|
|
1111
|
-
ls: 73,
|
|
1112
|
-
season: 'Month 3',
|
|
1113
|
-
min_temp: -83,
|
|
1114
|
-
max_temp: -29,
|
|
1115
|
-
pressure: 893,
|
|
1116
|
-
wind_speed: null,
|
|
1117
|
-
atmo_opacity: 'Sunny',
|
|
1118
|
-
},
|
|
1119
|
-
{
|
|
1120
|
-
id: '440',
|
|
1121
|
-
terrestrial_date: '2014-01-09',
|
|
1122
|
-
sol: 507,
|
|
1123
|
-
ls: 73,
|
|
1124
|
-
season: 'Month 3',
|
|
1125
|
-
min_temp: -85,
|
|
1126
|
-
max_temp: -25,
|
|
1127
|
-
pressure: 894,
|
|
1128
|
-
wind_speed: null,
|
|
1129
|
-
atmo_opacity: 'Sunny',
|
|
1130
|
-
},
|
|
1131
|
-
{
|
|
1132
|
-
id: '439',
|
|
1133
|
-
terrestrial_date: '2014-01-08',
|
|
1134
|
-
sol: 506,
|
|
1135
|
-
ls: 73,
|
|
1136
|
-
season: 'Month 3',
|
|
1137
|
-
min_temp: -86,
|
|
1138
|
-
max_temp: -27,
|
|
1139
|
-
pressure: 894,
|
|
1140
|
-
wind_speed: null,
|
|
1141
|
-
atmo_opacity: 'Sunny',
|
|
1142
|
-
},
|
|
1143
|
-
{
|
|
1144
|
-
id: '438',
|
|
1145
|
-
terrestrial_date: '2014-01-06',
|
|
1146
|
-
sol: 505,
|
|
1147
|
-
ls: 72,
|
|
1148
|
-
season: 'Month 3',
|
|
1149
|
-
min_temp: -85,
|
|
1150
|
-
max_temp: -29,
|
|
1151
|
-
pressure: 895,
|
|
1152
|
-
wind_speed: null,
|
|
1153
|
-
atmo_opacity: 'Sunny',
|
|
1154
|
-
},
|
|
1155
|
-
{
|
|
1156
|
-
id: '436',
|
|
1157
|
-
terrestrial_date: '2014-01-05',
|
|
1158
|
-
sol: 504,
|
|
1159
|
-
ls: 72,
|
|
1160
|
-
season: 'Month 3',
|
|
1161
|
-
min_temp: -85,
|
|
1162
|
-
max_temp: -29,
|
|
1163
|
-
pressure: 895,
|
|
1164
|
-
wind_speed: null,
|
|
1165
|
-
atmo_opacity: 'Sunny',
|
|
1166
|
-
},
|
|
1167
|
-
{
|
|
1168
|
-
id: '483',
|
|
1169
|
-
terrestrial_date: '2014-01-04',
|
|
1170
|
-
sol: 503,
|
|
1171
|
-
ls: 71,
|
|
1172
|
-
season: 'Month 3',
|
|
1173
|
-
min_temp: -86,
|
|
1174
|
-
max_temp: -28,
|
|
1175
|
-
pressure: 897,
|
|
1176
|
-
wind_speed: null,
|
|
1177
|
-
atmo_opacity: 'Sunny',
|
|
1178
|
-
},
|
|
1179
|
-
{
|
|
1180
|
-
id: '437',
|
|
1181
|
-
terrestrial_date: '2014-01-03',
|
|
1182
|
-
sol: 502,
|
|
1183
|
-
ls: 71,
|
|
1184
|
-
season: 'Month 3',
|
|
1185
|
-
min_temp: -87,
|
|
1186
|
-
max_temp: -30,
|
|
1187
|
-
pressure: 898,
|
|
1188
|
-
wind_speed: null,
|
|
1189
|
-
atmo_opacity: 'Sunny',
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
id: '435',
|
|
1193
|
-
terrestrial_date: '2014-01-02',
|
|
1194
|
-
sol: 501,
|
|
1195
|
-
ls: 70,
|
|
1196
|
-
season: 'Month 3',
|
|
1197
|
-
min_temp: -86,
|
|
1198
|
-
max_temp: -28,
|
|
1199
|
-
pressure: 898,
|
|
1200
|
-
wind_speed: null,
|
|
1201
|
-
atmo_opacity: 'Sunny',
|
|
1202
|
-
},
|
|
1203
|
-
];
|