diff --git a/.gitignore b/.gitignore index 2cc1afdcf3..e178505b4d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ *.py[co] # Packages -*.egg +*.egg? *.egg-info dist build @@ -32,6 +32,7 @@ lib/iris/std_names.py # Iris test result files lib/iris/tests/result_image_comparison/ iris_image_test_output/ +*.ESMF_LogFile # Iris test lock file lib/iris/tests/results/imagerepo.lock diff --git a/.travis.yml b/.travis.yml index 382cab716a..fcdeed66f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,13 +76,14 @@ install: CONDA_REQS_FILE=conda-requirements.txt; python requirements/gen_conda_requirements.py ${CONDA_REQS_FLAGS} --groups ${CONDA_REQS_GROUPS} > ${CONDA_REQS_FILE}; cat ${CONDA_REQS_FILE}; - conda install --quiet --file ${CONDA_REQS_FILE}; + conda install --quiet -n $ENV_NAME --file ${CONDA_REQS_FILE}; - PREFIX=$HOME/miniconda/envs/$ENV_NAME # Output debug info - > - conda list; + conda list -n $ENV_NAME; + conda list -n $ENV_NAME --explicit; conda info -a; # Pre-load Natural Earth data to avoid multiple, overlapping downloads. @@ -111,7 +112,7 @@ install: # JUST FOR NOW : Install latest version of iris-grib. # TODO : remove when iris doesn't do an integration test requiring iris-grib. - if [[ "$TEST_MINIMAL" != true && ${TRAVIS_PYTHON_VERSION} == 2* ]]; then - conda install python-ecmwf_grib; + conda install --quiet -n $ENV_NAME python-ecmwf_grib; pip install git+https://github.com/SciTools/iris-grib.git@v0.11.0; fi diff --git a/docs/iris/example_code/Meteorology/COP_maps.py b/docs/iris/example_code/Meteorology/COP_maps.py index e05ee11c15..aa5049feb9 100644 --- a/docs/iris/example_code/Meteorology/COP_maps.py +++ b/docs/iris/example_code/Meteorology/COP_maps.py @@ -104,8 +104,7 @@ def main(): # Add the first subplot showing the E1 scenario plt.subplot(121) plt.title('HadGEM2 E1 Scenario', fontsize=10) - iplt.contourf(delta_e1, levels, colors=colors, linewidth=0, - extend='both') + iplt.contourf(delta_e1, levels, colors=colors, extend='both') plt.gca().coastlines() # get the current axes' subplot for use later on plt1_ax = plt.gca() @@ -114,7 +113,7 @@ def main(): plt.subplot(122) plt.title('HadGEM2 A1B-Image Scenario', fontsize=10) contour_result = iplt.contourf(delta_a1b, levels, colors=colors, - linewidth=0, extend='both') + extend='both') plt.gca().coastlines() # get the current axes' subplot for use later on plt2_ax = plt.gca() diff --git a/docs/iris/src/userguide/cube_statistics.rst b/docs/iris/src/userguide/cube_statistics.rst index e2fa249730..96e4776cf7 100644 --- a/docs/iris/src/userguide/cube_statistics.rst +++ b/docs/iris/src/userguide/cube_statistics.rst @@ -77,9 +77,9 @@ we can pass the coordinate name and the aggregation definition to the altitude - x x Scalar coordinates: forecast_reference_time: 2009-11-19 04:00:00 - level_height: 696.667 m, bound=(0.0, 1393.33) m + level_height: 696.6666 m, bound=(0.0, 1393.3333) m model_level_number: 10, bound=(1, 19) - sigma: 0.92293, bound=(0.84586, 1.0) + sigma: 0.92292976, bound=(0.8458596, 1.0) Attributes: STASH: m01s00i004 source: Data from Met Office Unified Model @@ -139,8 +139,8 @@ These areas can now be passed to the ``collapsed`` method as weights: altitude - x Scalar coordinates: forecast_reference_time: 2009-11-19 04:00:00 - grid_latitude: 1.51455 degrees, bound=(0.1443, 2.8848) degrees - grid_longitude: 358.749 degrees, bound=(357.494, 360.005) degrees + grid_latitude: 1.5145501 degrees, bound=(0.14430022, 2.8848) degrees + grid_longitude: 358.74948 degrees, bound=(357.494, 360.00497) degrees surface_altitude: 399.625 m, bound=(-14.0, 813.25) m Attributes: STASH: m01s00i004 diff --git a/docs/iris/src/userguide/interpolation_and_regridding.rst b/docs/iris/src/userguide/interpolation_and_regridding.rst index ff35777303..0ce7b5c774 100644 --- a/docs/iris/src/userguide/interpolation_and_regridding.rst +++ b/docs/iris/src/userguide/interpolation_and_regridding.rst @@ -132,9 +132,9 @@ This cube has a "hybrid-height" vertical coordinate system, meaning that the ver coordinate is unevenly spaced in altitude: >>> print(column.coord('altitude').points) - [ 418.69836426 434.57049561 456.79278564 485.3664856 520.29327393 - 561.57519531 609.21447754 663.21411133 723.57696533 790.30664062 - 863.40722656 942.88232422 1028.73706055 1120.97644043 1219.60510254] + [ 418.69836 434.5705 456.7928 485.3665 520.2933 561.5752 + 609.2145 663.2141 723.57697 790.30664 863.4072 942.8823 + 1028.737 1120.9764 1219.6051 ] We could regularise the vertical coordinate by defining 10 equally spaced altitude sample points between 400 and 1250 and interpolating our vertical coordinate onto @@ -177,8 +177,8 @@ For example, to mask values that lie beyond the range of the original data: >>> scheme = iris.analysis.Linear(extrapolation_mode='mask') >>> new_column = column.interpolate(sample_points, scheme) >>> print(new_column.coord('altitude').points) - [ nan 494.44451904 588.88891602 683.33325195 777.77783203 - 872.222229 966.66674805 1061.11108398 1155.55541992 nan] + [ nan 494.44452 588.8889 683.33325 777.77783 872.2222 + 966.66675 1061.1111 1155.5554 nan] .. _caching_an_interpolator: diff --git a/docs/iris/src/userguide/subsetting_a_cube.rst b/docs/iris/src/userguide/subsetting_a_cube.rst index 38137fa5b5..b61f16a043 100644 --- a/docs/iris/src/userguide/subsetting_a_cube.rst +++ b/docs/iris/src/userguide/subsetting_a_cube.rst @@ -91,9 +91,9 @@ same way as loading with constraints: Scalar coordinates: forecast_period: 6.0 hours forecast_reference_time: 2009-11-19 04:00:00 - level_height: 395.0 m, bound=(360.0, 433.333) m + level_height: 395.0 m, bound=(360.0, 433.3332) m model_level_number: 10 - sigma: 0.954993, bound=(0.958939, 0.95068) + sigma: 0.9549927, bound=(0.9589389, 0.95068014) time: 2009-11-19 10:00:00 Attributes: STASH: m01s00i004 diff --git a/docs/iris/src/whitepapers/um_files_loading.rst b/docs/iris/src/whitepapers/um_files_loading.rst index 6cedcc5f3c..42da75bd89 100644 --- a/docs/iris/src/whitepapers/um_files_loading.rst +++ b/docs/iris/src/whitepapers/um_files_loading.rst @@ -150,14 +150,14 @@ For example: >>> # Show grid details and first 5 longitude values. >>> print(' '.join(str(_) for _ in (field.lbcode, field.lbnpt, field.bzx, ... field.bdx))) - 1 96 -3.75 3.75 + 1 96 -3.749999 3.749999 >>> print(field.bzx + field.bdx * np.arange(1, 6)) - [ 0. 3.75 7.5 11.25 15. ] + [ 0. 3.75 7.5 11.25 15. ] >>> >>> # Show Iris equivalent information. ... cube = iris.load_cube(fname) >>> print(cube.coord('longitude').points[:5]) - [ 0. 3.75 7.5 11.25 15. ] + [ 0. 3.75 7.5 11.25 15. ] .. note:: Note that in Iris (as in CF) there is no special distinction between diff --git a/lib/iris/cube.py b/lib/iris/cube.py index b7066d9258..473f3f9b45 100644 --- a/lib/iris/cube.py +++ b/lib/iris/cube.py @@ -3684,7 +3684,7 @@ def interpolate(self, sample_points, scheme, collapse_scalar=True): DimCoord([2009-11-19 10:00:00, 2009-11-19 11:00:00, \ 2009-11-19 12:00:00], standard_name='time', calendar='gregorian') >>> print(cube.coord('time').points) - [ 349618. 349619. 349620.] + [349618. 349619. 349620.] >>> samples = [('time', 349618.5)] >>> result = cube.interpolate(samples, iris.analysis.Linear()) >>> print(result.summary(shorten=True)) @@ -3694,7 +3694,7 @@ def interpolate(self, sample_points, scheme, collapse_scalar=True): DimCoord([2009-11-19 10:30:00], standard_name='time', \ calendar='gregorian') >>> print(result.coord('time').points) - [ 349618.5] + [349618.5] >>> # For datetime-like coordinates, we can also use >>> # datetime-like objects. >>> samples = [('time', datetime.datetime(2009, 11, 19, 10, 30))] @@ -3706,7 +3706,7 @@ def interpolate(self, sample_points, scheme, collapse_scalar=True): DimCoord([2009-11-19 10:30:00], standard_name='time', \ calendar='gregorian') >>> print(result2.coord('time').points) - [ 349618.5] + [349618.5] >>> print(result == result2) True diff --git a/lib/iris/experimental/regrid.py b/lib/iris/experimental/regrid.py index 19d7da9d16..91e48af61a 100644 --- a/lib/iris/experimental/regrid.py +++ b/lib/iris/experimental/regrid.py @@ -390,7 +390,7 @@ def _weighted_mean_with_mdtol(data, weights, axis=None, mdtol=0): weights_sum = weights.sum(axis=axis) frac_masked = 1 - np.true_divide(unmasked_weights_sum, weights_sum) mask_pt = frac_masked > mdtol - if np.any(mask_pt): + if np.any(mask_pt) and not isinstance(res, ma.core.MaskedConstant): if np.isscalar(res): res = ma.masked elif ma.isMaskedArray(res): diff --git a/lib/iris/plot.py b/lib/iris/plot.py index 177b78000e..7ebe48ae03 100644 --- a/lib/iris/plot.py +++ b/lib/iris/plot.py @@ -1,4 +1,4 @@ -# (C) British Crown Copyright 2010 - 2017, Met Office +# (C) British Crown Copyright 2010 - 2018, Met Office # # This file is part of Iris. # @@ -34,10 +34,10 @@ import matplotlib.axes import matplotlib.collections as mpl_collections import matplotlib.dates as mpl_dates -import matplotlib.transforms as mpl_transforms import matplotlib.pyplot as plt +from matplotlib.offsetbox import AnchoredText import matplotlib.ticker as mpl_ticker -from mpl_toolkits.axes_grid.anchored_artists import AnchoredText +import matplotlib.transforms as mpl_transforms import netcdftime import numpy as np import numpy.ma as ma @@ -343,6 +343,12 @@ def _draw_2d_from_points(draw_method_name, arg_func, cube, *args, **kwargs): data = cube.data if plot_defn.transpose: data = data.T + # Also transpose the scatter marker color array, + # as now mpl 2.x does not do this for free. + if draw_method_name == 'scatter' and 'c' in kwargs: + c = kwargs['c'] + if hasattr(c, 'T') and cube.data.shape == c.shape: + kwargs['c'] = c.T # Obtain U and V coordinates v_coord, u_coord = plot_defn.coords diff --git a/lib/iris/tests/__init__.py b/lib/iris/tests/__init__.py index 9e46dd913e..8c64dc15b1 100644 --- a/lib/iris/tests/__init__.py +++ b/lib/iris/tests/__init__.py @@ -78,6 +78,9 @@ import matplotlib matplotlib.use('agg') matplotlib.rcdefaults() + # Standardise the figure size across matplotlib versions. + # This permits matplotlib png image comparison. + matplotlib.rcParams['figure.figsize'] = [8.0, 6.0] import matplotlib.testing.compare as mcompare import matplotlib.pyplot as plt except ImportError: @@ -835,7 +838,7 @@ def _create_missing(): 'for test {}.') msg = msg.format(phash, distances, unique_id) if _DISPLAY_FIGURES: - emsg = 'Image comparion would have failed: {}' + emsg = 'Image comparison would have failed: {}' print(emsg.format(msg)) else: emsg = 'Image comparison failed: {}' @@ -1174,7 +1177,7 @@ class MyPlotTests(test.GraphicsTest): skip_sample_data = unittest.skipIf(not SAMPLE_DATA_AVAILABLE, - ('Test(s) require "iris_sample_data", ' + ('Test(s) require "iris-sample-data", ' 'which is not available.')) diff --git a/lib/iris/tests/idiff.py b/lib/iris/tests/idiff.py index 2267375928..3c0e4f9c2e 100755 --- a/lib/iris/tests/idiff.py +++ b/lib/iris/tests/idiff.py @@ -35,23 +35,24 @@ import sys import warnings -from PIL import Image -import filelock -import imagehash -import matplotlib.pyplot as plt -import matplotlib.image as mimg -import matplotlib.testing.compare as mcompare -from matplotlib.testing.exceptions import ImageComparisonFailure -import matplotlib.widgets as mwidget -import numpy as np -import requests - # Force iris.tests to use the ```tkagg``` backend by using the '-d' # command-line argument as idiff is an interactive tool that requires a # gui interface. sys.argv.append('-d') -import iris.tests -import iris.util as iutil +import iris.tests # noqa + +from PIL import Image # noqa +import filelock # noqa +import imagehash # noqa +import matplotlib.pyplot as plt # noqa +import matplotlib.image as mimg # noqa +import matplotlib.testing.compare as mcompare # noqa +from matplotlib.testing.exceptions import ImageComparisonFailure # noqa +import matplotlib.widgets as mwidget # noqa +import numpy as np # noqa +import requests # noqa + +import iris.util as iutil # noqa _POSTFIX_DIFF = '-failed-diff.png' @@ -246,7 +247,7 @@ def step_over_diffs(result_dir, action, display=True): if isinstance(e, ValueError) or \ isinstance(e, ImageComparisonFailure): print('Could not compare {}: {}'.format(result_fname, - e.message)) + e)) continue else: # Propagate the exception, keeping the stack trace diff --git a/lib/iris/tests/results/COLPEX/small_colpex_theta_p_alt.cml b/lib/iris/tests/results/COLPEX/small_colpex_theta_p_alt.cml index 9b8f2b9115..0139d1d2fb 100644 --- a/lib/iris/tests/results/COLPEX/small_colpex_theta_p_alt.cml +++ b/lib/iris/tests/results/COLPEX/small_colpex_theta_p_alt.cml @@ -9,387 +9,387 @@ + 476.751, 445.735], + [534.494, 574.562, 720.976, ..., 507.224, + 470.836, 518.705], + [727.317, 800.517, 595.591, ..., 465.849, + 476.977, 486.773], + ..., + [687.474, 753.275, 707.277, ..., 446.561, + 452.217, 488.646], + [567.94, 686.381, 848.409, ..., 461.055, + 455.619, 468.224], + [698.235, 812.745, 675.237, ..., 517.086, + 475.494, 508.362]]]" shape="(10, 83, 83)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -496,18 +496,18 @@ + 84.2878, 118.704]]" shape="(83, 83)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"> @@ -532,387 +532,387 @@ + 476.751, 445.735], + [534.494, 574.562, 720.976, ..., 507.224, + 470.836, 518.705], + [727.317, 800.517, 595.591, ..., 465.849, + 476.977, 486.773], + ..., + [687.474, 753.275, 707.277, ..., 446.561, + 452.217, 488.646], + [567.94, 686.381, 848.409, ..., 461.055, + 455.619, 468.224], + [698.235, 812.745, 675.237, ..., 517.086, + 475.494, 508.362]]]" shape="(10, 83, 83)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -1019,18 +1019,18 @@ + 84.2878, 118.704]]" shape="(83, 83)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/PP/extra_char_data.pp.txt b/lib/iris/tests/results/PP/extra_char_data.pp.txt index 24c93dc0f8..f903ffb65b 100644 --- a/lib/iris/tests/results/PP/extra_char_data.pp.txt +++ b/lib/iris/tests/results/PP/extra_char_data.pp.txt @@ -51,18 +51,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 0.85620117 0.90942383 0.96142578 ..., 0.69165039 0.74731445 - 0.80224609] - [-0.29174805 -0.23974609 -0.18725586 ..., -0.36645508 -0.34594727 + data: [[ 0.8562012 0.9094238 0.9614258 ..., 0.6916504 0.74731445 + 0.8022461 ] + [-0.29174805 -0.2397461 -0.18725586 ..., -0.36645508 -0.34594727 -0.32763672] - [-0.76000977 -0.68334961 -0.63476562 ..., -0.92431641 -0.89111328 - -0.76757812] + [-0.76000977 -0.6833496 -0.6347656 ..., -0.9243164 -0.8911133 + -0.7675781 ] ..., - [-4.64746094 -4.74560547 -4.81713867 ..., -4.32226562 -4.42895508 - -4.53613281] - [-4.45776367 -4.51831055 -4.58007812 ..., -4.28320312 -4.3503418 - -4.40380859] - [-4.22265625 -4.28466797 -4.34204102 ..., -4.01000977 -4.08520508 -4.15625 ]] + [-4.647461 -4.7456055 -4.8171387 ..., -4.3222656 -4.428955 + -4.536133 ] + [-4.4577637 -4.5183105 -4.580078 ..., -4.283203 -4.350342 + -4.4038086 ] + [-4.2226562 -4.284668 -4.342041 ..., -4.01001 -4.085205 + -4.15625 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 9.998 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -117,19 +118,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.23046875 -1.22021484 -1.20776367 ..., -1.25463867 -1.24658203 - -1.23876953] - [-1.00268555 -1.01196289 -1.01953125 ..., -0.96630859 -0.98022461 - -0.99047852] - [-0.76538086 -0.88452148 -1.01416016 ..., -0.72143555 -0.70117188 + data: [[-1.2304688 -1.2202148 -1.2077637 ..., -1.2546387 -1.246582 + -1.2387695 ] + [-1.0026855 -1.0119629 -1.0195312 ..., -0.9663086 -0.9802246 + -0.9904785 ] + [-0.76538086 -0.8845215 -1.0141602 ..., -0.72143555 -0.7011719 -0.71118164] ..., - [-2.10131836 -1.94702148 -1.78930664 ..., -2.56420898 -2.41772461 + [-2.1013184 -1.9470215 -1.7893066 ..., -2.564209 -2.4177246 -2.2590332 ] - [-2.09228516 -1.93603516 -1.77563477 ..., -2.52880859 -2.38647461 + [-2.0922852 -1.9360352 -1.7756348 ..., -2.5288086 -2.3864746 -2.2421875 ] - [-2.09594727 -1.95239258 -1.80712891 ..., -2.50927734 -2.37475586 - -2.23681641]] + [-2.0959473 -1.9523926 -1.8071289 ..., -2.5092773 -2.3747559 + -2.2368164 ]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 9.998 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -184,19 +185,13 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 282.46191406 282.46191406 282.46191406 ..., 282.46191406 - 282.46191406 282.46191406] - [ 282.35058594 282.37597656 282.40234375 ..., 282.2734375 282.29882812 - 282.32519531] - [ 281.95507812 282.03417969 282.109375 ..., 281.7578125 281.81347656 - 281.87988281] + data: [[ 282.4619 282.4619 282.4619 ..., 282.4619 282.4619 282.4619 ] + [ 282.3506 282.37598 282.40234 ..., 282.27344 282.29883 282.3252 ] + [ 281.95508 282.03418 282.10938 ..., 281.7578 281.81348 281.87988] ..., - [ 245.83203125 245.84277344 245.83398438 ..., 245.8203125 245.82128906 - 245.82324219] - [ 244.4296875 244.42480469 244.42382812 ..., 244.453125 244.45214844 - 244.44042969] - [ 243.26757812 243.26757812 243.26757812 ..., 243.26757812 - 243.26757812 243.26757812]] + [ 245.83203 245.84277 245.83398 ..., 245.82031 245.82129 245.82324] + [ 244.42969 244.4248 244.42383 ..., 244.45312 244.45215 244.44043] + [ 243.26758 243.26758 243.26758 ..., 243.26758 243.26758 243.26758]] field_title: AJHQA Time mean !C Atmos theta after timestep at 20.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -318,19 +313,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 1.03320312 1.09912109 1.16381836 ..., 0.82910156 0.89819336 + data: [[ 1.0332031 1.0991211 1.1638184 ..., 0.82910156 0.89819336 0.96606445] - [-0.46777344 -0.41455078 -0.35766602 ..., -0.59326172 -0.55175781 + [-0.46777344 -0.41455078 -0.35766602 ..., -0.5932617 -0.5517578 -0.51293945] - [-1.07299805 -1.00512695 -0.9387207 ..., -1.3034668 -1.22631836 - -1.15234375] + [-1.072998 -1.005127 -0.9387207 ..., -1.3034668 -1.2263184 + -1.1523438 ] ..., - [-5.99414062 -6.09936523 -6.18164062 ..., -5.63793945 -5.75756836 - -5.87451172] - [-5.89135742 -5.9609375 -6.02783203 ..., -5.67553711 -5.75585938 - -5.82397461] - [-5.72705078 -5.79101562 -5.84863281 ..., -5.49926758 -5.58129883 - -5.65722656]] + [-5.9941406 -6.099365 -6.1816406 ..., -5.6379395 -5.7575684 + -5.8745117 ] + [-5.8913574 -5.9609375 -6.027832 ..., -5.675537 -5.7558594 + -5.8239746 ] + [-5.727051 -5.7910156 -5.848633 ..., -5.4992676 -5.581299 + -5.6572266 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 50.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -385,19 +380,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.53613281 -1.52490234 -1.51171875 ..., -1.56103516 -1.55371094 - -1.54541016] - [-1.27148438 -1.2890625 -1.30786133 ..., -1.21948242 -1.2355957 - -1.25268555] - [-1.03491211 -1.18554688 -1.34765625 ..., -0.96240234 -0.94018555 + data: [[-1.5361328 -1.5249023 -1.5117188 ..., -1.5610352 -1.5537109 + -1.5454102 ] + [-1.2714844 -1.2890625 -1.3078613 ..., -1.2194824 -1.2355957 + -1.2526855 ] + [-1.0349121 -1.1855469 -1.3476562 ..., -0.96240234 -0.94018555 -0.9621582 ] ..., - [-2.33325195 -2.14306641 -1.95629883 ..., -2.88891602 -2.70825195 - -2.52197266] - [-2.24414062 -2.04272461 -1.83837891 ..., -2.8112793 -2.62524414 - -2.43823242] - [-2.1965332 -2.00415039 -1.80908203 ..., -2.75512695 -2.57202148 - -2.38598633]] + [-2.333252 -2.1430664 -1.9562988 ..., -2.888916 -2.708252 + -2.5219727 ] + [-2.2441406 -2.0427246 -1.8383789 ..., -2.8112793 -2.6252441 + -2.4382324 ] + [-2.1965332 -2.0041504 -1.809082 ..., -2.755127 -2.5720215 + -2.3859863 ]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 50.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -452,19 +447,13 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 282.49609375 282.49609375 282.49609375 ..., 282.49609375 - 282.49609375 282.49609375] - [ 282.38671875 282.41210938 282.4375 ..., 282.31152344 282.3359375 - 282.36132812] - [ 282.09570312 282.16992188 282.2421875 ..., 281.91210938 - 281.96582031 282.02734375] + data: [[ 282.4961 282.4961 282.4961 ..., 282.4961 282.4961 282.4961 ] + [ 282.38672 282.4121 282.4375 ..., 282.31152 282.33594 282.36133] + [ 282.0957 282.16992 282.2422 ..., 281.9121 281.96582 282.02734] ..., - [ 246.62597656 246.63085938 246.625 ..., 246.59863281 246.609375 - 246.61816406] - [ 245.46386719 245.46582031 245.47070312 ..., 245.45703125 - 245.46191406 245.46386719] - [ 244.5625 244.5625 244.5625 ..., 244.5625 244.5625 - 244.5625 ]] + [ 246.62598 246.63086 246.625 ..., 246.59863 246.60938 246.61816] + [ 245.46387 245.46582 245.4707 ..., 245.45703 245.46191 245.46387] + [ 244.5625 244.5625 244.5625 ..., 244.5625 244.5625 244.5625 ]] field_title: AJHQA Time mean !C Atmos theta after timestep at 80.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -586,19 +575,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 1.05249023 1.12524414 1.19677734 ..., 0.82739258 0.90356445 - 0.97851562] - [-0.66943359 -0.61328125 -0.55297852 ..., -0.81958008 -0.76855469 + data: [[ 1.0524902 1.1252441 1.1967773 ..., 0.8273926 0.90356445 + 0.9785156 ] + [-0.6694336 -0.61328125 -0.5529785 ..., -0.8195801 -0.7685547 -0.72021484] - [-1.32250977 -1.23583984 -1.14599609 ..., -1.57714844 -1.49536133 - -1.41308594] + [-1.3225098 -1.2358398 -1.1459961 ..., -1.5771484 -1.4953613 + -1.4130859 ] ..., - [-6.96875 -7.02783203 -7.07763672 ..., -6.74145508 -6.82568359 - -6.90087891] - [-7.01049805 -7.0480957 -7.07763672 ..., -6.84472656 -6.90673828 - -6.96313477] - [-6.97167969 -7.01025391 -7.04125977 ..., -6.81201172 -6.87255859 - -6.92578125]] + [-6.96875 -7.027832 -7.0776367 ..., -6.741455 -6.8256836 + -6.900879 ] + [-7.010498 -7.0480957 -7.0776367 ..., -6.8447266 -6.9067383 + -6.963135 ] + [-6.9716797 -7.010254 -7.04126 ..., -6.8120117 -6.8725586 + -6.9257812 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 130.0 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -653,18 +642,12 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.74145508 -1.73217773 -1.72119141 ..., -1.7590332 -1.75463867 - -1.74853516] - [-1.48266602 -1.5065918 -1.53271484 ..., -1.41625977 -1.43725586 - -1.45898438] - [-1.36010742 -1.52270508 -1.69897461 ..., -1.27148438 -1.25146484 - -1.27539062] + data: [[-1.7414551 -1.7321777 -1.7211914 ..., -1.7590332 -1.7546387 -1.7485352] + [-1.482666 -1.5065918 -1.5327148 ..., -1.4162598 -1.4372559 -1.4589844] + [-1.3601074 -1.5227051 -1.6989746 ..., -1.2714844 -1.2514648 -1.2753906] ..., - [-1.72167969 -1.46435547 -1.2097168 ..., -2.43481445 -2.19848633 - -1.96484375] - [-1.52954102 -1.29516602 -1.06396484 ..., -2.24023438 -2.00488281 - -1.76708984] - [-1.47485352 -1.25024414 -1.02319336 ..., -2.13720703 -1.91772461 - -1.69702148]] + [-1.7216797 -1.4643555 -1.2097168 ..., -2.4348145 -2.1984863 -1.9648438] + [-1.529541 -1.295166 -1.0639648 ..., -2.2402344 -2.0048828 -1.7670898] + [-1.4748535 -1.2502441 -1.0231934 ..., -2.137207 -1.9177246 -1.6970215]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 130.0 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 ] \ No newline at end of file diff --git a/lib/iris/tests/results/PP/extra_char_data.w_data_loaded.pp.txt b/lib/iris/tests/results/PP/extra_char_data.w_data_loaded.pp.txt index 24c93dc0f8..f903ffb65b 100644 --- a/lib/iris/tests/results/PP/extra_char_data.w_data_loaded.pp.txt +++ b/lib/iris/tests/results/PP/extra_char_data.w_data_loaded.pp.txt @@ -51,18 +51,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 0.85620117 0.90942383 0.96142578 ..., 0.69165039 0.74731445 - 0.80224609] - [-0.29174805 -0.23974609 -0.18725586 ..., -0.36645508 -0.34594727 + data: [[ 0.8562012 0.9094238 0.9614258 ..., 0.6916504 0.74731445 + 0.8022461 ] + [-0.29174805 -0.2397461 -0.18725586 ..., -0.36645508 -0.34594727 -0.32763672] - [-0.76000977 -0.68334961 -0.63476562 ..., -0.92431641 -0.89111328 - -0.76757812] + [-0.76000977 -0.6833496 -0.6347656 ..., -0.9243164 -0.8911133 + -0.7675781 ] ..., - [-4.64746094 -4.74560547 -4.81713867 ..., -4.32226562 -4.42895508 - -4.53613281] - [-4.45776367 -4.51831055 -4.58007812 ..., -4.28320312 -4.3503418 - -4.40380859] - [-4.22265625 -4.28466797 -4.34204102 ..., -4.01000977 -4.08520508 -4.15625 ]] + [-4.647461 -4.7456055 -4.8171387 ..., -4.3222656 -4.428955 + -4.536133 ] + [-4.4577637 -4.5183105 -4.580078 ..., -4.283203 -4.350342 + -4.4038086 ] + [-4.2226562 -4.284668 -4.342041 ..., -4.01001 -4.085205 + -4.15625 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 9.998 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -117,19 +118,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.23046875 -1.22021484 -1.20776367 ..., -1.25463867 -1.24658203 - -1.23876953] - [-1.00268555 -1.01196289 -1.01953125 ..., -0.96630859 -0.98022461 - -0.99047852] - [-0.76538086 -0.88452148 -1.01416016 ..., -0.72143555 -0.70117188 + data: [[-1.2304688 -1.2202148 -1.2077637 ..., -1.2546387 -1.246582 + -1.2387695 ] + [-1.0026855 -1.0119629 -1.0195312 ..., -0.9663086 -0.9802246 + -0.9904785 ] + [-0.76538086 -0.8845215 -1.0141602 ..., -0.72143555 -0.7011719 -0.71118164] ..., - [-2.10131836 -1.94702148 -1.78930664 ..., -2.56420898 -2.41772461 + [-2.1013184 -1.9470215 -1.7893066 ..., -2.564209 -2.4177246 -2.2590332 ] - [-2.09228516 -1.93603516 -1.77563477 ..., -2.52880859 -2.38647461 + [-2.0922852 -1.9360352 -1.7756348 ..., -2.5288086 -2.3864746 -2.2421875 ] - [-2.09594727 -1.95239258 -1.80712891 ..., -2.50927734 -2.37475586 - -2.23681641]] + [-2.0959473 -1.9523926 -1.8071289 ..., -2.5092773 -2.3747559 + -2.2368164 ]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 9.998 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -184,19 +185,13 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 282.46191406 282.46191406 282.46191406 ..., 282.46191406 - 282.46191406 282.46191406] - [ 282.35058594 282.37597656 282.40234375 ..., 282.2734375 282.29882812 - 282.32519531] - [ 281.95507812 282.03417969 282.109375 ..., 281.7578125 281.81347656 - 281.87988281] + data: [[ 282.4619 282.4619 282.4619 ..., 282.4619 282.4619 282.4619 ] + [ 282.3506 282.37598 282.40234 ..., 282.27344 282.29883 282.3252 ] + [ 281.95508 282.03418 282.10938 ..., 281.7578 281.81348 281.87988] ..., - [ 245.83203125 245.84277344 245.83398438 ..., 245.8203125 245.82128906 - 245.82324219] - [ 244.4296875 244.42480469 244.42382812 ..., 244.453125 244.45214844 - 244.44042969] - [ 243.26757812 243.26757812 243.26757812 ..., 243.26757812 - 243.26757812 243.26757812]] + [ 245.83203 245.84277 245.83398 ..., 245.82031 245.82129 245.82324] + [ 244.42969 244.4248 244.42383 ..., 244.45312 244.45215 244.44043] + [ 243.26758 243.26758 243.26758 ..., 243.26758 243.26758 243.26758]] field_title: AJHQA Time mean !C Atmos theta after timestep at 20.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -318,19 +313,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 1.03320312 1.09912109 1.16381836 ..., 0.82910156 0.89819336 + data: [[ 1.0332031 1.0991211 1.1638184 ..., 0.82910156 0.89819336 0.96606445] - [-0.46777344 -0.41455078 -0.35766602 ..., -0.59326172 -0.55175781 + [-0.46777344 -0.41455078 -0.35766602 ..., -0.5932617 -0.5517578 -0.51293945] - [-1.07299805 -1.00512695 -0.9387207 ..., -1.3034668 -1.22631836 - -1.15234375] + [-1.072998 -1.005127 -0.9387207 ..., -1.3034668 -1.2263184 + -1.1523438 ] ..., - [-5.99414062 -6.09936523 -6.18164062 ..., -5.63793945 -5.75756836 - -5.87451172] - [-5.89135742 -5.9609375 -6.02783203 ..., -5.67553711 -5.75585938 - -5.82397461] - [-5.72705078 -5.79101562 -5.84863281 ..., -5.49926758 -5.58129883 - -5.65722656]] + [-5.9941406 -6.099365 -6.1816406 ..., -5.6379395 -5.7575684 + -5.8745117 ] + [-5.8913574 -5.9609375 -6.027832 ..., -5.675537 -5.7558594 + -5.8239746 ] + [-5.727051 -5.7910156 -5.848633 ..., -5.4992676 -5.581299 + -5.6572266 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 50.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -385,19 +380,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.53613281 -1.52490234 -1.51171875 ..., -1.56103516 -1.55371094 - -1.54541016] - [-1.27148438 -1.2890625 -1.30786133 ..., -1.21948242 -1.2355957 - -1.25268555] - [-1.03491211 -1.18554688 -1.34765625 ..., -0.96240234 -0.94018555 + data: [[-1.5361328 -1.5249023 -1.5117188 ..., -1.5610352 -1.5537109 + -1.5454102 ] + [-1.2714844 -1.2890625 -1.3078613 ..., -1.2194824 -1.2355957 + -1.2526855 ] + [-1.0349121 -1.1855469 -1.3476562 ..., -0.96240234 -0.94018555 -0.9621582 ] ..., - [-2.33325195 -2.14306641 -1.95629883 ..., -2.88891602 -2.70825195 - -2.52197266] - [-2.24414062 -2.04272461 -1.83837891 ..., -2.8112793 -2.62524414 - -2.43823242] - [-2.1965332 -2.00415039 -1.80908203 ..., -2.75512695 -2.57202148 - -2.38598633]] + [-2.333252 -2.1430664 -1.9562988 ..., -2.888916 -2.708252 + -2.5219727 ] + [-2.2441406 -2.0427246 -1.8383789 ..., -2.8112793 -2.6252441 + -2.4382324 ] + [-2.1965332 -2.0041504 -1.809082 ..., -2.755127 -2.5720215 + -2.3859863 ]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 50.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -452,19 +447,13 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 282.49609375 282.49609375 282.49609375 ..., 282.49609375 - 282.49609375 282.49609375] - [ 282.38671875 282.41210938 282.4375 ..., 282.31152344 282.3359375 - 282.36132812] - [ 282.09570312 282.16992188 282.2421875 ..., 281.91210938 - 281.96582031 282.02734375] + data: [[ 282.4961 282.4961 282.4961 ..., 282.4961 282.4961 282.4961 ] + [ 282.38672 282.4121 282.4375 ..., 282.31152 282.33594 282.36133] + [ 282.0957 282.16992 282.2422 ..., 281.9121 281.96582 282.02734] ..., - [ 246.62597656 246.63085938 246.625 ..., 246.59863281 246.609375 - 246.61816406] - [ 245.46386719 245.46582031 245.47070312 ..., 245.45703125 - 245.46191406 245.46386719] - [ 244.5625 244.5625 244.5625 ..., 244.5625 244.5625 - 244.5625 ]] + [ 246.62598 246.63086 246.625 ..., 246.59863 246.60938 246.61816] + [ 245.46387 245.46582 245.4707 ..., 245.45703 245.46191 245.46387] + [ 244.5625 244.5625 244.5625 ..., 244.5625 244.5625 244.5625 ]] field_title: AJHQA Time mean !C Atmos theta after timestep at 80.00 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -586,19 +575,19 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 1.05249023 1.12524414 1.19677734 ..., 0.82739258 0.90356445 - 0.97851562] - [-0.66943359 -0.61328125 -0.55297852 ..., -0.81958008 -0.76855469 + data: [[ 1.0524902 1.1252441 1.1967773 ..., 0.8273926 0.90356445 + 0.9785156 ] + [-0.6694336 -0.61328125 -0.5529785 ..., -0.8195801 -0.7685547 -0.72021484] - [-1.32250977 -1.23583984 -1.14599609 ..., -1.57714844 -1.49536133 - -1.41308594] + [-1.3225098 -1.2358398 -1.1459961 ..., -1.5771484 -1.4953613 + -1.4130859 ] ..., - [-6.96875 -7.02783203 -7.07763672 ..., -6.74145508 -6.82568359 - -6.90087891] - [-7.01049805 -7.0480957 -7.07763672 ..., -6.84472656 -6.90673828 - -6.96313477] - [-6.97167969 -7.01025391 -7.04125977 ..., -6.81201172 -6.87255859 - -6.92578125]] + [-6.96875 -7.027832 -7.0776367 ..., -6.741455 -6.8256836 + -6.900879 ] + [-7.010498 -7.0480957 -7.0776367 ..., -6.8447266 -6.9067383 + -6.963135 ] + [-6.9716797 -7.010254 -7.04126 ..., -6.8120117 -6.8725586 + -6.9257812 ]] field_title: AJHQA Time mean !C Atmos u compnt of wind after timestep at 130.0 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 , PP Field lbyr: 2007 @@ -653,18 +642,12 @@ bdx: 1.875 bmdi: -1.07374e+09 bmks: 1.0 - data: [[-1.74145508 -1.73217773 -1.72119141 ..., -1.7590332 -1.75463867 - -1.74853516] - [-1.48266602 -1.5065918 -1.53271484 ..., -1.41625977 -1.43725586 - -1.45898438] - [-1.36010742 -1.52270508 -1.69897461 ..., -1.27148438 -1.25146484 - -1.27539062] + data: [[-1.7414551 -1.7321777 -1.7211914 ..., -1.7590332 -1.7546387 -1.7485352] + [-1.482666 -1.5065918 -1.5327148 ..., -1.4162598 -1.4372559 -1.4589844] + [-1.3601074 -1.5227051 -1.6989746 ..., -1.2714844 -1.2514648 -1.2753906] ..., - [-1.72167969 -1.46435547 -1.2097168 ..., -2.43481445 -2.19848633 - -1.96484375] - [-1.52954102 -1.29516602 -1.06396484 ..., -2.24023438 -2.00488281 - -1.76708984] - [-1.47485352 -1.25024414 -1.02319336 ..., -2.13720703 -1.91772461 - -1.69702148]] + [-1.7216797 -1.4643555 -1.2097168 ..., -2.4348145 -2.1984863 -1.9648438] + [-1.529541 -1.295166 -1.0639648 ..., -2.2402344 -2.0048828 -1.7670898] + [-1.4748535 -1.2502441 -1.0231934 ..., -2.137207 -1.9177246 -1.6970215]] field_title: AJHQA Time mean !C Atmos v compnt of wind after timestep at 130.0 metres !C 01/12/2007 00:00 -> 01/01/2008 00:00 ] \ No newline at end of file diff --git a/lib/iris/tests/results/PP/extra_data_time_series.pp.txt b/lib/iris/tests/results/PP/extra_data_time_series.pp.txt index ba3a0d02de..150337d682 100644 --- a/lib/iris/tests/results/PP/extra_data_time_series.pp.txt +++ b/lib/iris/tests/results/PP/extra_data_time_series.pp.txt @@ -293,10 +293,10 @@ [ 4.37335205e+00 5.09683228e+00 3.68075562e+00]] domain_title: Southern Hemisphere lower_x_domain: [-1.875 -1.875 -1.875] - lower_y_domain: [-89.90000153 1.25 -89.90000153] + lower_y_domain: [-89.9 1.25 -89.9 ] lower_z_domain: [ -1.00000002e+30 -1.00000002e+30 -1.00000002e+30] upper_x_domain: [ 358.125 358.125 358.125] - upper_y_domain: [ 89.90000153 89.90000153 1.24998474] + upper_y_domain: [ 89.9 89.9 1.2499847] upper_z_domain: [ -1.00000002e+30 -1.00000002e+30 -1.00000002e+30] y: [ 670020. 670380. 670740. 671100. 671460. 671820. 672180. 672540. 672900. 673260. 673620. 673980. 674340. 674700. 675060. 675420. diff --git a/lib/iris/tests/results/PP/extra_x_data.pp.txt b/lib/iris/tests/results/PP/extra_x_data.pp.txt index 607c1ec41f..513f4c24eb 100644 --- a/lib/iris/tests/results/PP/extra_x_data.pp.txt +++ b/lib/iris/tests/results/PP/extra_x_data.pp.txt @@ -58,453 +58,378 @@ [ 102231. 102239. 102247. ..., 101882. 101855. 101852.] [ 102237. 102245. 102253. ..., 101879. 101859. 101854.] [ 102244. 102252. 102260. ..., 101886. 101863. 101855.]] - x: [ 353.05249023 353.08850098 353.12451172 353.16049194 353.19650269 - 353.23251343 353.26849365 353.30450439 353.34051514 353.37649536 - 353.4125061 353.44848633 353.48449707 353.52050781 353.55648804 - 353.59249878 353.62850952 353.66448975 353.70050049 353.73651123 - 353.77249146 353.8085022 353.84451294 353.88049316 353.91650391 - 353.95251465 353.98849487 354.02450562 354.06048584 354.09649658 - 354.13250732 354.16848755 354.20449829 354.24050903 354.27648926 - 354.3125 354.34851074 354.38449097 354.42050171 354.45651245 - 354.49249268 354.52185059 354.55010986 354.57736206 354.6036377 - 354.62893677 354.65332031 354.67684937 354.69949341 354.72131348 - 354.74234009 354.76263428 354.78216553 354.80099487 354.81915283 - 354.8366394 354.85348511 354.86972046 354.88537598 354.90045166 - 354.91497803 354.9289856 354.94250488 354.95599365 354.96951294 - 354.98300171 354.99649048 355.01000977 355.02349854 355.0369873 - 355.05050659 355.06399536 355.07751465 355.09100342 355.10449219 - 355.11801147 355.13150024 355.14498901 355.1585083 355.17199707 - 355.18548584 355.19900513 355.2124939 355.22601318 355.23950195 - 355.25299072 355.26651001 355.27999878 355.29348755 355.30700684 - 355.32049561 355.33401489 355.34750366 355.36099243 355.37451172 - 355.38800049 355.40148926 355.41500854 355.42849731 355.44198608 - 355.45550537 355.46899414 355.48251343 355.4960022 355.50949097 - 355.52301025 355.53649902 355.54998779 355.56350708 355.57699585 - 355.59051514 355.60400391 355.61749268 355.63101196 355.64450073 - 355.6579895 355.67150879 355.68499756 355.69848633 355.71200562 - 355.72549438 355.73901367 355.75250244 355.76599121 355.7795105 - 355.79299927 355.80648804 355.82000732 355.83349609 355.84698486 - 355.86050415 355.87399292 355.88751221 355.90100098 355.91448975 - 355.92800903 355.9414978 355.95498657 355.96850586 355.98199463 - 355.99551392 356.00900269 356.02249146 356.03601074 356.04949951 - 356.06298828 356.07650757 356.08999634 356.10348511 356.11700439 - 356.13049316 356.14401245 356.15750122 356.17098999 356.18450928 - 356.19799805 356.21148682 356.2250061 356.23849487 356.25201416 - 356.26550293 356.2789917 356.29251099 356.30599976 356.31948853 - 356.33300781 356.34649658 356.35998535 356.37350464 356.38699341 - 356.4005127 356.41400146 356.42749023 356.44100952 356.45449829 - 356.46798706 356.48150635 356.49499512 356.5085144 356.52200317 - 356.53549194 356.54901123 356.5625 356.57598877 356.58950806 - 356.60299683 356.6164856 356.63000488 356.64349365 356.65701294 - 356.67050171 356.68399048 356.69750977 356.71099854 356.7244873 - 356.73800659 356.75149536 356.76501465 356.77850342 356.79199219 - 356.80551147 356.81900024 356.83248901 356.8460083 356.85949707 - 356.87298584 356.88650513 356.8999939 356.91351318 356.92700195 - 356.94049072 356.95401001 356.96749878 356.98098755 356.99450684 - 357.00799561 357.02151489 357.03500366 357.04849243 357.06201172 - 357.07550049 357.08898926 357.10250854 357.11599731 357.12948608 - 357.14300537 357.15649414 357.17001343 357.1835022 357.19699097 - 357.21051025 357.22399902 357.23748779 357.25100708 357.26449585 - 357.27801514 357.29150391 357.30499268 357.31851196 357.33200073 - 357.3454895 357.35900879 357.37249756 357.38598633 357.39950562 - 357.41299438 357.42651367 357.44000244 357.45349121 357.4670105 - 357.48049927 357.49398804 357.50750732 357.52099609 357.53448486 - 357.54800415 357.56149292 357.57501221 357.58850098 357.60198975 - 357.61550903 357.6289978 357.64248657 357.65600586 357.66949463 - 357.68301392 357.69650269 357.70999146 357.72351074 357.73699951 - 357.75048828 357.76400757 357.77749634 357.79098511 357.80450439 - 357.81799316 357.83151245 357.84500122 357.85848999 357.87200928 - 357.88549805 357.89898682 357.9125061 357.92599487 357.93951416 - 357.95300293 357.9664917 357.98001099 357.99349976 358.00698853 - 358.02050781 358.03399658 358.04748535 358.06100464 358.07449341 - 358.0880127 358.10150146 358.11499023 358.12850952 358.14199829 - 358.15548706 358.16900635 358.18249512 358.1960144 358.20950317 - 358.22299194 358.23651123 358.25 358.26348877 358.27700806 - 358.29049683 358.3039856 358.31750488 358.33099365 358.34451294 - 358.35800171 358.37149048 358.38500977 358.39849854 358.4119873 - 358.42550659 358.43899536 358.45251465 358.46600342 358.47949219 - 358.49301147 358.50650024 358.51998901 358.5335083 358.54699707 - 358.56048584 358.57400513 358.5874939 358.60101318 358.61450195 - 358.62799072 358.64151001 358.65499878 358.66848755 358.68200684 - 358.69549561 358.70901489 358.72250366 358.73599243 358.74951172 - 358.76300049 358.77648926 358.79000854 358.80349731 358.81698608 - 358.83050537 358.84399414 358.85751343 358.8710022 358.88449097 - 358.89801025 358.91149902 358.92498779 358.93850708 358.95199585 - 358.96551514 358.97900391 358.99249268 359.00601196 359.01950073 - 359.0329895 359.04650879 359.05999756 359.07348633 359.08700562 - 359.10049438 359.11401367 359.12750244 359.14099121 359.1545105 - 359.16799927 359.18148804 359.19500732 359.20849609 359.22198486 - 359.23550415 359.24899292 359.26251221 359.27600098 359.28948975 - 359.30300903 359.3164978 359.32998657 359.34350586 359.35699463 - 359.37051392 359.38400269 359.39749146 359.41101074 359.42449951 - 359.43798828 359.45150757 359.46499634 359.47848511 359.49200439 - 359.50549316 359.51901245 359.53250122 359.54598999 359.55950928 - 359.57299805 359.58648682 359.6000061 359.61349487 359.62701416 - 359.64050293 359.6539917 359.66751099 359.68099976 359.69448853 - 359.70800781 359.72149658 359.73498535 359.74850464 359.76199341 - 359.7755127 359.78900146 359.80249023 359.81600952 359.82949829 - 359.84298706 359.85650635 359.86999512 359.8835144 359.89700317 - 359.91049194 359.92401123 359.9375 359.95098877 359.96450806 - 359.97799683 359.9914856 360.00500488 360.01849365 360.03201294 - 360.04550171 360.05899048 360.07250977 360.08599854 360.0994873 - 360.11300659 360.12649536 360.14001465 360.15350342 360.16699219 - 360.18051147 360.19400024 360.20748901 360.2210083 360.23449707 - 360.24798584 360.26150513 360.2749939 360.28851318 360.30200195 - 360.31549072 360.32901001 360.34249878 360.35598755 360.36950684 - 360.38299561 360.39651489 360.41000366 360.42349243 360.43701172 - 360.45050049 360.46398926 360.47750854 360.49099731 360.50448608 - 360.51800537 360.53149414 360.54501343 360.5585022 360.57199097 - 360.58551025 360.59899902 360.61248779 360.62600708 360.63949585 - 360.65301514 360.66650391 360.67999268 360.69351196 360.70700073 - 360.7204895 360.73400879 360.74749756 360.76098633 360.77450562 - 360.78799438 360.80151367 360.81500244 360.82849121 360.8420105 - 360.85549927 360.86898804 360.88250732 360.89599609 360.90948486 - 360.92300415 360.93649292 360.95001221 360.96350098 360.97698975 - 360.99050903 361.0039978 361.01748657 361.03100586 361.04449463 - 361.05801392 361.07150269 361.08499146 361.09851074 361.11199951 - 361.12548828 361.13900757 361.15249634 361.16598511 361.17950439 - 361.19299316 361.20651245 361.22000122 361.23348999 361.24700928 - 361.26049805 361.27398682 361.2875061 361.30099487 361.31451416 - 361.32800293 361.3414917 361.35501099 361.36849976 361.38198853 - 361.39550781 361.40899658 361.42248535 361.43600464 361.44949341 - 361.4630127 361.47650146 361.48999023 361.50350952 361.51699829 - 361.53048706 361.54400635 361.55749512 361.5710144 361.58450317 - 361.59799194 361.61151123 361.625 361.63848877 361.65200806 - 361.66549683 361.6789856 361.69250488 361.70599365 361.71951294 - 361.73300171 361.74649048 361.76000977 361.77349854 361.7869873 - 361.80050659 361.81399536 361.82751465 361.84100342 361.85449219 - 361.86801147 361.88150024 361.89498901 361.9085083 361.92199707 - 361.93548584 361.94900513 361.9624939 361.97601318 361.98950195 - 362.00299072 362.01651001 362.02999878 362.04348755 362.05700684 - 362.07049561 362.08401489 362.09750366 362.11099243 362.12451172 - 362.13800049 362.15148926 362.16500854 362.17849731 362.19198608 - 362.20550537 362.21899414 362.23251343 362.2460022 362.25949097 - 362.27301025 362.28649902 362.29998779 362.31350708 362.32699585 - 362.34051514 362.35400391 362.36749268 362.38101196 362.39450073 - 362.4079895 362.42150879 362.43499756 362.44848633 362.46200562 - 362.47549438 362.48901367 362.50250244 362.51599121 362.5295105 - 362.54299927 362.55648804 362.57000732 362.58349609 362.59698486 - 362.61050415 362.62399292 362.63751221 362.65100098 362.66448975 - 362.67800903 362.6914978 362.70498657 362.71850586 362.73199463 - 362.74551392 362.75900269 362.77249146 362.78601074 362.79949951 - 362.81298828 362.82650757 362.83999634 362.85348511 362.86700439 - 362.88049316 362.89401245 362.90750122 362.92098999 362.93450928 - 362.94799805 362.96148682 362.9750061 362.98849487 363.00201416 - 363.01550293 363.0289917 363.04251099 363.05599976 363.06948853 - 363.08300781 363.09649658 363.10998535 363.12350464 363.13699341 - 363.1505127 363.16400146 363.17749023 363.19100952 363.20449829 - 363.21798706 363.23150635 363.24499512 363.2585144 363.27200317 - 363.28549194 363.29901123 363.3125 363.32650757 363.34103394 - 363.35614014 363.37176514 363.38803101 363.40487671 363.42236328 - 363.44049072 363.45932007 363.47888184 363.49914551 363.52017212 - 363.54202271 363.56466675 363.58816528 363.61254883 363.63787842 - 363.66412354 363.69137573 363.71966553 363.74899292 363.78500366 - 363.8210144 363.85699463 363.89300537 363.9289856 363.96499634 - 364.00100708 364.0369873 364.07299805 364.10900879 364.14498901 - 364.18099976 364.2170105 364.25299072 364.28900146 364.32501221 - 364.36099243 364.39700317 364.43301392 364.46899414 364.50500488 - 364.54098511 364.57699585 364.61300659 364.64898682 364.68499756 - 364.7210083 364.75698853 364.79299927 364.82901001 364.86499023 - 364.90100098 364.93701172 364.97299194 365.00900269 365.04501343 - 365.08099365 365.11700439 365.15301514 365.18899536] - x_lower_bound: [ 353.03448486 353.07049561 353.10650635 353.14248657 353.17849731 - 353.21450806 353.25048828 353.28649902 353.32250977 353.35848999 - 353.39450073 353.43051147 353.4664917 353.50250244 353.53851318 - 353.57449341 353.61050415 353.64651489 353.68249512 353.71850586 - 353.75448608 353.79049683 353.82650757 353.86248779 353.89849854 - 353.93450928 353.9704895 354.00650024 354.04251099 354.07849121 - 354.11450195 354.1505127 354.18649292 354.22250366 354.2585144 - 354.29449463 354.33050537 354.3664856 354.40249634 354.43850708 - 354.4744873 354.50717163 354.53598022 354.56375122 354.59051514 - 354.61627197 354.6411438 354.66506958 354.68817139 354.71038818 - 354.73184204 354.75250244 354.7723999 354.79159546 354.81005859 - 354.82788086 354.84506226 354.86160278 354.87753296 354.89291382 - 354.90771484 354.92199707 354.9357605 354.94924927 354.96273804 - 354.97625732 354.98974609 355.00323486 355.01675415 355.03024292 - 355.04376221 355.05725098 355.07073975 355.08425903 355.0977478 - 355.11123657 355.12475586 355.13824463 355.15176392 355.16525269 - 355.17874146 355.19226074 355.20574951 355.21923828 355.23275757 - 355.24624634 355.25973511 355.27325439 355.28674316 355.30026245 - 355.31375122 355.32723999 355.34075928 355.35424805 355.36773682 - 355.3812561 355.39474487 355.40826416 355.42175293 355.4352417 - 355.44876099 355.46224976 355.47573853 355.48925781 355.50274658 - 355.51623535 355.52975464 355.54324341 355.5567627 355.57025146 - 355.58374023 355.59725952 355.61074829 355.62423706 355.63775635 - 355.65124512 355.6647644 355.67825317 355.69174194 355.70526123 - 355.71875 355.73223877 355.74575806 355.75924683 355.7727356 - 355.78625488 355.79974365 355.81326294 355.82675171 355.84024048 - 355.85375977 355.86724854 355.8807373 355.89425659 355.90774536 - 355.92126465 355.93475342 355.94824219 355.96176147 355.97525024 - 355.98873901 356.0022583 356.01574707 356.02923584 356.04275513 - 356.0562439 356.06976318 356.08325195 356.09674072 356.11026001 - 356.12374878 356.13723755 356.15075684 356.16424561 356.17776489 - 356.19125366 356.20474243 356.21826172 356.23175049 356.24523926 - 356.25875854 356.27224731 356.28573608 356.29925537 356.31274414 - 356.32626343 356.3397522 356.35324097 356.36676025 356.38024902 - 356.39373779 356.40725708 356.42074585 356.43426514 356.44775391 - 356.46124268 356.47476196 356.48825073 356.5017395 356.51525879 - 356.52874756 356.54223633 356.55575562 356.56924438 356.58276367 - 356.59625244 356.60974121 356.6232605 356.63674927 356.65023804 - 356.66375732 356.67724609 356.69073486 356.70425415 356.71774292 - 356.73126221 356.74475098 356.75823975 356.77175903 356.7852478 - 356.79873657 356.81225586 356.82574463 356.83926392 356.85275269 - 356.86624146 356.87976074 356.89324951 356.90673828 356.92025757 - 356.93374634 356.94723511 356.96075439 356.97424316 356.98776245 - 357.00125122 357.01473999 357.02825928 357.04174805 357.05523682 - 357.0687561 357.08224487 357.09576416 357.10925293 357.1227417 - 357.13626099 357.14974976 357.16323853 357.17675781 357.19024658 - 357.20373535 357.21725464 357.23074341 357.2442627 357.25775146 - 357.27124023 357.28475952 357.29824829 357.31173706 357.32525635 - 357.33874512 357.3522644 357.36575317 357.37924194 357.39276123 - 357.40625 357.41973877 357.43325806 357.44674683 357.4602356 - 357.47375488 357.48724365 357.50076294 357.51425171 357.52774048 - 357.54125977 357.55474854 357.5682373 357.58175659 357.59524536 - 357.60876465 357.62225342 357.63574219 357.64926147 357.66275024 - 357.67623901 357.6897583 357.70324707 357.71673584 357.73025513 - 357.7437439 357.75726318 357.77075195 357.78424072 357.79776001 - 357.81124878 357.82473755 357.83825684 357.85174561 357.86526489 - 357.87875366 357.89224243 357.90576172 357.91925049 357.93273926 - 357.94625854 357.95974731 357.97323608 357.98675537 358.00024414 - 358.01376343 358.0272522 358.04074097 358.05426025 358.06774902 - 358.08123779 358.09475708 358.10824585 358.12176514 358.13525391 - 358.14874268 358.16226196 358.17575073 358.1892395 358.20275879 - 358.21624756 358.22973633 358.24325562 358.25674438 358.27026367 - 358.28375244 358.29724121 358.3107605 358.32424927 358.33773804 - 358.35125732 358.36474609 358.37823486 358.39175415 358.40524292 - 358.41876221 358.43225098 358.44573975 358.45925903 358.4727478 - 358.48623657 358.49975586 358.51324463 358.52676392 358.54025269 - 358.55374146 358.56726074 358.58074951 358.59423828 358.60775757 - 358.62124634 358.63473511 358.64825439 358.66174316 358.67526245 - 358.68875122 358.70223999 358.71575928 358.72924805 358.74273682 - 358.7562561 358.76974487 358.78326416 358.79675293 358.8102417 - 358.82376099 358.83724976 358.85073853 358.86425781 358.87774658 - 358.89123535 358.90475464 358.91824341 358.9317627 358.94525146 - 358.95874023 358.97225952 358.98574829 358.99923706 359.01275635 - 359.02624512 359.0397644 359.05325317 359.06674194 359.08026123 - 359.09375 359.10723877 359.12075806 359.13424683 359.1477356 - 359.16125488 359.17474365 359.18826294 359.20175171 359.21524048 - 359.22875977 359.24224854 359.2557373 359.26925659 359.28274536 - 359.29626465 359.30975342 359.32324219 359.33676147 359.35025024 - 359.36373901 359.3772583 359.39074707 359.40423584 359.41775513 - 359.4312439 359.44476318 359.45825195 359.47174072 359.48526001 - 359.49874878 359.51223755 359.52575684 359.53924561 359.55276489 - 359.56625366 359.57974243 359.59326172 359.60675049 359.62023926 - 359.63375854 359.64724731 359.66073608 359.67425537 359.68774414 - 359.70126343 359.7147522 359.72824097 359.74176025 359.75524902 - 359.76873779 359.78225708 359.79574585 359.80926514 359.82275391 - 359.83624268 359.84976196 359.86325073 359.8767395 359.89025879 - 359.90374756 359.91723633 359.93075562 359.94424438 359.95776367 - 359.97125244 359.98474121 359.9982605 360.01174927 360.02523804 - 360.03875732 360.05224609 360.06573486 360.07925415 360.09274292 - 360.10626221 360.11975098 360.13323975 360.14675903 360.1602478 - 360.17373657 360.18725586 360.20074463 360.21426392 360.22775269 - 360.24124146 360.25476074 360.26824951 360.28173828 360.29525757 - 360.30874634 360.32223511 360.33575439 360.34924316 360.36276245 - 360.37625122 360.38973999 360.40325928 360.41674805 360.43023682 - 360.4437561 360.45724487 360.47076416 360.48425293 360.4977417 - 360.51126099 360.52474976 360.53823853 360.55175781 360.56524658 - 360.57873535 360.59225464 360.60574341 360.6192627 360.63275146 - 360.64624023 360.65975952 360.67324829 360.68673706 360.70025635 - 360.71374512 360.7272644 360.74075317 360.75424194 360.76776123 - 360.78125 360.79473877 360.80825806 360.82174683 360.8352356 - 360.84875488 360.86224365 360.87576294 360.88925171 360.90274048 - 360.91625977 360.92974854 360.9432373 360.95675659 360.97024536 - 360.98376465 360.99725342 361.01074219 361.02426147 361.03775024 - 361.05123901 361.0647583 361.07824707 361.09173584 361.10525513 - 361.1187439 361.13226318 361.14575195 361.15924072 361.17276001 - 361.18624878 361.19973755 361.21325684 361.22674561 361.24026489 - 361.25375366 361.26724243 361.28076172 361.29425049 361.30773926 - 361.32125854 361.33474731 361.34823608 361.36175537 361.37524414 - 361.38876343 361.4022522 361.41574097 361.42926025 361.44274902 - 361.45623779 361.46975708 361.48324585 361.49676514 361.51025391 - 361.52374268 361.53726196 361.55075073 361.5642395 361.57775879 - 361.59124756 361.60473633 361.61825562 361.63174438 361.64526367 - 361.65875244 361.67224121 361.6857605 361.69924927 361.71273804 - 361.72625732 361.73974609 361.75323486 361.76675415 361.78024292 - 361.79376221 361.80725098 361.82073975 361.83425903 361.8477478 - 361.86123657 361.87475586 361.88824463 361.90176392 361.91525269 - 361.92874146 361.94226074 361.95574951 361.96923828 361.98275757 - 361.99624634 362.00973511 362.02325439 362.03674316 362.05026245 - 362.06375122 362.07723999 362.09075928 362.10424805 362.11773682 - 362.1312561 362.14474487 362.15826416 362.17175293 362.1852417 - 362.19876099 362.21224976 362.22573853 362.23925781 362.25274658 - 362.26623535 362.27975464 362.29324341 362.3067627 362.32025146 - 362.33374023 362.34725952 362.36074829 362.37423706 362.38775635 - 362.40124512 362.4147644 362.42825317 362.44174194 362.45526123 - 362.46875 362.48223877 362.49575806 362.50924683 362.5227356 - 362.53625488 362.54974365 362.56326294 362.57675171 362.59024048 - 362.60375977 362.61724854 362.6307373 362.64425659 362.65774536 - 362.67126465 362.68475342 362.69824219 362.71176147 362.72525024 - 362.73873901 362.7522583 362.76574707 362.77923584 362.79275513 - 362.8062439 362.81976318 362.83325195 362.84674072 362.86026001 - 362.87374878 362.88723755 362.90075684 362.91424561 362.92776489 - 362.94125366 362.95474243 362.96826172 362.98175049 362.99523926 - 363.00875854 363.02224731 363.03573608 363.04925537 363.06274414 - 363.07626343 363.0897522 363.10324097 363.11676025 363.13024902 - 363.14373779 363.15725708 363.17074585 363.18426514 363.19775391 - 363.21124268 363.22476196 363.23825073 363.2517395 363.26525879 - 363.27874756 363.29223633 363.30575562 363.31951904 363.33377075 - 363.34857178 363.36395264 363.37991333 363.39645386 363.41360474 - 363.431427 363.44992065 363.46911621 363.48901367 363.50967407 - 363.53109741 363.55334473 363.57641602 363.60037231 363.62521362 - 363.65100098 363.67776489 363.70550537 363.73431396 363.76699829 - 363.80300903 363.83898926 363.875 363.91101074 363.94699097 - 363.98300171 364.01901245 364.05499268 364.09100342 364.12701416 - 364.16299438 364.19900513 364.23498535 364.27099609 364.30700684 - 364.34298706 364.3789978 364.41500854 364.45098877 364.48699951 - 364.52301025 364.55899048 364.59500122 364.63101196 364.66699219 - 364.70300293 364.73901367 364.7749939 364.81100464 364.84698486 - 364.88299561 364.91900635 364.95498657 364.99099731 365.02700806 - 365.06298828 365.09899902 365.13500977 365.17098999] - x_upper_bound: [ 353.07049561 353.10650635 353.14248657 353.17849731 353.21450806 - 353.25048828 353.28649902 353.32250977 353.35848999 353.39450073 - 353.43051147 353.4664917 353.50250244 353.53851318 353.57449341 - 353.61050415 353.64651489 353.68249512 353.71850586 353.75448608 - 353.79049683 353.82650757 353.86248779 353.89849854 353.93450928 - 353.9704895 354.00650024 354.04251099 354.07849121 354.11450195 - 354.1505127 354.18649292 354.22250366 354.2585144 354.29449463 - 354.33050537 354.3664856 354.40249634 354.43850708 354.4744873 - 354.50717163 354.53598022 354.56375122 354.59051514 354.61627197 - 354.6411438 354.66506958 354.68817139 354.71038818 354.73184204 - 354.75250244 354.7723999 354.79159546 354.81005859 354.82788086 - 354.84506226 354.86160278 354.87753296 354.89291382 354.90771484 - 354.92199707 354.9357605 354.94924927 354.96273804 354.97625732 - 354.98974609 355.00323486 355.01675415 355.03024292 355.04376221 - 355.05725098 355.07073975 355.08425903 355.0977478 355.11123657 - 355.12475586 355.13824463 355.15176392 355.16525269 355.17874146 - 355.19226074 355.20574951 355.21923828 355.23275757 355.24624634 - 355.25973511 355.27325439 355.28674316 355.30026245 355.31375122 - 355.32723999 355.34075928 355.35424805 355.36773682 355.3812561 - 355.39474487 355.40826416 355.42175293 355.4352417 355.44876099 - 355.46224976 355.47573853 355.48925781 355.50274658 355.51623535 - 355.52975464 355.54324341 355.5567627 355.57025146 355.58374023 - 355.59725952 355.61074829 355.62423706 355.63775635 355.65124512 - 355.6647644 355.67825317 355.69174194 355.70526123 355.71875 - 355.73223877 355.74575806 355.75924683 355.7727356 355.78625488 - 355.79974365 355.81326294 355.82675171 355.84024048 355.85375977 - 355.86724854 355.8807373 355.89425659 355.90774536 355.92126465 - 355.93475342 355.94824219 355.96176147 355.97525024 355.98873901 - 356.0022583 356.01574707 356.02923584 356.04275513 356.0562439 - 356.06976318 356.08325195 356.09674072 356.11026001 356.12374878 - 356.13723755 356.15075684 356.16424561 356.17776489 356.19125366 - 356.20474243 356.21826172 356.23175049 356.24523926 356.25875854 - 356.27224731 356.28573608 356.29925537 356.31274414 356.32626343 - 356.3397522 356.35324097 356.36676025 356.38024902 356.39373779 - 356.40725708 356.42074585 356.43426514 356.44775391 356.46124268 - 356.47476196 356.48825073 356.5017395 356.51525879 356.52874756 - 356.54223633 356.55575562 356.56924438 356.58276367 356.59625244 - 356.60974121 356.6232605 356.63674927 356.65023804 356.66375732 - 356.67724609 356.69073486 356.70425415 356.71774292 356.73126221 - 356.74475098 356.75823975 356.77175903 356.7852478 356.79873657 - 356.81225586 356.82574463 356.83926392 356.85275269 356.86624146 - 356.87976074 356.89324951 356.90673828 356.92025757 356.93374634 - 356.94723511 356.96075439 356.97424316 356.98776245 357.00125122 - 357.01473999 357.02825928 357.04174805 357.05523682 357.0687561 - 357.08224487 357.09576416 357.10925293 357.1227417 357.13626099 - 357.14974976 357.16323853 357.17675781 357.19024658 357.20373535 - 357.21725464 357.23074341 357.2442627 357.25775146 357.27124023 - 357.28475952 357.29824829 357.31173706 357.32525635 357.33874512 - 357.3522644 357.36575317 357.37924194 357.39276123 357.40625 - 357.41973877 357.43325806 357.44674683 357.4602356 357.47375488 - 357.48724365 357.50076294 357.51425171 357.52774048 357.54125977 - 357.55474854 357.5682373 357.58175659 357.59524536 357.60876465 - 357.62225342 357.63574219 357.64926147 357.66275024 357.67623901 - 357.6897583 357.70324707 357.71673584 357.73025513 357.7437439 - 357.75726318 357.77075195 357.78424072 357.79776001 357.81124878 - 357.82473755 357.83825684 357.85174561 357.86526489 357.87875366 - 357.89224243 357.90576172 357.91925049 357.93273926 357.94625854 - 357.95974731 357.97323608 357.98675537 358.00024414 358.01376343 - 358.0272522 358.04074097 358.05426025 358.06774902 358.08123779 - 358.09475708 358.10824585 358.12176514 358.13525391 358.14874268 - 358.16226196 358.17575073 358.1892395 358.20275879 358.21624756 - 358.22973633 358.24325562 358.25674438 358.27026367 358.28375244 - 358.29724121 358.3107605 358.32424927 358.33773804 358.35125732 - 358.36474609 358.37823486 358.39175415 358.40524292 358.41876221 - 358.43225098 358.44573975 358.45925903 358.4727478 358.48623657 - 358.49975586 358.51324463 358.52676392 358.54025269 358.55374146 - 358.56726074 358.58074951 358.59423828 358.60775757 358.62124634 - 358.63473511 358.64825439 358.66174316 358.67526245 358.68875122 - 358.70223999 358.71575928 358.72924805 358.74273682 358.7562561 - 358.76974487 358.78326416 358.79675293 358.8102417 358.82376099 - 358.83724976 358.85073853 358.86425781 358.87774658 358.89123535 - 358.90475464 358.91824341 358.9317627 358.94525146 358.95874023 - 358.97225952 358.98574829 358.99923706 359.01275635 359.02624512 - 359.0397644 359.05325317 359.06674194 359.08026123 359.09375 - 359.10723877 359.12075806 359.13424683 359.1477356 359.16125488 - 359.17474365 359.18826294 359.20175171 359.21524048 359.22875977 - 359.24224854 359.2557373 359.26925659 359.28274536 359.29626465 - 359.30975342 359.32324219 359.33676147 359.35025024 359.36373901 - 359.3772583 359.39074707 359.40423584 359.41775513 359.4312439 - 359.44476318 359.45825195 359.47174072 359.48526001 359.49874878 - 359.51223755 359.52575684 359.53924561 359.55276489 359.56625366 - 359.57974243 359.59326172 359.60675049 359.62023926 359.63375854 - 359.64724731 359.66073608 359.67425537 359.68774414 359.70126343 - 359.7147522 359.72824097 359.74176025 359.75524902 359.76873779 - 359.78225708 359.79574585 359.80926514 359.82275391 359.83624268 - 359.84976196 359.86325073 359.8767395 359.89025879 359.90374756 - 359.91723633 359.93075562 359.94424438 359.95776367 359.97125244 - 359.98474121 359.9982605 360.01174927 360.02523804 360.03875732 - 360.05224609 360.06573486 360.07925415 360.09274292 360.10626221 - 360.11975098 360.13323975 360.14675903 360.1602478 360.17373657 - 360.18725586 360.20074463 360.21426392 360.22775269 360.24124146 - 360.25476074 360.26824951 360.28173828 360.29525757 360.30874634 - 360.32223511 360.33575439 360.34924316 360.36276245 360.37625122 - 360.38973999 360.40325928 360.41674805 360.43023682 360.4437561 - 360.45724487 360.47076416 360.48425293 360.4977417 360.51126099 - 360.52474976 360.53823853 360.55175781 360.56524658 360.57873535 - 360.59225464 360.60574341 360.6192627 360.63275146 360.64624023 - 360.65975952 360.67324829 360.68673706 360.70025635 360.71374512 - 360.7272644 360.74075317 360.75424194 360.76776123 360.78125 - 360.79473877 360.80825806 360.82174683 360.8352356 360.84875488 - 360.86224365 360.87576294 360.88925171 360.90274048 360.91625977 - 360.92974854 360.9432373 360.95675659 360.97024536 360.98376465 - 360.99725342 361.01074219 361.02426147 361.03775024 361.05123901 - 361.0647583 361.07824707 361.09173584 361.10525513 361.1187439 - 361.13226318 361.14575195 361.15924072 361.17276001 361.18624878 - 361.19973755 361.21325684 361.22674561 361.24026489 361.25375366 - 361.26724243 361.28076172 361.29425049 361.30773926 361.32125854 - 361.33474731 361.34823608 361.36175537 361.37524414 361.38876343 - 361.4022522 361.41574097 361.42926025 361.44274902 361.45623779 - 361.46975708 361.48324585 361.49676514 361.51025391 361.52374268 - 361.53726196 361.55075073 361.5642395 361.57775879 361.59124756 - 361.60473633 361.61825562 361.63174438 361.64526367 361.65875244 - 361.67224121 361.6857605 361.69924927 361.71273804 361.72625732 - 361.73974609 361.75323486 361.76675415 361.78024292 361.79376221 - 361.80725098 361.82073975 361.83425903 361.8477478 361.86123657 - 361.87475586 361.88824463 361.90176392 361.91525269 361.92874146 - 361.94226074 361.95574951 361.96923828 361.98275757 361.99624634 - 362.00973511 362.02325439 362.03674316 362.05026245 362.06375122 - 362.07723999 362.09075928 362.10424805 362.11773682 362.1312561 - 362.14474487 362.15826416 362.17175293 362.1852417 362.19876099 - 362.21224976 362.22573853 362.23925781 362.25274658 362.26623535 - 362.27975464 362.29324341 362.3067627 362.32025146 362.33374023 - 362.34725952 362.36074829 362.37423706 362.38775635 362.40124512 - 362.4147644 362.42825317 362.44174194 362.45526123 362.46875 - 362.48223877 362.49575806 362.50924683 362.5227356 362.53625488 - 362.54974365 362.56326294 362.57675171 362.59024048 362.60375977 - 362.61724854 362.6307373 362.64425659 362.65774536 362.67126465 - 362.68475342 362.69824219 362.71176147 362.72525024 362.73873901 - 362.7522583 362.76574707 362.77923584 362.79275513 362.8062439 - 362.81976318 362.83325195 362.84674072 362.86026001 362.87374878 - 362.88723755 362.90075684 362.91424561 362.92776489 362.94125366 - 362.95474243 362.96826172 362.98175049 362.99523926 363.00875854 - 363.02224731 363.03573608 363.04925537 363.06274414 363.07626343 - 363.0897522 363.10324097 363.11676025 363.13024902 363.14373779 - 363.15725708 363.17074585 363.18426514 363.19775391 363.21124268 - 363.22476196 363.23825073 363.2517395 363.26525879 363.27874756 - 363.29223633 363.30575562 363.31951904 363.33377075 363.34857178 - 363.36395264 363.37991333 363.39645386 363.41360474 363.431427 - 363.44992065 363.46911621 363.48901367 363.50967407 363.53109741 - 363.55334473 363.57641602 363.60037231 363.62521362 363.65100098 - 363.67776489 363.70550537 363.73431396 363.76699829 363.80300903 - 363.83898926 363.875 363.91101074 363.94699097 363.98300171 - 364.01901245 364.05499268 364.09100342 364.12701416 364.16299438 - 364.19900513 364.23498535 364.27099609 364.30700684 364.34298706 - 364.3789978 364.41500854 364.45098877 364.48699951 364.52301025 - 364.55899048 364.59500122 364.63101196 364.66699219 364.70300293 - 364.73901367 364.7749939 364.81100464 364.84698486 364.88299561 - 364.91900635 364.95498657 364.99099731 365.02700806 365.06298828 - 365.09899902 365.13500977 365.17098999 365.20700073] + x: [ 353.0525 353.0885 353.1245 353.1605 353.1965 353.2325 + 353.2685 353.3045 353.3405 353.3765 353.4125 353.4485 + 353.4845 353.5205 353.5565 353.5925 353.6285 353.6645 + 353.7005 353.7365 353.7725 353.8085 353.8445 353.8805 + 353.9165 353.9525 353.9885 354.0245 354.0605 354.0965 + 354.1325 354.1685 354.2045 354.2405 354.2765 354.3125 + 354.3485 354.3845 354.4205 354.4565 354.4925 354.52185 + 354.5501 354.57736 354.60364 354.62894 354.65332 354.67685 + 354.6995 354.7213 354.74234 354.76263 354.78217 354.801 + 354.81915 354.83664 354.8535 354.86972 354.88538 354.90045 + 354.91498 354.929 354.9425 354.956 354.9695 354.983 + 354.9965 355.01 355.0235 355.037 355.0505 355.064 + 355.0775 355.091 355.1045 355.118 355.1315 355.145 + 355.1585 355.172 355.1855 355.199 355.2125 355.226 + 355.2395 355.253 355.2665 355.28 355.2935 355.307 + 355.3205 355.334 355.3475 355.361 355.3745 355.388 + 355.4015 355.415 355.4285 355.442 355.4555 355.469 + 355.4825 355.496 355.5095 355.523 355.5365 355.55 + 355.5635 355.577 355.5905 355.604 355.6175 355.631 + 355.6445 355.658 355.6715 355.685 355.6985 355.712 + 355.7255 355.739 355.7525 355.766 355.7795 355.793 + 355.8065 355.82 355.8335 355.847 355.8605 355.874 + 355.8875 355.901 355.9145 355.928 355.9415 355.955 + 355.9685 355.982 355.9955 356.009 356.0225 356.036 + 356.0495 356.063 356.0765 356.09 356.1035 356.117 + 356.1305 356.144 356.1575 356.171 356.1845 356.198 + 356.2115 356.225 356.2385 356.252 356.2655 356.279 + 356.2925 356.306 356.3195 356.333 356.3465 356.36 + 356.3735 356.387 356.4005 356.414 356.4275 356.441 + 356.4545 356.468 356.4815 356.495 356.5085 356.522 + 356.5355 356.549 356.5625 356.576 356.5895 356.603 + 356.6165 356.63 356.6435 356.657 356.6705 356.684 + 356.6975 356.711 356.7245 356.738 356.7515 356.765 + 356.7785 356.792 356.8055 356.819 356.8325 356.846 + 356.8595 356.873 356.8865 356.9 356.9135 356.927 + 356.9405 356.954 356.9675 356.981 356.9945 357.008 + 357.0215 357.035 357.0485 357.062 357.0755 357.089 + 357.1025 357.116 357.1295 357.143 357.1565 357.17 + 357.1835 357.197 357.2105 357.224 357.2375 357.251 + 357.2645 357.278 357.2915 357.305 357.3185 357.332 + 357.3455 357.359 357.3725 357.386 357.3995 357.413 + 357.4265 357.44 357.4535 357.467 357.4805 357.494 + 357.5075 357.521 357.5345 357.548 357.5615 357.575 + 357.5885 357.602 357.6155 357.629 357.6425 357.656 + 357.6695 357.683 357.6965 357.71 357.7235 357.737 + 357.7505 357.764 357.7775 357.791 357.8045 357.818 + 357.8315 357.845 357.8585 357.872 357.8855 357.899 + 357.9125 357.926 357.9395 357.953 357.9665 357.98 + 357.9935 358.007 358.0205 358.034 358.0475 358.061 + 358.0745 358.088 358.1015 358.115 358.1285 358.142 + 358.1555 358.169 358.1825 358.196 358.2095 358.223 + 358.2365 358.25 358.2635 358.277 358.2905 358.304 + 358.3175 358.331 358.3445 358.358 358.3715 358.385 + 358.3985 358.412 358.4255 358.439 358.4525 358.466 + 358.4795 358.493 358.5065 358.52 358.5335 358.547 + 358.5605 358.574 358.5875 358.601 358.6145 358.628 + 358.6415 358.655 358.6685 358.682 358.6955 358.709 + 358.7225 358.736 358.7495 358.763 358.7765 358.79 + 358.8035 358.817 358.8305 358.844 358.8575 358.871 + 358.8845 358.898 358.9115 358.925 358.9385 358.952 + 358.9655 358.979 358.9925 359.006 359.0195 359.033 + 359.0465 359.06 359.0735 359.087 359.1005 359.114 + 359.1275 359.141 359.1545 359.168 359.1815 359.195 + 359.2085 359.222 359.2355 359.249 359.2625 359.276 + 359.2895 359.303 359.3165 359.33 359.3435 359.357 + 359.3705 359.384 359.3975 359.411 359.4245 359.438 + 359.4515 359.465 359.4785 359.492 359.5055 359.519 + 359.5325 359.546 359.5595 359.573 359.5865 359.6 + 359.6135 359.627 359.6405 359.654 359.6675 359.681 + 359.6945 359.708 359.7215 359.735 359.7485 359.762 + 359.7755 359.789 359.8025 359.816 359.8295 359.843 + 359.8565 359.87 359.8835 359.897 359.9105 359.924 + 359.9375 359.951 359.9645 359.978 359.9915 360.005 + 360.0185 360.032 360.0455 360.059 360.0725 360.086 + 360.0995 360.113 360.1265 360.14 360.1535 360.167 + 360.1805 360.194 360.2075 360.221 360.2345 360.248 + 360.2615 360.275 360.2885 360.302 360.3155 360.329 + 360.3425 360.356 360.3695 360.383 360.3965 360.41 + 360.4235 360.437 360.4505 360.464 360.4775 360.491 + 360.5045 360.518 360.5315 360.545 360.5585 360.572 + 360.5855 360.599 360.6125 360.626 360.6395 360.653 + 360.6665 360.68 360.6935 360.707 360.7205 360.734 + 360.7475 360.761 360.7745 360.788 360.8015 360.815 + 360.8285 360.842 360.8555 360.869 360.8825 360.896 + 360.9095 360.923 360.9365 360.95 360.9635 360.977 + 360.9905 361.004 361.0175 361.031 361.0445 361.058 + 361.0715 361.085 361.0985 361.112 361.1255 361.139 + 361.1525 361.166 361.1795 361.193 361.2065 361.22 + 361.2335 361.247 361.2605 361.274 361.2875 361.301 + 361.3145 361.328 361.3415 361.355 361.3685 361.382 + 361.3955 361.409 361.4225 361.436 361.4495 361.463 + 361.4765 361.49 361.5035 361.517 361.5305 361.544 + 361.5575 361.571 361.5845 361.598 361.6115 361.625 + 361.6385 361.652 361.6655 361.679 361.6925 361.706 + 361.7195 361.733 361.7465 361.76 361.7735 361.787 + 361.8005 361.814 361.8275 361.841 361.8545 361.868 + 361.8815 361.895 361.9085 361.922 361.9355 361.949 + 361.9625 361.976 361.9895 362.003 362.0165 362.03 + 362.0435 362.057 362.0705 362.084 362.0975 362.111 + 362.1245 362.138 362.1515 362.165 362.1785 362.192 + 362.2055 362.219 362.2325 362.246 362.2595 362.273 + 362.2865 362.3 362.3135 362.327 362.3405 362.354 + 362.3675 362.381 362.3945 362.408 362.4215 362.435 + 362.4485 362.462 362.4755 362.489 362.5025 362.516 + 362.5295 362.543 362.5565 362.57 362.5835 362.597 + 362.6105 362.624 362.6375 362.651 362.6645 362.678 + 362.6915 362.705 362.7185 362.732 362.7455 362.759 + 362.7725 362.786 362.7995 362.813 362.8265 362.84 + 362.8535 362.867 362.8805 362.894 362.9075 362.921 + 362.9345 362.948 362.9615 362.975 362.9885 363.002 + 363.0155 363.029 363.0425 363.056 363.0695 363.083 + 363.0965 363.11 363.1235 363.137 363.1505 363.164 + 363.1775 363.191 363.2045 363.218 363.2315 363.245 + 363.2585 363.272 363.2855 363.299 363.3125 363.3265 + 363.34103 363.35614 363.37177 363.38803 363.40488 363.42236 + 363.4405 363.45932 363.47888 363.49915 363.52017 363.54202 + 363.56467 363.58817 363.61255 363.63788 363.66412 363.69138 + 363.71967 363.749 363.785 363.821 363.857 363.893 + 363.929 363.965 364.001 364.037 364.073 364.109 + 364.145 364.181 364.217 364.253 364.289 364.325 + 364.361 364.397 364.433 364.469 364.505 364.541 + 364.577 364.613 364.649 364.685 364.721 364.757 + 364.793 364.829 364.865 364.901 364.937 364.973 + 365.009 365.045 365.081 365.117 365.153 365.189 ] + x_lower_bound: [ 353.0345 353.0705 353.1065 353.1425 353.1785 353.2145 + 353.2505 353.2865 353.3225 353.3585 353.3945 353.4305 + 353.4665 353.5025 353.5385 353.5745 353.6105 353.6465 + 353.6825 353.7185 353.7545 353.7905 353.8265 353.8625 + 353.8985 353.9345 353.9705 354.0065 354.0425 354.0785 + 354.1145 354.1505 354.1865 354.2225 354.2585 354.2945 + 354.3305 354.3665 354.4025 354.4385 354.4745 354.50717 + 354.53598 354.56375 354.5905 354.61627 354.64114 354.66507 + 354.68817 354.7104 354.73184 354.7525 354.7724 354.7916 + 354.81006 354.82788 354.84506 354.8616 354.87753 354.8929 + 354.9077 354.922 354.93576 354.94925 354.96274 354.97626 + 354.98975 355.00323 355.01675 355.03024 355.04376 355.05725 + 355.07074 355.08426 355.09775 355.11124 355.12476 355.13824 + 355.15176 355.16525 355.17874 355.19226 355.20575 355.21924 + 355.23276 355.24625 355.25974 355.27325 355.28674 355.30026 + 355.31375 355.32724 355.34076 355.35425 355.36774 355.38126 + 355.39474 355.40826 355.42175 355.43524 355.44876 355.46225 + 355.47574 355.48926 355.50275 355.51624 355.52975 355.54324 + 355.55676 355.57025 355.58374 355.59726 355.61075 355.62424 + 355.63776 355.65125 355.66476 355.67825 355.69174 355.70526 + 355.71875 355.73224 355.74576 355.75925 355.77274 355.78625 + 355.79974 355.81326 355.82675 355.84024 355.85376 355.86725 + 355.88074 355.89426 355.90775 355.92126 355.93475 355.94824 + 355.96176 355.97525 355.98874 356.00226 356.01575 356.02924 + 356.04276 356.05624 356.06976 356.08325 356.09674 356.11026 + 356.12375 356.13724 356.15076 356.16425 356.17776 356.19125 + 356.20474 356.21826 356.23175 356.24524 356.25876 356.27225 + 356.28574 356.29926 356.31274 356.32626 356.33975 356.35324 + 356.36676 356.38025 356.39374 356.40726 356.42075 356.43427 + 356.44775 356.46124 356.47476 356.48825 356.50174 356.51526 + 356.52875 356.54224 356.55576 356.56924 356.58276 356.59625 + 356.60974 356.62326 356.63675 356.65024 356.66376 356.67725 + 356.69073 356.70425 356.71774 356.73126 356.74475 356.75824 + 356.77176 356.78525 356.79874 356.81226 356.82574 356.83926 + 356.85275 356.86624 356.87976 356.89325 356.90674 356.92026 + 356.93375 356.94724 356.96075 356.97424 356.98776 357.00125 + 357.01474 357.02826 357.04175 357.05524 357.06876 357.08224 + 357.09576 357.10925 357.12274 357.13626 357.14975 357.16324 + 357.17676 357.19025 357.20374 357.21725 357.23074 357.24426 + 357.25775 357.27124 357.28476 357.29825 357.31174 357.32526 + 357.33875 357.35226 357.36575 357.37924 357.39276 357.40625 + 357.41974 357.43326 357.44675 357.46024 357.47375 357.48724 + 357.50076 357.51425 357.52774 357.54126 357.55475 357.56824 + 357.58176 357.59525 357.60876 357.62225 357.63574 357.64926 + 357.66275 357.67624 357.68976 357.70325 357.71674 357.73026 + 357.74374 357.75726 357.77075 357.78424 357.79776 357.81125 + 357.82474 357.83826 357.85175 357.86526 357.87875 357.89224 + 357.90576 357.91925 357.93274 357.94626 357.95975 357.97324 + 357.98676 358.00024 358.01376 358.02725 358.04074 358.05426 + 358.06775 358.08124 358.09476 358.10825 358.12177 358.13525 + 358.14874 358.16226 358.17575 358.18924 358.20276 358.21625 + 358.22974 358.24326 358.25674 358.27026 358.28375 358.29724 + 358.31076 358.32425 358.33774 358.35126 358.36475 358.37823 + 358.39175 358.40524 358.41876 358.43225 358.44574 358.45926 + 358.47275 358.48624 358.49976 358.51324 358.52676 358.54025 + 358.55374 358.56726 358.58075 358.59424 358.60776 358.62125 + 358.63474 358.64825 358.66174 358.67526 358.68875 358.70224 + 358.71576 358.72925 358.74274 358.75626 358.76974 358.78326 + 358.79675 358.81024 358.82376 358.83725 358.85074 358.86426 + 358.87775 358.89124 358.90475 358.91824 358.93176 358.94525 + 358.95874 358.97226 358.98575 358.99924 359.01276 359.02625 + 359.03976 359.05325 359.06674 359.08026 359.09375 359.10724 + 359.12076 359.13425 359.14774 359.16125 359.17474 359.18826 + 359.20175 359.21524 359.22876 359.24225 359.25574 359.26926 + 359.28275 359.29626 359.30975 359.32324 359.33676 359.35025 + 359.36374 359.37726 359.39075 359.40424 359.41776 359.43124 + 359.44476 359.45825 359.47174 359.48526 359.49875 359.51224 + 359.52576 359.53925 359.55276 359.56625 359.57974 359.59326 + 359.60675 359.62024 359.63376 359.64725 359.66074 359.67426 + 359.68774 359.70126 359.71475 359.72824 359.74176 359.75525 + 359.76874 359.78226 359.79575 359.80927 359.82275 359.83624 + 359.84976 359.86325 359.87674 359.89026 359.90375 359.91724 + 359.93076 359.94424 359.95776 359.97125 359.98474 359.99826 + 360.01175 360.02524 360.03876 360.05225 360.06573 360.07925 + 360.09274 360.10626 360.11975 360.13324 360.14676 360.16025 + 360.17374 360.18726 360.20074 360.21426 360.22775 360.24124 + 360.25476 360.26825 360.28174 360.29526 360.30875 360.32224 + 360.33575 360.34924 360.36276 360.37625 360.38974 360.40326 + 360.41675 360.43024 360.44376 360.45724 360.47076 360.48425 + 360.49774 360.51126 360.52475 360.53824 360.55176 360.56525 + 360.57874 360.59225 360.60574 360.61926 360.63275 360.64624 + 360.65976 360.67325 360.68674 360.70026 360.71375 360.72726 + 360.74075 360.75424 360.76776 360.78125 360.79474 360.80826 + 360.82175 360.83524 360.84875 360.86224 360.87576 360.88925 + 360.90274 360.91626 360.92975 360.94324 360.95676 360.97025 + 360.98376 360.99725 361.01074 361.02426 361.03775 361.05124 + 361.06476 361.07825 361.09174 361.10526 361.11874 361.13226 + 361.14575 361.15924 361.17276 361.18625 361.19974 361.21326 + 361.22675 361.24026 361.25375 361.26724 361.28076 361.29425 + 361.30774 361.32126 361.33475 361.34824 361.36176 361.37524 + 361.38876 361.40225 361.41574 361.42926 361.44275 361.45624 + 361.46976 361.48325 361.49677 361.51025 361.52374 361.53726 + 361.55075 361.56424 361.57776 361.59125 361.60474 361.61826 + 361.63174 361.64526 361.65875 361.67224 361.68576 361.69925 + 361.71274 361.72626 361.73975 361.75323 361.76675 361.78024 + 361.79376 361.80725 361.82074 361.83426 361.84775 361.86124 + 361.87476 361.88824 361.90176 361.91525 361.92874 361.94226 + 361.95575 361.96924 361.98276 361.99625 362.00974 362.02325 + 362.03674 362.05026 362.06375 362.07724 362.09076 362.10425 + 362.11774 362.13126 362.14474 362.15826 362.17175 362.18524 + 362.19876 362.21225 362.22574 362.23926 362.25275 362.26624 + 362.27975 362.29324 362.30676 362.32025 362.33374 362.34726 + 362.36075 362.37424 362.38776 362.40125 362.41476 362.42825 + 362.44174 362.45526 362.46875 362.48224 362.49576 362.50925 + 362.52274 362.53625 362.54974 362.56326 362.57675 362.59024 + 362.60376 362.61725 362.63074 362.64426 362.65775 362.67126 + 362.68475 362.69824 362.71176 362.72525 362.73874 362.75226 + 362.76575 362.77924 362.79276 362.80624 362.81976 362.83325 + 362.84674 362.86026 362.87375 362.88724 362.90076 362.91425 + 362.92776 362.94125 362.95474 362.96826 362.98175 362.99524 + 363.00876 363.02225 363.03574 363.04926 363.06274 363.07626 + 363.08975 363.10324 363.11676 363.13025 363.14374 363.15726 + 363.17075 363.18427 363.19775 363.21124 363.22476 363.23825 + 363.25174 363.26526 363.27875 363.29224 363.30576 363.31952 + 363.33377 363.34857 363.36395 363.3799 363.39645 363.4136 + 363.43143 363.44992 363.46912 363.489 363.50967 363.5311 + 363.55334 363.57642 363.60037 363.6252 363.651 363.67776 + 363.7055 363.7343 363.767 363.803 363.839 363.875 + 363.911 363.947 363.983 364.019 364.055 364.091 + 364.127 364.163 364.199 364.235 364.271 364.307 + 364.343 364.379 364.415 364.451 364.487 364.523 + 364.559 364.595 364.631 364.667 364.703 364.739 + 364.775 364.811 364.847 364.883 364.919 364.955 + 364.991 365.027 365.063 365.099 365.135 365.171 ] + x_upper_bound: [ 353.0705 353.1065 353.1425 353.1785 353.2145 353.2505 + 353.2865 353.3225 353.3585 353.3945 353.4305 353.4665 + 353.5025 353.5385 353.5745 353.6105 353.6465 353.6825 + 353.7185 353.7545 353.7905 353.8265 353.8625 353.8985 + 353.9345 353.9705 354.0065 354.0425 354.0785 354.1145 + 354.1505 354.1865 354.2225 354.2585 354.2945 354.3305 + 354.3665 354.4025 354.4385 354.4745 354.50717 354.53598 + 354.56375 354.5905 354.61627 354.64114 354.66507 354.68817 + 354.7104 354.73184 354.7525 354.7724 354.7916 354.81006 + 354.82788 354.84506 354.8616 354.87753 354.8929 354.9077 + 354.922 354.93576 354.94925 354.96274 354.97626 354.98975 + 355.00323 355.01675 355.03024 355.04376 355.05725 355.07074 + 355.08426 355.09775 355.11124 355.12476 355.13824 355.15176 + 355.16525 355.17874 355.19226 355.20575 355.21924 355.23276 + 355.24625 355.25974 355.27325 355.28674 355.30026 355.31375 + 355.32724 355.34076 355.35425 355.36774 355.38126 355.39474 + 355.40826 355.42175 355.43524 355.44876 355.46225 355.47574 + 355.48926 355.50275 355.51624 355.52975 355.54324 355.55676 + 355.57025 355.58374 355.59726 355.61075 355.62424 355.63776 + 355.65125 355.66476 355.67825 355.69174 355.70526 355.71875 + 355.73224 355.74576 355.75925 355.77274 355.78625 355.79974 + 355.81326 355.82675 355.84024 355.85376 355.86725 355.88074 + 355.89426 355.90775 355.92126 355.93475 355.94824 355.96176 + 355.97525 355.98874 356.00226 356.01575 356.02924 356.04276 + 356.05624 356.06976 356.08325 356.09674 356.11026 356.12375 + 356.13724 356.15076 356.16425 356.17776 356.19125 356.20474 + 356.21826 356.23175 356.24524 356.25876 356.27225 356.28574 + 356.29926 356.31274 356.32626 356.33975 356.35324 356.36676 + 356.38025 356.39374 356.40726 356.42075 356.43427 356.44775 + 356.46124 356.47476 356.48825 356.50174 356.51526 356.52875 + 356.54224 356.55576 356.56924 356.58276 356.59625 356.60974 + 356.62326 356.63675 356.65024 356.66376 356.67725 356.69073 + 356.70425 356.71774 356.73126 356.74475 356.75824 356.77176 + 356.78525 356.79874 356.81226 356.82574 356.83926 356.85275 + 356.86624 356.87976 356.89325 356.90674 356.92026 356.93375 + 356.94724 356.96075 356.97424 356.98776 357.00125 357.01474 + 357.02826 357.04175 357.05524 357.06876 357.08224 357.09576 + 357.10925 357.12274 357.13626 357.14975 357.16324 357.17676 + 357.19025 357.20374 357.21725 357.23074 357.24426 357.25775 + 357.27124 357.28476 357.29825 357.31174 357.32526 357.33875 + 357.35226 357.36575 357.37924 357.39276 357.40625 357.41974 + 357.43326 357.44675 357.46024 357.47375 357.48724 357.50076 + 357.51425 357.52774 357.54126 357.55475 357.56824 357.58176 + 357.59525 357.60876 357.62225 357.63574 357.64926 357.66275 + 357.67624 357.68976 357.70325 357.71674 357.73026 357.74374 + 357.75726 357.77075 357.78424 357.79776 357.81125 357.82474 + 357.83826 357.85175 357.86526 357.87875 357.89224 357.90576 + 357.91925 357.93274 357.94626 357.95975 357.97324 357.98676 + 358.00024 358.01376 358.02725 358.04074 358.05426 358.06775 + 358.08124 358.09476 358.10825 358.12177 358.13525 358.14874 + 358.16226 358.17575 358.18924 358.20276 358.21625 358.22974 + 358.24326 358.25674 358.27026 358.28375 358.29724 358.31076 + 358.32425 358.33774 358.35126 358.36475 358.37823 358.39175 + 358.40524 358.41876 358.43225 358.44574 358.45926 358.47275 + 358.48624 358.49976 358.51324 358.52676 358.54025 358.55374 + 358.56726 358.58075 358.59424 358.60776 358.62125 358.63474 + 358.64825 358.66174 358.67526 358.68875 358.70224 358.71576 + 358.72925 358.74274 358.75626 358.76974 358.78326 358.79675 + 358.81024 358.82376 358.83725 358.85074 358.86426 358.87775 + 358.89124 358.90475 358.91824 358.93176 358.94525 358.95874 + 358.97226 358.98575 358.99924 359.01276 359.02625 359.03976 + 359.05325 359.06674 359.08026 359.09375 359.10724 359.12076 + 359.13425 359.14774 359.16125 359.17474 359.18826 359.20175 + 359.21524 359.22876 359.24225 359.25574 359.26926 359.28275 + 359.29626 359.30975 359.32324 359.33676 359.35025 359.36374 + 359.37726 359.39075 359.40424 359.41776 359.43124 359.44476 + 359.45825 359.47174 359.48526 359.49875 359.51224 359.52576 + 359.53925 359.55276 359.56625 359.57974 359.59326 359.60675 + 359.62024 359.63376 359.64725 359.66074 359.67426 359.68774 + 359.70126 359.71475 359.72824 359.74176 359.75525 359.76874 + 359.78226 359.79575 359.80927 359.82275 359.83624 359.84976 + 359.86325 359.87674 359.89026 359.90375 359.91724 359.93076 + 359.94424 359.95776 359.97125 359.98474 359.99826 360.01175 + 360.02524 360.03876 360.05225 360.06573 360.07925 360.09274 + 360.10626 360.11975 360.13324 360.14676 360.16025 360.17374 + 360.18726 360.20074 360.21426 360.22775 360.24124 360.25476 + 360.26825 360.28174 360.29526 360.30875 360.32224 360.33575 + 360.34924 360.36276 360.37625 360.38974 360.40326 360.41675 + 360.43024 360.44376 360.45724 360.47076 360.48425 360.49774 + 360.51126 360.52475 360.53824 360.55176 360.56525 360.57874 + 360.59225 360.60574 360.61926 360.63275 360.64624 360.65976 + 360.67325 360.68674 360.70026 360.71375 360.72726 360.74075 + 360.75424 360.76776 360.78125 360.79474 360.80826 360.82175 + 360.83524 360.84875 360.86224 360.87576 360.88925 360.90274 + 360.91626 360.92975 360.94324 360.95676 360.97025 360.98376 + 360.99725 361.01074 361.02426 361.03775 361.05124 361.06476 + 361.07825 361.09174 361.10526 361.11874 361.13226 361.14575 + 361.15924 361.17276 361.18625 361.19974 361.21326 361.22675 + 361.24026 361.25375 361.26724 361.28076 361.29425 361.30774 + 361.32126 361.33475 361.34824 361.36176 361.37524 361.38876 + 361.40225 361.41574 361.42926 361.44275 361.45624 361.46976 + 361.48325 361.49677 361.51025 361.52374 361.53726 361.55075 + 361.56424 361.57776 361.59125 361.60474 361.61826 361.63174 + 361.64526 361.65875 361.67224 361.68576 361.69925 361.71274 + 361.72626 361.73975 361.75323 361.76675 361.78024 361.79376 + 361.80725 361.82074 361.83426 361.84775 361.86124 361.87476 + 361.88824 361.90176 361.91525 361.92874 361.94226 361.95575 + 361.96924 361.98276 361.99625 362.00974 362.02325 362.03674 + 362.05026 362.06375 362.07724 362.09076 362.10425 362.11774 + 362.13126 362.14474 362.15826 362.17175 362.18524 362.19876 + 362.21225 362.22574 362.23926 362.25275 362.26624 362.27975 + 362.29324 362.30676 362.32025 362.33374 362.34726 362.36075 + 362.37424 362.38776 362.40125 362.41476 362.42825 362.44174 + 362.45526 362.46875 362.48224 362.49576 362.50925 362.52274 + 362.53625 362.54974 362.56326 362.57675 362.59024 362.60376 + 362.61725 362.63074 362.64426 362.65775 362.67126 362.68475 + 362.69824 362.71176 362.72525 362.73874 362.75226 362.76575 + 362.77924 362.79276 362.80624 362.81976 362.83325 362.84674 + 362.86026 362.87375 362.88724 362.90076 362.91425 362.92776 + 362.94125 362.95474 362.96826 362.98175 362.99524 363.00876 + 363.02225 363.03574 363.04926 363.06274 363.07626 363.08975 + 363.10324 363.11676 363.13025 363.14374 363.15726 363.17075 + 363.18427 363.19775 363.21124 363.22476 363.23825 363.25174 + 363.26526 363.27875 363.29224 363.30576 363.31952 363.33377 + 363.34857 363.36395 363.3799 363.39645 363.4136 363.43143 + 363.44992 363.46912 363.489 363.50967 363.5311 363.55334 + 363.57642 363.60037 363.6252 363.651 363.67776 363.7055 + 363.7343 363.767 363.803 363.839 363.875 363.911 + 363.947 363.983 364.019 364.055 364.091 364.127 + 364.163 364.199 364.235 364.271 364.307 364.343 + 364.379 364.415 364.451 364.487 364.523 364.559 + 364.595 364.631 364.667 364.703 364.739 364.775 + 364.811 364.847 364.883 364.919 364.955 364.991 + 365.027 365.063 365.099 365.135 365.171 365.207 ] y: [ -5.59320021e+00 -5.55719995e+00 -5.52120018e+00 -5.48519993e+00 -5.44920015e+00 -5.41319990e+00 -5.37720013e+00 -5.34119987e+00 -5.30520010e+00 -5.26919985e+00 -5.23320007e+00 -5.19719982e+00 @@ -1261,453 +1186,378 @@ [ 102203. 102211. 102219. ..., 101783. 101757. 101752.] [ 102210. 102218. 102225. ..., 101783. 101763. 101756.] [ 102216. 102224. 102232. ..., 101793. 101770. 101761.]] - x: [ 353.05249023 353.08850098 353.12451172 353.16049194 353.19650269 - 353.23251343 353.26849365 353.30450439 353.34051514 353.37649536 - 353.4125061 353.44848633 353.48449707 353.52050781 353.55648804 - 353.59249878 353.62850952 353.66448975 353.70050049 353.73651123 - 353.77249146 353.8085022 353.84451294 353.88049316 353.91650391 - 353.95251465 353.98849487 354.02450562 354.06048584 354.09649658 - 354.13250732 354.16848755 354.20449829 354.24050903 354.27648926 - 354.3125 354.34851074 354.38449097 354.42050171 354.45651245 - 354.49249268 354.52185059 354.55010986 354.57736206 354.6036377 - 354.62893677 354.65332031 354.67684937 354.69949341 354.72131348 - 354.74234009 354.76263428 354.78216553 354.80099487 354.81915283 - 354.8366394 354.85348511 354.86972046 354.88537598 354.90045166 - 354.91497803 354.9289856 354.94250488 354.95599365 354.96951294 - 354.98300171 354.99649048 355.01000977 355.02349854 355.0369873 - 355.05050659 355.06399536 355.07751465 355.09100342 355.10449219 - 355.11801147 355.13150024 355.14498901 355.1585083 355.17199707 - 355.18548584 355.19900513 355.2124939 355.22601318 355.23950195 - 355.25299072 355.26651001 355.27999878 355.29348755 355.30700684 - 355.32049561 355.33401489 355.34750366 355.36099243 355.37451172 - 355.38800049 355.40148926 355.41500854 355.42849731 355.44198608 - 355.45550537 355.46899414 355.48251343 355.4960022 355.50949097 - 355.52301025 355.53649902 355.54998779 355.56350708 355.57699585 - 355.59051514 355.60400391 355.61749268 355.63101196 355.64450073 - 355.6579895 355.67150879 355.68499756 355.69848633 355.71200562 - 355.72549438 355.73901367 355.75250244 355.76599121 355.7795105 - 355.79299927 355.80648804 355.82000732 355.83349609 355.84698486 - 355.86050415 355.87399292 355.88751221 355.90100098 355.91448975 - 355.92800903 355.9414978 355.95498657 355.96850586 355.98199463 - 355.99551392 356.00900269 356.02249146 356.03601074 356.04949951 - 356.06298828 356.07650757 356.08999634 356.10348511 356.11700439 - 356.13049316 356.14401245 356.15750122 356.17098999 356.18450928 - 356.19799805 356.21148682 356.2250061 356.23849487 356.25201416 - 356.26550293 356.2789917 356.29251099 356.30599976 356.31948853 - 356.33300781 356.34649658 356.35998535 356.37350464 356.38699341 - 356.4005127 356.41400146 356.42749023 356.44100952 356.45449829 - 356.46798706 356.48150635 356.49499512 356.5085144 356.52200317 - 356.53549194 356.54901123 356.5625 356.57598877 356.58950806 - 356.60299683 356.6164856 356.63000488 356.64349365 356.65701294 - 356.67050171 356.68399048 356.69750977 356.71099854 356.7244873 - 356.73800659 356.75149536 356.76501465 356.77850342 356.79199219 - 356.80551147 356.81900024 356.83248901 356.8460083 356.85949707 - 356.87298584 356.88650513 356.8999939 356.91351318 356.92700195 - 356.94049072 356.95401001 356.96749878 356.98098755 356.99450684 - 357.00799561 357.02151489 357.03500366 357.04849243 357.06201172 - 357.07550049 357.08898926 357.10250854 357.11599731 357.12948608 - 357.14300537 357.15649414 357.17001343 357.1835022 357.19699097 - 357.21051025 357.22399902 357.23748779 357.25100708 357.26449585 - 357.27801514 357.29150391 357.30499268 357.31851196 357.33200073 - 357.3454895 357.35900879 357.37249756 357.38598633 357.39950562 - 357.41299438 357.42651367 357.44000244 357.45349121 357.4670105 - 357.48049927 357.49398804 357.50750732 357.52099609 357.53448486 - 357.54800415 357.56149292 357.57501221 357.58850098 357.60198975 - 357.61550903 357.6289978 357.64248657 357.65600586 357.66949463 - 357.68301392 357.69650269 357.70999146 357.72351074 357.73699951 - 357.75048828 357.76400757 357.77749634 357.79098511 357.80450439 - 357.81799316 357.83151245 357.84500122 357.85848999 357.87200928 - 357.88549805 357.89898682 357.9125061 357.92599487 357.93951416 - 357.95300293 357.9664917 357.98001099 357.99349976 358.00698853 - 358.02050781 358.03399658 358.04748535 358.06100464 358.07449341 - 358.0880127 358.10150146 358.11499023 358.12850952 358.14199829 - 358.15548706 358.16900635 358.18249512 358.1960144 358.20950317 - 358.22299194 358.23651123 358.25 358.26348877 358.27700806 - 358.29049683 358.3039856 358.31750488 358.33099365 358.34451294 - 358.35800171 358.37149048 358.38500977 358.39849854 358.4119873 - 358.42550659 358.43899536 358.45251465 358.46600342 358.47949219 - 358.49301147 358.50650024 358.51998901 358.5335083 358.54699707 - 358.56048584 358.57400513 358.5874939 358.60101318 358.61450195 - 358.62799072 358.64151001 358.65499878 358.66848755 358.68200684 - 358.69549561 358.70901489 358.72250366 358.73599243 358.74951172 - 358.76300049 358.77648926 358.79000854 358.80349731 358.81698608 - 358.83050537 358.84399414 358.85751343 358.8710022 358.88449097 - 358.89801025 358.91149902 358.92498779 358.93850708 358.95199585 - 358.96551514 358.97900391 358.99249268 359.00601196 359.01950073 - 359.0329895 359.04650879 359.05999756 359.07348633 359.08700562 - 359.10049438 359.11401367 359.12750244 359.14099121 359.1545105 - 359.16799927 359.18148804 359.19500732 359.20849609 359.22198486 - 359.23550415 359.24899292 359.26251221 359.27600098 359.28948975 - 359.30300903 359.3164978 359.32998657 359.34350586 359.35699463 - 359.37051392 359.38400269 359.39749146 359.41101074 359.42449951 - 359.43798828 359.45150757 359.46499634 359.47848511 359.49200439 - 359.50549316 359.51901245 359.53250122 359.54598999 359.55950928 - 359.57299805 359.58648682 359.6000061 359.61349487 359.62701416 - 359.64050293 359.6539917 359.66751099 359.68099976 359.69448853 - 359.70800781 359.72149658 359.73498535 359.74850464 359.76199341 - 359.7755127 359.78900146 359.80249023 359.81600952 359.82949829 - 359.84298706 359.85650635 359.86999512 359.8835144 359.89700317 - 359.91049194 359.92401123 359.9375 359.95098877 359.96450806 - 359.97799683 359.9914856 360.00500488 360.01849365 360.03201294 - 360.04550171 360.05899048 360.07250977 360.08599854 360.0994873 - 360.11300659 360.12649536 360.14001465 360.15350342 360.16699219 - 360.18051147 360.19400024 360.20748901 360.2210083 360.23449707 - 360.24798584 360.26150513 360.2749939 360.28851318 360.30200195 - 360.31549072 360.32901001 360.34249878 360.35598755 360.36950684 - 360.38299561 360.39651489 360.41000366 360.42349243 360.43701172 - 360.45050049 360.46398926 360.47750854 360.49099731 360.50448608 - 360.51800537 360.53149414 360.54501343 360.5585022 360.57199097 - 360.58551025 360.59899902 360.61248779 360.62600708 360.63949585 - 360.65301514 360.66650391 360.67999268 360.69351196 360.70700073 - 360.7204895 360.73400879 360.74749756 360.76098633 360.77450562 - 360.78799438 360.80151367 360.81500244 360.82849121 360.8420105 - 360.85549927 360.86898804 360.88250732 360.89599609 360.90948486 - 360.92300415 360.93649292 360.95001221 360.96350098 360.97698975 - 360.99050903 361.0039978 361.01748657 361.03100586 361.04449463 - 361.05801392 361.07150269 361.08499146 361.09851074 361.11199951 - 361.12548828 361.13900757 361.15249634 361.16598511 361.17950439 - 361.19299316 361.20651245 361.22000122 361.23348999 361.24700928 - 361.26049805 361.27398682 361.2875061 361.30099487 361.31451416 - 361.32800293 361.3414917 361.35501099 361.36849976 361.38198853 - 361.39550781 361.40899658 361.42248535 361.43600464 361.44949341 - 361.4630127 361.47650146 361.48999023 361.50350952 361.51699829 - 361.53048706 361.54400635 361.55749512 361.5710144 361.58450317 - 361.59799194 361.61151123 361.625 361.63848877 361.65200806 - 361.66549683 361.6789856 361.69250488 361.70599365 361.71951294 - 361.73300171 361.74649048 361.76000977 361.77349854 361.7869873 - 361.80050659 361.81399536 361.82751465 361.84100342 361.85449219 - 361.86801147 361.88150024 361.89498901 361.9085083 361.92199707 - 361.93548584 361.94900513 361.9624939 361.97601318 361.98950195 - 362.00299072 362.01651001 362.02999878 362.04348755 362.05700684 - 362.07049561 362.08401489 362.09750366 362.11099243 362.12451172 - 362.13800049 362.15148926 362.16500854 362.17849731 362.19198608 - 362.20550537 362.21899414 362.23251343 362.2460022 362.25949097 - 362.27301025 362.28649902 362.29998779 362.31350708 362.32699585 - 362.34051514 362.35400391 362.36749268 362.38101196 362.39450073 - 362.4079895 362.42150879 362.43499756 362.44848633 362.46200562 - 362.47549438 362.48901367 362.50250244 362.51599121 362.5295105 - 362.54299927 362.55648804 362.57000732 362.58349609 362.59698486 - 362.61050415 362.62399292 362.63751221 362.65100098 362.66448975 - 362.67800903 362.6914978 362.70498657 362.71850586 362.73199463 - 362.74551392 362.75900269 362.77249146 362.78601074 362.79949951 - 362.81298828 362.82650757 362.83999634 362.85348511 362.86700439 - 362.88049316 362.89401245 362.90750122 362.92098999 362.93450928 - 362.94799805 362.96148682 362.9750061 362.98849487 363.00201416 - 363.01550293 363.0289917 363.04251099 363.05599976 363.06948853 - 363.08300781 363.09649658 363.10998535 363.12350464 363.13699341 - 363.1505127 363.16400146 363.17749023 363.19100952 363.20449829 - 363.21798706 363.23150635 363.24499512 363.2585144 363.27200317 - 363.28549194 363.29901123 363.3125 363.32650757 363.34103394 - 363.35614014 363.37176514 363.38803101 363.40487671 363.42236328 - 363.44049072 363.45932007 363.47888184 363.49914551 363.52017212 - 363.54202271 363.56466675 363.58816528 363.61254883 363.63787842 - 363.66412354 363.69137573 363.71966553 363.74899292 363.78500366 - 363.8210144 363.85699463 363.89300537 363.9289856 363.96499634 - 364.00100708 364.0369873 364.07299805 364.10900879 364.14498901 - 364.18099976 364.2170105 364.25299072 364.28900146 364.32501221 - 364.36099243 364.39700317 364.43301392 364.46899414 364.50500488 - 364.54098511 364.57699585 364.61300659 364.64898682 364.68499756 - 364.7210083 364.75698853 364.79299927 364.82901001 364.86499023 - 364.90100098 364.93701172 364.97299194 365.00900269 365.04501343 - 365.08099365 365.11700439 365.15301514 365.18899536] - x_lower_bound: [ 353.03448486 353.07049561 353.10650635 353.14248657 353.17849731 - 353.21450806 353.25048828 353.28649902 353.32250977 353.35848999 - 353.39450073 353.43051147 353.4664917 353.50250244 353.53851318 - 353.57449341 353.61050415 353.64651489 353.68249512 353.71850586 - 353.75448608 353.79049683 353.82650757 353.86248779 353.89849854 - 353.93450928 353.9704895 354.00650024 354.04251099 354.07849121 - 354.11450195 354.1505127 354.18649292 354.22250366 354.2585144 - 354.29449463 354.33050537 354.3664856 354.40249634 354.43850708 - 354.4744873 354.50717163 354.53598022 354.56375122 354.59051514 - 354.61627197 354.6411438 354.66506958 354.68817139 354.71038818 - 354.73184204 354.75250244 354.7723999 354.79159546 354.81005859 - 354.82788086 354.84506226 354.86160278 354.87753296 354.89291382 - 354.90771484 354.92199707 354.9357605 354.94924927 354.96273804 - 354.97625732 354.98974609 355.00323486 355.01675415 355.03024292 - 355.04376221 355.05725098 355.07073975 355.08425903 355.0977478 - 355.11123657 355.12475586 355.13824463 355.15176392 355.16525269 - 355.17874146 355.19226074 355.20574951 355.21923828 355.23275757 - 355.24624634 355.25973511 355.27325439 355.28674316 355.30026245 - 355.31375122 355.32723999 355.34075928 355.35424805 355.36773682 - 355.3812561 355.39474487 355.40826416 355.42175293 355.4352417 - 355.44876099 355.46224976 355.47573853 355.48925781 355.50274658 - 355.51623535 355.52975464 355.54324341 355.5567627 355.57025146 - 355.58374023 355.59725952 355.61074829 355.62423706 355.63775635 - 355.65124512 355.6647644 355.67825317 355.69174194 355.70526123 - 355.71875 355.73223877 355.74575806 355.75924683 355.7727356 - 355.78625488 355.79974365 355.81326294 355.82675171 355.84024048 - 355.85375977 355.86724854 355.8807373 355.89425659 355.90774536 - 355.92126465 355.93475342 355.94824219 355.96176147 355.97525024 - 355.98873901 356.0022583 356.01574707 356.02923584 356.04275513 - 356.0562439 356.06976318 356.08325195 356.09674072 356.11026001 - 356.12374878 356.13723755 356.15075684 356.16424561 356.17776489 - 356.19125366 356.20474243 356.21826172 356.23175049 356.24523926 - 356.25875854 356.27224731 356.28573608 356.29925537 356.31274414 - 356.32626343 356.3397522 356.35324097 356.36676025 356.38024902 - 356.39373779 356.40725708 356.42074585 356.43426514 356.44775391 - 356.46124268 356.47476196 356.48825073 356.5017395 356.51525879 - 356.52874756 356.54223633 356.55575562 356.56924438 356.58276367 - 356.59625244 356.60974121 356.6232605 356.63674927 356.65023804 - 356.66375732 356.67724609 356.69073486 356.70425415 356.71774292 - 356.73126221 356.74475098 356.75823975 356.77175903 356.7852478 - 356.79873657 356.81225586 356.82574463 356.83926392 356.85275269 - 356.86624146 356.87976074 356.89324951 356.90673828 356.92025757 - 356.93374634 356.94723511 356.96075439 356.97424316 356.98776245 - 357.00125122 357.01473999 357.02825928 357.04174805 357.05523682 - 357.0687561 357.08224487 357.09576416 357.10925293 357.1227417 - 357.13626099 357.14974976 357.16323853 357.17675781 357.19024658 - 357.20373535 357.21725464 357.23074341 357.2442627 357.25775146 - 357.27124023 357.28475952 357.29824829 357.31173706 357.32525635 - 357.33874512 357.3522644 357.36575317 357.37924194 357.39276123 - 357.40625 357.41973877 357.43325806 357.44674683 357.4602356 - 357.47375488 357.48724365 357.50076294 357.51425171 357.52774048 - 357.54125977 357.55474854 357.5682373 357.58175659 357.59524536 - 357.60876465 357.62225342 357.63574219 357.64926147 357.66275024 - 357.67623901 357.6897583 357.70324707 357.71673584 357.73025513 - 357.7437439 357.75726318 357.77075195 357.78424072 357.79776001 - 357.81124878 357.82473755 357.83825684 357.85174561 357.86526489 - 357.87875366 357.89224243 357.90576172 357.91925049 357.93273926 - 357.94625854 357.95974731 357.97323608 357.98675537 358.00024414 - 358.01376343 358.0272522 358.04074097 358.05426025 358.06774902 - 358.08123779 358.09475708 358.10824585 358.12176514 358.13525391 - 358.14874268 358.16226196 358.17575073 358.1892395 358.20275879 - 358.21624756 358.22973633 358.24325562 358.25674438 358.27026367 - 358.28375244 358.29724121 358.3107605 358.32424927 358.33773804 - 358.35125732 358.36474609 358.37823486 358.39175415 358.40524292 - 358.41876221 358.43225098 358.44573975 358.45925903 358.4727478 - 358.48623657 358.49975586 358.51324463 358.52676392 358.54025269 - 358.55374146 358.56726074 358.58074951 358.59423828 358.60775757 - 358.62124634 358.63473511 358.64825439 358.66174316 358.67526245 - 358.68875122 358.70223999 358.71575928 358.72924805 358.74273682 - 358.7562561 358.76974487 358.78326416 358.79675293 358.8102417 - 358.82376099 358.83724976 358.85073853 358.86425781 358.87774658 - 358.89123535 358.90475464 358.91824341 358.9317627 358.94525146 - 358.95874023 358.97225952 358.98574829 358.99923706 359.01275635 - 359.02624512 359.0397644 359.05325317 359.06674194 359.08026123 - 359.09375 359.10723877 359.12075806 359.13424683 359.1477356 - 359.16125488 359.17474365 359.18826294 359.20175171 359.21524048 - 359.22875977 359.24224854 359.2557373 359.26925659 359.28274536 - 359.29626465 359.30975342 359.32324219 359.33676147 359.35025024 - 359.36373901 359.3772583 359.39074707 359.40423584 359.41775513 - 359.4312439 359.44476318 359.45825195 359.47174072 359.48526001 - 359.49874878 359.51223755 359.52575684 359.53924561 359.55276489 - 359.56625366 359.57974243 359.59326172 359.60675049 359.62023926 - 359.63375854 359.64724731 359.66073608 359.67425537 359.68774414 - 359.70126343 359.7147522 359.72824097 359.74176025 359.75524902 - 359.76873779 359.78225708 359.79574585 359.80926514 359.82275391 - 359.83624268 359.84976196 359.86325073 359.8767395 359.89025879 - 359.90374756 359.91723633 359.93075562 359.94424438 359.95776367 - 359.97125244 359.98474121 359.9982605 360.01174927 360.02523804 - 360.03875732 360.05224609 360.06573486 360.07925415 360.09274292 - 360.10626221 360.11975098 360.13323975 360.14675903 360.1602478 - 360.17373657 360.18725586 360.20074463 360.21426392 360.22775269 - 360.24124146 360.25476074 360.26824951 360.28173828 360.29525757 - 360.30874634 360.32223511 360.33575439 360.34924316 360.36276245 - 360.37625122 360.38973999 360.40325928 360.41674805 360.43023682 - 360.4437561 360.45724487 360.47076416 360.48425293 360.4977417 - 360.51126099 360.52474976 360.53823853 360.55175781 360.56524658 - 360.57873535 360.59225464 360.60574341 360.6192627 360.63275146 - 360.64624023 360.65975952 360.67324829 360.68673706 360.70025635 - 360.71374512 360.7272644 360.74075317 360.75424194 360.76776123 - 360.78125 360.79473877 360.80825806 360.82174683 360.8352356 - 360.84875488 360.86224365 360.87576294 360.88925171 360.90274048 - 360.91625977 360.92974854 360.9432373 360.95675659 360.97024536 - 360.98376465 360.99725342 361.01074219 361.02426147 361.03775024 - 361.05123901 361.0647583 361.07824707 361.09173584 361.10525513 - 361.1187439 361.13226318 361.14575195 361.15924072 361.17276001 - 361.18624878 361.19973755 361.21325684 361.22674561 361.24026489 - 361.25375366 361.26724243 361.28076172 361.29425049 361.30773926 - 361.32125854 361.33474731 361.34823608 361.36175537 361.37524414 - 361.38876343 361.4022522 361.41574097 361.42926025 361.44274902 - 361.45623779 361.46975708 361.48324585 361.49676514 361.51025391 - 361.52374268 361.53726196 361.55075073 361.5642395 361.57775879 - 361.59124756 361.60473633 361.61825562 361.63174438 361.64526367 - 361.65875244 361.67224121 361.6857605 361.69924927 361.71273804 - 361.72625732 361.73974609 361.75323486 361.76675415 361.78024292 - 361.79376221 361.80725098 361.82073975 361.83425903 361.8477478 - 361.86123657 361.87475586 361.88824463 361.90176392 361.91525269 - 361.92874146 361.94226074 361.95574951 361.96923828 361.98275757 - 361.99624634 362.00973511 362.02325439 362.03674316 362.05026245 - 362.06375122 362.07723999 362.09075928 362.10424805 362.11773682 - 362.1312561 362.14474487 362.15826416 362.17175293 362.1852417 - 362.19876099 362.21224976 362.22573853 362.23925781 362.25274658 - 362.26623535 362.27975464 362.29324341 362.3067627 362.32025146 - 362.33374023 362.34725952 362.36074829 362.37423706 362.38775635 - 362.40124512 362.4147644 362.42825317 362.44174194 362.45526123 - 362.46875 362.48223877 362.49575806 362.50924683 362.5227356 - 362.53625488 362.54974365 362.56326294 362.57675171 362.59024048 - 362.60375977 362.61724854 362.6307373 362.64425659 362.65774536 - 362.67126465 362.68475342 362.69824219 362.71176147 362.72525024 - 362.73873901 362.7522583 362.76574707 362.77923584 362.79275513 - 362.8062439 362.81976318 362.83325195 362.84674072 362.86026001 - 362.87374878 362.88723755 362.90075684 362.91424561 362.92776489 - 362.94125366 362.95474243 362.96826172 362.98175049 362.99523926 - 363.00875854 363.02224731 363.03573608 363.04925537 363.06274414 - 363.07626343 363.0897522 363.10324097 363.11676025 363.13024902 - 363.14373779 363.15725708 363.17074585 363.18426514 363.19775391 - 363.21124268 363.22476196 363.23825073 363.2517395 363.26525879 - 363.27874756 363.29223633 363.30575562 363.31951904 363.33377075 - 363.34857178 363.36395264 363.37991333 363.39645386 363.41360474 - 363.431427 363.44992065 363.46911621 363.48901367 363.50967407 - 363.53109741 363.55334473 363.57641602 363.60037231 363.62521362 - 363.65100098 363.67776489 363.70550537 363.73431396 363.76699829 - 363.80300903 363.83898926 363.875 363.91101074 363.94699097 - 363.98300171 364.01901245 364.05499268 364.09100342 364.12701416 - 364.16299438 364.19900513 364.23498535 364.27099609 364.30700684 - 364.34298706 364.3789978 364.41500854 364.45098877 364.48699951 - 364.52301025 364.55899048 364.59500122 364.63101196 364.66699219 - 364.70300293 364.73901367 364.7749939 364.81100464 364.84698486 - 364.88299561 364.91900635 364.95498657 364.99099731 365.02700806 - 365.06298828 365.09899902 365.13500977 365.17098999] - x_upper_bound: [ 353.07049561 353.10650635 353.14248657 353.17849731 353.21450806 - 353.25048828 353.28649902 353.32250977 353.35848999 353.39450073 - 353.43051147 353.4664917 353.50250244 353.53851318 353.57449341 - 353.61050415 353.64651489 353.68249512 353.71850586 353.75448608 - 353.79049683 353.82650757 353.86248779 353.89849854 353.93450928 - 353.9704895 354.00650024 354.04251099 354.07849121 354.11450195 - 354.1505127 354.18649292 354.22250366 354.2585144 354.29449463 - 354.33050537 354.3664856 354.40249634 354.43850708 354.4744873 - 354.50717163 354.53598022 354.56375122 354.59051514 354.61627197 - 354.6411438 354.66506958 354.68817139 354.71038818 354.73184204 - 354.75250244 354.7723999 354.79159546 354.81005859 354.82788086 - 354.84506226 354.86160278 354.87753296 354.89291382 354.90771484 - 354.92199707 354.9357605 354.94924927 354.96273804 354.97625732 - 354.98974609 355.00323486 355.01675415 355.03024292 355.04376221 - 355.05725098 355.07073975 355.08425903 355.0977478 355.11123657 - 355.12475586 355.13824463 355.15176392 355.16525269 355.17874146 - 355.19226074 355.20574951 355.21923828 355.23275757 355.24624634 - 355.25973511 355.27325439 355.28674316 355.30026245 355.31375122 - 355.32723999 355.34075928 355.35424805 355.36773682 355.3812561 - 355.39474487 355.40826416 355.42175293 355.4352417 355.44876099 - 355.46224976 355.47573853 355.48925781 355.50274658 355.51623535 - 355.52975464 355.54324341 355.5567627 355.57025146 355.58374023 - 355.59725952 355.61074829 355.62423706 355.63775635 355.65124512 - 355.6647644 355.67825317 355.69174194 355.70526123 355.71875 - 355.73223877 355.74575806 355.75924683 355.7727356 355.78625488 - 355.79974365 355.81326294 355.82675171 355.84024048 355.85375977 - 355.86724854 355.8807373 355.89425659 355.90774536 355.92126465 - 355.93475342 355.94824219 355.96176147 355.97525024 355.98873901 - 356.0022583 356.01574707 356.02923584 356.04275513 356.0562439 - 356.06976318 356.08325195 356.09674072 356.11026001 356.12374878 - 356.13723755 356.15075684 356.16424561 356.17776489 356.19125366 - 356.20474243 356.21826172 356.23175049 356.24523926 356.25875854 - 356.27224731 356.28573608 356.29925537 356.31274414 356.32626343 - 356.3397522 356.35324097 356.36676025 356.38024902 356.39373779 - 356.40725708 356.42074585 356.43426514 356.44775391 356.46124268 - 356.47476196 356.48825073 356.5017395 356.51525879 356.52874756 - 356.54223633 356.55575562 356.56924438 356.58276367 356.59625244 - 356.60974121 356.6232605 356.63674927 356.65023804 356.66375732 - 356.67724609 356.69073486 356.70425415 356.71774292 356.73126221 - 356.74475098 356.75823975 356.77175903 356.7852478 356.79873657 - 356.81225586 356.82574463 356.83926392 356.85275269 356.86624146 - 356.87976074 356.89324951 356.90673828 356.92025757 356.93374634 - 356.94723511 356.96075439 356.97424316 356.98776245 357.00125122 - 357.01473999 357.02825928 357.04174805 357.05523682 357.0687561 - 357.08224487 357.09576416 357.10925293 357.1227417 357.13626099 - 357.14974976 357.16323853 357.17675781 357.19024658 357.20373535 - 357.21725464 357.23074341 357.2442627 357.25775146 357.27124023 - 357.28475952 357.29824829 357.31173706 357.32525635 357.33874512 - 357.3522644 357.36575317 357.37924194 357.39276123 357.40625 - 357.41973877 357.43325806 357.44674683 357.4602356 357.47375488 - 357.48724365 357.50076294 357.51425171 357.52774048 357.54125977 - 357.55474854 357.5682373 357.58175659 357.59524536 357.60876465 - 357.62225342 357.63574219 357.64926147 357.66275024 357.67623901 - 357.6897583 357.70324707 357.71673584 357.73025513 357.7437439 - 357.75726318 357.77075195 357.78424072 357.79776001 357.81124878 - 357.82473755 357.83825684 357.85174561 357.86526489 357.87875366 - 357.89224243 357.90576172 357.91925049 357.93273926 357.94625854 - 357.95974731 357.97323608 357.98675537 358.00024414 358.01376343 - 358.0272522 358.04074097 358.05426025 358.06774902 358.08123779 - 358.09475708 358.10824585 358.12176514 358.13525391 358.14874268 - 358.16226196 358.17575073 358.1892395 358.20275879 358.21624756 - 358.22973633 358.24325562 358.25674438 358.27026367 358.28375244 - 358.29724121 358.3107605 358.32424927 358.33773804 358.35125732 - 358.36474609 358.37823486 358.39175415 358.40524292 358.41876221 - 358.43225098 358.44573975 358.45925903 358.4727478 358.48623657 - 358.49975586 358.51324463 358.52676392 358.54025269 358.55374146 - 358.56726074 358.58074951 358.59423828 358.60775757 358.62124634 - 358.63473511 358.64825439 358.66174316 358.67526245 358.68875122 - 358.70223999 358.71575928 358.72924805 358.74273682 358.7562561 - 358.76974487 358.78326416 358.79675293 358.8102417 358.82376099 - 358.83724976 358.85073853 358.86425781 358.87774658 358.89123535 - 358.90475464 358.91824341 358.9317627 358.94525146 358.95874023 - 358.97225952 358.98574829 358.99923706 359.01275635 359.02624512 - 359.0397644 359.05325317 359.06674194 359.08026123 359.09375 - 359.10723877 359.12075806 359.13424683 359.1477356 359.16125488 - 359.17474365 359.18826294 359.20175171 359.21524048 359.22875977 - 359.24224854 359.2557373 359.26925659 359.28274536 359.29626465 - 359.30975342 359.32324219 359.33676147 359.35025024 359.36373901 - 359.3772583 359.39074707 359.40423584 359.41775513 359.4312439 - 359.44476318 359.45825195 359.47174072 359.48526001 359.49874878 - 359.51223755 359.52575684 359.53924561 359.55276489 359.56625366 - 359.57974243 359.59326172 359.60675049 359.62023926 359.63375854 - 359.64724731 359.66073608 359.67425537 359.68774414 359.70126343 - 359.7147522 359.72824097 359.74176025 359.75524902 359.76873779 - 359.78225708 359.79574585 359.80926514 359.82275391 359.83624268 - 359.84976196 359.86325073 359.8767395 359.89025879 359.90374756 - 359.91723633 359.93075562 359.94424438 359.95776367 359.97125244 - 359.98474121 359.9982605 360.01174927 360.02523804 360.03875732 - 360.05224609 360.06573486 360.07925415 360.09274292 360.10626221 - 360.11975098 360.13323975 360.14675903 360.1602478 360.17373657 - 360.18725586 360.20074463 360.21426392 360.22775269 360.24124146 - 360.25476074 360.26824951 360.28173828 360.29525757 360.30874634 - 360.32223511 360.33575439 360.34924316 360.36276245 360.37625122 - 360.38973999 360.40325928 360.41674805 360.43023682 360.4437561 - 360.45724487 360.47076416 360.48425293 360.4977417 360.51126099 - 360.52474976 360.53823853 360.55175781 360.56524658 360.57873535 - 360.59225464 360.60574341 360.6192627 360.63275146 360.64624023 - 360.65975952 360.67324829 360.68673706 360.70025635 360.71374512 - 360.7272644 360.74075317 360.75424194 360.76776123 360.78125 - 360.79473877 360.80825806 360.82174683 360.8352356 360.84875488 - 360.86224365 360.87576294 360.88925171 360.90274048 360.91625977 - 360.92974854 360.9432373 360.95675659 360.97024536 360.98376465 - 360.99725342 361.01074219 361.02426147 361.03775024 361.05123901 - 361.0647583 361.07824707 361.09173584 361.10525513 361.1187439 - 361.13226318 361.14575195 361.15924072 361.17276001 361.18624878 - 361.19973755 361.21325684 361.22674561 361.24026489 361.25375366 - 361.26724243 361.28076172 361.29425049 361.30773926 361.32125854 - 361.33474731 361.34823608 361.36175537 361.37524414 361.38876343 - 361.4022522 361.41574097 361.42926025 361.44274902 361.45623779 - 361.46975708 361.48324585 361.49676514 361.51025391 361.52374268 - 361.53726196 361.55075073 361.5642395 361.57775879 361.59124756 - 361.60473633 361.61825562 361.63174438 361.64526367 361.65875244 - 361.67224121 361.6857605 361.69924927 361.71273804 361.72625732 - 361.73974609 361.75323486 361.76675415 361.78024292 361.79376221 - 361.80725098 361.82073975 361.83425903 361.8477478 361.86123657 - 361.87475586 361.88824463 361.90176392 361.91525269 361.92874146 - 361.94226074 361.95574951 361.96923828 361.98275757 361.99624634 - 362.00973511 362.02325439 362.03674316 362.05026245 362.06375122 - 362.07723999 362.09075928 362.10424805 362.11773682 362.1312561 - 362.14474487 362.15826416 362.17175293 362.1852417 362.19876099 - 362.21224976 362.22573853 362.23925781 362.25274658 362.26623535 - 362.27975464 362.29324341 362.3067627 362.32025146 362.33374023 - 362.34725952 362.36074829 362.37423706 362.38775635 362.40124512 - 362.4147644 362.42825317 362.44174194 362.45526123 362.46875 - 362.48223877 362.49575806 362.50924683 362.5227356 362.53625488 - 362.54974365 362.56326294 362.57675171 362.59024048 362.60375977 - 362.61724854 362.6307373 362.64425659 362.65774536 362.67126465 - 362.68475342 362.69824219 362.71176147 362.72525024 362.73873901 - 362.7522583 362.76574707 362.77923584 362.79275513 362.8062439 - 362.81976318 362.83325195 362.84674072 362.86026001 362.87374878 - 362.88723755 362.90075684 362.91424561 362.92776489 362.94125366 - 362.95474243 362.96826172 362.98175049 362.99523926 363.00875854 - 363.02224731 363.03573608 363.04925537 363.06274414 363.07626343 - 363.0897522 363.10324097 363.11676025 363.13024902 363.14373779 - 363.15725708 363.17074585 363.18426514 363.19775391 363.21124268 - 363.22476196 363.23825073 363.2517395 363.26525879 363.27874756 - 363.29223633 363.30575562 363.31951904 363.33377075 363.34857178 - 363.36395264 363.37991333 363.39645386 363.41360474 363.431427 - 363.44992065 363.46911621 363.48901367 363.50967407 363.53109741 - 363.55334473 363.57641602 363.60037231 363.62521362 363.65100098 - 363.67776489 363.70550537 363.73431396 363.76699829 363.80300903 - 363.83898926 363.875 363.91101074 363.94699097 363.98300171 - 364.01901245 364.05499268 364.09100342 364.12701416 364.16299438 - 364.19900513 364.23498535 364.27099609 364.30700684 364.34298706 - 364.3789978 364.41500854 364.45098877 364.48699951 364.52301025 - 364.55899048 364.59500122 364.63101196 364.66699219 364.70300293 - 364.73901367 364.7749939 364.81100464 364.84698486 364.88299561 - 364.91900635 364.95498657 364.99099731 365.02700806 365.06298828 - 365.09899902 365.13500977 365.17098999 365.20700073] + x: [ 353.0525 353.0885 353.1245 353.1605 353.1965 353.2325 + 353.2685 353.3045 353.3405 353.3765 353.4125 353.4485 + 353.4845 353.5205 353.5565 353.5925 353.6285 353.6645 + 353.7005 353.7365 353.7725 353.8085 353.8445 353.8805 + 353.9165 353.9525 353.9885 354.0245 354.0605 354.0965 + 354.1325 354.1685 354.2045 354.2405 354.2765 354.3125 + 354.3485 354.3845 354.4205 354.4565 354.4925 354.52185 + 354.5501 354.57736 354.60364 354.62894 354.65332 354.67685 + 354.6995 354.7213 354.74234 354.76263 354.78217 354.801 + 354.81915 354.83664 354.8535 354.86972 354.88538 354.90045 + 354.91498 354.929 354.9425 354.956 354.9695 354.983 + 354.9965 355.01 355.0235 355.037 355.0505 355.064 + 355.0775 355.091 355.1045 355.118 355.1315 355.145 + 355.1585 355.172 355.1855 355.199 355.2125 355.226 + 355.2395 355.253 355.2665 355.28 355.2935 355.307 + 355.3205 355.334 355.3475 355.361 355.3745 355.388 + 355.4015 355.415 355.4285 355.442 355.4555 355.469 + 355.4825 355.496 355.5095 355.523 355.5365 355.55 + 355.5635 355.577 355.5905 355.604 355.6175 355.631 + 355.6445 355.658 355.6715 355.685 355.6985 355.712 + 355.7255 355.739 355.7525 355.766 355.7795 355.793 + 355.8065 355.82 355.8335 355.847 355.8605 355.874 + 355.8875 355.901 355.9145 355.928 355.9415 355.955 + 355.9685 355.982 355.9955 356.009 356.0225 356.036 + 356.0495 356.063 356.0765 356.09 356.1035 356.117 + 356.1305 356.144 356.1575 356.171 356.1845 356.198 + 356.2115 356.225 356.2385 356.252 356.2655 356.279 + 356.2925 356.306 356.3195 356.333 356.3465 356.36 + 356.3735 356.387 356.4005 356.414 356.4275 356.441 + 356.4545 356.468 356.4815 356.495 356.5085 356.522 + 356.5355 356.549 356.5625 356.576 356.5895 356.603 + 356.6165 356.63 356.6435 356.657 356.6705 356.684 + 356.6975 356.711 356.7245 356.738 356.7515 356.765 + 356.7785 356.792 356.8055 356.819 356.8325 356.846 + 356.8595 356.873 356.8865 356.9 356.9135 356.927 + 356.9405 356.954 356.9675 356.981 356.9945 357.008 + 357.0215 357.035 357.0485 357.062 357.0755 357.089 + 357.1025 357.116 357.1295 357.143 357.1565 357.17 + 357.1835 357.197 357.2105 357.224 357.2375 357.251 + 357.2645 357.278 357.2915 357.305 357.3185 357.332 + 357.3455 357.359 357.3725 357.386 357.3995 357.413 + 357.4265 357.44 357.4535 357.467 357.4805 357.494 + 357.5075 357.521 357.5345 357.548 357.5615 357.575 + 357.5885 357.602 357.6155 357.629 357.6425 357.656 + 357.6695 357.683 357.6965 357.71 357.7235 357.737 + 357.7505 357.764 357.7775 357.791 357.8045 357.818 + 357.8315 357.845 357.8585 357.872 357.8855 357.899 + 357.9125 357.926 357.9395 357.953 357.9665 357.98 + 357.9935 358.007 358.0205 358.034 358.0475 358.061 + 358.0745 358.088 358.1015 358.115 358.1285 358.142 + 358.1555 358.169 358.1825 358.196 358.2095 358.223 + 358.2365 358.25 358.2635 358.277 358.2905 358.304 + 358.3175 358.331 358.3445 358.358 358.3715 358.385 + 358.3985 358.412 358.4255 358.439 358.4525 358.466 + 358.4795 358.493 358.5065 358.52 358.5335 358.547 + 358.5605 358.574 358.5875 358.601 358.6145 358.628 + 358.6415 358.655 358.6685 358.682 358.6955 358.709 + 358.7225 358.736 358.7495 358.763 358.7765 358.79 + 358.8035 358.817 358.8305 358.844 358.8575 358.871 + 358.8845 358.898 358.9115 358.925 358.9385 358.952 + 358.9655 358.979 358.9925 359.006 359.0195 359.033 + 359.0465 359.06 359.0735 359.087 359.1005 359.114 + 359.1275 359.141 359.1545 359.168 359.1815 359.195 + 359.2085 359.222 359.2355 359.249 359.2625 359.276 + 359.2895 359.303 359.3165 359.33 359.3435 359.357 + 359.3705 359.384 359.3975 359.411 359.4245 359.438 + 359.4515 359.465 359.4785 359.492 359.5055 359.519 + 359.5325 359.546 359.5595 359.573 359.5865 359.6 + 359.6135 359.627 359.6405 359.654 359.6675 359.681 + 359.6945 359.708 359.7215 359.735 359.7485 359.762 + 359.7755 359.789 359.8025 359.816 359.8295 359.843 + 359.8565 359.87 359.8835 359.897 359.9105 359.924 + 359.9375 359.951 359.9645 359.978 359.9915 360.005 + 360.0185 360.032 360.0455 360.059 360.0725 360.086 + 360.0995 360.113 360.1265 360.14 360.1535 360.167 + 360.1805 360.194 360.2075 360.221 360.2345 360.248 + 360.2615 360.275 360.2885 360.302 360.3155 360.329 + 360.3425 360.356 360.3695 360.383 360.3965 360.41 + 360.4235 360.437 360.4505 360.464 360.4775 360.491 + 360.5045 360.518 360.5315 360.545 360.5585 360.572 + 360.5855 360.599 360.6125 360.626 360.6395 360.653 + 360.6665 360.68 360.6935 360.707 360.7205 360.734 + 360.7475 360.761 360.7745 360.788 360.8015 360.815 + 360.8285 360.842 360.8555 360.869 360.8825 360.896 + 360.9095 360.923 360.9365 360.95 360.9635 360.977 + 360.9905 361.004 361.0175 361.031 361.0445 361.058 + 361.0715 361.085 361.0985 361.112 361.1255 361.139 + 361.1525 361.166 361.1795 361.193 361.2065 361.22 + 361.2335 361.247 361.2605 361.274 361.2875 361.301 + 361.3145 361.328 361.3415 361.355 361.3685 361.382 + 361.3955 361.409 361.4225 361.436 361.4495 361.463 + 361.4765 361.49 361.5035 361.517 361.5305 361.544 + 361.5575 361.571 361.5845 361.598 361.6115 361.625 + 361.6385 361.652 361.6655 361.679 361.6925 361.706 + 361.7195 361.733 361.7465 361.76 361.7735 361.787 + 361.8005 361.814 361.8275 361.841 361.8545 361.868 + 361.8815 361.895 361.9085 361.922 361.9355 361.949 + 361.9625 361.976 361.9895 362.003 362.0165 362.03 + 362.0435 362.057 362.0705 362.084 362.0975 362.111 + 362.1245 362.138 362.1515 362.165 362.1785 362.192 + 362.2055 362.219 362.2325 362.246 362.2595 362.273 + 362.2865 362.3 362.3135 362.327 362.3405 362.354 + 362.3675 362.381 362.3945 362.408 362.4215 362.435 + 362.4485 362.462 362.4755 362.489 362.5025 362.516 + 362.5295 362.543 362.5565 362.57 362.5835 362.597 + 362.6105 362.624 362.6375 362.651 362.6645 362.678 + 362.6915 362.705 362.7185 362.732 362.7455 362.759 + 362.7725 362.786 362.7995 362.813 362.8265 362.84 + 362.8535 362.867 362.8805 362.894 362.9075 362.921 + 362.9345 362.948 362.9615 362.975 362.9885 363.002 + 363.0155 363.029 363.0425 363.056 363.0695 363.083 + 363.0965 363.11 363.1235 363.137 363.1505 363.164 + 363.1775 363.191 363.2045 363.218 363.2315 363.245 + 363.2585 363.272 363.2855 363.299 363.3125 363.3265 + 363.34103 363.35614 363.37177 363.38803 363.40488 363.42236 + 363.4405 363.45932 363.47888 363.49915 363.52017 363.54202 + 363.56467 363.58817 363.61255 363.63788 363.66412 363.69138 + 363.71967 363.749 363.785 363.821 363.857 363.893 + 363.929 363.965 364.001 364.037 364.073 364.109 + 364.145 364.181 364.217 364.253 364.289 364.325 + 364.361 364.397 364.433 364.469 364.505 364.541 + 364.577 364.613 364.649 364.685 364.721 364.757 + 364.793 364.829 364.865 364.901 364.937 364.973 + 365.009 365.045 365.081 365.117 365.153 365.189 ] + x_lower_bound: [ 353.0345 353.0705 353.1065 353.1425 353.1785 353.2145 + 353.2505 353.2865 353.3225 353.3585 353.3945 353.4305 + 353.4665 353.5025 353.5385 353.5745 353.6105 353.6465 + 353.6825 353.7185 353.7545 353.7905 353.8265 353.8625 + 353.8985 353.9345 353.9705 354.0065 354.0425 354.0785 + 354.1145 354.1505 354.1865 354.2225 354.2585 354.2945 + 354.3305 354.3665 354.4025 354.4385 354.4745 354.50717 + 354.53598 354.56375 354.5905 354.61627 354.64114 354.66507 + 354.68817 354.7104 354.73184 354.7525 354.7724 354.7916 + 354.81006 354.82788 354.84506 354.8616 354.87753 354.8929 + 354.9077 354.922 354.93576 354.94925 354.96274 354.97626 + 354.98975 355.00323 355.01675 355.03024 355.04376 355.05725 + 355.07074 355.08426 355.09775 355.11124 355.12476 355.13824 + 355.15176 355.16525 355.17874 355.19226 355.20575 355.21924 + 355.23276 355.24625 355.25974 355.27325 355.28674 355.30026 + 355.31375 355.32724 355.34076 355.35425 355.36774 355.38126 + 355.39474 355.40826 355.42175 355.43524 355.44876 355.46225 + 355.47574 355.48926 355.50275 355.51624 355.52975 355.54324 + 355.55676 355.57025 355.58374 355.59726 355.61075 355.62424 + 355.63776 355.65125 355.66476 355.67825 355.69174 355.70526 + 355.71875 355.73224 355.74576 355.75925 355.77274 355.78625 + 355.79974 355.81326 355.82675 355.84024 355.85376 355.86725 + 355.88074 355.89426 355.90775 355.92126 355.93475 355.94824 + 355.96176 355.97525 355.98874 356.00226 356.01575 356.02924 + 356.04276 356.05624 356.06976 356.08325 356.09674 356.11026 + 356.12375 356.13724 356.15076 356.16425 356.17776 356.19125 + 356.20474 356.21826 356.23175 356.24524 356.25876 356.27225 + 356.28574 356.29926 356.31274 356.32626 356.33975 356.35324 + 356.36676 356.38025 356.39374 356.40726 356.42075 356.43427 + 356.44775 356.46124 356.47476 356.48825 356.50174 356.51526 + 356.52875 356.54224 356.55576 356.56924 356.58276 356.59625 + 356.60974 356.62326 356.63675 356.65024 356.66376 356.67725 + 356.69073 356.70425 356.71774 356.73126 356.74475 356.75824 + 356.77176 356.78525 356.79874 356.81226 356.82574 356.83926 + 356.85275 356.86624 356.87976 356.89325 356.90674 356.92026 + 356.93375 356.94724 356.96075 356.97424 356.98776 357.00125 + 357.01474 357.02826 357.04175 357.05524 357.06876 357.08224 + 357.09576 357.10925 357.12274 357.13626 357.14975 357.16324 + 357.17676 357.19025 357.20374 357.21725 357.23074 357.24426 + 357.25775 357.27124 357.28476 357.29825 357.31174 357.32526 + 357.33875 357.35226 357.36575 357.37924 357.39276 357.40625 + 357.41974 357.43326 357.44675 357.46024 357.47375 357.48724 + 357.50076 357.51425 357.52774 357.54126 357.55475 357.56824 + 357.58176 357.59525 357.60876 357.62225 357.63574 357.64926 + 357.66275 357.67624 357.68976 357.70325 357.71674 357.73026 + 357.74374 357.75726 357.77075 357.78424 357.79776 357.81125 + 357.82474 357.83826 357.85175 357.86526 357.87875 357.89224 + 357.90576 357.91925 357.93274 357.94626 357.95975 357.97324 + 357.98676 358.00024 358.01376 358.02725 358.04074 358.05426 + 358.06775 358.08124 358.09476 358.10825 358.12177 358.13525 + 358.14874 358.16226 358.17575 358.18924 358.20276 358.21625 + 358.22974 358.24326 358.25674 358.27026 358.28375 358.29724 + 358.31076 358.32425 358.33774 358.35126 358.36475 358.37823 + 358.39175 358.40524 358.41876 358.43225 358.44574 358.45926 + 358.47275 358.48624 358.49976 358.51324 358.52676 358.54025 + 358.55374 358.56726 358.58075 358.59424 358.60776 358.62125 + 358.63474 358.64825 358.66174 358.67526 358.68875 358.70224 + 358.71576 358.72925 358.74274 358.75626 358.76974 358.78326 + 358.79675 358.81024 358.82376 358.83725 358.85074 358.86426 + 358.87775 358.89124 358.90475 358.91824 358.93176 358.94525 + 358.95874 358.97226 358.98575 358.99924 359.01276 359.02625 + 359.03976 359.05325 359.06674 359.08026 359.09375 359.10724 + 359.12076 359.13425 359.14774 359.16125 359.17474 359.18826 + 359.20175 359.21524 359.22876 359.24225 359.25574 359.26926 + 359.28275 359.29626 359.30975 359.32324 359.33676 359.35025 + 359.36374 359.37726 359.39075 359.40424 359.41776 359.43124 + 359.44476 359.45825 359.47174 359.48526 359.49875 359.51224 + 359.52576 359.53925 359.55276 359.56625 359.57974 359.59326 + 359.60675 359.62024 359.63376 359.64725 359.66074 359.67426 + 359.68774 359.70126 359.71475 359.72824 359.74176 359.75525 + 359.76874 359.78226 359.79575 359.80927 359.82275 359.83624 + 359.84976 359.86325 359.87674 359.89026 359.90375 359.91724 + 359.93076 359.94424 359.95776 359.97125 359.98474 359.99826 + 360.01175 360.02524 360.03876 360.05225 360.06573 360.07925 + 360.09274 360.10626 360.11975 360.13324 360.14676 360.16025 + 360.17374 360.18726 360.20074 360.21426 360.22775 360.24124 + 360.25476 360.26825 360.28174 360.29526 360.30875 360.32224 + 360.33575 360.34924 360.36276 360.37625 360.38974 360.40326 + 360.41675 360.43024 360.44376 360.45724 360.47076 360.48425 + 360.49774 360.51126 360.52475 360.53824 360.55176 360.56525 + 360.57874 360.59225 360.60574 360.61926 360.63275 360.64624 + 360.65976 360.67325 360.68674 360.70026 360.71375 360.72726 + 360.74075 360.75424 360.76776 360.78125 360.79474 360.80826 + 360.82175 360.83524 360.84875 360.86224 360.87576 360.88925 + 360.90274 360.91626 360.92975 360.94324 360.95676 360.97025 + 360.98376 360.99725 361.01074 361.02426 361.03775 361.05124 + 361.06476 361.07825 361.09174 361.10526 361.11874 361.13226 + 361.14575 361.15924 361.17276 361.18625 361.19974 361.21326 + 361.22675 361.24026 361.25375 361.26724 361.28076 361.29425 + 361.30774 361.32126 361.33475 361.34824 361.36176 361.37524 + 361.38876 361.40225 361.41574 361.42926 361.44275 361.45624 + 361.46976 361.48325 361.49677 361.51025 361.52374 361.53726 + 361.55075 361.56424 361.57776 361.59125 361.60474 361.61826 + 361.63174 361.64526 361.65875 361.67224 361.68576 361.69925 + 361.71274 361.72626 361.73975 361.75323 361.76675 361.78024 + 361.79376 361.80725 361.82074 361.83426 361.84775 361.86124 + 361.87476 361.88824 361.90176 361.91525 361.92874 361.94226 + 361.95575 361.96924 361.98276 361.99625 362.00974 362.02325 + 362.03674 362.05026 362.06375 362.07724 362.09076 362.10425 + 362.11774 362.13126 362.14474 362.15826 362.17175 362.18524 + 362.19876 362.21225 362.22574 362.23926 362.25275 362.26624 + 362.27975 362.29324 362.30676 362.32025 362.33374 362.34726 + 362.36075 362.37424 362.38776 362.40125 362.41476 362.42825 + 362.44174 362.45526 362.46875 362.48224 362.49576 362.50925 + 362.52274 362.53625 362.54974 362.56326 362.57675 362.59024 + 362.60376 362.61725 362.63074 362.64426 362.65775 362.67126 + 362.68475 362.69824 362.71176 362.72525 362.73874 362.75226 + 362.76575 362.77924 362.79276 362.80624 362.81976 362.83325 + 362.84674 362.86026 362.87375 362.88724 362.90076 362.91425 + 362.92776 362.94125 362.95474 362.96826 362.98175 362.99524 + 363.00876 363.02225 363.03574 363.04926 363.06274 363.07626 + 363.08975 363.10324 363.11676 363.13025 363.14374 363.15726 + 363.17075 363.18427 363.19775 363.21124 363.22476 363.23825 + 363.25174 363.26526 363.27875 363.29224 363.30576 363.31952 + 363.33377 363.34857 363.36395 363.3799 363.39645 363.4136 + 363.43143 363.44992 363.46912 363.489 363.50967 363.5311 + 363.55334 363.57642 363.60037 363.6252 363.651 363.67776 + 363.7055 363.7343 363.767 363.803 363.839 363.875 + 363.911 363.947 363.983 364.019 364.055 364.091 + 364.127 364.163 364.199 364.235 364.271 364.307 + 364.343 364.379 364.415 364.451 364.487 364.523 + 364.559 364.595 364.631 364.667 364.703 364.739 + 364.775 364.811 364.847 364.883 364.919 364.955 + 364.991 365.027 365.063 365.099 365.135 365.171 ] + x_upper_bound: [ 353.0705 353.1065 353.1425 353.1785 353.2145 353.2505 + 353.2865 353.3225 353.3585 353.3945 353.4305 353.4665 + 353.5025 353.5385 353.5745 353.6105 353.6465 353.6825 + 353.7185 353.7545 353.7905 353.8265 353.8625 353.8985 + 353.9345 353.9705 354.0065 354.0425 354.0785 354.1145 + 354.1505 354.1865 354.2225 354.2585 354.2945 354.3305 + 354.3665 354.4025 354.4385 354.4745 354.50717 354.53598 + 354.56375 354.5905 354.61627 354.64114 354.66507 354.68817 + 354.7104 354.73184 354.7525 354.7724 354.7916 354.81006 + 354.82788 354.84506 354.8616 354.87753 354.8929 354.9077 + 354.922 354.93576 354.94925 354.96274 354.97626 354.98975 + 355.00323 355.01675 355.03024 355.04376 355.05725 355.07074 + 355.08426 355.09775 355.11124 355.12476 355.13824 355.15176 + 355.16525 355.17874 355.19226 355.20575 355.21924 355.23276 + 355.24625 355.25974 355.27325 355.28674 355.30026 355.31375 + 355.32724 355.34076 355.35425 355.36774 355.38126 355.39474 + 355.40826 355.42175 355.43524 355.44876 355.46225 355.47574 + 355.48926 355.50275 355.51624 355.52975 355.54324 355.55676 + 355.57025 355.58374 355.59726 355.61075 355.62424 355.63776 + 355.65125 355.66476 355.67825 355.69174 355.70526 355.71875 + 355.73224 355.74576 355.75925 355.77274 355.78625 355.79974 + 355.81326 355.82675 355.84024 355.85376 355.86725 355.88074 + 355.89426 355.90775 355.92126 355.93475 355.94824 355.96176 + 355.97525 355.98874 356.00226 356.01575 356.02924 356.04276 + 356.05624 356.06976 356.08325 356.09674 356.11026 356.12375 + 356.13724 356.15076 356.16425 356.17776 356.19125 356.20474 + 356.21826 356.23175 356.24524 356.25876 356.27225 356.28574 + 356.29926 356.31274 356.32626 356.33975 356.35324 356.36676 + 356.38025 356.39374 356.40726 356.42075 356.43427 356.44775 + 356.46124 356.47476 356.48825 356.50174 356.51526 356.52875 + 356.54224 356.55576 356.56924 356.58276 356.59625 356.60974 + 356.62326 356.63675 356.65024 356.66376 356.67725 356.69073 + 356.70425 356.71774 356.73126 356.74475 356.75824 356.77176 + 356.78525 356.79874 356.81226 356.82574 356.83926 356.85275 + 356.86624 356.87976 356.89325 356.90674 356.92026 356.93375 + 356.94724 356.96075 356.97424 356.98776 357.00125 357.01474 + 357.02826 357.04175 357.05524 357.06876 357.08224 357.09576 + 357.10925 357.12274 357.13626 357.14975 357.16324 357.17676 + 357.19025 357.20374 357.21725 357.23074 357.24426 357.25775 + 357.27124 357.28476 357.29825 357.31174 357.32526 357.33875 + 357.35226 357.36575 357.37924 357.39276 357.40625 357.41974 + 357.43326 357.44675 357.46024 357.47375 357.48724 357.50076 + 357.51425 357.52774 357.54126 357.55475 357.56824 357.58176 + 357.59525 357.60876 357.62225 357.63574 357.64926 357.66275 + 357.67624 357.68976 357.70325 357.71674 357.73026 357.74374 + 357.75726 357.77075 357.78424 357.79776 357.81125 357.82474 + 357.83826 357.85175 357.86526 357.87875 357.89224 357.90576 + 357.91925 357.93274 357.94626 357.95975 357.97324 357.98676 + 358.00024 358.01376 358.02725 358.04074 358.05426 358.06775 + 358.08124 358.09476 358.10825 358.12177 358.13525 358.14874 + 358.16226 358.17575 358.18924 358.20276 358.21625 358.22974 + 358.24326 358.25674 358.27026 358.28375 358.29724 358.31076 + 358.32425 358.33774 358.35126 358.36475 358.37823 358.39175 + 358.40524 358.41876 358.43225 358.44574 358.45926 358.47275 + 358.48624 358.49976 358.51324 358.52676 358.54025 358.55374 + 358.56726 358.58075 358.59424 358.60776 358.62125 358.63474 + 358.64825 358.66174 358.67526 358.68875 358.70224 358.71576 + 358.72925 358.74274 358.75626 358.76974 358.78326 358.79675 + 358.81024 358.82376 358.83725 358.85074 358.86426 358.87775 + 358.89124 358.90475 358.91824 358.93176 358.94525 358.95874 + 358.97226 358.98575 358.99924 359.01276 359.02625 359.03976 + 359.05325 359.06674 359.08026 359.09375 359.10724 359.12076 + 359.13425 359.14774 359.16125 359.17474 359.18826 359.20175 + 359.21524 359.22876 359.24225 359.25574 359.26926 359.28275 + 359.29626 359.30975 359.32324 359.33676 359.35025 359.36374 + 359.37726 359.39075 359.40424 359.41776 359.43124 359.44476 + 359.45825 359.47174 359.48526 359.49875 359.51224 359.52576 + 359.53925 359.55276 359.56625 359.57974 359.59326 359.60675 + 359.62024 359.63376 359.64725 359.66074 359.67426 359.68774 + 359.70126 359.71475 359.72824 359.74176 359.75525 359.76874 + 359.78226 359.79575 359.80927 359.82275 359.83624 359.84976 + 359.86325 359.87674 359.89026 359.90375 359.91724 359.93076 + 359.94424 359.95776 359.97125 359.98474 359.99826 360.01175 + 360.02524 360.03876 360.05225 360.06573 360.07925 360.09274 + 360.10626 360.11975 360.13324 360.14676 360.16025 360.17374 + 360.18726 360.20074 360.21426 360.22775 360.24124 360.25476 + 360.26825 360.28174 360.29526 360.30875 360.32224 360.33575 + 360.34924 360.36276 360.37625 360.38974 360.40326 360.41675 + 360.43024 360.44376 360.45724 360.47076 360.48425 360.49774 + 360.51126 360.52475 360.53824 360.55176 360.56525 360.57874 + 360.59225 360.60574 360.61926 360.63275 360.64624 360.65976 + 360.67325 360.68674 360.70026 360.71375 360.72726 360.74075 + 360.75424 360.76776 360.78125 360.79474 360.80826 360.82175 + 360.83524 360.84875 360.86224 360.87576 360.88925 360.90274 + 360.91626 360.92975 360.94324 360.95676 360.97025 360.98376 + 360.99725 361.01074 361.02426 361.03775 361.05124 361.06476 + 361.07825 361.09174 361.10526 361.11874 361.13226 361.14575 + 361.15924 361.17276 361.18625 361.19974 361.21326 361.22675 + 361.24026 361.25375 361.26724 361.28076 361.29425 361.30774 + 361.32126 361.33475 361.34824 361.36176 361.37524 361.38876 + 361.40225 361.41574 361.42926 361.44275 361.45624 361.46976 + 361.48325 361.49677 361.51025 361.52374 361.53726 361.55075 + 361.56424 361.57776 361.59125 361.60474 361.61826 361.63174 + 361.64526 361.65875 361.67224 361.68576 361.69925 361.71274 + 361.72626 361.73975 361.75323 361.76675 361.78024 361.79376 + 361.80725 361.82074 361.83426 361.84775 361.86124 361.87476 + 361.88824 361.90176 361.91525 361.92874 361.94226 361.95575 + 361.96924 361.98276 361.99625 362.00974 362.02325 362.03674 + 362.05026 362.06375 362.07724 362.09076 362.10425 362.11774 + 362.13126 362.14474 362.15826 362.17175 362.18524 362.19876 + 362.21225 362.22574 362.23926 362.25275 362.26624 362.27975 + 362.29324 362.30676 362.32025 362.33374 362.34726 362.36075 + 362.37424 362.38776 362.40125 362.41476 362.42825 362.44174 + 362.45526 362.46875 362.48224 362.49576 362.50925 362.52274 + 362.53625 362.54974 362.56326 362.57675 362.59024 362.60376 + 362.61725 362.63074 362.64426 362.65775 362.67126 362.68475 + 362.69824 362.71176 362.72525 362.73874 362.75226 362.76575 + 362.77924 362.79276 362.80624 362.81976 362.83325 362.84674 + 362.86026 362.87375 362.88724 362.90076 362.91425 362.92776 + 362.94125 362.95474 362.96826 362.98175 362.99524 363.00876 + 363.02225 363.03574 363.04926 363.06274 363.07626 363.08975 + 363.10324 363.11676 363.13025 363.14374 363.15726 363.17075 + 363.18427 363.19775 363.21124 363.22476 363.23825 363.25174 + 363.26526 363.27875 363.29224 363.30576 363.31952 363.33377 + 363.34857 363.36395 363.3799 363.39645 363.4136 363.43143 + 363.44992 363.46912 363.489 363.50967 363.5311 363.55334 + 363.57642 363.60037 363.6252 363.651 363.67776 363.7055 + 363.7343 363.767 363.803 363.839 363.875 363.911 + 363.947 363.983 364.019 364.055 364.091 364.127 + 364.163 364.199 364.235 364.271 364.307 364.343 + 364.379 364.415 364.451 364.487 364.523 364.559 + 364.595 364.631 364.667 364.703 364.739 364.775 + 364.811 364.847 364.883 364.919 364.955 364.991 + 365.027 365.063 365.099 365.135 365.171 365.207 ] y: [ -5.59320021e+00 -5.55719995e+00 -5.52120018e+00 -5.48519993e+00 -5.44920015e+00 -5.41319990e+00 -5.37720013e+00 -5.34119987e+00 -5.30520010e+00 -5.26919985e+00 -5.23320007e+00 -5.19719982e+00 @@ -2464,453 +2314,378 @@ [ 102198. 102205. 102212. ..., 101691. 101664. 101661.] [ 102204. 102211. 102218. ..., 101693. 101673. 101668.] [ 102210. 102217. 102225. ..., 101705. 101682. 101675.]] - x: [ 353.05249023 353.08850098 353.12451172 353.16049194 353.19650269 - 353.23251343 353.26849365 353.30450439 353.34051514 353.37649536 - 353.4125061 353.44848633 353.48449707 353.52050781 353.55648804 - 353.59249878 353.62850952 353.66448975 353.70050049 353.73651123 - 353.77249146 353.8085022 353.84451294 353.88049316 353.91650391 - 353.95251465 353.98849487 354.02450562 354.06048584 354.09649658 - 354.13250732 354.16848755 354.20449829 354.24050903 354.27648926 - 354.3125 354.34851074 354.38449097 354.42050171 354.45651245 - 354.49249268 354.52185059 354.55010986 354.57736206 354.6036377 - 354.62893677 354.65332031 354.67684937 354.69949341 354.72131348 - 354.74234009 354.76263428 354.78216553 354.80099487 354.81915283 - 354.8366394 354.85348511 354.86972046 354.88537598 354.90045166 - 354.91497803 354.9289856 354.94250488 354.95599365 354.96951294 - 354.98300171 354.99649048 355.01000977 355.02349854 355.0369873 - 355.05050659 355.06399536 355.07751465 355.09100342 355.10449219 - 355.11801147 355.13150024 355.14498901 355.1585083 355.17199707 - 355.18548584 355.19900513 355.2124939 355.22601318 355.23950195 - 355.25299072 355.26651001 355.27999878 355.29348755 355.30700684 - 355.32049561 355.33401489 355.34750366 355.36099243 355.37451172 - 355.38800049 355.40148926 355.41500854 355.42849731 355.44198608 - 355.45550537 355.46899414 355.48251343 355.4960022 355.50949097 - 355.52301025 355.53649902 355.54998779 355.56350708 355.57699585 - 355.59051514 355.60400391 355.61749268 355.63101196 355.64450073 - 355.6579895 355.67150879 355.68499756 355.69848633 355.71200562 - 355.72549438 355.73901367 355.75250244 355.76599121 355.7795105 - 355.79299927 355.80648804 355.82000732 355.83349609 355.84698486 - 355.86050415 355.87399292 355.88751221 355.90100098 355.91448975 - 355.92800903 355.9414978 355.95498657 355.96850586 355.98199463 - 355.99551392 356.00900269 356.02249146 356.03601074 356.04949951 - 356.06298828 356.07650757 356.08999634 356.10348511 356.11700439 - 356.13049316 356.14401245 356.15750122 356.17098999 356.18450928 - 356.19799805 356.21148682 356.2250061 356.23849487 356.25201416 - 356.26550293 356.2789917 356.29251099 356.30599976 356.31948853 - 356.33300781 356.34649658 356.35998535 356.37350464 356.38699341 - 356.4005127 356.41400146 356.42749023 356.44100952 356.45449829 - 356.46798706 356.48150635 356.49499512 356.5085144 356.52200317 - 356.53549194 356.54901123 356.5625 356.57598877 356.58950806 - 356.60299683 356.6164856 356.63000488 356.64349365 356.65701294 - 356.67050171 356.68399048 356.69750977 356.71099854 356.7244873 - 356.73800659 356.75149536 356.76501465 356.77850342 356.79199219 - 356.80551147 356.81900024 356.83248901 356.8460083 356.85949707 - 356.87298584 356.88650513 356.8999939 356.91351318 356.92700195 - 356.94049072 356.95401001 356.96749878 356.98098755 356.99450684 - 357.00799561 357.02151489 357.03500366 357.04849243 357.06201172 - 357.07550049 357.08898926 357.10250854 357.11599731 357.12948608 - 357.14300537 357.15649414 357.17001343 357.1835022 357.19699097 - 357.21051025 357.22399902 357.23748779 357.25100708 357.26449585 - 357.27801514 357.29150391 357.30499268 357.31851196 357.33200073 - 357.3454895 357.35900879 357.37249756 357.38598633 357.39950562 - 357.41299438 357.42651367 357.44000244 357.45349121 357.4670105 - 357.48049927 357.49398804 357.50750732 357.52099609 357.53448486 - 357.54800415 357.56149292 357.57501221 357.58850098 357.60198975 - 357.61550903 357.6289978 357.64248657 357.65600586 357.66949463 - 357.68301392 357.69650269 357.70999146 357.72351074 357.73699951 - 357.75048828 357.76400757 357.77749634 357.79098511 357.80450439 - 357.81799316 357.83151245 357.84500122 357.85848999 357.87200928 - 357.88549805 357.89898682 357.9125061 357.92599487 357.93951416 - 357.95300293 357.9664917 357.98001099 357.99349976 358.00698853 - 358.02050781 358.03399658 358.04748535 358.06100464 358.07449341 - 358.0880127 358.10150146 358.11499023 358.12850952 358.14199829 - 358.15548706 358.16900635 358.18249512 358.1960144 358.20950317 - 358.22299194 358.23651123 358.25 358.26348877 358.27700806 - 358.29049683 358.3039856 358.31750488 358.33099365 358.34451294 - 358.35800171 358.37149048 358.38500977 358.39849854 358.4119873 - 358.42550659 358.43899536 358.45251465 358.46600342 358.47949219 - 358.49301147 358.50650024 358.51998901 358.5335083 358.54699707 - 358.56048584 358.57400513 358.5874939 358.60101318 358.61450195 - 358.62799072 358.64151001 358.65499878 358.66848755 358.68200684 - 358.69549561 358.70901489 358.72250366 358.73599243 358.74951172 - 358.76300049 358.77648926 358.79000854 358.80349731 358.81698608 - 358.83050537 358.84399414 358.85751343 358.8710022 358.88449097 - 358.89801025 358.91149902 358.92498779 358.93850708 358.95199585 - 358.96551514 358.97900391 358.99249268 359.00601196 359.01950073 - 359.0329895 359.04650879 359.05999756 359.07348633 359.08700562 - 359.10049438 359.11401367 359.12750244 359.14099121 359.1545105 - 359.16799927 359.18148804 359.19500732 359.20849609 359.22198486 - 359.23550415 359.24899292 359.26251221 359.27600098 359.28948975 - 359.30300903 359.3164978 359.32998657 359.34350586 359.35699463 - 359.37051392 359.38400269 359.39749146 359.41101074 359.42449951 - 359.43798828 359.45150757 359.46499634 359.47848511 359.49200439 - 359.50549316 359.51901245 359.53250122 359.54598999 359.55950928 - 359.57299805 359.58648682 359.6000061 359.61349487 359.62701416 - 359.64050293 359.6539917 359.66751099 359.68099976 359.69448853 - 359.70800781 359.72149658 359.73498535 359.74850464 359.76199341 - 359.7755127 359.78900146 359.80249023 359.81600952 359.82949829 - 359.84298706 359.85650635 359.86999512 359.8835144 359.89700317 - 359.91049194 359.92401123 359.9375 359.95098877 359.96450806 - 359.97799683 359.9914856 360.00500488 360.01849365 360.03201294 - 360.04550171 360.05899048 360.07250977 360.08599854 360.0994873 - 360.11300659 360.12649536 360.14001465 360.15350342 360.16699219 - 360.18051147 360.19400024 360.20748901 360.2210083 360.23449707 - 360.24798584 360.26150513 360.2749939 360.28851318 360.30200195 - 360.31549072 360.32901001 360.34249878 360.35598755 360.36950684 - 360.38299561 360.39651489 360.41000366 360.42349243 360.43701172 - 360.45050049 360.46398926 360.47750854 360.49099731 360.50448608 - 360.51800537 360.53149414 360.54501343 360.5585022 360.57199097 - 360.58551025 360.59899902 360.61248779 360.62600708 360.63949585 - 360.65301514 360.66650391 360.67999268 360.69351196 360.70700073 - 360.7204895 360.73400879 360.74749756 360.76098633 360.77450562 - 360.78799438 360.80151367 360.81500244 360.82849121 360.8420105 - 360.85549927 360.86898804 360.88250732 360.89599609 360.90948486 - 360.92300415 360.93649292 360.95001221 360.96350098 360.97698975 - 360.99050903 361.0039978 361.01748657 361.03100586 361.04449463 - 361.05801392 361.07150269 361.08499146 361.09851074 361.11199951 - 361.12548828 361.13900757 361.15249634 361.16598511 361.17950439 - 361.19299316 361.20651245 361.22000122 361.23348999 361.24700928 - 361.26049805 361.27398682 361.2875061 361.30099487 361.31451416 - 361.32800293 361.3414917 361.35501099 361.36849976 361.38198853 - 361.39550781 361.40899658 361.42248535 361.43600464 361.44949341 - 361.4630127 361.47650146 361.48999023 361.50350952 361.51699829 - 361.53048706 361.54400635 361.55749512 361.5710144 361.58450317 - 361.59799194 361.61151123 361.625 361.63848877 361.65200806 - 361.66549683 361.6789856 361.69250488 361.70599365 361.71951294 - 361.73300171 361.74649048 361.76000977 361.77349854 361.7869873 - 361.80050659 361.81399536 361.82751465 361.84100342 361.85449219 - 361.86801147 361.88150024 361.89498901 361.9085083 361.92199707 - 361.93548584 361.94900513 361.9624939 361.97601318 361.98950195 - 362.00299072 362.01651001 362.02999878 362.04348755 362.05700684 - 362.07049561 362.08401489 362.09750366 362.11099243 362.12451172 - 362.13800049 362.15148926 362.16500854 362.17849731 362.19198608 - 362.20550537 362.21899414 362.23251343 362.2460022 362.25949097 - 362.27301025 362.28649902 362.29998779 362.31350708 362.32699585 - 362.34051514 362.35400391 362.36749268 362.38101196 362.39450073 - 362.4079895 362.42150879 362.43499756 362.44848633 362.46200562 - 362.47549438 362.48901367 362.50250244 362.51599121 362.5295105 - 362.54299927 362.55648804 362.57000732 362.58349609 362.59698486 - 362.61050415 362.62399292 362.63751221 362.65100098 362.66448975 - 362.67800903 362.6914978 362.70498657 362.71850586 362.73199463 - 362.74551392 362.75900269 362.77249146 362.78601074 362.79949951 - 362.81298828 362.82650757 362.83999634 362.85348511 362.86700439 - 362.88049316 362.89401245 362.90750122 362.92098999 362.93450928 - 362.94799805 362.96148682 362.9750061 362.98849487 363.00201416 - 363.01550293 363.0289917 363.04251099 363.05599976 363.06948853 - 363.08300781 363.09649658 363.10998535 363.12350464 363.13699341 - 363.1505127 363.16400146 363.17749023 363.19100952 363.20449829 - 363.21798706 363.23150635 363.24499512 363.2585144 363.27200317 - 363.28549194 363.29901123 363.3125 363.32650757 363.34103394 - 363.35614014 363.37176514 363.38803101 363.40487671 363.42236328 - 363.44049072 363.45932007 363.47888184 363.49914551 363.52017212 - 363.54202271 363.56466675 363.58816528 363.61254883 363.63787842 - 363.66412354 363.69137573 363.71966553 363.74899292 363.78500366 - 363.8210144 363.85699463 363.89300537 363.9289856 363.96499634 - 364.00100708 364.0369873 364.07299805 364.10900879 364.14498901 - 364.18099976 364.2170105 364.25299072 364.28900146 364.32501221 - 364.36099243 364.39700317 364.43301392 364.46899414 364.50500488 - 364.54098511 364.57699585 364.61300659 364.64898682 364.68499756 - 364.7210083 364.75698853 364.79299927 364.82901001 364.86499023 - 364.90100098 364.93701172 364.97299194 365.00900269 365.04501343 - 365.08099365 365.11700439 365.15301514 365.18899536] - x_lower_bound: [ 353.03448486 353.07049561 353.10650635 353.14248657 353.17849731 - 353.21450806 353.25048828 353.28649902 353.32250977 353.35848999 - 353.39450073 353.43051147 353.4664917 353.50250244 353.53851318 - 353.57449341 353.61050415 353.64651489 353.68249512 353.71850586 - 353.75448608 353.79049683 353.82650757 353.86248779 353.89849854 - 353.93450928 353.9704895 354.00650024 354.04251099 354.07849121 - 354.11450195 354.1505127 354.18649292 354.22250366 354.2585144 - 354.29449463 354.33050537 354.3664856 354.40249634 354.43850708 - 354.4744873 354.50717163 354.53598022 354.56375122 354.59051514 - 354.61627197 354.6411438 354.66506958 354.68817139 354.71038818 - 354.73184204 354.75250244 354.7723999 354.79159546 354.81005859 - 354.82788086 354.84506226 354.86160278 354.87753296 354.89291382 - 354.90771484 354.92199707 354.9357605 354.94924927 354.96273804 - 354.97625732 354.98974609 355.00323486 355.01675415 355.03024292 - 355.04376221 355.05725098 355.07073975 355.08425903 355.0977478 - 355.11123657 355.12475586 355.13824463 355.15176392 355.16525269 - 355.17874146 355.19226074 355.20574951 355.21923828 355.23275757 - 355.24624634 355.25973511 355.27325439 355.28674316 355.30026245 - 355.31375122 355.32723999 355.34075928 355.35424805 355.36773682 - 355.3812561 355.39474487 355.40826416 355.42175293 355.4352417 - 355.44876099 355.46224976 355.47573853 355.48925781 355.50274658 - 355.51623535 355.52975464 355.54324341 355.5567627 355.57025146 - 355.58374023 355.59725952 355.61074829 355.62423706 355.63775635 - 355.65124512 355.6647644 355.67825317 355.69174194 355.70526123 - 355.71875 355.73223877 355.74575806 355.75924683 355.7727356 - 355.78625488 355.79974365 355.81326294 355.82675171 355.84024048 - 355.85375977 355.86724854 355.8807373 355.89425659 355.90774536 - 355.92126465 355.93475342 355.94824219 355.96176147 355.97525024 - 355.98873901 356.0022583 356.01574707 356.02923584 356.04275513 - 356.0562439 356.06976318 356.08325195 356.09674072 356.11026001 - 356.12374878 356.13723755 356.15075684 356.16424561 356.17776489 - 356.19125366 356.20474243 356.21826172 356.23175049 356.24523926 - 356.25875854 356.27224731 356.28573608 356.29925537 356.31274414 - 356.32626343 356.3397522 356.35324097 356.36676025 356.38024902 - 356.39373779 356.40725708 356.42074585 356.43426514 356.44775391 - 356.46124268 356.47476196 356.48825073 356.5017395 356.51525879 - 356.52874756 356.54223633 356.55575562 356.56924438 356.58276367 - 356.59625244 356.60974121 356.6232605 356.63674927 356.65023804 - 356.66375732 356.67724609 356.69073486 356.70425415 356.71774292 - 356.73126221 356.74475098 356.75823975 356.77175903 356.7852478 - 356.79873657 356.81225586 356.82574463 356.83926392 356.85275269 - 356.86624146 356.87976074 356.89324951 356.90673828 356.92025757 - 356.93374634 356.94723511 356.96075439 356.97424316 356.98776245 - 357.00125122 357.01473999 357.02825928 357.04174805 357.05523682 - 357.0687561 357.08224487 357.09576416 357.10925293 357.1227417 - 357.13626099 357.14974976 357.16323853 357.17675781 357.19024658 - 357.20373535 357.21725464 357.23074341 357.2442627 357.25775146 - 357.27124023 357.28475952 357.29824829 357.31173706 357.32525635 - 357.33874512 357.3522644 357.36575317 357.37924194 357.39276123 - 357.40625 357.41973877 357.43325806 357.44674683 357.4602356 - 357.47375488 357.48724365 357.50076294 357.51425171 357.52774048 - 357.54125977 357.55474854 357.5682373 357.58175659 357.59524536 - 357.60876465 357.62225342 357.63574219 357.64926147 357.66275024 - 357.67623901 357.6897583 357.70324707 357.71673584 357.73025513 - 357.7437439 357.75726318 357.77075195 357.78424072 357.79776001 - 357.81124878 357.82473755 357.83825684 357.85174561 357.86526489 - 357.87875366 357.89224243 357.90576172 357.91925049 357.93273926 - 357.94625854 357.95974731 357.97323608 357.98675537 358.00024414 - 358.01376343 358.0272522 358.04074097 358.05426025 358.06774902 - 358.08123779 358.09475708 358.10824585 358.12176514 358.13525391 - 358.14874268 358.16226196 358.17575073 358.1892395 358.20275879 - 358.21624756 358.22973633 358.24325562 358.25674438 358.27026367 - 358.28375244 358.29724121 358.3107605 358.32424927 358.33773804 - 358.35125732 358.36474609 358.37823486 358.39175415 358.40524292 - 358.41876221 358.43225098 358.44573975 358.45925903 358.4727478 - 358.48623657 358.49975586 358.51324463 358.52676392 358.54025269 - 358.55374146 358.56726074 358.58074951 358.59423828 358.60775757 - 358.62124634 358.63473511 358.64825439 358.66174316 358.67526245 - 358.68875122 358.70223999 358.71575928 358.72924805 358.74273682 - 358.7562561 358.76974487 358.78326416 358.79675293 358.8102417 - 358.82376099 358.83724976 358.85073853 358.86425781 358.87774658 - 358.89123535 358.90475464 358.91824341 358.9317627 358.94525146 - 358.95874023 358.97225952 358.98574829 358.99923706 359.01275635 - 359.02624512 359.0397644 359.05325317 359.06674194 359.08026123 - 359.09375 359.10723877 359.12075806 359.13424683 359.1477356 - 359.16125488 359.17474365 359.18826294 359.20175171 359.21524048 - 359.22875977 359.24224854 359.2557373 359.26925659 359.28274536 - 359.29626465 359.30975342 359.32324219 359.33676147 359.35025024 - 359.36373901 359.3772583 359.39074707 359.40423584 359.41775513 - 359.4312439 359.44476318 359.45825195 359.47174072 359.48526001 - 359.49874878 359.51223755 359.52575684 359.53924561 359.55276489 - 359.56625366 359.57974243 359.59326172 359.60675049 359.62023926 - 359.63375854 359.64724731 359.66073608 359.67425537 359.68774414 - 359.70126343 359.7147522 359.72824097 359.74176025 359.75524902 - 359.76873779 359.78225708 359.79574585 359.80926514 359.82275391 - 359.83624268 359.84976196 359.86325073 359.8767395 359.89025879 - 359.90374756 359.91723633 359.93075562 359.94424438 359.95776367 - 359.97125244 359.98474121 359.9982605 360.01174927 360.02523804 - 360.03875732 360.05224609 360.06573486 360.07925415 360.09274292 - 360.10626221 360.11975098 360.13323975 360.14675903 360.1602478 - 360.17373657 360.18725586 360.20074463 360.21426392 360.22775269 - 360.24124146 360.25476074 360.26824951 360.28173828 360.29525757 - 360.30874634 360.32223511 360.33575439 360.34924316 360.36276245 - 360.37625122 360.38973999 360.40325928 360.41674805 360.43023682 - 360.4437561 360.45724487 360.47076416 360.48425293 360.4977417 - 360.51126099 360.52474976 360.53823853 360.55175781 360.56524658 - 360.57873535 360.59225464 360.60574341 360.6192627 360.63275146 - 360.64624023 360.65975952 360.67324829 360.68673706 360.70025635 - 360.71374512 360.7272644 360.74075317 360.75424194 360.76776123 - 360.78125 360.79473877 360.80825806 360.82174683 360.8352356 - 360.84875488 360.86224365 360.87576294 360.88925171 360.90274048 - 360.91625977 360.92974854 360.9432373 360.95675659 360.97024536 - 360.98376465 360.99725342 361.01074219 361.02426147 361.03775024 - 361.05123901 361.0647583 361.07824707 361.09173584 361.10525513 - 361.1187439 361.13226318 361.14575195 361.15924072 361.17276001 - 361.18624878 361.19973755 361.21325684 361.22674561 361.24026489 - 361.25375366 361.26724243 361.28076172 361.29425049 361.30773926 - 361.32125854 361.33474731 361.34823608 361.36175537 361.37524414 - 361.38876343 361.4022522 361.41574097 361.42926025 361.44274902 - 361.45623779 361.46975708 361.48324585 361.49676514 361.51025391 - 361.52374268 361.53726196 361.55075073 361.5642395 361.57775879 - 361.59124756 361.60473633 361.61825562 361.63174438 361.64526367 - 361.65875244 361.67224121 361.6857605 361.69924927 361.71273804 - 361.72625732 361.73974609 361.75323486 361.76675415 361.78024292 - 361.79376221 361.80725098 361.82073975 361.83425903 361.8477478 - 361.86123657 361.87475586 361.88824463 361.90176392 361.91525269 - 361.92874146 361.94226074 361.95574951 361.96923828 361.98275757 - 361.99624634 362.00973511 362.02325439 362.03674316 362.05026245 - 362.06375122 362.07723999 362.09075928 362.10424805 362.11773682 - 362.1312561 362.14474487 362.15826416 362.17175293 362.1852417 - 362.19876099 362.21224976 362.22573853 362.23925781 362.25274658 - 362.26623535 362.27975464 362.29324341 362.3067627 362.32025146 - 362.33374023 362.34725952 362.36074829 362.37423706 362.38775635 - 362.40124512 362.4147644 362.42825317 362.44174194 362.45526123 - 362.46875 362.48223877 362.49575806 362.50924683 362.5227356 - 362.53625488 362.54974365 362.56326294 362.57675171 362.59024048 - 362.60375977 362.61724854 362.6307373 362.64425659 362.65774536 - 362.67126465 362.68475342 362.69824219 362.71176147 362.72525024 - 362.73873901 362.7522583 362.76574707 362.77923584 362.79275513 - 362.8062439 362.81976318 362.83325195 362.84674072 362.86026001 - 362.87374878 362.88723755 362.90075684 362.91424561 362.92776489 - 362.94125366 362.95474243 362.96826172 362.98175049 362.99523926 - 363.00875854 363.02224731 363.03573608 363.04925537 363.06274414 - 363.07626343 363.0897522 363.10324097 363.11676025 363.13024902 - 363.14373779 363.15725708 363.17074585 363.18426514 363.19775391 - 363.21124268 363.22476196 363.23825073 363.2517395 363.26525879 - 363.27874756 363.29223633 363.30575562 363.31951904 363.33377075 - 363.34857178 363.36395264 363.37991333 363.39645386 363.41360474 - 363.431427 363.44992065 363.46911621 363.48901367 363.50967407 - 363.53109741 363.55334473 363.57641602 363.60037231 363.62521362 - 363.65100098 363.67776489 363.70550537 363.73431396 363.76699829 - 363.80300903 363.83898926 363.875 363.91101074 363.94699097 - 363.98300171 364.01901245 364.05499268 364.09100342 364.12701416 - 364.16299438 364.19900513 364.23498535 364.27099609 364.30700684 - 364.34298706 364.3789978 364.41500854 364.45098877 364.48699951 - 364.52301025 364.55899048 364.59500122 364.63101196 364.66699219 - 364.70300293 364.73901367 364.7749939 364.81100464 364.84698486 - 364.88299561 364.91900635 364.95498657 364.99099731 365.02700806 - 365.06298828 365.09899902 365.13500977 365.17098999] - x_upper_bound: [ 353.07049561 353.10650635 353.14248657 353.17849731 353.21450806 - 353.25048828 353.28649902 353.32250977 353.35848999 353.39450073 - 353.43051147 353.4664917 353.50250244 353.53851318 353.57449341 - 353.61050415 353.64651489 353.68249512 353.71850586 353.75448608 - 353.79049683 353.82650757 353.86248779 353.89849854 353.93450928 - 353.9704895 354.00650024 354.04251099 354.07849121 354.11450195 - 354.1505127 354.18649292 354.22250366 354.2585144 354.29449463 - 354.33050537 354.3664856 354.40249634 354.43850708 354.4744873 - 354.50717163 354.53598022 354.56375122 354.59051514 354.61627197 - 354.6411438 354.66506958 354.68817139 354.71038818 354.73184204 - 354.75250244 354.7723999 354.79159546 354.81005859 354.82788086 - 354.84506226 354.86160278 354.87753296 354.89291382 354.90771484 - 354.92199707 354.9357605 354.94924927 354.96273804 354.97625732 - 354.98974609 355.00323486 355.01675415 355.03024292 355.04376221 - 355.05725098 355.07073975 355.08425903 355.0977478 355.11123657 - 355.12475586 355.13824463 355.15176392 355.16525269 355.17874146 - 355.19226074 355.20574951 355.21923828 355.23275757 355.24624634 - 355.25973511 355.27325439 355.28674316 355.30026245 355.31375122 - 355.32723999 355.34075928 355.35424805 355.36773682 355.3812561 - 355.39474487 355.40826416 355.42175293 355.4352417 355.44876099 - 355.46224976 355.47573853 355.48925781 355.50274658 355.51623535 - 355.52975464 355.54324341 355.5567627 355.57025146 355.58374023 - 355.59725952 355.61074829 355.62423706 355.63775635 355.65124512 - 355.6647644 355.67825317 355.69174194 355.70526123 355.71875 - 355.73223877 355.74575806 355.75924683 355.7727356 355.78625488 - 355.79974365 355.81326294 355.82675171 355.84024048 355.85375977 - 355.86724854 355.8807373 355.89425659 355.90774536 355.92126465 - 355.93475342 355.94824219 355.96176147 355.97525024 355.98873901 - 356.0022583 356.01574707 356.02923584 356.04275513 356.0562439 - 356.06976318 356.08325195 356.09674072 356.11026001 356.12374878 - 356.13723755 356.15075684 356.16424561 356.17776489 356.19125366 - 356.20474243 356.21826172 356.23175049 356.24523926 356.25875854 - 356.27224731 356.28573608 356.29925537 356.31274414 356.32626343 - 356.3397522 356.35324097 356.36676025 356.38024902 356.39373779 - 356.40725708 356.42074585 356.43426514 356.44775391 356.46124268 - 356.47476196 356.48825073 356.5017395 356.51525879 356.52874756 - 356.54223633 356.55575562 356.56924438 356.58276367 356.59625244 - 356.60974121 356.6232605 356.63674927 356.65023804 356.66375732 - 356.67724609 356.69073486 356.70425415 356.71774292 356.73126221 - 356.74475098 356.75823975 356.77175903 356.7852478 356.79873657 - 356.81225586 356.82574463 356.83926392 356.85275269 356.86624146 - 356.87976074 356.89324951 356.90673828 356.92025757 356.93374634 - 356.94723511 356.96075439 356.97424316 356.98776245 357.00125122 - 357.01473999 357.02825928 357.04174805 357.05523682 357.0687561 - 357.08224487 357.09576416 357.10925293 357.1227417 357.13626099 - 357.14974976 357.16323853 357.17675781 357.19024658 357.20373535 - 357.21725464 357.23074341 357.2442627 357.25775146 357.27124023 - 357.28475952 357.29824829 357.31173706 357.32525635 357.33874512 - 357.3522644 357.36575317 357.37924194 357.39276123 357.40625 - 357.41973877 357.43325806 357.44674683 357.4602356 357.47375488 - 357.48724365 357.50076294 357.51425171 357.52774048 357.54125977 - 357.55474854 357.5682373 357.58175659 357.59524536 357.60876465 - 357.62225342 357.63574219 357.64926147 357.66275024 357.67623901 - 357.6897583 357.70324707 357.71673584 357.73025513 357.7437439 - 357.75726318 357.77075195 357.78424072 357.79776001 357.81124878 - 357.82473755 357.83825684 357.85174561 357.86526489 357.87875366 - 357.89224243 357.90576172 357.91925049 357.93273926 357.94625854 - 357.95974731 357.97323608 357.98675537 358.00024414 358.01376343 - 358.0272522 358.04074097 358.05426025 358.06774902 358.08123779 - 358.09475708 358.10824585 358.12176514 358.13525391 358.14874268 - 358.16226196 358.17575073 358.1892395 358.20275879 358.21624756 - 358.22973633 358.24325562 358.25674438 358.27026367 358.28375244 - 358.29724121 358.3107605 358.32424927 358.33773804 358.35125732 - 358.36474609 358.37823486 358.39175415 358.40524292 358.41876221 - 358.43225098 358.44573975 358.45925903 358.4727478 358.48623657 - 358.49975586 358.51324463 358.52676392 358.54025269 358.55374146 - 358.56726074 358.58074951 358.59423828 358.60775757 358.62124634 - 358.63473511 358.64825439 358.66174316 358.67526245 358.68875122 - 358.70223999 358.71575928 358.72924805 358.74273682 358.7562561 - 358.76974487 358.78326416 358.79675293 358.8102417 358.82376099 - 358.83724976 358.85073853 358.86425781 358.87774658 358.89123535 - 358.90475464 358.91824341 358.9317627 358.94525146 358.95874023 - 358.97225952 358.98574829 358.99923706 359.01275635 359.02624512 - 359.0397644 359.05325317 359.06674194 359.08026123 359.09375 - 359.10723877 359.12075806 359.13424683 359.1477356 359.16125488 - 359.17474365 359.18826294 359.20175171 359.21524048 359.22875977 - 359.24224854 359.2557373 359.26925659 359.28274536 359.29626465 - 359.30975342 359.32324219 359.33676147 359.35025024 359.36373901 - 359.3772583 359.39074707 359.40423584 359.41775513 359.4312439 - 359.44476318 359.45825195 359.47174072 359.48526001 359.49874878 - 359.51223755 359.52575684 359.53924561 359.55276489 359.56625366 - 359.57974243 359.59326172 359.60675049 359.62023926 359.63375854 - 359.64724731 359.66073608 359.67425537 359.68774414 359.70126343 - 359.7147522 359.72824097 359.74176025 359.75524902 359.76873779 - 359.78225708 359.79574585 359.80926514 359.82275391 359.83624268 - 359.84976196 359.86325073 359.8767395 359.89025879 359.90374756 - 359.91723633 359.93075562 359.94424438 359.95776367 359.97125244 - 359.98474121 359.9982605 360.01174927 360.02523804 360.03875732 - 360.05224609 360.06573486 360.07925415 360.09274292 360.10626221 - 360.11975098 360.13323975 360.14675903 360.1602478 360.17373657 - 360.18725586 360.20074463 360.21426392 360.22775269 360.24124146 - 360.25476074 360.26824951 360.28173828 360.29525757 360.30874634 - 360.32223511 360.33575439 360.34924316 360.36276245 360.37625122 - 360.38973999 360.40325928 360.41674805 360.43023682 360.4437561 - 360.45724487 360.47076416 360.48425293 360.4977417 360.51126099 - 360.52474976 360.53823853 360.55175781 360.56524658 360.57873535 - 360.59225464 360.60574341 360.6192627 360.63275146 360.64624023 - 360.65975952 360.67324829 360.68673706 360.70025635 360.71374512 - 360.7272644 360.74075317 360.75424194 360.76776123 360.78125 - 360.79473877 360.80825806 360.82174683 360.8352356 360.84875488 - 360.86224365 360.87576294 360.88925171 360.90274048 360.91625977 - 360.92974854 360.9432373 360.95675659 360.97024536 360.98376465 - 360.99725342 361.01074219 361.02426147 361.03775024 361.05123901 - 361.0647583 361.07824707 361.09173584 361.10525513 361.1187439 - 361.13226318 361.14575195 361.15924072 361.17276001 361.18624878 - 361.19973755 361.21325684 361.22674561 361.24026489 361.25375366 - 361.26724243 361.28076172 361.29425049 361.30773926 361.32125854 - 361.33474731 361.34823608 361.36175537 361.37524414 361.38876343 - 361.4022522 361.41574097 361.42926025 361.44274902 361.45623779 - 361.46975708 361.48324585 361.49676514 361.51025391 361.52374268 - 361.53726196 361.55075073 361.5642395 361.57775879 361.59124756 - 361.60473633 361.61825562 361.63174438 361.64526367 361.65875244 - 361.67224121 361.6857605 361.69924927 361.71273804 361.72625732 - 361.73974609 361.75323486 361.76675415 361.78024292 361.79376221 - 361.80725098 361.82073975 361.83425903 361.8477478 361.86123657 - 361.87475586 361.88824463 361.90176392 361.91525269 361.92874146 - 361.94226074 361.95574951 361.96923828 361.98275757 361.99624634 - 362.00973511 362.02325439 362.03674316 362.05026245 362.06375122 - 362.07723999 362.09075928 362.10424805 362.11773682 362.1312561 - 362.14474487 362.15826416 362.17175293 362.1852417 362.19876099 - 362.21224976 362.22573853 362.23925781 362.25274658 362.26623535 - 362.27975464 362.29324341 362.3067627 362.32025146 362.33374023 - 362.34725952 362.36074829 362.37423706 362.38775635 362.40124512 - 362.4147644 362.42825317 362.44174194 362.45526123 362.46875 - 362.48223877 362.49575806 362.50924683 362.5227356 362.53625488 - 362.54974365 362.56326294 362.57675171 362.59024048 362.60375977 - 362.61724854 362.6307373 362.64425659 362.65774536 362.67126465 - 362.68475342 362.69824219 362.71176147 362.72525024 362.73873901 - 362.7522583 362.76574707 362.77923584 362.79275513 362.8062439 - 362.81976318 362.83325195 362.84674072 362.86026001 362.87374878 - 362.88723755 362.90075684 362.91424561 362.92776489 362.94125366 - 362.95474243 362.96826172 362.98175049 362.99523926 363.00875854 - 363.02224731 363.03573608 363.04925537 363.06274414 363.07626343 - 363.0897522 363.10324097 363.11676025 363.13024902 363.14373779 - 363.15725708 363.17074585 363.18426514 363.19775391 363.21124268 - 363.22476196 363.23825073 363.2517395 363.26525879 363.27874756 - 363.29223633 363.30575562 363.31951904 363.33377075 363.34857178 - 363.36395264 363.37991333 363.39645386 363.41360474 363.431427 - 363.44992065 363.46911621 363.48901367 363.50967407 363.53109741 - 363.55334473 363.57641602 363.60037231 363.62521362 363.65100098 - 363.67776489 363.70550537 363.73431396 363.76699829 363.80300903 - 363.83898926 363.875 363.91101074 363.94699097 363.98300171 - 364.01901245 364.05499268 364.09100342 364.12701416 364.16299438 - 364.19900513 364.23498535 364.27099609 364.30700684 364.34298706 - 364.3789978 364.41500854 364.45098877 364.48699951 364.52301025 - 364.55899048 364.59500122 364.63101196 364.66699219 364.70300293 - 364.73901367 364.7749939 364.81100464 364.84698486 364.88299561 - 364.91900635 364.95498657 364.99099731 365.02700806 365.06298828 - 365.09899902 365.13500977 365.17098999 365.20700073] + x: [ 353.0525 353.0885 353.1245 353.1605 353.1965 353.2325 + 353.2685 353.3045 353.3405 353.3765 353.4125 353.4485 + 353.4845 353.5205 353.5565 353.5925 353.6285 353.6645 + 353.7005 353.7365 353.7725 353.8085 353.8445 353.8805 + 353.9165 353.9525 353.9885 354.0245 354.0605 354.0965 + 354.1325 354.1685 354.2045 354.2405 354.2765 354.3125 + 354.3485 354.3845 354.4205 354.4565 354.4925 354.52185 + 354.5501 354.57736 354.60364 354.62894 354.65332 354.67685 + 354.6995 354.7213 354.74234 354.76263 354.78217 354.801 + 354.81915 354.83664 354.8535 354.86972 354.88538 354.90045 + 354.91498 354.929 354.9425 354.956 354.9695 354.983 + 354.9965 355.01 355.0235 355.037 355.0505 355.064 + 355.0775 355.091 355.1045 355.118 355.1315 355.145 + 355.1585 355.172 355.1855 355.199 355.2125 355.226 + 355.2395 355.253 355.2665 355.28 355.2935 355.307 + 355.3205 355.334 355.3475 355.361 355.3745 355.388 + 355.4015 355.415 355.4285 355.442 355.4555 355.469 + 355.4825 355.496 355.5095 355.523 355.5365 355.55 + 355.5635 355.577 355.5905 355.604 355.6175 355.631 + 355.6445 355.658 355.6715 355.685 355.6985 355.712 + 355.7255 355.739 355.7525 355.766 355.7795 355.793 + 355.8065 355.82 355.8335 355.847 355.8605 355.874 + 355.8875 355.901 355.9145 355.928 355.9415 355.955 + 355.9685 355.982 355.9955 356.009 356.0225 356.036 + 356.0495 356.063 356.0765 356.09 356.1035 356.117 + 356.1305 356.144 356.1575 356.171 356.1845 356.198 + 356.2115 356.225 356.2385 356.252 356.2655 356.279 + 356.2925 356.306 356.3195 356.333 356.3465 356.36 + 356.3735 356.387 356.4005 356.414 356.4275 356.441 + 356.4545 356.468 356.4815 356.495 356.5085 356.522 + 356.5355 356.549 356.5625 356.576 356.5895 356.603 + 356.6165 356.63 356.6435 356.657 356.6705 356.684 + 356.6975 356.711 356.7245 356.738 356.7515 356.765 + 356.7785 356.792 356.8055 356.819 356.8325 356.846 + 356.8595 356.873 356.8865 356.9 356.9135 356.927 + 356.9405 356.954 356.9675 356.981 356.9945 357.008 + 357.0215 357.035 357.0485 357.062 357.0755 357.089 + 357.1025 357.116 357.1295 357.143 357.1565 357.17 + 357.1835 357.197 357.2105 357.224 357.2375 357.251 + 357.2645 357.278 357.2915 357.305 357.3185 357.332 + 357.3455 357.359 357.3725 357.386 357.3995 357.413 + 357.4265 357.44 357.4535 357.467 357.4805 357.494 + 357.5075 357.521 357.5345 357.548 357.5615 357.575 + 357.5885 357.602 357.6155 357.629 357.6425 357.656 + 357.6695 357.683 357.6965 357.71 357.7235 357.737 + 357.7505 357.764 357.7775 357.791 357.8045 357.818 + 357.8315 357.845 357.8585 357.872 357.8855 357.899 + 357.9125 357.926 357.9395 357.953 357.9665 357.98 + 357.9935 358.007 358.0205 358.034 358.0475 358.061 + 358.0745 358.088 358.1015 358.115 358.1285 358.142 + 358.1555 358.169 358.1825 358.196 358.2095 358.223 + 358.2365 358.25 358.2635 358.277 358.2905 358.304 + 358.3175 358.331 358.3445 358.358 358.3715 358.385 + 358.3985 358.412 358.4255 358.439 358.4525 358.466 + 358.4795 358.493 358.5065 358.52 358.5335 358.547 + 358.5605 358.574 358.5875 358.601 358.6145 358.628 + 358.6415 358.655 358.6685 358.682 358.6955 358.709 + 358.7225 358.736 358.7495 358.763 358.7765 358.79 + 358.8035 358.817 358.8305 358.844 358.8575 358.871 + 358.8845 358.898 358.9115 358.925 358.9385 358.952 + 358.9655 358.979 358.9925 359.006 359.0195 359.033 + 359.0465 359.06 359.0735 359.087 359.1005 359.114 + 359.1275 359.141 359.1545 359.168 359.1815 359.195 + 359.2085 359.222 359.2355 359.249 359.2625 359.276 + 359.2895 359.303 359.3165 359.33 359.3435 359.357 + 359.3705 359.384 359.3975 359.411 359.4245 359.438 + 359.4515 359.465 359.4785 359.492 359.5055 359.519 + 359.5325 359.546 359.5595 359.573 359.5865 359.6 + 359.6135 359.627 359.6405 359.654 359.6675 359.681 + 359.6945 359.708 359.7215 359.735 359.7485 359.762 + 359.7755 359.789 359.8025 359.816 359.8295 359.843 + 359.8565 359.87 359.8835 359.897 359.9105 359.924 + 359.9375 359.951 359.9645 359.978 359.9915 360.005 + 360.0185 360.032 360.0455 360.059 360.0725 360.086 + 360.0995 360.113 360.1265 360.14 360.1535 360.167 + 360.1805 360.194 360.2075 360.221 360.2345 360.248 + 360.2615 360.275 360.2885 360.302 360.3155 360.329 + 360.3425 360.356 360.3695 360.383 360.3965 360.41 + 360.4235 360.437 360.4505 360.464 360.4775 360.491 + 360.5045 360.518 360.5315 360.545 360.5585 360.572 + 360.5855 360.599 360.6125 360.626 360.6395 360.653 + 360.6665 360.68 360.6935 360.707 360.7205 360.734 + 360.7475 360.761 360.7745 360.788 360.8015 360.815 + 360.8285 360.842 360.8555 360.869 360.8825 360.896 + 360.9095 360.923 360.9365 360.95 360.9635 360.977 + 360.9905 361.004 361.0175 361.031 361.0445 361.058 + 361.0715 361.085 361.0985 361.112 361.1255 361.139 + 361.1525 361.166 361.1795 361.193 361.2065 361.22 + 361.2335 361.247 361.2605 361.274 361.2875 361.301 + 361.3145 361.328 361.3415 361.355 361.3685 361.382 + 361.3955 361.409 361.4225 361.436 361.4495 361.463 + 361.4765 361.49 361.5035 361.517 361.5305 361.544 + 361.5575 361.571 361.5845 361.598 361.6115 361.625 + 361.6385 361.652 361.6655 361.679 361.6925 361.706 + 361.7195 361.733 361.7465 361.76 361.7735 361.787 + 361.8005 361.814 361.8275 361.841 361.8545 361.868 + 361.8815 361.895 361.9085 361.922 361.9355 361.949 + 361.9625 361.976 361.9895 362.003 362.0165 362.03 + 362.0435 362.057 362.0705 362.084 362.0975 362.111 + 362.1245 362.138 362.1515 362.165 362.1785 362.192 + 362.2055 362.219 362.2325 362.246 362.2595 362.273 + 362.2865 362.3 362.3135 362.327 362.3405 362.354 + 362.3675 362.381 362.3945 362.408 362.4215 362.435 + 362.4485 362.462 362.4755 362.489 362.5025 362.516 + 362.5295 362.543 362.5565 362.57 362.5835 362.597 + 362.6105 362.624 362.6375 362.651 362.6645 362.678 + 362.6915 362.705 362.7185 362.732 362.7455 362.759 + 362.7725 362.786 362.7995 362.813 362.8265 362.84 + 362.8535 362.867 362.8805 362.894 362.9075 362.921 + 362.9345 362.948 362.9615 362.975 362.9885 363.002 + 363.0155 363.029 363.0425 363.056 363.0695 363.083 + 363.0965 363.11 363.1235 363.137 363.1505 363.164 + 363.1775 363.191 363.2045 363.218 363.2315 363.245 + 363.2585 363.272 363.2855 363.299 363.3125 363.3265 + 363.34103 363.35614 363.37177 363.38803 363.40488 363.42236 + 363.4405 363.45932 363.47888 363.49915 363.52017 363.54202 + 363.56467 363.58817 363.61255 363.63788 363.66412 363.69138 + 363.71967 363.749 363.785 363.821 363.857 363.893 + 363.929 363.965 364.001 364.037 364.073 364.109 + 364.145 364.181 364.217 364.253 364.289 364.325 + 364.361 364.397 364.433 364.469 364.505 364.541 + 364.577 364.613 364.649 364.685 364.721 364.757 + 364.793 364.829 364.865 364.901 364.937 364.973 + 365.009 365.045 365.081 365.117 365.153 365.189 ] + x_lower_bound: [ 353.0345 353.0705 353.1065 353.1425 353.1785 353.2145 + 353.2505 353.2865 353.3225 353.3585 353.3945 353.4305 + 353.4665 353.5025 353.5385 353.5745 353.6105 353.6465 + 353.6825 353.7185 353.7545 353.7905 353.8265 353.8625 + 353.8985 353.9345 353.9705 354.0065 354.0425 354.0785 + 354.1145 354.1505 354.1865 354.2225 354.2585 354.2945 + 354.3305 354.3665 354.4025 354.4385 354.4745 354.50717 + 354.53598 354.56375 354.5905 354.61627 354.64114 354.66507 + 354.68817 354.7104 354.73184 354.7525 354.7724 354.7916 + 354.81006 354.82788 354.84506 354.8616 354.87753 354.8929 + 354.9077 354.922 354.93576 354.94925 354.96274 354.97626 + 354.98975 355.00323 355.01675 355.03024 355.04376 355.05725 + 355.07074 355.08426 355.09775 355.11124 355.12476 355.13824 + 355.15176 355.16525 355.17874 355.19226 355.20575 355.21924 + 355.23276 355.24625 355.25974 355.27325 355.28674 355.30026 + 355.31375 355.32724 355.34076 355.35425 355.36774 355.38126 + 355.39474 355.40826 355.42175 355.43524 355.44876 355.46225 + 355.47574 355.48926 355.50275 355.51624 355.52975 355.54324 + 355.55676 355.57025 355.58374 355.59726 355.61075 355.62424 + 355.63776 355.65125 355.66476 355.67825 355.69174 355.70526 + 355.71875 355.73224 355.74576 355.75925 355.77274 355.78625 + 355.79974 355.81326 355.82675 355.84024 355.85376 355.86725 + 355.88074 355.89426 355.90775 355.92126 355.93475 355.94824 + 355.96176 355.97525 355.98874 356.00226 356.01575 356.02924 + 356.04276 356.05624 356.06976 356.08325 356.09674 356.11026 + 356.12375 356.13724 356.15076 356.16425 356.17776 356.19125 + 356.20474 356.21826 356.23175 356.24524 356.25876 356.27225 + 356.28574 356.29926 356.31274 356.32626 356.33975 356.35324 + 356.36676 356.38025 356.39374 356.40726 356.42075 356.43427 + 356.44775 356.46124 356.47476 356.48825 356.50174 356.51526 + 356.52875 356.54224 356.55576 356.56924 356.58276 356.59625 + 356.60974 356.62326 356.63675 356.65024 356.66376 356.67725 + 356.69073 356.70425 356.71774 356.73126 356.74475 356.75824 + 356.77176 356.78525 356.79874 356.81226 356.82574 356.83926 + 356.85275 356.86624 356.87976 356.89325 356.90674 356.92026 + 356.93375 356.94724 356.96075 356.97424 356.98776 357.00125 + 357.01474 357.02826 357.04175 357.05524 357.06876 357.08224 + 357.09576 357.10925 357.12274 357.13626 357.14975 357.16324 + 357.17676 357.19025 357.20374 357.21725 357.23074 357.24426 + 357.25775 357.27124 357.28476 357.29825 357.31174 357.32526 + 357.33875 357.35226 357.36575 357.37924 357.39276 357.40625 + 357.41974 357.43326 357.44675 357.46024 357.47375 357.48724 + 357.50076 357.51425 357.52774 357.54126 357.55475 357.56824 + 357.58176 357.59525 357.60876 357.62225 357.63574 357.64926 + 357.66275 357.67624 357.68976 357.70325 357.71674 357.73026 + 357.74374 357.75726 357.77075 357.78424 357.79776 357.81125 + 357.82474 357.83826 357.85175 357.86526 357.87875 357.89224 + 357.90576 357.91925 357.93274 357.94626 357.95975 357.97324 + 357.98676 358.00024 358.01376 358.02725 358.04074 358.05426 + 358.06775 358.08124 358.09476 358.10825 358.12177 358.13525 + 358.14874 358.16226 358.17575 358.18924 358.20276 358.21625 + 358.22974 358.24326 358.25674 358.27026 358.28375 358.29724 + 358.31076 358.32425 358.33774 358.35126 358.36475 358.37823 + 358.39175 358.40524 358.41876 358.43225 358.44574 358.45926 + 358.47275 358.48624 358.49976 358.51324 358.52676 358.54025 + 358.55374 358.56726 358.58075 358.59424 358.60776 358.62125 + 358.63474 358.64825 358.66174 358.67526 358.68875 358.70224 + 358.71576 358.72925 358.74274 358.75626 358.76974 358.78326 + 358.79675 358.81024 358.82376 358.83725 358.85074 358.86426 + 358.87775 358.89124 358.90475 358.91824 358.93176 358.94525 + 358.95874 358.97226 358.98575 358.99924 359.01276 359.02625 + 359.03976 359.05325 359.06674 359.08026 359.09375 359.10724 + 359.12076 359.13425 359.14774 359.16125 359.17474 359.18826 + 359.20175 359.21524 359.22876 359.24225 359.25574 359.26926 + 359.28275 359.29626 359.30975 359.32324 359.33676 359.35025 + 359.36374 359.37726 359.39075 359.40424 359.41776 359.43124 + 359.44476 359.45825 359.47174 359.48526 359.49875 359.51224 + 359.52576 359.53925 359.55276 359.56625 359.57974 359.59326 + 359.60675 359.62024 359.63376 359.64725 359.66074 359.67426 + 359.68774 359.70126 359.71475 359.72824 359.74176 359.75525 + 359.76874 359.78226 359.79575 359.80927 359.82275 359.83624 + 359.84976 359.86325 359.87674 359.89026 359.90375 359.91724 + 359.93076 359.94424 359.95776 359.97125 359.98474 359.99826 + 360.01175 360.02524 360.03876 360.05225 360.06573 360.07925 + 360.09274 360.10626 360.11975 360.13324 360.14676 360.16025 + 360.17374 360.18726 360.20074 360.21426 360.22775 360.24124 + 360.25476 360.26825 360.28174 360.29526 360.30875 360.32224 + 360.33575 360.34924 360.36276 360.37625 360.38974 360.40326 + 360.41675 360.43024 360.44376 360.45724 360.47076 360.48425 + 360.49774 360.51126 360.52475 360.53824 360.55176 360.56525 + 360.57874 360.59225 360.60574 360.61926 360.63275 360.64624 + 360.65976 360.67325 360.68674 360.70026 360.71375 360.72726 + 360.74075 360.75424 360.76776 360.78125 360.79474 360.80826 + 360.82175 360.83524 360.84875 360.86224 360.87576 360.88925 + 360.90274 360.91626 360.92975 360.94324 360.95676 360.97025 + 360.98376 360.99725 361.01074 361.02426 361.03775 361.05124 + 361.06476 361.07825 361.09174 361.10526 361.11874 361.13226 + 361.14575 361.15924 361.17276 361.18625 361.19974 361.21326 + 361.22675 361.24026 361.25375 361.26724 361.28076 361.29425 + 361.30774 361.32126 361.33475 361.34824 361.36176 361.37524 + 361.38876 361.40225 361.41574 361.42926 361.44275 361.45624 + 361.46976 361.48325 361.49677 361.51025 361.52374 361.53726 + 361.55075 361.56424 361.57776 361.59125 361.60474 361.61826 + 361.63174 361.64526 361.65875 361.67224 361.68576 361.69925 + 361.71274 361.72626 361.73975 361.75323 361.76675 361.78024 + 361.79376 361.80725 361.82074 361.83426 361.84775 361.86124 + 361.87476 361.88824 361.90176 361.91525 361.92874 361.94226 + 361.95575 361.96924 361.98276 361.99625 362.00974 362.02325 + 362.03674 362.05026 362.06375 362.07724 362.09076 362.10425 + 362.11774 362.13126 362.14474 362.15826 362.17175 362.18524 + 362.19876 362.21225 362.22574 362.23926 362.25275 362.26624 + 362.27975 362.29324 362.30676 362.32025 362.33374 362.34726 + 362.36075 362.37424 362.38776 362.40125 362.41476 362.42825 + 362.44174 362.45526 362.46875 362.48224 362.49576 362.50925 + 362.52274 362.53625 362.54974 362.56326 362.57675 362.59024 + 362.60376 362.61725 362.63074 362.64426 362.65775 362.67126 + 362.68475 362.69824 362.71176 362.72525 362.73874 362.75226 + 362.76575 362.77924 362.79276 362.80624 362.81976 362.83325 + 362.84674 362.86026 362.87375 362.88724 362.90076 362.91425 + 362.92776 362.94125 362.95474 362.96826 362.98175 362.99524 + 363.00876 363.02225 363.03574 363.04926 363.06274 363.07626 + 363.08975 363.10324 363.11676 363.13025 363.14374 363.15726 + 363.17075 363.18427 363.19775 363.21124 363.22476 363.23825 + 363.25174 363.26526 363.27875 363.29224 363.30576 363.31952 + 363.33377 363.34857 363.36395 363.3799 363.39645 363.4136 + 363.43143 363.44992 363.46912 363.489 363.50967 363.5311 + 363.55334 363.57642 363.60037 363.6252 363.651 363.67776 + 363.7055 363.7343 363.767 363.803 363.839 363.875 + 363.911 363.947 363.983 364.019 364.055 364.091 + 364.127 364.163 364.199 364.235 364.271 364.307 + 364.343 364.379 364.415 364.451 364.487 364.523 + 364.559 364.595 364.631 364.667 364.703 364.739 + 364.775 364.811 364.847 364.883 364.919 364.955 + 364.991 365.027 365.063 365.099 365.135 365.171 ] + x_upper_bound: [ 353.0705 353.1065 353.1425 353.1785 353.2145 353.2505 + 353.2865 353.3225 353.3585 353.3945 353.4305 353.4665 + 353.5025 353.5385 353.5745 353.6105 353.6465 353.6825 + 353.7185 353.7545 353.7905 353.8265 353.8625 353.8985 + 353.9345 353.9705 354.0065 354.0425 354.0785 354.1145 + 354.1505 354.1865 354.2225 354.2585 354.2945 354.3305 + 354.3665 354.4025 354.4385 354.4745 354.50717 354.53598 + 354.56375 354.5905 354.61627 354.64114 354.66507 354.68817 + 354.7104 354.73184 354.7525 354.7724 354.7916 354.81006 + 354.82788 354.84506 354.8616 354.87753 354.8929 354.9077 + 354.922 354.93576 354.94925 354.96274 354.97626 354.98975 + 355.00323 355.01675 355.03024 355.04376 355.05725 355.07074 + 355.08426 355.09775 355.11124 355.12476 355.13824 355.15176 + 355.16525 355.17874 355.19226 355.20575 355.21924 355.23276 + 355.24625 355.25974 355.27325 355.28674 355.30026 355.31375 + 355.32724 355.34076 355.35425 355.36774 355.38126 355.39474 + 355.40826 355.42175 355.43524 355.44876 355.46225 355.47574 + 355.48926 355.50275 355.51624 355.52975 355.54324 355.55676 + 355.57025 355.58374 355.59726 355.61075 355.62424 355.63776 + 355.65125 355.66476 355.67825 355.69174 355.70526 355.71875 + 355.73224 355.74576 355.75925 355.77274 355.78625 355.79974 + 355.81326 355.82675 355.84024 355.85376 355.86725 355.88074 + 355.89426 355.90775 355.92126 355.93475 355.94824 355.96176 + 355.97525 355.98874 356.00226 356.01575 356.02924 356.04276 + 356.05624 356.06976 356.08325 356.09674 356.11026 356.12375 + 356.13724 356.15076 356.16425 356.17776 356.19125 356.20474 + 356.21826 356.23175 356.24524 356.25876 356.27225 356.28574 + 356.29926 356.31274 356.32626 356.33975 356.35324 356.36676 + 356.38025 356.39374 356.40726 356.42075 356.43427 356.44775 + 356.46124 356.47476 356.48825 356.50174 356.51526 356.52875 + 356.54224 356.55576 356.56924 356.58276 356.59625 356.60974 + 356.62326 356.63675 356.65024 356.66376 356.67725 356.69073 + 356.70425 356.71774 356.73126 356.74475 356.75824 356.77176 + 356.78525 356.79874 356.81226 356.82574 356.83926 356.85275 + 356.86624 356.87976 356.89325 356.90674 356.92026 356.93375 + 356.94724 356.96075 356.97424 356.98776 357.00125 357.01474 + 357.02826 357.04175 357.05524 357.06876 357.08224 357.09576 + 357.10925 357.12274 357.13626 357.14975 357.16324 357.17676 + 357.19025 357.20374 357.21725 357.23074 357.24426 357.25775 + 357.27124 357.28476 357.29825 357.31174 357.32526 357.33875 + 357.35226 357.36575 357.37924 357.39276 357.40625 357.41974 + 357.43326 357.44675 357.46024 357.47375 357.48724 357.50076 + 357.51425 357.52774 357.54126 357.55475 357.56824 357.58176 + 357.59525 357.60876 357.62225 357.63574 357.64926 357.66275 + 357.67624 357.68976 357.70325 357.71674 357.73026 357.74374 + 357.75726 357.77075 357.78424 357.79776 357.81125 357.82474 + 357.83826 357.85175 357.86526 357.87875 357.89224 357.90576 + 357.91925 357.93274 357.94626 357.95975 357.97324 357.98676 + 358.00024 358.01376 358.02725 358.04074 358.05426 358.06775 + 358.08124 358.09476 358.10825 358.12177 358.13525 358.14874 + 358.16226 358.17575 358.18924 358.20276 358.21625 358.22974 + 358.24326 358.25674 358.27026 358.28375 358.29724 358.31076 + 358.32425 358.33774 358.35126 358.36475 358.37823 358.39175 + 358.40524 358.41876 358.43225 358.44574 358.45926 358.47275 + 358.48624 358.49976 358.51324 358.52676 358.54025 358.55374 + 358.56726 358.58075 358.59424 358.60776 358.62125 358.63474 + 358.64825 358.66174 358.67526 358.68875 358.70224 358.71576 + 358.72925 358.74274 358.75626 358.76974 358.78326 358.79675 + 358.81024 358.82376 358.83725 358.85074 358.86426 358.87775 + 358.89124 358.90475 358.91824 358.93176 358.94525 358.95874 + 358.97226 358.98575 358.99924 359.01276 359.02625 359.03976 + 359.05325 359.06674 359.08026 359.09375 359.10724 359.12076 + 359.13425 359.14774 359.16125 359.17474 359.18826 359.20175 + 359.21524 359.22876 359.24225 359.25574 359.26926 359.28275 + 359.29626 359.30975 359.32324 359.33676 359.35025 359.36374 + 359.37726 359.39075 359.40424 359.41776 359.43124 359.44476 + 359.45825 359.47174 359.48526 359.49875 359.51224 359.52576 + 359.53925 359.55276 359.56625 359.57974 359.59326 359.60675 + 359.62024 359.63376 359.64725 359.66074 359.67426 359.68774 + 359.70126 359.71475 359.72824 359.74176 359.75525 359.76874 + 359.78226 359.79575 359.80927 359.82275 359.83624 359.84976 + 359.86325 359.87674 359.89026 359.90375 359.91724 359.93076 + 359.94424 359.95776 359.97125 359.98474 359.99826 360.01175 + 360.02524 360.03876 360.05225 360.06573 360.07925 360.09274 + 360.10626 360.11975 360.13324 360.14676 360.16025 360.17374 + 360.18726 360.20074 360.21426 360.22775 360.24124 360.25476 + 360.26825 360.28174 360.29526 360.30875 360.32224 360.33575 + 360.34924 360.36276 360.37625 360.38974 360.40326 360.41675 + 360.43024 360.44376 360.45724 360.47076 360.48425 360.49774 + 360.51126 360.52475 360.53824 360.55176 360.56525 360.57874 + 360.59225 360.60574 360.61926 360.63275 360.64624 360.65976 + 360.67325 360.68674 360.70026 360.71375 360.72726 360.74075 + 360.75424 360.76776 360.78125 360.79474 360.80826 360.82175 + 360.83524 360.84875 360.86224 360.87576 360.88925 360.90274 + 360.91626 360.92975 360.94324 360.95676 360.97025 360.98376 + 360.99725 361.01074 361.02426 361.03775 361.05124 361.06476 + 361.07825 361.09174 361.10526 361.11874 361.13226 361.14575 + 361.15924 361.17276 361.18625 361.19974 361.21326 361.22675 + 361.24026 361.25375 361.26724 361.28076 361.29425 361.30774 + 361.32126 361.33475 361.34824 361.36176 361.37524 361.38876 + 361.40225 361.41574 361.42926 361.44275 361.45624 361.46976 + 361.48325 361.49677 361.51025 361.52374 361.53726 361.55075 + 361.56424 361.57776 361.59125 361.60474 361.61826 361.63174 + 361.64526 361.65875 361.67224 361.68576 361.69925 361.71274 + 361.72626 361.73975 361.75323 361.76675 361.78024 361.79376 + 361.80725 361.82074 361.83426 361.84775 361.86124 361.87476 + 361.88824 361.90176 361.91525 361.92874 361.94226 361.95575 + 361.96924 361.98276 361.99625 362.00974 362.02325 362.03674 + 362.05026 362.06375 362.07724 362.09076 362.10425 362.11774 + 362.13126 362.14474 362.15826 362.17175 362.18524 362.19876 + 362.21225 362.22574 362.23926 362.25275 362.26624 362.27975 + 362.29324 362.30676 362.32025 362.33374 362.34726 362.36075 + 362.37424 362.38776 362.40125 362.41476 362.42825 362.44174 + 362.45526 362.46875 362.48224 362.49576 362.50925 362.52274 + 362.53625 362.54974 362.56326 362.57675 362.59024 362.60376 + 362.61725 362.63074 362.64426 362.65775 362.67126 362.68475 + 362.69824 362.71176 362.72525 362.73874 362.75226 362.76575 + 362.77924 362.79276 362.80624 362.81976 362.83325 362.84674 + 362.86026 362.87375 362.88724 362.90076 362.91425 362.92776 + 362.94125 362.95474 362.96826 362.98175 362.99524 363.00876 + 363.02225 363.03574 363.04926 363.06274 363.07626 363.08975 + 363.10324 363.11676 363.13025 363.14374 363.15726 363.17075 + 363.18427 363.19775 363.21124 363.22476 363.23825 363.25174 + 363.26526 363.27875 363.29224 363.30576 363.31952 363.33377 + 363.34857 363.36395 363.3799 363.39645 363.4136 363.43143 + 363.44992 363.46912 363.489 363.50967 363.5311 363.55334 + 363.57642 363.60037 363.6252 363.651 363.67776 363.7055 + 363.7343 363.767 363.803 363.839 363.875 363.911 + 363.947 363.983 364.019 364.055 364.091 364.127 + 364.163 364.199 364.235 364.271 364.307 364.343 + 364.379 364.415 364.451 364.487 364.523 364.559 + 364.595 364.631 364.667 364.703 364.739 364.775 + 364.811 364.847 364.883 364.919 364.955 364.991 + 365.027 365.063 365.099 365.135 365.171 365.207 ] y: [ -5.59320021e+00 -5.55719995e+00 -5.52120018e+00 -5.48519993e+00 -5.44920015e+00 -5.41319990e+00 -5.37720013e+00 -5.34119987e+00 -5.30520010e+00 -5.26919985e+00 -5.23320007e+00 -5.19719982e+00 @@ -3667,453 +3442,378 @@ [ 102204. 102212. 102219. ..., 101650. 101623. 101623.] [ 102210. 102218. 102225. ..., 101657. 101639. 101635.] [ 102216. 102224. 102231. ..., 101675. 101654. 101648.]] - x: [ 353.05249023 353.08850098 353.12451172 353.16049194 353.19650269 - 353.23251343 353.26849365 353.30450439 353.34051514 353.37649536 - 353.4125061 353.44848633 353.48449707 353.52050781 353.55648804 - 353.59249878 353.62850952 353.66448975 353.70050049 353.73651123 - 353.77249146 353.8085022 353.84451294 353.88049316 353.91650391 - 353.95251465 353.98849487 354.02450562 354.06048584 354.09649658 - 354.13250732 354.16848755 354.20449829 354.24050903 354.27648926 - 354.3125 354.34851074 354.38449097 354.42050171 354.45651245 - 354.49249268 354.52185059 354.55010986 354.57736206 354.6036377 - 354.62893677 354.65332031 354.67684937 354.69949341 354.72131348 - 354.74234009 354.76263428 354.78216553 354.80099487 354.81915283 - 354.8366394 354.85348511 354.86972046 354.88537598 354.90045166 - 354.91497803 354.9289856 354.94250488 354.95599365 354.96951294 - 354.98300171 354.99649048 355.01000977 355.02349854 355.0369873 - 355.05050659 355.06399536 355.07751465 355.09100342 355.10449219 - 355.11801147 355.13150024 355.14498901 355.1585083 355.17199707 - 355.18548584 355.19900513 355.2124939 355.22601318 355.23950195 - 355.25299072 355.26651001 355.27999878 355.29348755 355.30700684 - 355.32049561 355.33401489 355.34750366 355.36099243 355.37451172 - 355.38800049 355.40148926 355.41500854 355.42849731 355.44198608 - 355.45550537 355.46899414 355.48251343 355.4960022 355.50949097 - 355.52301025 355.53649902 355.54998779 355.56350708 355.57699585 - 355.59051514 355.60400391 355.61749268 355.63101196 355.64450073 - 355.6579895 355.67150879 355.68499756 355.69848633 355.71200562 - 355.72549438 355.73901367 355.75250244 355.76599121 355.7795105 - 355.79299927 355.80648804 355.82000732 355.83349609 355.84698486 - 355.86050415 355.87399292 355.88751221 355.90100098 355.91448975 - 355.92800903 355.9414978 355.95498657 355.96850586 355.98199463 - 355.99551392 356.00900269 356.02249146 356.03601074 356.04949951 - 356.06298828 356.07650757 356.08999634 356.10348511 356.11700439 - 356.13049316 356.14401245 356.15750122 356.17098999 356.18450928 - 356.19799805 356.21148682 356.2250061 356.23849487 356.25201416 - 356.26550293 356.2789917 356.29251099 356.30599976 356.31948853 - 356.33300781 356.34649658 356.35998535 356.37350464 356.38699341 - 356.4005127 356.41400146 356.42749023 356.44100952 356.45449829 - 356.46798706 356.48150635 356.49499512 356.5085144 356.52200317 - 356.53549194 356.54901123 356.5625 356.57598877 356.58950806 - 356.60299683 356.6164856 356.63000488 356.64349365 356.65701294 - 356.67050171 356.68399048 356.69750977 356.71099854 356.7244873 - 356.73800659 356.75149536 356.76501465 356.77850342 356.79199219 - 356.80551147 356.81900024 356.83248901 356.8460083 356.85949707 - 356.87298584 356.88650513 356.8999939 356.91351318 356.92700195 - 356.94049072 356.95401001 356.96749878 356.98098755 356.99450684 - 357.00799561 357.02151489 357.03500366 357.04849243 357.06201172 - 357.07550049 357.08898926 357.10250854 357.11599731 357.12948608 - 357.14300537 357.15649414 357.17001343 357.1835022 357.19699097 - 357.21051025 357.22399902 357.23748779 357.25100708 357.26449585 - 357.27801514 357.29150391 357.30499268 357.31851196 357.33200073 - 357.3454895 357.35900879 357.37249756 357.38598633 357.39950562 - 357.41299438 357.42651367 357.44000244 357.45349121 357.4670105 - 357.48049927 357.49398804 357.50750732 357.52099609 357.53448486 - 357.54800415 357.56149292 357.57501221 357.58850098 357.60198975 - 357.61550903 357.6289978 357.64248657 357.65600586 357.66949463 - 357.68301392 357.69650269 357.70999146 357.72351074 357.73699951 - 357.75048828 357.76400757 357.77749634 357.79098511 357.80450439 - 357.81799316 357.83151245 357.84500122 357.85848999 357.87200928 - 357.88549805 357.89898682 357.9125061 357.92599487 357.93951416 - 357.95300293 357.9664917 357.98001099 357.99349976 358.00698853 - 358.02050781 358.03399658 358.04748535 358.06100464 358.07449341 - 358.0880127 358.10150146 358.11499023 358.12850952 358.14199829 - 358.15548706 358.16900635 358.18249512 358.1960144 358.20950317 - 358.22299194 358.23651123 358.25 358.26348877 358.27700806 - 358.29049683 358.3039856 358.31750488 358.33099365 358.34451294 - 358.35800171 358.37149048 358.38500977 358.39849854 358.4119873 - 358.42550659 358.43899536 358.45251465 358.46600342 358.47949219 - 358.49301147 358.50650024 358.51998901 358.5335083 358.54699707 - 358.56048584 358.57400513 358.5874939 358.60101318 358.61450195 - 358.62799072 358.64151001 358.65499878 358.66848755 358.68200684 - 358.69549561 358.70901489 358.72250366 358.73599243 358.74951172 - 358.76300049 358.77648926 358.79000854 358.80349731 358.81698608 - 358.83050537 358.84399414 358.85751343 358.8710022 358.88449097 - 358.89801025 358.91149902 358.92498779 358.93850708 358.95199585 - 358.96551514 358.97900391 358.99249268 359.00601196 359.01950073 - 359.0329895 359.04650879 359.05999756 359.07348633 359.08700562 - 359.10049438 359.11401367 359.12750244 359.14099121 359.1545105 - 359.16799927 359.18148804 359.19500732 359.20849609 359.22198486 - 359.23550415 359.24899292 359.26251221 359.27600098 359.28948975 - 359.30300903 359.3164978 359.32998657 359.34350586 359.35699463 - 359.37051392 359.38400269 359.39749146 359.41101074 359.42449951 - 359.43798828 359.45150757 359.46499634 359.47848511 359.49200439 - 359.50549316 359.51901245 359.53250122 359.54598999 359.55950928 - 359.57299805 359.58648682 359.6000061 359.61349487 359.62701416 - 359.64050293 359.6539917 359.66751099 359.68099976 359.69448853 - 359.70800781 359.72149658 359.73498535 359.74850464 359.76199341 - 359.7755127 359.78900146 359.80249023 359.81600952 359.82949829 - 359.84298706 359.85650635 359.86999512 359.8835144 359.89700317 - 359.91049194 359.92401123 359.9375 359.95098877 359.96450806 - 359.97799683 359.9914856 360.00500488 360.01849365 360.03201294 - 360.04550171 360.05899048 360.07250977 360.08599854 360.0994873 - 360.11300659 360.12649536 360.14001465 360.15350342 360.16699219 - 360.18051147 360.19400024 360.20748901 360.2210083 360.23449707 - 360.24798584 360.26150513 360.2749939 360.28851318 360.30200195 - 360.31549072 360.32901001 360.34249878 360.35598755 360.36950684 - 360.38299561 360.39651489 360.41000366 360.42349243 360.43701172 - 360.45050049 360.46398926 360.47750854 360.49099731 360.50448608 - 360.51800537 360.53149414 360.54501343 360.5585022 360.57199097 - 360.58551025 360.59899902 360.61248779 360.62600708 360.63949585 - 360.65301514 360.66650391 360.67999268 360.69351196 360.70700073 - 360.7204895 360.73400879 360.74749756 360.76098633 360.77450562 - 360.78799438 360.80151367 360.81500244 360.82849121 360.8420105 - 360.85549927 360.86898804 360.88250732 360.89599609 360.90948486 - 360.92300415 360.93649292 360.95001221 360.96350098 360.97698975 - 360.99050903 361.0039978 361.01748657 361.03100586 361.04449463 - 361.05801392 361.07150269 361.08499146 361.09851074 361.11199951 - 361.12548828 361.13900757 361.15249634 361.16598511 361.17950439 - 361.19299316 361.20651245 361.22000122 361.23348999 361.24700928 - 361.26049805 361.27398682 361.2875061 361.30099487 361.31451416 - 361.32800293 361.3414917 361.35501099 361.36849976 361.38198853 - 361.39550781 361.40899658 361.42248535 361.43600464 361.44949341 - 361.4630127 361.47650146 361.48999023 361.50350952 361.51699829 - 361.53048706 361.54400635 361.55749512 361.5710144 361.58450317 - 361.59799194 361.61151123 361.625 361.63848877 361.65200806 - 361.66549683 361.6789856 361.69250488 361.70599365 361.71951294 - 361.73300171 361.74649048 361.76000977 361.77349854 361.7869873 - 361.80050659 361.81399536 361.82751465 361.84100342 361.85449219 - 361.86801147 361.88150024 361.89498901 361.9085083 361.92199707 - 361.93548584 361.94900513 361.9624939 361.97601318 361.98950195 - 362.00299072 362.01651001 362.02999878 362.04348755 362.05700684 - 362.07049561 362.08401489 362.09750366 362.11099243 362.12451172 - 362.13800049 362.15148926 362.16500854 362.17849731 362.19198608 - 362.20550537 362.21899414 362.23251343 362.2460022 362.25949097 - 362.27301025 362.28649902 362.29998779 362.31350708 362.32699585 - 362.34051514 362.35400391 362.36749268 362.38101196 362.39450073 - 362.4079895 362.42150879 362.43499756 362.44848633 362.46200562 - 362.47549438 362.48901367 362.50250244 362.51599121 362.5295105 - 362.54299927 362.55648804 362.57000732 362.58349609 362.59698486 - 362.61050415 362.62399292 362.63751221 362.65100098 362.66448975 - 362.67800903 362.6914978 362.70498657 362.71850586 362.73199463 - 362.74551392 362.75900269 362.77249146 362.78601074 362.79949951 - 362.81298828 362.82650757 362.83999634 362.85348511 362.86700439 - 362.88049316 362.89401245 362.90750122 362.92098999 362.93450928 - 362.94799805 362.96148682 362.9750061 362.98849487 363.00201416 - 363.01550293 363.0289917 363.04251099 363.05599976 363.06948853 - 363.08300781 363.09649658 363.10998535 363.12350464 363.13699341 - 363.1505127 363.16400146 363.17749023 363.19100952 363.20449829 - 363.21798706 363.23150635 363.24499512 363.2585144 363.27200317 - 363.28549194 363.29901123 363.3125 363.32650757 363.34103394 - 363.35614014 363.37176514 363.38803101 363.40487671 363.42236328 - 363.44049072 363.45932007 363.47888184 363.49914551 363.52017212 - 363.54202271 363.56466675 363.58816528 363.61254883 363.63787842 - 363.66412354 363.69137573 363.71966553 363.74899292 363.78500366 - 363.8210144 363.85699463 363.89300537 363.9289856 363.96499634 - 364.00100708 364.0369873 364.07299805 364.10900879 364.14498901 - 364.18099976 364.2170105 364.25299072 364.28900146 364.32501221 - 364.36099243 364.39700317 364.43301392 364.46899414 364.50500488 - 364.54098511 364.57699585 364.61300659 364.64898682 364.68499756 - 364.7210083 364.75698853 364.79299927 364.82901001 364.86499023 - 364.90100098 364.93701172 364.97299194 365.00900269 365.04501343 - 365.08099365 365.11700439 365.15301514 365.18899536] - x_lower_bound: [ 353.03448486 353.07049561 353.10650635 353.14248657 353.17849731 - 353.21450806 353.25048828 353.28649902 353.32250977 353.35848999 - 353.39450073 353.43051147 353.4664917 353.50250244 353.53851318 - 353.57449341 353.61050415 353.64651489 353.68249512 353.71850586 - 353.75448608 353.79049683 353.82650757 353.86248779 353.89849854 - 353.93450928 353.9704895 354.00650024 354.04251099 354.07849121 - 354.11450195 354.1505127 354.18649292 354.22250366 354.2585144 - 354.29449463 354.33050537 354.3664856 354.40249634 354.43850708 - 354.4744873 354.50717163 354.53598022 354.56375122 354.59051514 - 354.61627197 354.6411438 354.66506958 354.68817139 354.71038818 - 354.73184204 354.75250244 354.7723999 354.79159546 354.81005859 - 354.82788086 354.84506226 354.86160278 354.87753296 354.89291382 - 354.90771484 354.92199707 354.9357605 354.94924927 354.96273804 - 354.97625732 354.98974609 355.00323486 355.01675415 355.03024292 - 355.04376221 355.05725098 355.07073975 355.08425903 355.0977478 - 355.11123657 355.12475586 355.13824463 355.15176392 355.16525269 - 355.17874146 355.19226074 355.20574951 355.21923828 355.23275757 - 355.24624634 355.25973511 355.27325439 355.28674316 355.30026245 - 355.31375122 355.32723999 355.34075928 355.35424805 355.36773682 - 355.3812561 355.39474487 355.40826416 355.42175293 355.4352417 - 355.44876099 355.46224976 355.47573853 355.48925781 355.50274658 - 355.51623535 355.52975464 355.54324341 355.5567627 355.57025146 - 355.58374023 355.59725952 355.61074829 355.62423706 355.63775635 - 355.65124512 355.6647644 355.67825317 355.69174194 355.70526123 - 355.71875 355.73223877 355.74575806 355.75924683 355.7727356 - 355.78625488 355.79974365 355.81326294 355.82675171 355.84024048 - 355.85375977 355.86724854 355.8807373 355.89425659 355.90774536 - 355.92126465 355.93475342 355.94824219 355.96176147 355.97525024 - 355.98873901 356.0022583 356.01574707 356.02923584 356.04275513 - 356.0562439 356.06976318 356.08325195 356.09674072 356.11026001 - 356.12374878 356.13723755 356.15075684 356.16424561 356.17776489 - 356.19125366 356.20474243 356.21826172 356.23175049 356.24523926 - 356.25875854 356.27224731 356.28573608 356.29925537 356.31274414 - 356.32626343 356.3397522 356.35324097 356.36676025 356.38024902 - 356.39373779 356.40725708 356.42074585 356.43426514 356.44775391 - 356.46124268 356.47476196 356.48825073 356.5017395 356.51525879 - 356.52874756 356.54223633 356.55575562 356.56924438 356.58276367 - 356.59625244 356.60974121 356.6232605 356.63674927 356.65023804 - 356.66375732 356.67724609 356.69073486 356.70425415 356.71774292 - 356.73126221 356.74475098 356.75823975 356.77175903 356.7852478 - 356.79873657 356.81225586 356.82574463 356.83926392 356.85275269 - 356.86624146 356.87976074 356.89324951 356.90673828 356.92025757 - 356.93374634 356.94723511 356.96075439 356.97424316 356.98776245 - 357.00125122 357.01473999 357.02825928 357.04174805 357.05523682 - 357.0687561 357.08224487 357.09576416 357.10925293 357.1227417 - 357.13626099 357.14974976 357.16323853 357.17675781 357.19024658 - 357.20373535 357.21725464 357.23074341 357.2442627 357.25775146 - 357.27124023 357.28475952 357.29824829 357.31173706 357.32525635 - 357.33874512 357.3522644 357.36575317 357.37924194 357.39276123 - 357.40625 357.41973877 357.43325806 357.44674683 357.4602356 - 357.47375488 357.48724365 357.50076294 357.51425171 357.52774048 - 357.54125977 357.55474854 357.5682373 357.58175659 357.59524536 - 357.60876465 357.62225342 357.63574219 357.64926147 357.66275024 - 357.67623901 357.6897583 357.70324707 357.71673584 357.73025513 - 357.7437439 357.75726318 357.77075195 357.78424072 357.79776001 - 357.81124878 357.82473755 357.83825684 357.85174561 357.86526489 - 357.87875366 357.89224243 357.90576172 357.91925049 357.93273926 - 357.94625854 357.95974731 357.97323608 357.98675537 358.00024414 - 358.01376343 358.0272522 358.04074097 358.05426025 358.06774902 - 358.08123779 358.09475708 358.10824585 358.12176514 358.13525391 - 358.14874268 358.16226196 358.17575073 358.1892395 358.20275879 - 358.21624756 358.22973633 358.24325562 358.25674438 358.27026367 - 358.28375244 358.29724121 358.3107605 358.32424927 358.33773804 - 358.35125732 358.36474609 358.37823486 358.39175415 358.40524292 - 358.41876221 358.43225098 358.44573975 358.45925903 358.4727478 - 358.48623657 358.49975586 358.51324463 358.52676392 358.54025269 - 358.55374146 358.56726074 358.58074951 358.59423828 358.60775757 - 358.62124634 358.63473511 358.64825439 358.66174316 358.67526245 - 358.68875122 358.70223999 358.71575928 358.72924805 358.74273682 - 358.7562561 358.76974487 358.78326416 358.79675293 358.8102417 - 358.82376099 358.83724976 358.85073853 358.86425781 358.87774658 - 358.89123535 358.90475464 358.91824341 358.9317627 358.94525146 - 358.95874023 358.97225952 358.98574829 358.99923706 359.01275635 - 359.02624512 359.0397644 359.05325317 359.06674194 359.08026123 - 359.09375 359.10723877 359.12075806 359.13424683 359.1477356 - 359.16125488 359.17474365 359.18826294 359.20175171 359.21524048 - 359.22875977 359.24224854 359.2557373 359.26925659 359.28274536 - 359.29626465 359.30975342 359.32324219 359.33676147 359.35025024 - 359.36373901 359.3772583 359.39074707 359.40423584 359.41775513 - 359.4312439 359.44476318 359.45825195 359.47174072 359.48526001 - 359.49874878 359.51223755 359.52575684 359.53924561 359.55276489 - 359.56625366 359.57974243 359.59326172 359.60675049 359.62023926 - 359.63375854 359.64724731 359.66073608 359.67425537 359.68774414 - 359.70126343 359.7147522 359.72824097 359.74176025 359.75524902 - 359.76873779 359.78225708 359.79574585 359.80926514 359.82275391 - 359.83624268 359.84976196 359.86325073 359.8767395 359.89025879 - 359.90374756 359.91723633 359.93075562 359.94424438 359.95776367 - 359.97125244 359.98474121 359.9982605 360.01174927 360.02523804 - 360.03875732 360.05224609 360.06573486 360.07925415 360.09274292 - 360.10626221 360.11975098 360.13323975 360.14675903 360.1602478 - 360.17373657 360.18725586 360.20074463 360.21426392 360.22775269 - 360.24124146 360.25476074 360.26824951 360.28173828 360.29525757 - 360.30874634 360.32223511 360.33575439 360.34924316 360.36276245 - 360.37625122 360.38973999 360.40325928 360.41674805 360.43023682 - 360.4437561 360.45724487 360.47076416 360.48425293 360.4977417 - 360.51126099 360.52474976 360.53823853 360.55175781 360.56524658 - 360.57873535 360.59225464 360.60574341 360.6192627 360.63275146 - 360.64624023 360.65975952 360.67324829 360.68673706 360.70025635 - 360.71374512 360.7272644 360.74075317 360.75424194 360.76776123 - 360.78125 360.79473877 360.80825806 360.82174683 360.8352356 - 360.84875488 360.86224365 360.87576294 360.88925171 360.90274048 - 360.91625977 360.92974854 360.9432373 360.95675659 360.97024536 - 360.98376465 360.99725342 361.01074219 361.02426147 361.03775024 - 361.05123901 361.0647583 361.07824707 361.09173584 361.10525513 - 361.1187439 361.13226318 361.14575195 361.15924072 361.17276001 - 361.18624878 361.19973755 361.21325684 361.22674561 361.24026489 - 361.25375366 361.26724243 361.28076172 361.29425049 361.30773926 - 361.32125854 361.33474731 361.34823608 361.36175537 361.37524414 - 361.38876343 361.4022522 361.41574097 361.42926025 361.44274902 - 361.45623779 361.46975708 361.48324585 361.49676514 361.51025391 - 361.52374268 361.53726196 361.55075073 361.5642395 361.57775879 - 361.59124756 361.60473633 361.61825562 361.63174438 361.64526367 - 361.65875244 361.67224121 361.6857605 361.69924927 361.71273804 - 361.72625732 361.73974609 361.75323486 361.76675415 361.78024292 - 361.79376221 361.80725098 361.82073975 361.83425903 361.8477478 - 361.86123657 361.87475586 361.88824463 361.90176392 361.91525269 - 361.92874146 361.94226074 361.95574951 361.96923828 361.98275757 - 361.99624634 362.00973511 362.02325439 362.03674316 362.05026245 - 362.06375122 362.07723999 362.09075928 362.10424805 362.11773682 - 362.1312561 362.14474487 362.15826416 362.17175293 362.1852417 - 362.19876099 362.21224976 362.22573853 362.23925781 362.25274658 - 362.26623535 362.27975464 362.29324341 362.3067627 362.32025146 - 362.33374023 362.34725952 362.36074829 362.37423706 362.38775635 - 362.40124512 362.4147644 362.42825317 362.44174194 362.45526123 - 362.46875 362.48223877 362.49575806 362.50924683 362.5227356 - 362.53625488 362.54974365 362.56326294 362.57675171 362.59024048 - 362.60375977 362.61724854 362.6307373 362.64425659 362.65774536 - 362.67126465 362.68475342 362.69824219 362.71176147 362.72525024 - 362.73873901 362.7522583 362.76574707 362.77923584 362.79275513 - 362.8062439 362.81976318 362.83325195 362.84674072 362.86026001 - 362.87374878 362.88723755 362.90075684 362.91424561 362.92776489 - 362.94125366 362.95474243 362.96826172 362.98175049 362.99523926 - 363.00875854 363.02224731 363.03573608 363.04925537 363.06274414 - 363.07626343 363.0897522 363.10324097 363.11676025 363.13024902 - 363.14373779 363.15725708 363.17074585 363.18426514 363.19775391 - 363.21124268 363.22476196 363.23825073 363.2517395 363.26525879 - 363.27874756 363.29223633 363.30575562 363.31951904 363.33377075 - 363.34857178 363.36395264 363.37991333 363.39645386 363.41360474 - 363.431427 363.44992065 363.46911621 363.48901367 363.50967407 - 363.53109741 363.55334473 363.57641602 363.60037231 363.62521362 - 363.65100098 363.67776489 363.70550537 363.73431396 363.76699829 - 363.80300903 363.83898926 363.875 363.91101074 363.94699097 - 363.98300171 364.01901245 364.05499268 364.09100342 364.12701416 - 364.16299438 364.19900513 364.23498535 364.27099609 364.30700684 - 364.34298706 364.3789978 364.41500854 364.45098877 364.48699951 - 364.52301025 364.55899048 364.59500122 364.63101196 364.66699219 - 364.70300293 364.73901367 364.7749939 364.81100464 364.84698486 - 364.88299561 364.91900635 364.95498657 364.99099731 365.02700806 - 365.06298828 365.09899902 365.13500977 365.17098999] - x_upper_bound: [ 353.07049561 353.10650635 353.14248657 353.17849731 353.21450806 - 353.25048828 353.28649902 353.32250977 353.35848999 353.39450073 - 353.43051147 353.4664917 353.50250244 353.53851318 353.57449341 - 353.61050415 353.64651489 353.68249512 353.71850586 353.75448608 - 353.79049683 353.82650757 353.86248779 353.89849854 353.93450928 - 353.9704895 354.00650024 354.04251099 354.07849121 354.11450195 - 354.1505127 354.18649292 354.22250366 354.2585144 354.29449463 - 354.33050537 354.3664856 354.40249634 354.43850708 354.4744873 - 354.50717163 354.53598022 354.56375122 354.59051514 354.61627197 - 354.6411438 354.66506958 354.68817139 354.71038818 354.73184204 - 354.75250244 354.7723999 354.79159546 354.81005859 354.82788086 - 354.84506226 354.86160278 354.87753296 354.89291382 354.90771484 - 354.92199707 354.9357605 354.94924927 354.96273804 354.97625732 - 354.98974609 355.00323486 355.01675415 355.03024292 355.04376221 - 355.05725098 355.07073975 355.08425903 355.0977478 355.11123657 - 355.12475586 355.13824463 355.15176392 355.16525269 355.17874146 - 355.19226074 355.20574951 355.21923828 355.23275757 355.24624634 - 355.25973511 355.27325439 355.28674316 355.30026245 355.31375122 - 355.32723999 355.34075928 355.35424805 355.36773682 355.3812561 - 355.39474487 355.40826416 355.42175293 355.4352417 355.44876099 - 355.46224976 355.47573853 355.48925781 355.50274658 355.51623535 - 355.52975464 355.54324341 355.5567627 355.57025146 355.58374023 - 355.59725952 355.61074829 355.62423706 355.63775635 355.65124512 - 355.6647644 355.67825317 355.69174194 355.70526123 355.71875 - 355.73223877 355.74575806 355.75924683 355.7727356 355.78625488 - 355.79974365 355.81326294 355.82675171 355.84024048 355.85375977 - 355.86724854 355.8807373 355.89425659 355.90774536 355.92126465 - 355.93475342 355.94824219 355.96176147 355.97525024 355.98873901 - 356.0022583 356.01574707 356.02923584 356.04275513 356.0562439 - 356.06976318 356.08325195 356.09674072 356.11026001 356.12374878 - 356.13723755 356.15075684 356.16424561 356.17776489 356.19125366 - 356.20474243 356.21826172 356.23175049 356.24523926 356.25875854 - 356.27224731 356.28573608 356.29925537 356.31274414 356.32626343 - 356.3397522 356.35324097 356.36676025 356.38024902 356.39373779 - 356.40725708 356.42074585 356.43426514 356.44775391 356.46124268 - 356.47476196 356.48825073 356.5017395 356.51525879 356.52874756 - 356.54223633 356.55575562 356.56924438 356.58276367 356.59625244 - 356.60974121 356.6232605 356.63674927 356.65023804 356.66375732 - 356.67724609 356.69073486 356.70425415 356.71774292 356.73126221 - 356.74475098 356.75823975 356.77175903 356.7852478 356.79873657 - 356.81225586 356.82574463 356.83926392 356.85275269 356.86624146 - 356.87976074 356.89324951 356.90673828 356.92025757 356.93374634 - 356.94723511 356.96075439 356.97424316 356.98776245 357.00125122 - 357.01473999 357.02825928 357.04174805 357.05523682 357.0687561 - 357.08224487 357.09576416 357.10925293 357.1227417 357.13626099 - 357.14974976 357.16323853 357.17675781 357.19024658 357.20373535 - 357.21725464 357.23074341 357.2442627 357.25775146 357.27124023 - 357.28475952 357.29824829 357.31173706 357.32525635 357.33874512 - 357.3522644 357.36575317 357.37924194 357.39276123 357.40625 - 357.41973877 357.43325806 357.44674683 357.4602356 357.47375488 - 357.48724365 357.50076294 357.51425171 357.52774048 357.54125977 - 357.55474854 357.5682373 357.58175659 357.59524536 357.60876465 - 357.62225342 357.63574219 357.64926147 357.66275024 357.67623901 - 357.6897583 357.70324707 357.71673584 357.73025513 357.7437439 - 357.75726318 357.77075195 357.78424072 357.79776001 357.81124878 - 357.82473755 357.83825684 357.85174561 357.86526489 357.87875366 - 357.89224243 357.90576172 357.91925049 357.93273926 357.94625854 - 357.95974731 357.97323608 357.98675537 358.00024414 358.01376343 - 358.0272522 358.04074097 358.05426025 358.06774902 358.08123779 - 358.09475708 358.10824585 358.12176514 358.13525391 358.14874268 - 358.16226196 358.17575073 358.1892395 358.20275879 358.21624756 - 358.22973633 358.24325562 358.25674438 358.27026367 358.28375244 - 358.29724121 358.3107605 358.32424927 358.33773804 358.35125732 - 358.36474609 358.37823486 358.39175415 358.40524292 358.41876221 - 358.43225098 358.44573975 358.45925903 358.4727478 358.48623657 - 358.49975586 358.51324463 358.52676392 358.54025269 358.55374146 - 358.56726074 358.58074951 358.59423828 358.60775757 358.62124634 - 358.63473511 358.64825439 358.66174316 358.67526245 358.68875122 - 358.70223999 358.71575928 358.72924805 358.74273682 358.7562561 - 358.76974487 358.78326416 358.79675293 358.8102417 358.82376099 - 358.83724976 358.85073853 358.86425781 358.87774658 358.89123535 - 358.90475464 358.91824341 358.9317627 358.94525146 358.95874023 - 358.97225952 358.98574829 358.99923706 359.01275635 359.02624512 - 359.0397644 359.05325317 359.06674194 359.08026123 359.09375 - 359.10723877 359.12075806 359.13424683 359.1477356 359.16125488 - 359.17474365 359.18826294 359.20175171 359.21524048 359.22875977 - 359.24224854 359.2557373 359.26925659 359.28274536 359.29626465 - 359.30975342 359.32324219 359.33676147 359.35025024 359.36373901 - 359.3772583 359.39074707 359.40423584 359.41775513 359.4312439 - 359.44476318 359.45825195 359.47174072 359.48526001 359.49874878 - 359.51223755 359.52575684 359.53924561 359.55276489 359.56625366 - 359.57974243 359.59326172 359.60675049 359.62023926 359.63375854 - 359.64724731 359.66073608 359.67425537 359.68774414 359.70126343 - 359.7147522 359.72824097 359.74176025 359.75524902 359.76873779 - 359.78225708 359.79574585 359.80926514 359.82275391 359.83624268 - 359.84976196 359.86325073 359.8767395 359.89025879 359.90374756 - 359.91723633 359.93075562 359.94424438 359.95776367 359.97125244 - 359.98474121 359.9982605 360.01174927 360.02523804 360.03875732 - 360.05224609 360.06573486 360.07925415 360.09274292 360.10626221 - 360.11975098 360.13323975 360.14675903 360.1602478 360.17373657 - 360.18725586 360.20074463 360.21426392 360.22775269 360.24124146 - 360.25476074 360.26824951 360.28173828 360.29525757 360.30874634 - 360.32223511 360.33575439 360.34924316 360.36276245 360.37625122 - 360.38973999 360.40325928 360.41674805 360.43023682 360.4437561 - 360.45724487 360.47076416 360.48425293 360.4977417 360.51126099 - 360.52474976 360.53823853 360.55175781 360.56524658 360.57873535 - 360.59225464 360.60574341 360.6192627 360.63275146 360.64624023 - 360.65975952 360.67324829 360.68673706 360.70025635 360.71374512 - 360.7272644 360.74075317 360.75424194 360.76776123 360.78125 - 360.79473877 360.80825806 360.82174683 360.8352356 360.84875488 - 360.86224365 360.87576294 360.88925171 360.90274048 360.91625977 - 360.92974854 360.9432373 360.95675659 360.97024536 360.98376465 - 360.99725342 361.01074219 361.02426147 361.03775024 361.05123901 - 361.0647583 361.07824707 361.09173584 361.10525513 361.1187439 - 361.13226318 361.14575195 361.15924072 361.17276001 361.18624878 - 361.19973755 361.21325684 361.22674561 361.24026489 361.25375366 - 361.26724243 361.28076172 361.29425049 361.30773926 361.32125854 - 361.33474731 361.34823608 361.36175537 361.37524414 361.38876343 - 361.4022522 361.41574097 361.42926025 361.44274902 361.45623779 - 361.46975708 361.48324585 361.49676514 361.51025391 361.52374268 - 361.53726196 361.55075073 361.5642395 361.57775879 361.59124756 - 361.60473633 361.61825562 361.63174438 361.64526367 361.65875244 - 361.67224121 361.6857605 361.69924927 361.71273804 361.72625732 - 361.73974609 361.75323486 361.76675415 361.78024292 361.79376221 - 361.80725098 361.82073975 361.83425903 361.8477478 361.86123657 - 361.87475586 361.88824463 361.90176392 361.91525269 361.92874146 - 361.94226074 361.95574951 361.96923828 361.98275757 361.99624634 - 362.00973511 362.02325439 362.03674316 362.05026245 362.06375122 - 362.07723999 362.09075928 362.10424805 362.11773682 362.1312561 - 362.14474487 362.15826416 362.17175293 362.1852417 362.19876099 - 362.21224976 362.22573853 362.23925781 362.25274658 362.26623535 - 362.27975464 362.29324341 362.3067627 362.32025146 362.33374023 - 362.34725952 362.36074829 362.37423706 362.38775635 362.40124512 - 362.4147644 362.42825317 362.44174194 362.45526123 362.46875 - 362.48223877 362.49575806 362.50924683 362.5227356 362.53625488 - 362.54974365 362.56326294 362.57675171 362.59024048 362.60375977 - 362.61724854 362.6307373 362.64425659 362.65774536 362.67126465 - 362.68475342 362.69824219 362.71176147 362.72525024 362.73873901 - 362.7522583 362.76574707 362.77923584 362.79275513 362.8062439 - 362.81976318 362.83325195 362.84674072 362.86026001 362.87374878 - 362.88723755 362.90075684 362.91424561 362.92776489 362.94125366 - 362.95474243 362.96826172 362.98175049 362.99523926 363.00875854 - 363.02224731 363.03573608 363.04925537 363.06274414 363.07626343 - 363.0897522 363.10324097 363.11676025 363.13024902 363.14373779 - 363.15725708 363.17074585 363.18426514 363.19775391 363.21124268 - 363.22476196 363.23825073 363.2517395 363.26525879 363.27874756 - 363.29223633 363.30575562 363.31951904 363.33377075 363.34857178 - 363.36395264 363.37991333 363.39645386 363.41360474 363.431427 - 363.44992065 363.46911621 363.48901367 363.50967407 363.53109741 - 363.55334473 363.57641602 363.60037231 363.62521362 363.65100098 - 363.67776489 363.70550537 363.73431396 363.76699829 363.80300903 - 363.83898926 363.875 363.91101074 363.94699097 363.98300171 - 364.01901245 364.05499268 364.09100342 364.12701416 364.16299438 - 364.19900513 364.23498535 364.27099609 364.30700684 364.34298706 - 364.3789978 364.41500854 364.45098877 364.48699951 364.52301025 - 364.55899048 364.59500122 364.63101196 364.66699219 364.70300293 - 364.73901367 364.7749939 364.81100464 364.84698486 364.88299561 - 364.91900635 364.95498657 364.99099731 365.02700806 365.06298828 - 365.09899902 365.13500977 365.17098999 365.20700073] + x: [ 353.0525 353.0885 353.1245 353.1605 353.1965 353.2325 + 353.2685 353.3045 353.3405 353.3765 353.4125 353.4485 + 353.4845 353.5205 353.5565 353.5925 353.6285 353.6645 + 353.7005 353.7365 353.7725 353.8085 353.8445 353.8805 + 353.9165 353.9525 353.9885 354.0245 354.0605 354.0965 + 354.1325 354.1685 354.2045 354.2405 354.2765 354.3125 + 354.3485 354.3845 354.4205 354.4565 354.4925 354.52185 + 354.5501 354.57736 354.60364 354.62894 354.65332 354.67685 + 354.6995 354.7213 354.74234 354.76263 354.78217 354.801 + 354.81915 354.83664 354.8535 354.86972 354.88538 354.90045 + 354.91498 354.929 354.9425 354.956 354.9695 354.983 + 354.9965 355.01 355.0235 355.037 355.0505 355.064 + 355.0775 355.091 355.1045 355.118 355.1315 355.145 + 355.1585 355.172 355.1855 355.199 355.2125 355.226 + 355.2395 355.253 355.2665 355.28 355.2935 355.307 + 355.3205 355.334 355.3475 355.361 355.3745 355.388 + 355.4015 355.415 355.4285 355.442 355.4555 355.469 + 355.4825 355.496 355.5095 355.523 355.5365 355.55 + 355.5635 355.577 355.5905 355.604 355.6175 355.631 + 355.6445 355.658 355.6715 355.685 355.6985 355.712 + 355.7255 355.739 355.7525 355.766 355.7795 355.793 + 355.8065 355.82 355.8335 355.847 355.8605 355.874 + 355.8875 355.901 355.9145 355.928 355.9415 355.955 + 355.9685 355.982 355.9955 356.009 356.0225 356.036 + 356.0495 356.063 356.0765 356.09 356.1035 356.117 + 356.1305 356.144 356.1575 356.171 356.1845 356.198 + 356.2115 356.225 356.2385 356.252 356.2655 356.279 + 356.2925 356.306 356.3195 356.333 356.3465 356.36 + 356.3735 356.387 356.4005 356.414 356.4275 356.441 + 356.4545 356.468 356.4815 356.495 356.5085 356.522 + 356.5355 356.549 356.5625 356.576 356.5895 356.603 + 356.6165 356.63 356.6435 356.657 356.6705 356.684 + 356.6975 356.711 356.7245 356.738 356.7515 356.765 + 356.7785 356.792 356.8055 356.819 356.8325 356.846 + 356.8595 356.873 356.8865 356.9 356.9135 356.927 + 356.9405 356.954 356.9675 356.981 356.9945 357.008 + 357.0215 357.035 357.0485 357.062 357.0755 357.089 + 357.1025 357.116 357.1295 357.143 357.1565 357.17 + 357.1835 357.197 357.2105 357.224 357.2375 357.251 + 357.2645 357.278 357.2915 357.305 357.3185 357.332 + 357.3455 357.359 357.3725 357.386 357.3995 357.413 + 357.4265 357.44 357.4535 357.467 357.4805 357.494 + 357.5075 357.521 357.5345 357.548 357.5615 357.575 + 357.5885 357.602 357.6155 357.629 357.6425 357.656 + 357.6695 357.683 357.6965 357.71 357.7235 357.737 + 357.7505 357.764 357.7775 357.791 357.8045 357.818 + 357.8315 357.845 357.8585 357.872 357.8855 357.899 + 357.9125 357.926 357.9395 357.953 357.9665 357.98 + 357.9935 358.007 358.0205 358.034 358.0475 358.061 + 358.0745 358.088 358.1015 358.115 358.1285 358.142 + 358.1555 358.169 358.1825 358.196 358.2095 358.223 + 358.2365 358.25 358.2635 358.277 358.2905 358.304 + 358.3175 358.331 358.3445 358.358 358.3715 358.385 + 358.3985 358.412 358.4255 358.439 358.4525 358.466 + 358.4795 358.493 358.5065 358.52 358.5335 358.547 + 358.5605 358.574 358.5875 358.601 358.6145 358.628 + 358.6415 358.655 358.6685 358.682 358.6955 358.709 + 358.7225 358.736 358.7495 358.763 358.7765 358.79 + 358.8035 358.817 358.8305 358.844 358.8575 358.871 + 358.8845 358.898 358.9115 358.925 358.9385 358.952 + 358.9655 358.979 358.9925 359.006 359.0195 359.033 + 359.0465 359.06 359.0735 359.087 359.1005 359.114 + 359.1275 359.141 359.1545 359.168 359.1815 359.195 + 359.2085 359.222 359.2355 359.249 359.2625 359.276 + 359.2895 359.303 359.3165 359.33 359.3435 359.357 + 359.3705 359.384 359.3975 359.411 359.4245 359.438 + 359.4515 359.465 359.4785 359.492 359.5055 359.519 + 359.5325 359.546 359.5595 359.573 359.5865 359.6 + 359.6135 359.627 359.6405 359.654 359.6675 359.681 + 359.6945 359.708 359.7215 359.735 359.7485 359.762 + 359.7755 359.789 359.8025 359.816 359.8295 359.843 + 359.8565 359.87 359.8835 359.897 359.9105 359.924 + 359.9375 359.951 359.9645 359.978 359.9915 360.005 + 360.0185 360.032 360.0455 360.059 360.0725 360.086 + 360.0995 360.113 360.1265 360.14 360.1535 360.167 + 360.1805 360.194 360.2075 360.221 360.2345 360.248 + 360.2615 360.275 360.2885 360.302 360.3155 360.329 + 360.3425 360.356 360.3695 360.383 360.3965 360.41 + 360.4235 360.437 360.4505 360.464 360.4775 360.491 + 360.5045 360.518 360.5315 360.545 360.5585 360.572 + 360.5855 360.599 360.6125 360.626 360.6395 360.653 + 360.6665 360.68 360.6935 360.707 360.7205 360.734 + 360.7475 360.761 360.7745 360.788 360.8015 360.815 + 360.8285 360.842 360.8555 360.869 360.8825 360.896 + 360.9095 360.923 360.9365 360.95 360.9635 360.977 + 360.9905 361.004 361.0175 361.031 361.0445 361.058 + 361.0715 361.085 361.0985 361.112 361.1255 361.139 + 361.1525 361.166 361.1795 361.193 361.2065 361.22 + 361.2335 361.247 361.2605 361.274 361.2875 361.301 + 361.3145 361.328 361.3415 361.355 361.3685 361.382 + 361.3955 361.409 361.4225 361.436 361.4495 361.463 + 361.4765 361.49 361.5035 361.517 361.5305 361.544 + 361.5575 361.571 361.5845 361.598 361.6115 361.625 + 361.6385 361.652 361.6655 361.679 361.6925 361.706 + 361.7195 361.733 361.7465 361.76 361.7735 361.787 + 361.8005 361.814 361.8275 361.841 361.8545 361.868 + 361.8815 361.895 361.9085 361.922 361.9355 361.949 + 361.9625 361.976 361.9895 362.003 362.0165 362.03 + 362.0435 362.057 362.0705 362.084 362.0975 362.111 + 362.1245 362.138 362.1515 362.165 362.1785 362.192 + 362.2055 362.219 362.2325 362.246 362.2595 362.273 + 362.2865 362.3 362.3135 362.327 362.3405 362.354 + 362.3675 362.381 362.3945 362.408 362.4215 362.435 + 362.4485 362.462 362.4755 362.489 362.5025 362.516 + 362.5295 362.543 362.5565 362.57 362.5835 362.597 + 362.6105 362.624 362.6375 362.651 362.6645 362.678 + 362.6915 362.705 362.7185 362.732 362.7455 362.759 + 362.7725 362.786 362.7995 362.813 362.8265 362.84 + 362.8535 362.867 362.8805 362.894 362.9075 362.921 + 362.9345 362.948 362.9615 362.975 362.9885 363.002 + 363.0155 363.029 363.0425 363.056 363.0695 363.083 + 363.0965 363.11 363.1235 363.137 363.1505 363.164 + 363.1775 363.191 363.2045 363.218 363.2315 363.245 + 363.2585 363.272 363.2855 363.299 363.3125 363.3265 + 363.34103 363.35614 363.37177 363.38803 363.40488 363.42236 + 363.4405 363.45932 363.47888 363.49915 363.52017 363.54202 + 363.56467 363.58817 363.61255 363.63788 363.66412 363.69138 + 363.71967 363.749 363.785 363.821 363.857 363.893 + 363.929 363.965 364.001 364.037 364.073 364.109 + 364.145 364.181 364.217 364.253 364.289 364.325 + 364.361 364.397 364.433 364.469 364.505 364.541 + 364.577 364.613 364.649 364.685 364.721 364.757 + 364.793 364.829 364.865 364.901 364.937 364.973 + 365.009 365.045 365.081 365.117 365.153 365.189 ] + x_lower_bound: [ 353.0345 353.0705 353.1065 353.1425 353.1785 353.2145 + 353.2505 353.2865 353.3225 353.3585 353.3945 353.4305 + 353.4665 353.5025 353.5385 353.5745 353.6105 353.6465 + 353.6825 353.7185 353.7545 353.7905 353.8265 353.8625 + 353.8985 353.9345 353.9705 354.0065 354.0425 354.0785 + 354.1145 354.1505 354.1865 354.2225 354.2585 354.2945 + 354.3305 354.3665 354.4025 354.4385 354.4745 354.50717 + 354.53598 354.56375 354.5905 354.61627 354.64114 354.66507 + 354.68817 354.7104 354.73184 354.7525 354.7724 354.7916 + 354.81006 354.82788 354.84506 354.8616 354.87753 354.8929 + 354.9077 354.922 354.93576 354.94925 354.96274 354.97626 + 354.98975 355.00323 355.01675 355.03024 355.04376 355.05725 + 355.07074 355.08426 355.09775 355.11124 355.12476 355.13824 + 355.15176 355.16525 355.17874 355.19226 355.20575 355.21924 + 355.23276 355.24625 355.25974 355.27325 355.28674 355.30026 + 355.31375 355.32724 355.34076 355.35425 355.36774 355.38126 + 355.39474 355.40826 355.42175 355.43524 355.44876 355.46225 + 355.47574 355.48926 355.50275 355.51624 355.52975 355.54324 + 355.55676 355.57025 355.58374 355.59726 355.61075 355.62424 + 355.63776 355.65125 355.66476 355.67825 355.69174 355.70526 + 355.71875 355.73224 355.74576 355.75925 355.77274 355.78625 + 355.79974 355.81326 355.82675 355.84024 355.85376 355.86725 + 355.88074 355.89426 355.90775 355.92126 355.93475 355.94824 + 355.96176 355.97525 355.98874 356.00226 356.01575 356.02924 + 356.04276 356.05624 356.06976 356.08325 356.09674 356.11026 + 356.12375 356.13724 356.15076 356.16425 356.17776 356.19125 + 356.20474 356.21826 356.23175 356.24524 356.25876 356.27225 + 356.28574 356.29926 356.31274 356.32626 356.33975 356.35324 + 356.36676 356.38025 356.39374 356.40726 356.42075 356.43427 + 356.44775 356.46124 356.47476 356.48825 356.50174 356.51526 + 356.52875 356.54224 356.55576 356.56924 356.58276 356.59625 + 356.60974 356.62326 356.63675 356.65024 356.66376 356.67725 + 356.69073 356.70425 356.71774 356.73126 356.74475 356.75824 + 356.77176 356.78525 356.79874 356.81226 356.82574 356.83926 + 356.85275 356.86624 356.87976 356.89325 356.90674 356.92026 + 356.93375 356.94724 356.96075 356.97424 356.98776 357.00125 + 357.01474 357.02826 357.04175 357.05524 357.06876 357.08224 + 357.09576 357.10925 357.12274 357.13626 357.14975 357.16324 + 357.17676 357.19025 357.20374 357.21725 357.23074 357.24426 + 357.25775 357.27124 357.28476 357.29825 357.31174 357.32526 + 357.33875 357.35226 357.36575 357.37924 357.39276 357.40625 + 357.41974 357.43326 357.44675 357.46024 357.47375 357.48724 + 357.50076 357.51425 357.52774 357.54126 357.55475 357.56824 + 357.58176 357.59525 357.60876 357.62225 357.63574 357.64926 + 357.66275 357.67624 357.68976 357.70325 357.71674 357.73026 + 357.74374 357.75726 357.77075 357.78424 357.79776 357.81125 + 357.82474 357.83826 357.85175 357.86526 357.87875 357.89224 + 357.90576 357.91925 357.93274 357.94626 357.95975 357.97324 + 357.98676 358.00024 358.01376 358.02725 358.04074 358.05426 + 358.06775 358.08124 358.09476 358.10825 358.12177 358.13525 + 358.14874 358.16226 358.17575 358.18924 358.20276 358.21625 + 358.22974 358.24326 358.25674 358.27026 358.28375 358.29724 + 358.31076 358.32425 358.33774 358.35126 358.36475 358.37823 + 358.39175 358.40524 358.41876 358.43225 358.44574 358.45926 + 358.47275 358.48624 358.49976 358.51324 358.52676 358.54025 + 358.55374 358.56726 358.58075 358.59424 358.60776 358.62125 + 358.63474 358.64825 358.66174 358.67526 358.68875 358.70224 + 358.71576 358.72925 358.74274 358.75626 358.76974 358.78326 + 358.79675 358.81024 358.82376 358.83725 358.85074 358.86426 + 358.87775 358.89124 358.90475 358.91824 358.93176 358.94525 + 358.95874 358.97226 358.98575 358.99924 359.01276 359.02625 + 359.03976 359.05325 359.06674 359.08026 359.09375 359.10724 + 359.12076 359.13425 359.14774 359.16125 359.17474 359.18826 + 359.20175 359.21524 359.22876 359.24225 359.25574 359.26926 + 359.28275 359.29626 359.30975 359.32324 359.33676 359.35025 + 359.36374 359.37726 359.39075 359.40424 359.41776 359.43124 + 359.44476 359.45825 359.47174 359.48526 359.49875 359.51224 + 359.52576 359.53925 359.55276 359.56625 359.57974 359.59326 + 359.60675 359.62024 359.63376 359.64725 359.66074 359.67426 + 359.68774 359.70126 359.71475 359.72824 359.74176 359.75525 + 359.76874 359.78226 359.79575 359.80927 359.82275 359.83624 + 359.84976 359.86325 359.87674 359.89026 359.90375 359.91724 + 359.93076 359.94424 359.95776 359.97125 359.98474 359.99826 + 360.01175 360.02524 360.03876 360.05225 360.06573 360.07925 + 360.09274 360.10626 360.11975 360.13324 360.14676 360.16025 + 360.17374 360.18726 360.20074 360.21426 360.22775 360.24124 + 360.25476 360.26825 360.28174 360.29526 360.30875 360.32224 + 360.33575 360.34924 360.36276 360.37625 360.38974 360.40326 + 360.41675 360.43024 360.44376 360.45724 360.47076 360.48425 + 360.49774 360.51126 360.52475 360.53824 360.55176 360.56525 + 360.57874 360.59225 360.60574 360.61926 360.63275 360.64624 + 360.65976 360.67325 360.68674 360.70026 360.71375 360.72726 + 360.74075 360.75424 360.76776 360.78125 360.79474 360.80826 + 360.82175 360.83524 360.84875 360.86224 360.87576 360.88925 + 360.90274 360.91626 360.92975 360.94324 360.95676 360.97025 + 360.98376 360.99725 361.01074 361.02426 361.03775 361.05124 + 361.06476 361.07825 361.09174 361.10526 361.11874 361.13226 + 361.14575 361.15924 361.17276 361.18625 361.19974 361.21326 + 361.22675 361.24026 361.25375 361.26724 361.28076 361.29425 + 361.30774 361.32126 361.33475 361.34824 361.36176 361.37524 + 361.38876 361.40225 361.41574 361.42926 361.44275 361.45624 + 361.46976 361.48325 361.49677 361.51025 361.52374 361.53726 + 361.55075 361.56424 361.57776 361.59125 361.60474 361.61826 + 361.63174 361.64526 361.65875 361.67224 361.68576 361.69925 + 361.71274 361.72626 361.73975 361.75323 361.76675 361.78024 + 361.79376 361.80725 361.82074 361.83426 361.84775 361.86124 + 361.87476 361.88824 361.90176 361.91525 361.92874 361.94226 + 361.95575 361.96924 361.98276 361.99625 362.00974 362.02325 + 362.03674 362.05026 362.06375 362.07724 362.09076 362.10425 + 362.11774 362.13126 362.14474 362.15826 362.17175 362.18524 + 362.19876 362.21225 362.22574 362.23926 362.25275 362.26624 + 362.27975 362.29324 362.30676 362.32025 362.33374 362.34726 + 362.36075 362.37424 362.38776 362.40125 362.41476 362.42825 + 362.44174 362.45526 362.46875 362.48224 362.49576 362.50925 + 362.52274 362.53625 362.54974 362.56326 362.57675 362.59024 + 362.60376 362.61725 362.63074 362.64426 362.65775 362.67126 + 362.68475 362.69824 362.71176 362.72525 362.73874 362.75226 + 362.76575 362.77924 362.79276 362.80624 362.81976 362.83325 + 362.84674 362.86026 362.87375 362.88724 362.90076 362.91425 + 362.92776 362.94125 362.95474 362.96826 362.98175 362.99524 + 363.00876 363.02225 363.03574 363.04926 363.06274 363.07626 + 363.08975 363.10324 363.11676 363.13025 363.14374 363.15726 + 363.17075 363.18427 363.19775 363.21124 363.22476 363.23825 + 363.25174 363.26526 363.27875 363.29224 363.30576 363.31952 + 363.33377 363.34857 363.36395 363.3799 363.39645 363.4136 + 363.43143 363.44992 363.46912 363.489 363.50967 363.5311 + 363.55334 363.57642 363.60037 363.6252 363.651 363.67776 + 363.7055 363.7343 363.767 363.803 363.839 363.875 + 363.911 363.947 363.983 364.019 364.055 364.091 + 364.127 364.163 364.199 364.235 364.271 364.307 + 364.343 364.379 364.415 364.451 364.487 364.523 + 364.559 364.595 364.631 364.667 364.703 364.739 + 364.775 364.811 364.847 364.883 364.919 364.955 + 364.991 365.027 365.063 365.099 365.135 365.171 ] + x_upper_bound: [ 353.0705 353.1065 353.1425 353.1785 353.2145 353.2505 + 353.2865 353.3225 353.3585 353.3945 353.4305 353.4665 + 353.5025 353.5385 353.5745 353.6105 353.6465 353.6825 + 353.7185 353.7545 353.7905 353.8265 353.8625 353.8985 + 353.9345 353.9705 354.0065 354.0425 354.0785 354.1145 + 354.1505 354.1865 354.2225 354.2585 354.2945 354.3305 + 354.3665 354.4025 354.4385 354.4745 354.50717 354.53598 + 354.56375 354.5905 354.61627 354.64114 354.66507 354.68817 + 354.7104 354.73184 354.7525 354.7724 354.7916 354.81006 + 354.82788 354.84506 354.8616 354.87753 354.8929 354.9077 + 354.922 354.93576 354.94925 354.96274 354.97626 354.98975 + 355.00323 355.01675 355.03024 355.04376 355.05725 355.07074 + 355.08426 355.09775 355.11124 355.12476 355.13824 355.15176 + 355.16525 355.17874 355.19226 355.20575 355.21924 355.23276 + 355.24625 355.25974 355.27325 355.28674 355.30026 355.31375 + 355.32724 355.34076 355.35425 355.36774 355.38126 355.39474 + 355.40826 355.42175 355.43524 355.44876 355.46225 355.47574 + 355.48926 355.50275 355.51624 355.52975 355.54324 355.55676 + 355.57025 355.58374 355.59726 355.61075 355.62424 355.63776 + 355.65125 355.66476 355.67825 355.69174 355.70526 355.71875 + 355.73224 355.74576 355.75925 355.77274 355.78625 355.79974 + 355.81326 355.82675 355.84024 355.85376 355.86725 355.88074 + 355.89426 355.90775 355.92126 355.93475 355.94824 355.96176 + 355.97525 355.98874 356.00226 356.01575 356.02924 356.04276 + 356.05624 356.06976 356.08325 356.09674 356.11026 356.12375 + 356.13724 356.15076 356.16425 356.17776 356.19125 356.20474 + 356.21826 356.23175 356.24524 356.25876 356.27225 356.28574 + 356.29926 356.31274 356.32626 356.33975 356.35324 356.36676 + 356.38025 356.39374 356.40726 356.42075 356.43427 356.44775 + 356.46124 356.47476 356.48825 356.50174 356.51526 356.52875 + 356.54224 356.55576 356.56924 356.58276 356.59625 356.60974 + 356.62326 356.63675 356.65024 356.66376 356.67725 356.69073 + 356.70425 356.71774 356.73126 356.74475 356.75824 356.77176 + 356.78525 356.79874 356.81226 356.82574 356.83926 356.85275 + 356.86624 356.87976 356.89325 356.90674 356.92026 356.93375 + 356.94724 356.96075 356.97424 356.98776 357.00125 357.01474 + 357.02826 357.04175 357.05524 357.06876 357.08224 357.09576 + 357.10925 357.12274 357.13626 357.14975 357.16324 357.17676 + 357.19025 357.20374 357.21725 357.23074 357.24426 357.25775 + 357.27124 357.28476 357.29825 357.31174 357.32526 357.33875 + 357.35226 357.36575 357.37924 357.39276 357.40625 357.41974 + 357.43326 357.44675 357.46024 357.47375 357.48724 357.50076 + 357.51425 357.52774 357.54126 357.55475 357.56824 357.58176 + 357.59525 357.60876 357.62225 357.63574 357.64926 357.66275 + 357.67624 357.68976 357.70325 357.71674 357.73026 357.74374 + 357.75726 357.77075 357.78424 357.79776 357.81125 357.82474 + 357.83826 357.85175 357.86526 357.87875 357.89224 357.90576 + 357.91925 357.93274 357.94626 357.95975 357.97324 357.98676 + 358.00024 358.01376 358.02725 358.04074 358.05426 358.06775 + 358.08124 358.09476 358.10825 358.12177 358.13525 358.14874 + 358.16226 358.17575 358.18924 358.20276 358.21625 358.22974 + 358.24326 358.25674 358.27026 358.28375 358.29724 358.31076 + 358.32425 358.33774 358.35126 358.36475 358.37823 358.39175 + 358.40524 358.41876 358.43225 358.44574 358.45926 358.47275 + 358.48624 358.49976 358.51324 358.52676 358.54025 358.55374 + 358.56726 358.58075 358.59424 358.60776 358.62125 358.63474 + 358.64825 358.66174 358.67526 358.68875 358.70224 358.71576 + 358.72925 358.74274 358.75626 358.76974 358.78326 358.79675 + 358.81024 358.82376 358.83725 358.85074 358.86426 358.87775 + 358.89124 358.90475 358.91824 358.93176 358.94525 358.95874 + 358.97226 358.98575 358.99924 359.01276 359.02625 359.03976 + 359.05325 359.06674 359.08026 359.09375 359.10724 359.12076 + 359.13425 359.14774 359.16125 359.17474 359.18826 359.20175 + 359.21524 359.22876 359.24225 359.25574 359.26926 359.28275 + 359.29626 359.30975 359.32324 359.33676 359.35025 359.36374 + 359.37726 359.39075 359.40424 359.41776 359.43124 359.44476 + 359.45825 359.47174 359.48526 359.49875 359.51224 359.52576 + 359.53925 359.55276 359.56625 359.57974 359.59326 359.60675 + 359.62024 359.63376 359.64725 359.66074 359.67426 359.68774 + 359.70126 359.71475 359.72824 359.74176 359.75525 359.76874 + 359.78226 359.79575 359.80927 359.82275 359.83624 359.84976 + 359.86325 359.87674 359.89026 359.90375 359.91724 359.93076 + 359.94424 359.95776 359.97125 359.98474 359.99826 360.01175 + 360.02524 360.03876 360.05225 360.06573 360.07925 360.09274 + 360.10626 360.11975 360.13324 360.14676 360.16025 360.17374 + 360.18726 360.20074 360.21426 360.22775 360.24124 360.25476 + 360.26825 360.28174 360.29526 360.30875 360.32224 360.33575 + 360.34924 360.36276 360.37625 360.38974 360.40326 360.41675 + 360.43024 360.44376 360.45724 360.47076 360.48425 360.49774 + 360.51126 360.52475 360.53824 360.55176 360.56525 360.57874 + 360.59225 360.60574 360.61926 360.63275 360.64624 360.65976 + 360.67325 360.68674 360.70026 360.71375 360.72726 360.74075 + 360.75424 360.76776 360.78125 360.79474 360.80826 360.82175 + 360.83524 360.84875 360.86224 360.87576 360.88925 360.90274 + 360.91626 360.92975 360.94324 360.95676 360.97025 360.98376 + 360.99725 361.01074 361.02426 361.03775 361.05124 361.06476 + 361.07825 361.09174 361.10526 361.11874 361.13226 361.14575 + 361.15924 361.17276 361.18625 361.19974 361.21326 361.22675 + 361.24026 361.25375 361.26724 361.28076 361.29425 361.30774 + 361.32126 361.33475 361.34824 361.36176 361.37524 361.38876 + 361.40225 361.41574 361.42926 361.44275 361.45624 361.46976 + 361.48325 361.49677 361.51025 361.52374 361.53726 361.55075 + 361.56424 361.57776 361.59125 361.60474 361.61826 361.63174 + 361.64526 361.65875 361.67224 361.68576 361.69925 361.71274 + 361.72626 361.73975 361.75323 361.76675 361.78024 361.79376 + 361.80725 361.82074 361.83426 361.84775 361.86124 361.87476 + 361.88824 361.90176 361.91525 361.92874 361.94226 361.95575 + 361.96924 361.98276 361.99625 362.00974 362.02325 362.03674 + 362.05026 362.06375 362.07724 362.09076 362.10425 362.11774 + 362.13126 362.14474 362.15826 362.17175 362.18524 362.19876 + 362.21225 362.22574 362.23926 362.25275 362.26624 362.27975 + 362.29324 362.30676 362.32025 362.33374 362.34726 362.36075 + 362.37424 362.38776 362.40125 362.41476 362.42825 362.44174 + 362.45526 362.46875 362.48224 362.49576 362.50925 362.52274 + 362.53625 362.54974 362.56326 362.57675 362.59024 362.60376 + 362.61725 362.63074 362.64426 362.65775 362.67126 362.68475 + 362.69824 362.71176 362.72525 362.73874 362.75226 362.76575 + 362.77924 362.79276 362.80624 362.81976 362.83325 362.84674 + 362.86026 362.87375 362.88724 362.90076 362.91425 362.92776 + 362.94125 362.95474 362.96826 362.98175 362.99524 363.00876 + 363.02225 363.03574 363.04926 363.06274 363.07626 363.08975 + 363.10324 363.11676 363.13025 363.14374 363.15726 363.17075 + 363.18427 363.19775 363.21124 363.22476 363.23825 363.25174 + 363.26526 363.27875 363.29224 363.30576 363.31952 363.33377 + 363.34857 363.36395 363.3799 363.39645 363.4136 363.43143 + 363.44992 363.46912 363.489 363.50967 363.5311 363.55334 + 363.57642 363.60037 363.6252 363.651 363.67776 363.7055 + 363.7343 363.767 363.803 363.839 363.875 363.911 + 363.947 363.983 364.019 364.055 364.091 364.127 + 364.163 364.199 364.235 364.271 364.307 364.343 + 364.379 364.415 364.451 364.487 364.523 364.559 + 364.595 364.631 364.667 364.703 364.739 364.775 + 364.811 364.847 364.883 364.919 364.955 364.991 + 365.027 365.063 365.099 365.135 365.171 365.207 ] y: [ -5.59320021e+00 -5.55719995e+00 -5.52120018e+00 -5.48519993e+00 -5.44920015e+00 -5.41319990e+00 -5.37720013e+00 -5.34119987e+00 -5.30520010e+00 -5.26919985e+00 -5.23320007e+00 -5.19719982e+00 @@ -4870,453 +4570,378 @@ [ 102193. 102201. 102208. ..., 101695. 101671. 101671.] [ 102199. 102206. 102213. ..., 101706. 101689. 101686.] [ 102204. 102211. 102218. ..., 101727. 101707. 101701.]] - x: [ 353.05249023 353.08850098 353.12451172 353.16049194 353.19650269 - 353.23251343 353.26849365 353.30450439 353.34051514 353.37649536 - 353.4125061 353.44848633 353.48449707 353.52050781 353.55648804 - 353.59249878 353.62850952 353.66448975 353.70050049 353.73651123 - 353.77249146 353.8085022 353.84451294 353.88049316 353.91650391 - 353.95251465 353.98849487 354.02450562 354.06048584 354.09649658 - 354.13250732 354.16848755 354.20449829 354.24050903 354.27648926 - 354.3125 354.34851074 354.38449097 354.42050171 354.45651245 - 354.49249268 354.52185059 354.55010986 354.57736206 354.6036377 - 354.62893677 354.65332031 354.67684937 354.69949341 354.72131348 - 354.74234009 354.76263428 354.78216553 354.80099487 354.81915283 - 354.8366394 354.85348511 354.86972046 354.88537598 354.90045166 - 354.91497803 354.9289856 354.94250488 354.95599365 354.96951294 - 354.98300171 354.99649048 355.01000977 355.02349854 355.0369873 - 355.05050659 355.06399536 355.07751465 355.09100342 355.10449219 - 355.11801147 355.13150024 355.14498901 355.1585083 355.17199707 - 355.18548584 355.19900513 355.2124939 355.22601318 355.23950195 - 355.25299072 355.26651001 355.27999878 355.29348755 355.30700684 - 355.32049561 355.33401489 355.34750366 355.36099243 355.37451172 - 355.38800049 355.40148926 355.41500854 355.42849731 355.44198608 - 355.45550537 355.46899414 355.48251343 355.4960022 355.50949097 - 355.52301025 355.53649902 355.54998779 355.56350708 355.57699585 - 355.59051514 355.60400391 355.61749268 355.63101196 355.64450073 - 355.6579895 355.67150879 355.68499756 355.69848633 355.71200562 - 355.72549438 355.73901367 355.75250244 355.76599121 355.7795105 - 355.79299927 355.80648804 355.82000732 355.83349609 355.84698486 - 355.86050415 355.87399292 355.88751221 355.90100098 355.91448975 - 355.92800903 355.9414978 355.95498657 355.96850586 355.98199463 - 355.99551392 356.00900269 356.02249146 356.03601074 356.04949951 - 356.06298828 356.07650757 356.08999634 356.10348511 356.11700439 - 356.13049316 356.14401245 356.15750122 356.17098999 356.18450928 - 356.19799805 356.21148682 356.2250061 356.23849487 356.25201416 - 356.26550293 356.2789917 356.29251099 356.30599976 356.31948853 - 356.33300781 356.34649658 356.35998535 356.37350464 356.38699341 - 356.4005127 356.41400146 356.42749023 356.44100952 356.45449829 - 356.46798706 356.48150635 356.49499512 356.5085144 356.52200317 - 356.53549194 356.54901123 356.5625 356.57598877 356.58950806 - 356.60299683 356.6164856 356.63000488 356.64349365 356.65701294 - 356.67050171 356.68399048 356.69750977 356.71099854 356.7244873 - 356.73800659 356.75149536 356.76501465 356.77850342 356.79199219 - 356.80551147 356.81900024 356.83248901 356.8460083 356.85949707 - 356.87298584 356.88650513 356.8999939 356.91351318 356.92700195 - 356.94049072 356.95401001 356.96749878 356.98098755 356.99450684 - 357.00799561 357.02151489 357.03500366 357.04849243 357.06201172 - 357.07550049 357.08898926 357.10250854 357.11599731 357.12948608 - 357.14300537 357.15649414 357.17001343 357.1835022 357.19699097 - 357.21051025 357.22399902 357.23748779 357.25100708 357.26449585 - 357.27801514 357.29150391 357.30499268 357.31851196 357.33200073 - 357.3454895 357.35900879 357.37249756 357.38598633 357.39950562 - 357.41299438 357.42651367 357.44000244 357.45349121 357.4670105 - 357.48049927 357.49398804 357.50750732 357.52099609 357.53448486 - 357.54800415 357.56149292 357.57501221 357.58850098 357.60198975 - 357.61550903 357.6289978 357.64248657 357.65600586 357.66949463 - 357.68301392 357.69650269 357.70999146 357.72351074 357.73699951 - 357.75048828 357.76400757 357.77749634 357.79098511 357.80450439 - 357.81799316 357.83151245 357.84500122 357.85848999 357.87200928 - 357.88549805 357.89898682 357.9125061 357.92599487 357.93951416 - 357.95300293 357.9664917 357.98001099 357.99349976 358.00698853 - 358.02050781 358.03399658 358.04748535 358.06100464 358.07449341 - 358.0880127 358.10150146 358.11499023 358.12850952 358.14199829 - 358.15548706 358.16900635 358.18249512 358.1960144 358.20950317 - 358.22299194 358.23651123 358.25 358.26348877 358.27700806 - 358.29049683 358.3039856 358.31750488 358.33099365 358.34451294 - 358.35800171 358.37149048 358.38500977 358.39849854 358.4119873 - 358.42550659 358.43899536 358.45251465 358.46600342 358.47949219 - 358.49301147 358.50650024 358.51998901 358.5335083 358.54699707 - 358.56048584 358.57400513 358.5874939 358.60101318 358.61450195 - 358.62799072 358.64151001 358.65499878 358.66848755 358.68200684 - 358.69549561 358.70901489 358.72250366 358.73599243 358.74951172 - 358.76300049 358.77648926 358.79000854 358.80349731 358.81698608 - 358.83050537 358.84399414 358.85751343 358.8710022 358.88449097 - 358.89801025 358.91149902 358.92498779 358.93850708 358.95199585 - 358.96551514 358.97900391 358.99249268 359.00601196 359.01950073 - 359.0329895 359.04650879 359.05999756 359.07348633 359.08700562 - 359.10049438 359.11401367 359.12750244 359.14099121 359.1545105 - 359.16799927 359.18148804 359.19500732 359.20849609 359.22198486 - 359.23550415 359.24899292 359.26251221 359.27600098 359.28948975 - 359.30300903 359.3164978 359.32998657 359.34350586 359.35699463 - 359.37051392 359.38400269 359.39749146 359.41101074 359.42449951 - 359.43798828 359.45150757 359.46499634 359.47848511 359.49200439 - 359.50549316 359.51901245 359.53250122 359.54598999 359.55950928 - 359.57299805 359.58648682 359.6000061 359.61349487 359.62701416 - 359.64050293 359.6539917 359.66751099 359.68099976 359.69448853 - 359.70800781 359.72149658 359.73498535 359.74850464 359.76199341 - 359.7755127 359.78900146 359.80249023 359.81600952 359.82949829 - 359.84298706 359.85650635 359.86999512 359.8835144 359.89700317 - 359.91049194 359.92401123 359.9375 359.95098877 359.96450806 - 359.97799683 359.9914856 360.00500488 360.01849365 360.03201294 - 360.04550171 360.05899048 360.07250977 360.08599854 360.0994873 - 360.11300659 360.12649536 360.14001465 360.15350342 360.16699219 - 360.18051147 360.19400024 360.20748901 360.2210083 360.23449707 - 360.24798584 360.26150513 360.2749939 360.28851318 360.30200195 - 360.31549072 360.32901001 360.34249878 360.35598755 360.36950684 - 360.38299561 360.39651489 360.41000366 360.42349243 360.43701172 - 360.45050049 360.46398926 360.47750854 360.49099731 360.50448608 - 360.51800537 360.53149414 360.54501343 360.5585022 360.57199097 - 360.58551025 360.59899902 360.61248779 360.62600708 360.63949585 - 360.65301514 360.66650391 360.67999268 360.69351196 360.70700073 - 360.7204895 360.73400879 360.74749756 360.76098633 360.77450562 - 360.78799438 360.80151367 360.81500244 360.82849121 360.8420105 - 360.85549927 360.86898804 360.88250732 360.89599609 360.90948486 - 360.92300415 360.93649292 360.95001221 360.96350098 360.97698975 - 360.99050903 361.0039978 361.01748657 361.03100586 361.04449463 - 361.05801392 361.07150269 361.08499146 361.09851074 361.11199951 - 361.12548828 361.13900757 361.15249634 361.16598511 361.17950439 - 361.19299316 361.20651245 361.22000122 361.23348999 361.24700928 - 361.26049805 361.27398682 361.2875061 361.30099487 361.31451416 - 361.32800293 361.3414917 361.35501099 361.36849976 361.38198853 - 361.39550781 361.40899658 361.42248535 361.43600464 361.44949341 - 361.4630127 361.47650146 361.48999023 361.50350952 361.51699829 - 361.53048706 361.54400635 361.55749512 361.5710144 361.58450317 - 361.59799194 361.61151123 361.625 361.63848877 361.65200806 - 361.66549683 361.6789856 361.69250488 361.70599365 361.71951294 - 361.73300171 361.74649048 361.76000977 361.77349854 361.7869873 - 361.80050659 361.81399536 361.82751465 361.84100342 361.85449219 - 361.86801147 361.88150024 361.89498901 361.9085083 361.92199707 - 361.93548584 361.94900513 361.9624939 361.97601318 361.98950195 - 362.00299072 362.01651001 362.02999878 362.04348755 362.05700684 - 362.07049561 362.08401489 362.09750366 362.11099243 362.12451172 - 362.13800049 362.15148926 362.16500854 362.17849731 362.19198608 - 362.20550537 362.21899414 362.23251343 362.2460022 362.25949097 - 362.27301025 362.28649902 362.29998779 362.31350708 362.32699585 - 362.34051514 362.35400391 362.36749268 362.38101196 362.39450073 - 362.4079895 362.42150879 362.43499756 362.44848633 362.46200562 - 362.47549438 362.48901367 362.50250244 362.51599121 362.5295105 - 362.54299927 362.55648804 362.57000732 362.58349609 362.59698486 - 362.61050415 362.62399292 362.63751221 362.65100098 362.66448975 - 362.67800903 362.6914978 362.70498657 362.71850586 362.73199463 - 362.74551392 362.75900269 362.77249146 362.78601074 362.79949951 - 362.81298828 362.82650757 362.83999634 362.85348511 362.86700439 - 362.88049316 362.89401245 362.90750122 362.92098999 362.93450928 - 362.94799805 362.96148682 362.9750061 362.98849487 363.00201416 - 363.01550293 363.0289917 363.04251099 363.05599976 363.06948853 - 363.08300781 363.09649658 363.10998535 363.12350464 363.13699341 - 363.1505127 363.16400146 363.17749023 363.19100952 363.20449829 - 363.21798706 363.23150635 363.24499512 363.2585144 363.27200317 - 363.28549194 363.29901123 363.3125 363.32650757 363.34103394 - 363.35614014 363.37176514 363.38803101 363.40487671 363.42236328 - 363.44049072 363.45932007 363.47888184 363.49914551 363.52017212 - 363.54202271 363.56466675 363.58816528 363.61254883 363.63787842 - 363.66412354 363.69137573 363.71966553 363.74899292 363.78500366 - 363.8210144 363.85699463 363.89300537 363.9289856 363.96499634 - 364.00100708 364.0369873 364.07299805 364.10900879 364.14498901 - 364.18099976 364.2170105 364.25299072 364.28900146 364.32501221 - 364.36099243 364.39700317 364.43301392 364.46899414 364.50500488 - 364.54098511 364.57699585 364.61300659 364.64898682 364.68499756 - 364.7210083 364.75698853 364.79299927 364.82901001 364.86499023 - 364.90100098 364.93701172 364.97299194 365.00900269 365.04501343 - 365.08099365 365.11700439 365.15301514 365.18899536] - x_lower_bound: [ 353.03448486 353.07049561 353.10650635 353.14248657 353.17849731 - 353.21450806 353.25048828 353.28649902 353.32250977 353.35848999 - 353.39450073 353.43051147 353.4664917 353.50250244 353.53851318 - 353.57449341 353.61050415 353.64651489 353.68249512 353.71850586 - 353.75448608 353.79049683 353.82650757 353.86248779 353.89849854 - 353.93450928 353.9704895 354.00650024 354.04251099 354.07849121 - 354.11450195 354.1505127 354.18649292 354.22250366 354.2585144 - 354.29449463 354.33050537 354.3664856 354.40249634 354.43850708 - 354.4744873 354.50717163 354.53598022 354.56375122 354.59051514 - 354.61627197 354.6411438 354.66506958 354.68817139 354.71038818 - 354.73184204 354.75250244 354.7723999 354.79159546 354.81005859 - 354.82788086 354.84506226 354.86160278 354.87753296 354.89291382 - 354.90771484 354.92199707 354.9357605 354.94924927 354.96273804 - 354.97625732 354.98974609 355.00323486 355.01675415 355.03024292 - 355.04376221 355.05725098 355.07073975 355.08425903 355.0977478 - 355.11123657 355.12475586 355.13824463 355.15176392 355.16525269 - 355.17874146 355.19226074 355.20574951 355.21923828 355.23275757 - 355.24624634 355.25973511 355.27325439 355.28674316 355.30026245 - 355.31375122 355.32723999 355.34075928 355.35424805 355.36773682 - 355.3812561 355.39474487 355.40826416 355.42175293 355.4352417 - 355.44876099 355.46224976 355.47573853 355.48925781 355.50274658 - 355.51623535 355.52975464 355.54324341 355.5567627 355.57025146 - 355.58374023 355.59725952 355.61074829 355.62423706 355.63775635 - 355.65124512 355.6647644 355.67825317 355.69174194 355.70526123 - 355.71875 355.73223877 355.74575806 355.75924683 355.7727356 - 355.78625488 355.79974365 355.81326294 355.82675171 355.84024048 - 355.85375977 355.86724854 355.8807373 355.89425659 355.90774536 - 355.92126465 355.93475342 355.94824219 355.96176147 355.97525024 - 355.98873901 356.0022583 356.01574707 356.02923584 356.04275513 - 356.0562439 356.06976318 356.08325195 356.09674072 356.11026001 - 356.12374878 356.13723755 356.15075684 356.16424561 356.17776489 - 356.19125366 356.20474243 356.21826172 356.23175049 356.24523926 - 356.25875854 356.27224731 356.28573608 356.29925537 356.31274414 - 356.32626343 356.3397522 356.35324097 356.36676025 356.38024902 - 356.39373779 356.40725708 356.42074585 356.43426514 356.44775391 - 356.46124268 356.47476196 356.48825073 356.5017395 356.51525879 - 356.52874756 356.54223633 356.55575562 356.56924438 356.58276367 - 356.59625244 356.60974121 356.6232605 356.63674927 356.65023804 - 356.66375732 356.67724609 356.69073486 356.70425415 356.71774292 - 356.73126221 356.74475098 356.75823975 356.77175903 356.7852478 - 356.79873657 356.81225586 356.82574463 356.83926392 356.85275269 - 356.86624146 356.87976074 356.89324951 356.90673828 356.92025757 - 356.93374634 356.94723511 356.96075439 356.97424316 356.98776245 - 357.00125122 357.01473999 357.02825928 357.04174805 357.05523682 - 357.0687561 357.08224487 357.09576416 357.10925293 357.1227417 - 357.13626099 357.14974976 357.16323853 357.17675781 357.19024658 - 357.20373535 357.21725464 357.23074341 357.2442627 357.25775146 - 357.27124023 357.28475952 357.29824829 357.31173706 357.32525635 - 357.33874512 357.3522644 357.36575317 357.37924194 357.39276123 - 357.40625 357.41973877 357.43325806 357.44674683 357.4602356 - 357.47375488 357.48724365 357.50076294 357.51425171 357.52774048 - 357.54125977 357.55474854 357.5682373 357.58175659 357.59524536 - 357.60876465 357.62225342 357.63574219 357.64926147 357.66275024 - 357.67623901 357.6897583 357.70324707 357.71673584 357.73025513 - 357.7437439 357.75726318 357.77075195 357.78424072 357.79776001 - 357.81124878 357.82473755 357.83825684 357.85174561 357.86526489 - 357.87875366 357.89224243 357.90576172 357.91925049 357.93273926 - 357.94625854 357.95974731 357.97323608 357.98675537 358.00024414 - 358.01376343 358.0272522 358.04074097 358.05426025 358.06774902 - 358.08123779 358.09475708 358.10824585 358.12176514 358.13525391 - 358.14874268 358.16226196 358.17575073 358.1892395 358.20275879 - 358.21624756 358.22973633 358.24325562 358.25674438 358.27026367 - 358.28375244 358.29724121 358.3107605 358.32424927 358.33773804 - 358.35125732 358.36474609 358.37823486 358.39175415 358.40524292 - 358.41876221 358.43225098 358.44573975 358.45925903 358.4727478 - 358.48623657 358.49975586 358.51324463 358.52676392 358.54025269 - 358.55374146 358.56726074 358.58074951 358.59423828 358.60775757 - 358.62124634 358.63473511 358.64825439 358.66174316 358.67526245 - 358.68875122 358.70223999 358.71575928 358.72924805 358.74273682 - 358.7562561 358.76974487 358.78326416 358.79675293 358.8102417 - 358.82376099 358.83724976 358.85073853 358.86425781 358.87774658 - 358.89123535 358.90475464 358.91824341 358.9317627 358.94525146 - 358.95874023 358.97225952 358.98574829 358.99923706 359.01275635 - 359.02624512 359.0397644 359.05325317 359.06674194 359.08026123 - 359.09375 359.10723877 359.12075806 359.13424683 359.1477356 - 359.16125488 359.17474365 359.18826294 359.20175171 359.21524048 - 359.22875977 359.24224854 359.2557373 359.26925659 359.28274536 - 359.29626465 359.30975342 359.32324219 359.33676147 359.35025024 - 359.36373901 359.3772583 359.39074707 359.40423584 359.41775513 - 359.4312439 359.44476318 359.45825195 359.47174072 359.48526001 - 359.49874878 359.51223755 359.52575684 359.53924561 359.55276489 - 359.56625366 359.57974243 359.59326172 359.60675049 359.62023926 - 359.63375854 359.64724731 359.66073608 359.67425537 359.68774414 - 359.70126343 359.7147522 359.72824097 359.74176025 359.75524902 - 359.76873779 359.78225708 359.79574585 359.80926514 359.82275391 - 359.83624268 359.84976196 359.86325073 359.8767395 359.89025879 - 359.90374756 359.91723633 359.93075562 359.94424438 359.95776367 - 359.97125244 359.98474121 359.9982605 360.01174927 360.02523804 - 360.03875732 360.05224609 360.06573486 360.07925415 360.09274292 - 360.10626221 360.11975098 360.13323975 360.14675903 360.1602478 - 360.17373657 360.18725586 360.20074463 360.21426392 360.22775269 - 360.24124146 360.25476074 360.26824951 360.28173828 360.29525757 - 360.30874634 360.32223511 360.33575439 360.34924316 360.36276245 - 360.37625122 360.38973999 360.40325928 360.41674805 360.43023682 - 360.4437561 360.45724487 360.47076416 360.48425293 360.4977417 - 360.51126099 360.52474976 360.53823853 360.55175781 360.56524658 - 360.57873535 360.59225464 360.60574341 360.6192627 360.63275146 - 360.64624023 360.65975952 360.67324829 360.68673706 360.70025635 - 360.71374512 360.7272644 360.74075317 360.75424194 360.76776123 - 360.78125 360.79473877 360.80825806 360.82174683 360.8352356 - 360.84875488 360.86224365 360.87576294 360.88925171 360.90274048 - 360.91625977 360.92974854 360.9432373 360.95675659 360.97024536 - 360.98376465 360.99725342 361.01074219 361.02426147 361.03775024 - 361.05123901 361.0647583 361.07824707 361.09173584 361.10525513 - 361.1187439 361.13226318 361.14575195 361.15924072 361.17276001 - 361.18624878 361.19973755 361.21325684 361.22674561 361.24026489 - 361.25375366 361.26724243 361.28076172 361.29425049 361.30773926 - 361.32125854 361.33474731 361.34823608 361.36175537 361.37524414 - 361.38876343 361.4022522 361.41574097 361.42926025 361.44274902 - 361.45623779 361.46975708 361.48324585 361.49676514 361.51025391 - 361.52374268 361.53726196 361.55075073 361.5642395 361.57775879 - 361.59124756 361.60473633 361.61825562 361.63174438 361.64526367 - 361.65875244 361.67224121 361.6857605 361.69924927 361.71273804 - 361.72625732 361.73974609 361.75323486 361.76675415 361.78024292 - 361.79376221 361.80725098 361.82073975 361.83425903 361.8477478 - 361.86123657 361.87475586 361.88824463 361.90176392 361.91525269 - 361.92874146 361.94226074 361.95574951 361.96923828 361.98275757 - 361.99624634 362.00973511 362.02325439 362.03674316 362.05026245 - 362.06375122 362.07723999 362.09075928 362.10424805 362.11773682 - 362.1312561 362.14474487 362.15826416 362.17175293 362.1852417 - 362.19876099 362.21224976 362.22573853 362.23925781 362.25274658 - 362.26623535 362.27975464 362.29324341 362.3067627 362.32025146 - 362.33374023 362.34725952 362.36074829 362.37423706 362.38775635 - 362.40124512 362.4147644 362.42825317 362.44174194 362.45526123 - 362.46875 362.48223877 362.49575806 362.50924683 362.5227356 - 362.53625488 362.54974365 362.56326294 362.57675171 362.59024048 - 362.60375977 362.61724854 362.6307373 362.64425659 362.65774536 - 362.67126465 362.68475342 362.69824219 362.71176147 362.72525024 - 362.73873901 362.7522583 362.76574707 362.77923584 362.79275513 - 362.8062439 362.81976318 362.83325195 362.84674072 362.86026001 - 362.87374878 362.88723755 362.90075684 362.91424561 362.92776489 - 362.94125366 362.95474243 362.96826172 362.98175049 362.99523926 - 363.00875854 363.02224731 363.03573608 363.04925537 363.06274414 - 363.07626343 363.0897522 363.10324097 363.11676025 363.13024902 - 363.14373779 363.15725708 363.17074585 363.18426514 363.19775391 - 363.21124268 363.22476196 363.23825073 363.2517395 363.26525879 - 363.27874756 363.29223633 363.30575562 363.31951904 363.33377075 - 363.34857178 363.36395264 363.37991333 363.39645386 363.41360474 - 363.431427 363.44992065 363.46911621 363.48901367 363.50967407 - 363.53109741 363.55334473 363.57641602 363.60037231 363.62521362 - 363.65100098 363.67776489 363.70550537 363.73431396 363.76699829 - 363.80300903 363.83898926 363.875 363.91101074 363.94699097 - 363.98300171 364.01901245 364.05499268 364.09100342 364.12701416 - 364.16299438 364.19900513 364.23498535 364.27099609 364.30700684 - 364.34298706 364.3789978 364.41500854 364.45098877 364.48699951 - 364.52301025 364.55899048 364.59500122 364.63101196 364.66699219 - 364.70300293 364.73901367 364.7749939 364.81100464 364.84698486 - 364.88299561 364.91900635 364.95498657 364.99099731 365.02700806 - 365.06298828 365.09899902 365.13500977 365.17098999] - x_upper_bound: [ 353.07049561 353.10650635 353.14248657 353.17849731 353.21450806 - 353.25048828 353.28649902 353.32250977 353.35848999 353.39450073 - 353.43051147 353.4664917 353.50250244 353.53851318 353.57449341 - 353.61050415 353.64651489 353.68249512 353.71850586 353.75448608 - 353.79049683 353.82650757 353.86248779 353.89849854 353.93450928 - 353.9704895 354.00650024 354.04251099 354.07849121 354.11450195 - 354.1505127 354.18649292 354.22250366 354.2585144 354.29449463 - 354.33050537 354.3664856 354.40249634 354.43850708 354.4744873 - 354.50717163 354.53598022 354.56375122 354.59051514 354.61627197 - 354.6411438 354.66506958 354.68817139 354.71038818 354.73184204 - 354.75250244 354.7723999 354.79159546 354.81005859 354.82788086 - 354.84506226 354.86160278 354.87753296 354.89291382 354.90771484 - 354.92199707 354.9357605 354.94924927 354.96273804 354.97625732 - 354.98974609 355.00323486 355.01675415 355.03024292 355.04376221 - 355.05725098 355.07073975 355.08425903 355.0977478 355.11123657 - 355.12475586 355.13824463 355.15176392 355.16525269 355.17874146 - 355.19226074 355.20574951 355.21923828 355.23275757 355.24624634 - 355.25973511 355.27325439 355.28674316 355.30026245 355.31375122 - 355.32723999 355.34075928 355.35424805 355.36773682 355.3812561 - 355.39474487 355.40826416 355.42175293 355.4352417 355.44876099 - 355.46224976 355.47573853 355.48925781 355.50274658 355.51623535 - 355.52975464 355.54324341 355.5567627 355.57025146 355.58374023 - 355.59725952 355.61074829 355.62423706 355.63775635 355.65124512 - 355.6647644 355.67825317 355.69174194 355.70526123 355.71875 - 355.73223877 355.74575806 355.75924683 355.7727356 355.78625488 - 355.79974365 355.81326294 355.82675171 355.84024048 355.85375977 - 355.86724854 355.8807373 355.89425659 355.90774536 355.92126465 - 355.93475342 355.94824219 355.96176147 355.97525024 355.98873901 - 356.0022583 356.01574707 356.02923584 356.04275513 356.0562439 - 356.06976318 356.08325195 356.09674072 356.11026001 356.12374878 - 356.13723755 356.15075684 356.16424561 356.17776489 356.19125366 - 356.20474243 356.21826172 356.23175049 356.24523926 356.25875854 - 356.27224731 356.28573608 356.29925537 356.31274414 356.32626343 - 356.3397522 356.35324097 356.36676025 356.38024902 356.39373779 - 356.40725708 356.42074585 356.43426514 356.44775391 356.46124268 - 356.47476196 356.48825073 356.5017395 356.51525879 356.52874756 - 356.54223633 356.55575562 356.56924438 356.58276367 356.59625244 - 356.60974121 356.6232605 356.63674927 356.65023804 356.66375732 - 356.67724609 356.69073486 356.70425415 356.71774292 356.73126221 - 356.74475098 356.75823975 356.77175903 356.7852478 356.79873657 - 356.81225586 356.82574463 356.83926392 356.85275269 356.86624146 - 356.87976074 356.89324951 356.90673828 356.92025757 356.93374634 - 356.94723511 356.96075439 356.97424316 356.98776245 357.00125122 - 357.01473999 357.02825928 357.04174805 357.05523682 357.0687561 - 357.08224487 357.09576416 357.10925293 357.1227417 357.13626099 - 357.14974976 357.16323853 357.17675781 357.19024658 357.20373535 - 357.21725464 357.23074341 357.2442627 357.25775146 357.27124023 - 357.28475952 357.29824829 357.31173706 357.32525635 357.33874512 - 357.3522644 357.36575317 357.37924194 357.39276123 357.40625 - 357.41973877 357.43325806 357.44674683 357.4602356 357.47375488 - 357.48724365 357.50076294 357.51425171 357.52774048 357.54125977 - 357.55474854 357.5682373 357.58175659 357.59524536 357.60876465 - 357.62225342 357.63574219 357.64926147 357.66275024 357.67623901 - 357.6897583 357.70324707 357.71673584 357.73025513 357.7437439 - 357.75726318 357.77075195 357.78424072 357.79776001 357.81124878 - 357.82473755 357.83825684 357.85174561 357.86526489 357.87875366 - 357.89224243 357.90576172 357.91925049 357.93273926 357.94625854 - 357.95974731 357.97323608 357.98675537 358.00024414 358.01376343 - 358.0272522 358.04074097 358.05426025 358.06774902 358.08123779 - 358.09475708 358.10824585 358.12176514 358.13525391 358.14874268 - 358.16226196 358.17575073 358.1892395 358.20275879 358.21624756 - 358.22973633 358.24325562 358.25674438 358.27026367 358.28375244 - 358.29724121 358.3107605 358.32424927 358.33773804 358.35125732 - 358.36474609 358.37823486 358.39175415 358.40524292 358.41876221 - 358.43225098 358.44573975 358.45925903 358.4727478 358.48623657 - 358.49975586 358.51324463 358.52676392 358.54025269 358.55374146 - 358.56726074 358.58074951 358.59423828 358.60775757 358.62124634 - 358.63473511 358.64825439 358.66174316 358.67526245 358.68875122 - 358.70223999 358.71575928 358.72924805 358.74273682 358.7562561 - 358.76974487 358.78326416 358.79675293 358.8102417 358.82376099 - 358.83724976 358.85073853 358.86425781 358.87774658 358.89123535 - 358.90475464 358.91824341 358.9317627 358.94525146 358.95874023 - 358.97225952 358.98574829 358.99923706 359.01275635 359.02624512 - 359.0397644 359.05325317 359.06674194 359.08026123 359.09375 - 359.10723877 359.12075806 359.13424683 359.1477356 359.16125488 - 359.17474365 359.18826294 359.20175171 359.21524048 359.22875977 - 359.24224854 359.2557373 359.26925659 359.28274536 359.29626465 - 359.30975342 359.32324219 359.33676147 359.35025024 359.36373901 - 359.3772583 359.39074707 359.40423584 359.41775513 359.4312439 - 359.44476318 359.45825195 359.47174072 359.48526001 359.49874878 - 359.51223755 359.52575684 359.53924561 359.55276489 359.56625366 - 359.57974243 359.59326172 359.60675049 359.62023926 359.63375854 - 359.64724731 359.66073608 359.67425537 359.68774414 359.70126343 - 359.7147522 359.72824097 359.74176025 359.75524902 359.76873779 - 359.78225708 359.79574585 359.80926514 359.82275391 359.83624268 - 359.84976196 359.86325073 359.8767395 359.89025879 359.90374756 - 359.91723633 359.93075562 359.94424438 359.95776367 359.97125244 - 359.98474121 359.9982605 360.01174927 360.02523804 360.03875732 - 360.05224609 360.06573486 360.07925415 360.09274292 360.10626221 - 360.11975098 360.13323975 360.14675903 360.1602478 360.17373657 - 360.18725586 360.20074463 360.21426392 360.22775269 360.24124146 - 360.25476074 360.26824951 360.28173828 360.29525757 360.30874634 - 360.32223511 360.33575439 360.34924316 360.36276245 360.37625122 - 360.38973999 360.40325928 360.41674805 360.43023682 360.4437561 - 360.45724487 360.47076416 360.48425293 360.4977417 360.51126099 - 360.52474976 360.53823853 360.55175781 360.56524658 360.57873535 - 360.59225464 360.60574341 360.6192627 360.63275146 360.64624023 - 360.65975952 360.67324829 360.68673706 360.70025635 360.71374512 - 360.7272644 360.74075317 360.75424194 360.76776123 360.78125 - 360.79473877 360.80825806 360.82174683 360.8352356 360.84875488 - 360.86224365 360.87576294 360.88925171 360.90274048 360.91625977 - 360.92974854 360.9432373 360.95675659 360.97024536 360.98376465 - 360.99725342 361.01074219 361.02426147 361.03775024 361.05123901 - 361.0647583 361.07824707 361.09173584 361.10525513 361.1187439 - 361.13226318 361.14575195 361.15924072 361.17276001 361.18624878 - 361.19973755 361.21325684 361.22674561 361.24026489 361.25375366 - 361.26724243 361.28076172 361.29425049 361.30773926 361.32125854 - 361.33474731 361.34823608 361.36175537 361.37524414 361.38876343 - 361.4022522 361.41574097 361.42926025 361.44274902 361.45623779 - 361.46975708 361.48324585 361.49676514 361.51025391 361.52374268 - 361.53726196 361.55075073 361.5642395 361.57775879 361.59124756 - 361.60473633 361.61825562 361.63174438 361.64526367 361.65875244 - 361.67224121 361.6857605 361.69924927 361.71273804 361.72625732 - 361.73974609 361.75323486 361.76675415 361.78024292 361.79376221 - 361.80725098 361.82073975 361.83425903 361.8477478 361.86123657 - 361.87475586 361.88824463 361.90176392 361.91525269 361.92874146 - 361.94226074 361.95574951 361.96923828 361.98275757 361.99624634 - 362.00973511 362.02325439 362.03674316 362.05026245 362.06375122 - 362.07723999 362.09075928 362.10424805 362.11773682 362.1312561 - 362.14474487 362.15826416 362.17175293 362.1852417 362.19876099 - 362.21224976 362.22573853 362.23925781 362.25274658 362.26623535 - 362.27975464 362.29324341 362.3067627 362.32025146 362.33374023 - 362.34725952 362.36074829 362.37423706 362.38775635 362.40124512 - 362.4147644 362.42825317 362.44174194 362.45526123 362.46875 - 362.48223877 362.49575806 362.50924683 362.5227356 362.53625488 - 362.54974365 362.56326294 362.57675171 362.59024048 362.60375977 - 362.61724854 362.6307373 362.64425659 362.65774536 362.67126465 - 362.68475342 362.69824219 362.71176147 362.72525024 362.73873901 - 362.7522583 362.76574707 362.77923584 362.79275513 362.8062439 - 362.81976318 362.83325195 362.84674072 362.86026001 362.87374878 - 362.88723755 362.90075684 362.91424561 362.92776489 362.94125366 - 362.95474243 362.96826172 362.98175049 362.99523926 363.00875854 - 363.02224731 363.03573608 363.04925537 363.06274414 363.07626343 - 363.0897522 363.10324097 363.11676025 363.13024902 363.14373779 - 363.15725708 363.17074585 363.18426514 363.19775391 363.21124268 - 363.22476196 363.23825073 363.2517395 363.26525879 363.27874756 - 363.29223633 363.30575562 363.31951904 363.33377075 363.34857178 - 363.36395264 363.37991333 363.39645386 363.41360474 363.431427 - 363.44992065 363.46911621 363.48901367 363.50967407 363.53109741 - 363.55334473 363.57641602 363.60037231 363.62521362 363.65100098 - 363.67776489 363.70550537 363.73431396 363.76699829 363.80300903 - 363.83898926 363.875 363.91101074 363.94699097 363.98300171 - 364.01901245 364.05499268 364.09100342 364.12701416 364.16299438 - 364.19900513 364.23498535 364.27099609 364.30700684 364.34298706 - 364.3789978 364.41500854 364.45098877 364.48699951 364.52301025 - 364.55899048 364.59500122 364.63101196 364.66699219 364.70300293 - 364.73901367 364.7749939 364.81100464 364.84698486 364.88299561 - 364.91900635 364.95498657 364.99099731 365.02700806 365.06298828 - 365.09899902 365.13500977 365.17098999 365.20700073] + x: [ 353.0525 353.0885 353.1245 353.1605 353.1965 353.2325 + 353.2685 353.3045 353.3405 353.3765 353.4125 353.4485 + 353.4845 353.5205 353.5565 353.5925 353.6285 353.6645 + 353.7005 353.7365 353.7725 353.8085 353.8445 353.8805 + 353.9165 353.9525 353.9885 354.0245 354.0605 354.0965 + 354.1325 354.1685 354.2045 354.2405 354.2765 354.3125 + 354.3485 354.3845 354.4205 354.4565 354.4925 354.52185 + 354.5501 354.57736 354.60364 354.62894 354.65332 354.67685 + 354.6995 354.7213 354.74234 354.76263 354.78217 354.801 + 354.81915 354.83664 354.8535 354.86972 354.88538 354.90045 + 354.91498 354.929 354.9425 354.956 354.9695 354.983 + 354.9965 355.01 355.0235 355.037 355.0505 355.064 + 355.0775 355.091 355.1045 355.118 355.1315 355.145 + 355.1585 355.172 355.1855 355.199 355.2125 355.226 + 355.2395 355.253 355.2665 355.28 355.2935 355.307 + 355.3205 355.334 355.3475 355.361 355.3745 355.388 + 355.4015 355.415 355.4285 355.442 355.4555 355.469 + 355.4825 355.496 355.5095 355.523 355.5365 355.55 + 355.5635 355.577 355.5905 355.604 355.6175 355.631 + 355.6445 355.658 355.6715 355.685 355.6985 355.712 + 355.7255 355.739 355.7525 355.766 355.7795 355.793 + 355.8065 355.82 355.8335 355.847 355.8605 355.874 + 355.8875 355.901 355.9145 355.928 355.9415 355.955 + 355.9685 355.982 355.9955 356.009 356.0225 356.036 + 356.0495 356.063 356.0765 356.09 356.1035 356.117 + 356.1305 356.144 356.1575 356.171 356.1845 356.198 + 356.2115 356.225 356.2385 356.252 356.2655 356.279 + 356.2925 356.306 356.3195 356.333 356.3465 356.36 + 356.3735 356.387 356.4005 356.414 356.4275 356.441 + 356.4545 356.468 356.4815 356.495 356.5085 356.522 + 356.5355 356.549 356.5625 356.576 356.5895 356.603 + 356.6165 356.63 356.6435 356.657 356.6705 356.684 + 356.6975 356.711 356.7245 356.738 356.7515 356.765 + 356.7785 356.792 356.8055 356.819 356.8325 356.846 + 356.8595 356.873 356.8865 356.9 356.9135 356.927 + 356.9405 356.954 356.9675 356.981 356.9945 357.008 + 357.0215 357.035 357.0485 357.062 357.0755 357.089 + 357.1025 357.116 357.1295 357.143 357.1565 357.17 + 357.1835 357.197 357.2105 357.224 357.2375 357.251 + 357.2645 357.278 357.2915 357.305 357.3185 357.332 + 357.3455 357.359 357.3725 357.386 357.3995 357.413 + 357.4265 357.44 357.4535 357.467 357.4805 357.494 + 357.5075 357.521 357.5345 357.548 357.5615 357.575 + 357.5885 357.602 357.6155 357.629 357.6425 357.656 + 357.6695 357.683 357.6965 357.71 357.7235 357.737 + 357.7505 357.764 357.7775 357.791 357.8045 357.818 + 357.8315 357.845 357.8585 357.872 357.8855 357.899 + 357.9125 357.926 357.9395 357.953 357.9665 357.98 + 357.9935 358.007 358.0205 358.034 358.0475 358.061 + 358.0745 358.088 358.1015 358.115 358.1285 358.142 + 358.1555 358.169 358.1825 358.196 358.2095 358.223 + 358.2365 358.25 358.2635 358.277 358.2905 358.304 + 358.3175 358.331 358.3445 358.358 358.3715 358.385 + 358.3985 358.412 358.4255 358.439 358.4525 358.466 + 358.4795 358.493 358.5065 358.52 358.5335 358.547 + 358.5605 358.574 358.5875 358.601 358.6145 358.628 + 358.6415 358.655 358.6685 358.682 358.6955 358.709 + 358.7225 358.736 358.7495 358.763 358.7765 358.79 + 358.8035 358.817 358.8305 358.844 358.8575 358.871 + 358.8845 358.898 358.9115 358.925 358.9385 358.952 + 358.9655 358.979 358.9925 359.006 359.0195 359.033 + 359.0465 359.06 359.0735 359.087 359.1005 359.114 + 359.1275 359.141 359.1545 359.168 359.1815 359.195 + 359.2085 359.222 359.2355 359.249 359.2625 359.276 + 359.2895 359.303 359.3165 359.33 359.3435 359.357 + 359.3705 359.384 359.3975 359.411 359.4245 359.438 + 359.4515 359.465 359.4785 359.492 359.5055 359.519 + 359.5325 359.546 359.5595 359.573 359.5865 359.6 + 359.6135 359.627 359.6405 359.654 359.6675 359.681 + 359.6945 359.708 359.7215 359.735 359.7485 359.762 + 359.7755 359.789 359.8025 359.816 359.8295 359.843 + 359.8565 359.87 359.8835 359.897 359.9105 359.924 + 359.9375 359.951 359.9645 359.978 359.9915 360.005 + 360.0185 360.032 360.0455 360.059 360.0725 360.086 + 360.0995 360.113 360.1265 360.14 360.1535 360.167 + 360.1805 360.194 360.2075 360.221 360.2345 360.248 + 360.2615 360.275 360.2885 360.302 360.3155 360.329 + 360.3425 360.356 360.3695 360.383 360.3965 360.41 + 360.4235 360.437 360.4505 360.464 360.4775 360.491 + 360.5045 360.518 360.5315 360.545 360.5585 360.572 + 360.5855 360.599 360.6125 360.626 360.6395 360.653 + 360.6665 360.68 360.6935 360.707 360.7205 360.734 + 360.7475 360.761 360.7745 360.788 360.8015 360.815 + 360.8285 360.842 360.8555 360.869 360.8825 360.896 + 360.9095 360.923 360.9365 360.95 360.9635 360.977 + 360.9905 361.004 361.0175 361.031 361.0445 361.058 + 361.0715 361.085 361.0985 361.112 361.1255 361.139 + 361.1525 361.166 361.1795 361.193 361.2065 361.22 + 361.2335 361.247 361.2605 361.274 361.2875 361.301 + 361.3145 361.328 361.3415 361.355 361.3685 361.382 + 361.3955 361.409 361.4225 361.436 361.4495 361.463 + 361.4765 361.49 361.5035 361.517 361.5305 361.544 + 361.5575 361.571 361.5845 361.598 361.6115 361.625 + 361.6385 361.652 361.6655 361.679 361.6925 361.706 + 361.7195 361.733 361.7465 361.76 361.7735 361.787 + 361.8005 361.814 361.8275 361.841 361.8545 361.868 + 361.8815 361.895 361.9085 361.922 361.9355 361.949 + 361.9625 361.976 361.9895 362.003 362.0165 362.03 + 362.0435 362.057 362.0705 362.084 362.0975 362.111 + 362.1245 362.138 362.1515 362.165 362.1785 362.192 + 362.2055 362.219 362.2325 362.246 362.2595 362.273 + 362.2865 362.3 362.3135 362.327 362.3405 362.354 + 362.3675 362.381 362.3945 362.408 362.4215 362.435 + 362.4485 362.462 362.4755 362.489 362.5025 362.516 + 362.5295 362.543 362.5565 362.57 362.5835 362.597 + 362.6105 362.624 362.6375 362.651 362.6645 362.678 + 362.6915 362.705 362.7185 362.732 362.7455 362.759 + 362.7725 362.786 362.7995 362.813 362.8265 362.84 + 362.8535 362.867 362.8805 362.894 362.9075 362.921 + 362.9345 362.948 362.9615 362.975 362.9885 363.002 + 363.0155 363.029 363.0425 363.056 363.0695 363.083 + 363.0965 363.11 363.1235 363.137 363.1505 363.164 + 363.1775 363.191 363.2045 363.218 363.2315 363.245 + 363.2585 363.272 363.2855 363.299 363.3125 363.3265 + 363.34103 363.35614 363.37177 363.38803 363.40488 363.42236 + 363.4405 363.45932 363.47888 363.49915 363.52017 363.54202 + 363.56467 363.58817 363.61255 363.63788 363.66412 363.69138 + 363.71967 363.749 363.785 363.821 363.857 363.893 + 363.929 363.965 364.001 364.037 364.073 364.109 + 364.145 364.181 364.217 364.253 364.289 364.325 + 364.361 364.397 364.433 364.469 364.505 364.541 + 364.577 364.613 364.649 364.685 364.721 364.757 + 364.793 364.829 364.865 364.901 364.937 364.973 + 365.009 365.045 365.081 365.117 365.153 365.189 ] + x_lower_bound: [ 353.0345 353.0705 353.1065 353.1425 353.1785 353.2145 + 353.2505 353.2865 353.3225 353.3585 353.3945 353.4305 + 353.4665 353.5025 353.5385 353.5745 353.6105 353.6465 + 353.6825 353.7185 353.7545 353.7905 353.8265 353.8625 + 353.8985 353.9345 353.9705 354.0065 354.0425 354.0785 + 354.1145 354.1505 354.1865 354.2225 354.2585 354.2945 + 354.3305 354.3665 354.4025 354.4385 354.4745 354.50717 + 354.53598 354.56375 354.5905 354.61627 354.64114 354.66507 + 354.68817 354.7104 354.73184 354.7525 354.7724 354.7916 + 354.81006 354.82788 354.84506 354.8616 354.87753 354.8929 + 354.9077 354.922 354.93576 354.94925 354.96274 354.97626 + 354.98975 355.00323 355.01675 355.03024 355.04376 355.05725 + 355.07074 355.08426 355.09775 355.11124 355.12476 355.13824 + 355.15176 355.16525 355.17874 355.19226 355.20575 355.21924 + 355.23276 355.24625 355.25974 355.27325 355.28674 355.30026 + 355.31375 355.32724 355.34076 355.35425 355.36774 355.38126 + 355.39474 355.40826 355.42175 355.43524 355.44876 355.46225 + 355.47574 355.48926 355.50275 355.51624 355.52975 355.54324 + 355.55676 355.57025 355.58374 355.59726 355.61075 355.62424 + 355.63776 355.65125 355.66476 355.67825 355.69174 355.70526 + 355.71875 355.73224 355.74576 355.75925 355.77274 355.78625 + 355.79974 355.81326 355.82675 355.84024 355.85376 355.86725 + 355.88074 355.89426 355.90775 355.92126 355.93475 355.94824 + 355.96176 355.97525 355.98874 356.00226 356.01575 356.02924 + 356.04276 356.05624 356.06976 356.08325 356.09674 356.11026 + 356.12375 356.13724 356.15076 356.16425 356.17776 356.19125 + 356.20474 356.21826 356.23175 356.24524 356.25876 356.27225 + 356.28574 356.29926 356.31274 356.32626 356.33975 356.35324 + 356.36676 356.38025 356.39374 356.40726 356.42075 356.43427 + 356.44775 356.46124 356.47476 356.48825 356.50174 356.51526 + 356.52875 356.54224 356.55576 356.56924 356.58276 356.59625 + 356.60974 356.62326 356.63675 356.65024 356.66376 356.67725 + 356.69073 356.70425 356.71774 356.73126 356.74475 356.75824 + 356.77176 356.78525 356.79874 356.81226 356.82574 356.83926 + 356.85275 356.86624 356.87976 356.89325 356.90674 356.92026 + 356.93375 356.94724 356.96075 356.97424 356.98776 357.00125 + 357.01474 357.02826 357.04175 357.05524 357.06876 357.08224 + 357.09576 357.10925 357.12274 357.13626 357.14975 357.16324 + 357.17676 357.19025 357.20374 357.21725 357.23074 357.24426 + 357.25775 357.27124 357.28476 357.29825 357.31174 357.32526 + 357.33875 357.35226 357.36575 357.37924 357.39276 357.40625 + 357.41974 357.43326 357.44675 357.46024 357.47375 357.48724 + 357.50076 357.51425 357.52774 357.54126 357.55475 357.56824 + 357.58176 357.59525 357.60876 357.62225 357.63574 357.64926 + 357.66275 357.67624 357.68976 357.70325 357.71674 357.73026 + 357.74374 357.75726 357.77075 357.78424 357.79776 357.81125 + 357.82474 357.83826 357.85175 357.86526 357.87875 357.89224 + 357.90576 357.91925 357.93274 357.94626 357.95975 357.97324 + 357.98676 358.00024 358.01376 358.02725 358.04074 358.05426 + 358.06775 358.08124 358.09476 358.10825 358.12177 358.13525 + 358.14874 358.16226 358.17575 358.18924 358.20276 358.21625 + 358.22974 358.24326 358.25674 358.27026 358.28375 358.29724 + 358.31076 358.32425 358.33774 358.35126 358.36475 358.37823 + 358.39175 358.40524 358.41876 358.43225 358.44574 358.45926 + 358.47275 358.48624 358.49976 358.51324 358.52676 358.54025 + 358.55374 358.56726 358.58075 358.59424 358.60776 358.62125 + 358.63474 358.64825 358.66174 358.67526 358.68875 358.70224 + 358.71576 358.72925 358.74274 358.75626 358.76974 358.78326 + 358.79675 358.81024 358.82376 358.83725 358.85074 358.86426 + 358.87775 358.89124 358.90475 358.91824 358.93176 358.94525 + 358.95874 358.97226 358.98575 358.99924 359.01276 359.02625 + 359.03976 359.05325 359.06674 359.08026 359.09375 359.10724 + 359.12076 359.13425 359.14774 359.16125 359.17474 359.18826 + 359.20175 359.21524 359.22876 359.24225 359.25574 359.26926 + 359.28275 359.29626 359.30975 359.32324 359.33676 359.35025 + 359.36374 359.37726 359.39075 359.40424 359.41776 359.43124 + 359.44476 359.45825 359.47174 359.48526 359.49875 359.51224 + 359.52576 359.53925 359.55276 359.56625 359.57974 359.59326 + 359.60675 359.62024 359.63376 359.64725 359.66074 359.67426 + 359.68774 359.70126 359.71475 359.72824 359.74176 359.75525 + 359.76874 359.78226 359.79575 359.80927 359.82275 359.83624 + 359.84976 359.86325 359.87674 359.89026 359.90375 359.91724 + 359.93076 359.94424 359.95776 359.97125 359.98474 359.99826 + 360.01175 360.02524 360.03876 360.05225 360.06573 360.07925 + 360.09274 360.10626 360.11975 360.13324 360.14676 360.16025 + 360.17374 360.18726 360.20074 360.21426 360.22775 360.24124 + 360.25476 360.26825 360.28174 360.29526 360.30875 360.32224 + 360.33575 360.34924 360.36276 360.37625 360.38974 360.40326 + 360.41675 360.43024 360.44376 360.45724 360.47076 360.48425 + 360.49774 360.51126 360.52475 360.53824 360.55176 360.56525 + 360.57874 360.59225 360.60574 360.61926 360.63275 360.64624 + 360.65976 360.67325 360.68674 360.70026 360.71375 360.72726 + 360.74075 360.75424 360.76776 360.78125 360.79474 360.80826 + 360.82175 360.83524 360.84875 360.86224 360.87576 360.88925 + 360.90274 360.91626 360.92975 360.94324 360.95676 360.97025 + 360.98376 360.99725 361.01074 361.02426 361.03775 361.05124 + 361.06476 361.07825 361.09174 361.10526 361.11874 361.13226 + 361.14575 361.15924 361.17276 361.18625 361.19974 361.21326 + 361.22675 361.24026 361.25375 361.26724 361.28076 361.29425 + 361.30774 361.32126 361.33475 361.34824 361.36176 361.37524 + 361.38876 361.40225 361.41574 361.42926 361.44275 361.45624 + 361.46976 361.48325 361.49677 361.51025 361.52374 361.53726 + 361.55075 361.56424 361.57776 361.59125 361.60474 361.61826 + 361.63174 361.64526 361.65875 361.67224 361.68576 361.69925 + 361.71274 361.72626 361.73975 361.75323 361.76675 361.78024 + 361.79376 361.80725 361.82074 361.83426 361.84775 361.86124 + 361.87476 361.88824 361.90176 361.91525 361.92874 361.94226 + 361.95575 361.96924 361.98276 361.99625 362.00974 362.02325 + 362.03674 362.05026 362.06375 362.07724 362.09076 362.10425 + 362.11774 362.13126 362.14474 362.15826 362.17175 362.18524 + 362.19876 362.21225 362.22574 362.23926 362.25275 362.26624 + 362.27975 362.29324 362.30676 362.32025 362.33374 362.34726 + 362.36075 362.37424 362.38776 362.40125 362.41476 362.42825 + 362.44174 362.45526 362.46875 362.48224 362.49576 362.50925 + 362.52274 362.53625 362.54974 362.56326 362.57675 362.59024 + 362.60376 362.61725 362.63074 362.64426 362.65775 362.67126 + 362.68475 362.69824 362.71176 362.72525 362.73874 362.75226 + 362.76575 362.77924 362.79276 362.80624 362.81976 362.83325 + 362.84674 362.86026 362.87375 362.88724 362.90076 362.91425 + 362.92776 362.94125 362.95474 362.96826 362.98175 362.99524 + 363.00876 363.02225 363.03574 363.04926 363.06274 363.07626 + 363.08975 363.10324 363.11676 363.13025 363.14374 363.15726 + 363.17075 363.18427 363.19775 363.21124 363.22476 363.23825 + 363.25174 363.26526 363.27875 363.29224 363.30576 363.31952 + 363.33377 363.34857 363.36395 363.3799 363.39645 363.4136 + 363.43143 363.44992 363.46912 363.489 363.50967 363.5311 + 363.55334 363.57642 363.60037 363.6252 363.651 363.67776 + 363.7055 363.7343 363.767 363.803 363.839 363.875 + 363.911 363.947 363.983 364.019 364.055 364.091 + 364.127 364.163 364.199 364.235 364.271 364.307 + 364.343 364.379 364.415 364.451 364.487 364.523 + 364.559 364.595 364.631 364.667 364.703 364.739 + 364.775 364.811 364.847 364.883 364.919 364.955 + 364.991 365.027 365.063 365.099 365.135 365.171 ] + x_upper_bound: [ 353.0705 353.1065 353.1425 353.1785 353.2145 353.2505 + 353.2865 353.3225 353.3585 353.3945 353.4305 353.4665 + 353.5025 353.5385 353.5745 353.6105 353.6465 353.6825 + 353.7185 353.7545 353.7905 353.8265 353.8625 353.8985 + 353.9345 353.9705 354.0065 354.0425 354.0785 354.1145 + 354.1505 354.1865 354.2225 354.2585 354.2945 354.3305 + 354.3665 354.4025 354.4385 354.4745 354.50717 354.53598 + 354.56375 354.5905 354.61627 354.64114 354.66507 354.68817 + 354.7104 354.73184 354.7525 354.7724 354.7916 354.81006 + 354.82788 354.84506 354.8616 354.87753 354.8929 354.9077 + 354.922 354.93576 354.94925 354.96274 354.97626 354.98975 + 355.00323 355.01675 355.03024 355.04376 355.05725 355.07074 + 355.08426 355.09775 355.11124 355.12476 355.13824 355.15176 + 355.16525 355.17874 355.19226 355.20575 355.21924 355.23276 + 355.24625 355.25974 355.27325 355.28674 355.30026 355.31375 + 355.32724 355.34076 355.35425 355.36774 355.38126 355.39474 + 355.40826 355.42175 355.43524 355.44876 355.46225 355.47574 + 355.48926 355.50275 355.51624 355.52975 355.54324 355.55676 + 355.57025 355.58374 355.59726 355.61075 355.62424 355.63776 + 355.65125 355.66476 355.67825 355.69174 355.70526 355.71875 + 355.73224 355.74576 355.75925 355.77274 355.78625 355.79974 + 355.81326 355.82675 355.84024 355.85376 355.86725 355.88074 + 355.89426 355.90775 355.92126 355.93475 355.94824 355.96176 + 355.97525 355.98874 356.00226 356.01575 356.02924 356.04276 + 356.05624 356.06976 356.08325 356.09674 356.11026 356.12375 + 356.13724 356.15076 356.16425 356.17776 356.19125 356.20474 + 356.21826 356.23175 356.24524 356.25876 356.27225 356.28574 + 356.29926 356.31274 356.32626 356.33975 356.35324 356.36676 + 356.38025 356.39374 356.40726 356.42075 356.43427 356.44775 + 356.46124 356.47476 356.48825 356.50174 356.51526 356.52875 + 356.54224 356.55576 356.56924 356.58276 356.59625 356.60974 + 356.62326 356.63675 356.65024 356.66376 356.67725 356.69073 + 356.70425 356.71774 356.73126 356.74475 356.75824 356.77176 + 356.78525 356.79874 356.81226 356.82574 356.83926 356.85275 + 356.86624 356.87976 356.89325 356.90674 356.92026 356.93375 + 356.94724 356.96075 356.97424 356.98776 357.00125 357.01474 + 357.02826 357.04175 357.05524 357.06876 357.08224 357.09576 + 357.10925 357.12274 357.13626 357.14975 357.16324 357.17676 + 357.19025 357.20374 357.21725 357.23074 357.24426 357.25775 + 357.27124 357.28476 357.29825 357.31174 357.32526 357.33875 + 357.35226 357.36575 357.37924 357.39276 357.40625 357.41974 + 357.43326 357.44675 357.46024 357.47375 357.48724 357.50076 + 357.51425 357.52774 357.54126 357.55475 357.56824 357.58176 + 357.59525 357.60876 357.62225 357.63574 357.64926 357.66275 + 357.67624 357.68976 357.70325 357.71674 357.73026 357.74374 + 357.75726 357.77075 357.78424 357.79776 357.81125 357.82474 + 357.83826 357.85175 357.86526 357.87875 357.89224 357.90576 + 357.91925 357.93274 357.94626 357.95975 357.97324 357.98676 + 358.00024 358.01376 358.02725 358.04074 358.05426 358.06775 + 358.08124 358.09476 358.10825 358.12177 358.13525 358.14874 + 358.16226 358.17575 358.18924 358.20276 358.21625 358.22974 + 358.24326 358.25674 358.27026 358.28375 358.29724 358.31076 + 358.32425 358.33774 358.35126 358.36475 358.37823 358.39175 + 358.40524 358.41876 358.43225 358.44574 358.45926 358.47275 + 358.48624 358.49976 358.51324 358.52676 358.54025 358.55374 + 358.56726 358.58075 358.59424 358.60776 358.62125 358.63474 + 358.64825 358.66174 358.67526 358.68875 358.70224 358.71576 + 358.72925 358.74274 358.75626 358.76974 358.78326 358.79675 + 358.81024 358.82376 358.83725 358.85074 358.86426 358.87775 + 358.89124 358.90475 358.91824 358.93176 358.94525 358.95874 + 358.97226 358.98575 358.99924 359.01276 359.02625 359.03976 + 359.05325 359.06674 359.08026 359.09375 359.10724 359.12076 + 359.13425 359.14774 359.16125 359.17474 359.18826 359.20175 + 359.21524 359.22876 359.24225 359.25574 359.26926 359.28275 + 359.29626 359.30975 359.32324 359.33676 359.35025 359.36374 + 359.37726 359.39075 359.40424 359.41776 359.43124 359.44476 + 359.45825 359.47174 359.48526 359.49875 359.51224 359.52576 + 359.53925 359.55276 359.56625 359.57974 359.59326 359.60675 + 359.62024 359.63376 359.64725 359.66074 359.67426 359.68774 + 359.70126 359.71475 359.72824 359.74176 359.75525 359.76874 + 359.78226 359.79575 359.80927 359.82275 359.83624 359.84976 + 359.86325 359.87674 359.89026 359.90375 359.91724 359.93076 + 359.94424 359.95776 359.97125 359.98474 359.99826 360.01175 + 360.02524 360.03876 360.05225 360.06573 360.07925 360.09274 + 360.10626 360.11975 360.13324 360.14676 360.16025 360.17374 + 360.18726 360.20074 360.21426 360.22775 360.24124 360.25476 + 360.26825 360.28174 360.29526 360.30875 360.32224 360.33575 + 360.34924 360.36276 360.37625 360.38974 360.40326 360.41675 + 360.43024 360.44376 360.45724 360.47076 360.48425 360.49774 + 360.51126 360.52475 360.53824 360.55176 360.56525 360.57874 + 360.59225 360.60574 360.61926 360.63275 360.64624 360.65976 + 360.67325 360.68674 360.70026 360.71375 360.72726 360.74075 + 360.75424 360.76776 360.78125 360.79474 360.80826 360.82175 + 360.83524 360.84875 360.86224 360.87576 360.88925 360.90274 + 360.91626 360.92975 360.94324 360.95676 360.97025 360.98376 + 360.99725 361.01074 361.02426 361.03775 361.05124 361.06476 + 361.07825 361.09174 361.10526 361.11874 361.13226 361.14575 + 361.15924 361.17276 361.18625 361.19974 361.21326 361.22675 + 361.24026 361.25375 361.26724 361.28076 361.29425 361.30774 + 361.32126 361.33475 361.34824 361.36176 361.37524 361.38876 + 361.40225 361.41574 361.42926 361.44275 361.45624 361.46976 + 361.48325 361.49677 361.51025 361.52374 361.53726 361.55075 + 361.56424 361.57776 361.59125 361.60474 361.61826 361.63174 + 361.64526 361.65875 361.67224 361.68576 361.69925 361.71274 + 361.72626 361.73975 361.75323 361.76675 361.78024 361.79376 + 361.80725 361.82074 361.83426 361.84775 361.86124 361.87476 + 361.88824 361.90176 361.91525 361.92874 361.94226 361.95575 + 361.96924 361.98276 361.99625 362.00974 362.02325 362.03674 + 362.05026 362.06375 362.07724 362.09076 362.10425 362.11774 + 362.13126 362.14474 362.15826 362.17175 362.18524 362.19876 + 362.21225 362.22574 362.23926 362.25275 362.26624 362.27975 + 362.29324 362.30676 362.32025 362.33374 362.34726 362.36075 + 362.37424 362.38776 362.40125 362.41476 362.42825 362.44174 + 362.45526 362.46875 362.48224 362.49576 362.50925 362.52274 + 362.53625 362.54974 362.56326 362.57675 362.59024 362.60376 + 362.61725 362.63074 362.64426 362.65775 362.67126 362.68475 + 362.69824 362.71176 362.72525 362.73874 362.75226 362.76575 + 362.77924 362.79276 362.80624 362.81976 362.83325 362.84674 + 362.86026 362.87375 362.88724 362.90076 362.91425 362.92776 + 362.94125 362.95474 362.96826 362.98175 362.99524 363.00876 + 363.02225 363.03574 363.04926 363.06274 363.07626 363.08975 + 363.10324 363.11676 363.13025 363.14374 363.15726 363.17075 + 363.18427 363.19775 363.21124 363.22476 363.23825 363.25174 + 363.26526 363.27875 363.29224 363.30576 363.31952 363.33377 + 363.34857 363.36395 363.3799 363.39645 363.4136 363.43143 + 363.44992 363.46912 363.489 363.50967 363.5311 363.55334 + 363.57642 363.60037 363.6252 363.651 363.67776 363.7055 + 363.7343 363.767 363.803 363.839 363.875 363.911 + 363.947 363.983 364.019 364.055 364.091 364.127 + 364.163 364.199 364.235 364.271 364.307 364.343 + 364.379 364.415 364.451 364.487 364.523 364.559 + 364.595 364.631 364.667 364.703 364.739 364.775 + 364.811 364.847 364.883 364.919 364.955 364.991 + 365.027 365.063 365.099 365.135 365.171 365.207 ] y: [ -5.59320021e+00 -5.55719995e+00 -5.52120018e+00 -5.48519993e+00 -5.44920015e+00 -5.41319990e+00 -5.37720013e+00 -5.34119987e+00 -5.30520010e+00 -5.26919985e+00 -5.23320007e+00 -5.19719982e+00 diff --git a/lib/iris/tests/results/PP/global_test.pp.txt b/lib/iris/tests/results/PP/global_test.pp.txt index df5c010021..2ef111e170 100644 --- a/lib/iris/tests/results/PP/global_test.pp.txt +++ b/lib/iris/tests/results/PP/global_test.pp.txt @@ -51,17 +51,11 @@ bdx: 3.75 bmdi: -1e+30 bmks: 1.0 - data: [[ 254.64399719 254.64399719 254.64399719 ..., 254.64399719 - 254.64399719 254.64399719] - [ 254.97499084 254.96766663 254.9808197 ..., 254.98776245 - 255.03466797 254.99720764] - [ 255.99584961 256.30834961 256.55874634 ..., 256.11685181 - 255.95605469 255.83555603] + data: [[ 254.644 254.644 254.644 ..., 254.644 254.644 254.644 ] + [ 254.97499 254.96767 254.98082 ..., 254.98776 255.03467 254.99721] + [ 255.99585 256.30835 256.55875 ..., 256.11685 255.95605 255.83556] ..., - [ 254.57333374 253.86854553 252.90516663 ..., 255.29681396 - 255.38789368 255.14859009] - [ 252.33691406 252.08926392 251.85536194 ..., 252.59863281 - 252.67466736 252.58959961] - [ 248.74584961 248.74584961 248.74584961 ..., 248.74584961 - 248.74584961 248.74584961]] + [ 254.57333 253.86855 252.90517 ..., 255.29681 255.3879 255.14859] + [ 252.33691 252.08926 251.85536 ..., 252.59863 252.67467 252.5896 ] + [ 248.74585 248.74585 248.74585 ..., 248.74585 248.74585 248.74585]] ] \ No newline at end of file diff --git a/lib/iris/tests/results/PP/nae_unpacked.pp.txt b/lib/iris/tests/results/PP/nae_unpacked.pp.txt index 8511ff2a8b..d1f5a0914b 100644 --- a/lib/iris/tests/results/PP/nae_unpacked.pp.txt +++ b/lib/iris/tests/results/PP/nae_unpacked.pp.txt @@ -51,16 +51,13 @@ bdx: 0.11 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 388.78125 389.46875 384.0625 ..., 318.1875 310.84375 - 307.796875] - [ 388.09375 381.375 374.28125 ..., 310.28125 305.59375 - 300.53125 ] - [ 382.34375 373.671875 371.171875 ..., 297.046875 293.109375 - 288.484375] + data: [[ 388.78125 389.46875 384.0625 ..., 318.1875 310.84375 307.79688] + [ 388.09375 381.375 374.28125 ..., 310.28125 305.59375 300.53125] + [ 382.34375 373.67188 371.17188 ..., 297.04688 293.10938 288.48438] ..., - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ]] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ]] , PP Field lbyr: 2010 lbmon: 1 @@ -114,16 +111,13 @@ bdx: 0.11 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 226.078125 226.515625 231.921875 ..., 244.796875 251.34375 - 254.578125] - [ 225.625 233.296875 241.171875 ..., 250.421875 254.65625 - 259.453125] - [ 230.046875 239.890625 242.84375 ..., 260.921875 264.59375 - 269.09375 ] + data: [[ 226.07812 226.51562 231.92188 ..., 244.79688 251.34375 254.57812] + [ 225.625 233.29688 241.17188 ..., 250.42188 254.65625 259.45312] + [ 230.04688 239.89062 242.84375 ..., 260.92188 264.59375 269.09375] ..., - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ]] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ]] , PP Field lbyr: 2010 lbmon: 1 @@ -177,14 +171,13 @@ bdx: 0.11 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ 412.875 413.5625 407.875 ..., 522.953125 523.265625 - 524.453125] - [ 412.1875 405.078125 397.578125 ..., 521.953125 522.421875 523.25 ] - [ 406.1875 397.015625 394.359375 ..., 521.515625 522.046875 522.875 ] + data: [[ 412.875 413.5625 407.875 ..., 522.9531 523.2656 524.4531 ] + [ 412.1875 405.07812 397.57812 ..., 521.9531 522.4219 523.25 ] + [ 406.1875 397.01562 394.35938 ..., 521.5156 522.0469 522.875 ] ..., - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ] - [ 0. 0. 0. ..., 0. 0. 0. ]] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ] + [ 0. 0. 0. ..., 0. 0. 0. ]] , PP Field lbyr: 2010 lbmon: 1 @@ -238,15 +231,17 @@ bdx: 0.11 bmdi: -1.07374e+09 bmks: 1.0 - data: [[ -61.265625 -61.3125 -60.4375 ..., -198.171875 -193.734375 + data: [[ -61.265625 -61.3125 -60.4375 ..., -198.17188 -193.73438 -189.3125 ] - [ -61.234375 -60.0625 -58.6875 ..., -197.515625 -193.703125 + [ -61.234375 -60.0625 -58.6875 ..., -197.51562 -193.70312 -189.9375 ] - [ -60.390625 -59.03125 -58.640625 ..., -193.484375 -190.140625 + [ -60.390625 -59.03125 -58.640625 ..., -193.48438 -190.14062 -186.78125 ] ..., [ -73.28125 -19.171875 -3.03125 ..., -19.03125 -16.65625 -48.828125] - [ -48.1875 1.265625 -17.765625 ..., -17.21875 -41.3125 -64.65625 ] - [ -72.578125 -46.671875 -68.734375 ..., -49.15625 -66.71875 -65.6875 ]] + [ -48.1875 1.265625 -17.765625 ..., -17.21875 -41.3125 + -64.65625 ] + [ -72.578125 -46.671875 -68.734375 ..., -49.15625 -66.71875 + -65.6875 ]] ] \ No newline at end of file diff --git a/lib/iris/tests/results/PP/rle_unpacked.pp.txt b/lib/iris/tests/results/PP/rle_unpacked.pp.txt index 6b3c1e76a8..cfabf67864 100644 --- a/lib/iris/tests/results/PP/rle_unpacked.pp.txt +++ b/lib/iris/tests/results/PP/rle_unpacked.pp.txt @@ -60,46 +60,42 @@ [232.0664520263672 231.9336395263672 231.80679321289062 ..., 232.49722290039062 232.34857177734375 232.2048797607422] [-- -- -- ..., -- -- --]] - y: [-90. -89. -88. -87. -86. -85. -84. - -83. -82. -81. -80. -79. -78. -77. - -76. -75. -74. -73. -72. -71. -70. - -69. -68. -67. -66. -65. -64. -63. - -62. -61. -60. -59. -58. -57. -56. - -55. -54. -53. -52. -51. -50. -49. - -48. -47. -46. -45. -44. -43. -42. - -41. -40. -39. -38. -37. -36. -35. - -34. -33. -32. -31.00038528 -30.00230789 - -29.00729752 -28.01687241 -27.03252792 -26.05572891 -25.08790588 - -24.1304493 -23.18470192 -22.2519474 -21.33341408 -20.4302597 - -19.54357338 -18.674366 -17.82356834 -16.99202156 -16.18048286 - -15.38961029 -14.61997032 -13.87202835 -13.14614677 -12.44258881 - -11.7615118 -11.10296726 -10.46690273 -9.85316086 -9.26148129 - -8.69149876 -8.14274788 -7.61466455 -7.10658741 -6.61776304 - -6.14734745 -5.6944108 -5.2579422 -4.83685303 -4.42998457 - -4.03610992 -3.65394306 -3.2821424 -2.91931939 -2.56404257 - -2.21484447 -1.87023103 -1.52868605 -1.1886785 -0.84905553 - -0.50943249 -0.16980951 0.1698135 0.50943649 0.84905952 - 1.18868256 1.52868998 1.87023497 2.21484852 2.56404638 - 2.91932344 3.28214645 3.65394711 4.03611422 4.42998838 - 4.83685684 5.25794601 5.69441509 6.14735126 6.61776686 - 7.1065917 7.61466837 8.14275169 8.69150257 9.2614851 - 9.85316467 10.46690655 11.10297108 11.76151562 12.44259262 - 13.14615059 13.87203217 14.61997414 15.38961411 16.18048668 - 16.99202538 17.82357216 18.67436981 19.54357719 20.43026352 - 21.33341789 22.25195122 23.18470573 24.13045311 25.0879097 - 26.05573273 27.03253174 28.01687622 29.00730133 30.00231171 - 31.0003891 32.00000381 33.00000381 34.00000381 35.00000381 - 36.00000381 37.00000381 38.00000381 39.00000381 40.00000381 - 41.00000381 42.00000381 43.00000381 44.00000381 45.00000381 - 46.00000381 47.00000381 48.00000381 49.00000381 50.00000381 - 51.00000381 52.00000381 53.00000381 54.00000381 55.00000381 - 56.00000381 57.00000381 58.00000381 59.00000381 60.00000381 - 61.00000381 62.00000381 63.00000381 64.00000763 65.00000763 - 66.00000763 67.00000763 68.00000763 69.00000763 70.00000763 - 71.00000763 72.00000763 73.00000763 74.00000763 75.00000763 - 76.00000763 77.00000763 78.00000763 79.00000763 80.00000763 - 81.00000763 82.00000763 83.00000763 84.00000763 85.00000763 - 86.00000763 87.00000763 88.00000763 89.00000763 90.00000763] + y: [-90. -89. -88. -87. -86. -85. + -84. -83. -82. -81. -80. -79. + -78. -77. -76. -75. -74. -73. + -72. -71. -70. -69. -68. -67. + -66. -65. -64. -63. -62. -61. + -60. -59. -58. -57. -56. -55. + -54. -53. -52. -51. -50. -49. + -48. -47. -46. -45. -44. -43. + -42. -41. -40. -39. -38. -37. + -36. -35. -34. -33. -32. -31.000385 + -30.002308 -29.007298 -28.016872 -27.032528 -26.055729 -25.087906 + -24.13045 -23.184702 -22.251947 -21.333414 -20.43026 -19.543573 + -18.674366 -17.823568 -16.992022 -16.180483 -15.38961 -14.61997 + -13.872028 -13.146147 -12.442589 -11.761512 -11.102967 -10.466903 + -9.853161 -9.261481 -8.691499 -8.142748 -7.6146646 -7.1065874 + -6.617763 -6.1473475 -5.694411 -5.257942 -4.836853 -4.4299846 + -4.03611 -3.653943 -3.2821424 -2.9193194 -2.5640426 -2.2148445 + -1.870231 -1.528686 -1.1886785 -0.8490555 -0.5094325 -0.1698095 + 0.1698135 0.5094365 0.8490595 1.1886826 1.52869 1.870235 + 2.2148485 2.5640464 2.9193234 3.2821465 3.653947 4.036114 + 4.4299884 4.836857 5.257946 5.694415 6.1473513 6.617767 + 7.1065917 7.6146684 8.142752 8.691503 9.261485 9.853165 + 10.466907 11.102971 11.761516 12.442593 13.146151 13.872032 + 14.619974 15.389614 16.180487 16.992025 17.823572 18.67437 + 19.543577 20.430264 21.333418 22.251951 23.184706 24.130453 + 25.08791 26.055733 27.032532 28.016876 29.007301 30.002312 + 31.00039 32.000004 33.000004 34.000004 35.000004 36.000004 + 37.000004 38.000004 39.000004 40.000004 41.000004 42.000004 + 43.000004 44.000004 45.000004 46.000004 47.000004 48.000004 + 49.000004 50.000004 51.000004 52.000004 53.000004 54.000004 + 55.000004 56.000004 57.000004 58.000004 59.000004 60.000004 + 61.000004 62.000004 63.000004 64.00001 65.00001 66.00001 + 67.00001 68.00001 69.00001 70.00001 71.00001 72.00001 + 73.00001 74.00001 75.00001 76.00001 77.00001 78.00001 + 79.00001 80.00001 81.00001 82.00001 83.00001 84.00001 + 85.00001 86.00001 87.00001 88.00001 89.00001 90.00001 ] y_lower_bound: [ -9.05000000e+01 -8.95000000e+01 -8.85000000e+01 -8.75000000e+01 -8.65000000e+01 -8.55000000e+01 -8.45000000e+01 -8.35000000e+01 -8.25000000e+01 -8.15000000e+01 -8.05000000e+01 -7.95000000e+01 @@ -270,46 +266,42 @@ [0.005635980516672134 0.005658876616507769 0.005671785678714514 ..., 0.00559308473020792 0.00561324181035161 0.005620136857032776] [-- -- -- ..., -- -- --]] - y: [-90. -89. -88. -87. -86. -85. -84. - -83. -82. -81. -80. -79. -78. -77. - -76. -75. -74. -73. -72. -71. -70. - -69. -68. -67. -66. -65. -64. -63. - -62. -61. -60. -59. -58. -57. -56. - -55. -54. -53. -52. -51. -50. -49. - -48. -47. -46. -45. -44. -43. -42. - -41. -40. -39. -38. -37. -36. -35. - -34. -33. -32. -31.00038528 -30.00230789 - -29.00729752 -28.01687241 -27.03252792 -26.05572891 -25.08790588 - -24.1304493 -23.18470192 -22.2519474 -21.33341408 -20.4302597 - -19.54357338 -18.674366 -17.82356834 -16.99202156 -16.18048286 - -15.38961029 -14.61997032 -13.87202835 -13.14614677 -12.44258881 - -11.7615118 -11.10296726 -10.46690273 -9.85316086 -9.26148129 - -8.69149876 -8.14274788 -7.61466455 -7.10658741 -6.61776304 - -6.14734745 -5.6944108 -5.2579422 -4.83685303 -4.42998457 - -4.03610992 -3.65394306 -3.2821424 -2.91931939 -2.56404257 - -2.21484447 -1.87023103 -1.52868605 -1.1886785 -0.84905553 - -0.50943249 -0.16980951 0.1698135 0.50943649 0.84905952 - 1.18868256 1.52868998 1.87023497 2.21484852 2.56404638 - 2.91932344 3.28214645 3.65394711 4.03611422 4.42998838 - 4.83685684 5.25794601 5.69441509 6.14735126 6.61776686 - 7.1065917 7.61466837 8.14275169 8.69150257 9.2614851 - 9.85316467 10.46690655 11.10297108 11.76151562 12.44259262 - 13.14615059 13.87203217 14.61997414 15.38961411 16.18048668 - 16.99202538 17.82357216 18.67436981 19.54357719 20.43026352 - 21.33341789 22.25195122 23.18470573 24.13045311 25.0879097 - 26.05573273 27.03253174 28.01687622 29.00730133 30.00231171 - 31.0003891 32.00000381 33.00000381 34.00000381 35.00000381 - 36.00000381 37.00000381 38.00000381 39.00000381 40.00000381 - 41.00000381 42.00000381 43.00000381 44.00000381 45.00000381 - 46.00000381 47.00000381 48.00000381 49.00000381 50.00000381 - 51.00000381 52.00000381 53.00000381 54.00000381 55.00000381 - 56.00000381 57.00000381 58.00000381 59.00000381 60.00000381 - 61.00000381 62.00000381 63.00000381 64.00000763 65.00000763 - 66.00000763 67.00000763 68.00000763 69.00000763 70.00000763 - 71.00000763 72.00000763 73.00000763 74.00000763 75.00000763 - 76.00000763 77.00000763 78.00000763 79.00000763 80.00000763 - 81.00000763 82.00000763 83.00000763 84.00000763 85.00000763 - 86.00000763 87.00000763 88.00000763 89.00000763 90.00000763] + y: [-90. -89. -88. -87. -86. -85. + -84. -83. -82. -81. -80. -79. + -78. -77. -76. -75. -74. -73. + -72. -71. -70. -69. -68. -67. + -66. -65. -64. -63. -62. -61. + -60. -59. -58. -57. -56. -55. + -54. -53. -52. -51. -50. -49. + -48. -47. -46. -45. -44. -43. + -42. -41. -40. -39. -38. -37. + -36. -35. -34. -33. -32. -31.000385 + -30.002308 -29.007298 -28.016872 -27.032528 -26.055729 -25.087906 + -24.13045 -23.184702 -22.251947 -21.333414 -20.43026 -19.543573 + -18.674366 -17.823568 -16.992022 -16.180483 -15.38961 -14.61997 + -13.872028 -13.146147 -12.442589 -11.761512 -11.102967 -10.466903 + -9.853161 -9.261481 -8.691499 -8.142748 -7.6146646 -7.1065874 + -6.617763 -6.1473475 -5.694411 -5.257942 -4.836853 -4.4299846 + -4.03611 -3.653943 -3.2821424 -2.9193194 -2.5640426 -2.2148445 + -1.870231 -1.528686 -1.1886785 -0.8490555 -0.5094325 -0.1698095 + 0.1698135 0.5094365 0.8490595 1.1886826 1.52869 1.870235 + 2.2148485 2.5640464 2.9193234 3.2821465 3.653947 4.036114 + 4.4299884 4.836857 5.257946 5.694415 6.1473513 6.617767 + 7.1065917 7.6146684 8.142752 8.691503 9.261485 9.853165 + 10.466907 11.102971 11.761516 12.442593 13.146151 13.872032 + 14.619974 15.389614 16.180487 16.992025 17.823572 18.67437 + 19.543577 20.430264 21.333418 22.251951 23.184706 24.130453 + 25.08791 26.055733 27.032532 28.016876 29.007301 30.002312 + 31.00039 32.000004 33.000004 34.000004 35.000004 36.000004 + 37.000004 38.000004 39.000004 40.000004 41.000004 42.000004 + 43.000004 44.000004 45.000004 46.000004 47.000004 48.000004 + 49.000004 50.000004 51.000004 52.000004 53.000004 54.000004 + 55.000004 56.000004 57.000004 58.000004 59.000004 60.000004 + 61.000004 62.000004 63.000004 64.00001 65.00001 66.00001 + 67.00001 68.00001 69.00001 70.00001 71.00001 72.00001 + 73.00001 74.00001 75.00001 76.00001 77.00001 78.00001 + 79.00001 80.00001 81.00001 82.00001 83.00001 84.00001 + 85.00001 86.00001 87.00001 88.00001 89.00001 90.00001 ] y_lower_bound: [ -9.05000000e+01 -8.95000000e+01 -8.85000000e+01 -8.75000000e+01 -8.65000000e+01 -8.55000000e+01 -8.45000000e+01 -8.35000000e+01 -8.25000000e+01 -8.15000000e+01 -8.05000000e+01 -7.95000000e+01 @@ -478,46 +470,42 @@ [0.0 0.0 0.0 ..., 0.0 0.0 0.0] [0.0 0.0 0.0 ..., 0.0 0.0 0.0] [-- -- -- ..., -- -- --]] - y: [-90. -89. -88. -87. -86. -85. -84. - -83. -82. -81. -80. -79. -78. -77. - -76. -75. -74. -73. -72. -71. -70. - -69. -68. -67. -66. -65. -64. -63. - -62. -61. -60. -59. -58. -57. -56. - -55. -54. -53. -52. -51. -50. -49. - -48. -47. -46. -45. -44. -43. -42. - -41. -40. -39. -38. -37. -36. -35. - -34. -33. -32. -31.00038528 -30.00230789 - -29.00729752 -28.01687241 -27.03252792 -26.05572891 -25.08790588 - -24.1304493 -23.18470192 -22.2519474 -21.33341408 -20.4302597 - -19.54357338 -18.674366 -17.82356834 -16.99202156 -16.18048286 - -15.38961029 -14.61997032 -13.87202835 -13.14614677 -12.44258881 - -11.7615118 -11.10296726 -10.46690273 -9.85316086 -9.26148129 - -8.69149876 -8.14274788 -7.61466455 -7.10658741 -6.61776304 - -6.14734745 -5.6944108 -5.2579422 -4.83685303 -4.42998457 - -4.03610992 -3.65394306 -3.2821424 -2.91931939 -2.56404257 - -2.21484447 -1.87023103 -1.52868605 -1.1886785 -0.84905553 - -0.50943249 -0.16980951 0.1698135 0.50943649 0.84905952 - 1.18868256 1.52868998 1.87023497 2.21484852 2.56404638 - 2.91932344 3.28214645 3.65394711 4.03611422 4.42998838 - 4.83685684 5.25794601 5.69441509 6.14735126 6.61776686 - 7.1065917 7.61466837 8.14275169 8.69150257 9.2614851 - 9.85316467 10.46690655 11.10297108 11.76151562 12.44259262 - 13.14615059 13.87203217 14.61997414 15.38961411 16.18048668 - 16.99202538 17.82357216 18.67436981 19.54357719 20.43026352 - 21.33341789 22.25195122 23.18470573 24.13045311 25.0879097 - 26.05573273 27.03253174 28.01687622 29.00730133 30.00231171 - 31.0003891 32.00000381 33.00000381 34.00000381 35.00000381 - 36.00000381 37.00000381 38.00000381 39.00000381 40.00000381 - 41.00000381 42.00000381 43.00000381 44.00000381 45.00000381 - 46.00000381 47.00000381 48.00000381 49.00000381 50.00000381 - 51.00000381 52.00000381 53.00000381 54.00000381 55.00000381 - 56.00000381 57.00000381 58.00000381 59.00000381 60.00000381 - 61.00000381 62.00000381 63.00000381 64.00000763 65.00000763 - 66.00000763 67.00000763 68.00000763 69.00000763 70.00000763 - 71.00000763 72.00000763 73.00000763 74.00000763 75.00000763 - 76.00000763 77.00000763 78.00000763 79.00000763 80.00000763 - 81.00000763 82.00000763 83.00000763 84.00000763 85.00000763 - 86.00000763 87.00000763 88.00000763 89.00000763 90.00000763] + y: [-90. -89. -88. -87. -86. -85. + -84. -83. -82. -81. -80. -79. + -78. -77. -76. -75. -74. -73. + -72. -71. -70. -69. -68. -67. + -66. -65. -64. -63. -62. -61. + -60. -59. -58. -57. -56. -55. + -54. -53. -52. -51. -50. -49. + -48. -47. -46. -45. -44. -43. + -42. -41. -40. -39. -38. -37. + -36. -35. -34. -33. -32. -31.000385 + -30.002308 -29.007298 -28.016872 -27.032528 -26.055729 -25.087906 + -24.13045 -23.184702 -22.251947 -21.333414 -20.43026 -19.543573 + -18.674366 -17.823568 -16.992022 -16.180483 -15.38961 -14.61997 + -13.872028 -13.146147 -12.442589 -11.761512 -11.102967 -10.466903 + -9.853161 -9.261481 -8.691499 -8.142748 -7.6146646 -7.1065874 + -6.617763 -6.1473475 -5.694411 -5.257942 -4.836853 -4.4299846 + -4.03611 -3.653943 -3.2821424 -2.9193194 -2.5640426 -2.2148445 + -1.870231 -1.528686 -1.1886785 -0.8490555 -0.5094325 -0.1698095 + 0.1698135 0.5094365 0.8490595 1.1886826 1.52869 1.870235 + 2.2148485 2.5640464 2.9193234 3.2821465 3.653947 4.036114 + 4.4299884 4.836857 5.257946 5.694415 6.1473513 6.617767 + 7.1065917 7.6146684 8.142752 8.691503 9.261485 9.853165 + 10.466907 11.102971 11.761516 12.442593 13.146151 13.872032 + 14.619974 15.389614 16.180487 16.992025 17.823572 18.67437 + 19.543577 20.430264 21.333418 22.251951 23.184706 24.130453 + 25.08791 26.055733 27.032532 28.016876 29.007301 30.002312 + 31.00039 32.000004 33.000004 34.000004 35.000004 36.000004 + 37.000004 38.000004 39.000004 40.000004 41.000004 42.000004 + 43.000004 44.000004 45.000004 46.000004 47.000004 48.000004 + 49.000004 50.000004 51.000004 52.000004 53.000004 54.000004 + 55.000004 56.000004 57.000004 58.000004 59.000004 60.000004 + 61.000004 62.000004 63.000004 64.00001 65.00001 66.00001 + 67.00001 68.00001 69.00001 70.00001 71.00001 72.00001 + 73.00001 74.00001 75.00001 76.00001 77.00001 78.00001 + 79.00001 80.00001 81.00001 82.00001 83.00001 84.00001 + 85.00001 86.00001 87.00001 88.00001 89.00001 90.00001 ] y_lower_bound: [ -9.05000000e+01 -8.95000000e+01 -8.85000000e+01 -8.75000000e+01 -8.65000000e+01 -8.55000000e+01 -8.45000000e+01 -8.35000000e+01 -8.25000000e+01 -8.15000000e+01 -8.05000000e+01 -7.95000000e+01 diff --git a/lib/iris/tests/results/analysis/regrid/linear_both_circular.cml b/lib/iris/tests/results/analysis/regrid/linear_both_circular.cml index bde83c1bb8..576ab4ace6 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_both_circular.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_both_circular.cml @@ -8,13 +8,13 @@ + 602.036560059]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_circular_src.cml b/lib/iris/tests/results/analysis/regrid/linear_circular_src.cml index 3dea384156..1032b4fc6e 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_circular_src.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_circular_src.cml @@ -8,13 +8,13 @@ + 602.036560059]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_circular_srcmissingmask.cml b/lib/iris/tests/results/analysis/regrid/linear_circular_srcmissingmask.cml index 3dea384156..1032b4fc6e 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_circular_srcmissingmask.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_circular_srcmissingmask.cml @@ -8,13 +8,13 @@ + 602.036560059]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_masked_altitude.cml b/lib/iris/tests/results/analysis/regrid/linear_masked_altitude.cml index 2e9c360032..dc1fee2f2b 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_masked_altitude.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_masked_altitude.cml @@ -7,61 +7,61 @@ + [368.688, 343.878, nan, nan, nan], + [375.091, 347.861, nan, nan, nan], + [446.161, 414.22, nan, nan, nan]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_partial_overlap.cml b/lib/iris/tests/results/analysis/regrid/linear_partial_overlap.cml index 89f4156a26..6fdbe7df00 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_partial_overlap.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_partial_overlap.cml @@ -7,53 +7,53 @@ + [nan, nan, 340.443, 407.574], + [nan, nan, 336.602, 419.093], + [nan, nan, 376.39, 341.021]]]" shape="(2, 4, 4)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_subset.cml b/lib/iris/tests/results/analysis/regrid/linear_subset.cml index d1d50b2891..d9b80dd86b 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_subset.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_subset.cml @@ -7,61 +7,61 @@ + [368.688, 343.878, 348.511, 368.918, 407.574], + [375.091, 347.861, 370.536, 395.542, 397.029], + [446.161, 414.22, 365.367, 322.287, 296.692]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_subset_anon.cml b/lib/iris/tests/results/analysis/regrid/linear_subset_anon.cml index da915c5397..1945b03a1a 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_subset_anon.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_subset_anon.cml @@ -7,61 +7,61 @@ + [368.688, 343.878, 348.511, 368.918, 407.574], + [375.091, 347.861, 370.536, 395.542, 397.029], + [446.161, 414.22, 365.367, 322.287, 296.692]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_subset_masked_1.cml b/lib/iris/tests/results/analysis/regrid/linear_subset_masked_1.cml index d1d50b2891..d9b80dd86b 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_subset_masked_1.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_subset_masked_1.cml @@ -7,61 +7,61 @@ + [368.688, 343.878, 348.511, 368.918, 407.574], + [375.091, 347.861, 370.536, 395.542, 397.029], + [446.161, 414.22, 365.367, 322.287, 296.692]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/linear_subset_masked_2.cml b/lib/iris/tests/results/analysis/regrid/linear_subset_masked_2.cml index d1d50b2891..d9b80dd86b 100644 --- a/lib/iris/tests/results/analysis/regrid/linear_subset_masked_2.cml +++ b/lib/iris/tests/results/analysis/regrid/linear_subset_masked_2.cml @@ -7,61 +7,61 @@ + [368.688, 343.878, 348.511, 368.918, 407.574], + [375.091, 347.861, 370.536, 395.542, 397.029], + [446.161, 414.22, 365.367, 322.287, 296.692]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_both_circular.cml b/lib/iris/tests/results/analysis/regrid/nearest_both_circular.cml index 708838d046..d8f1a9d0f6 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_both_circular.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_both_circular.cml @@ -8,13 +8,13 @@ + 260.259246826]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_circular_src.cml b/lib/iris/tests/results/analysis/regrid/nearest_circular_src.cml index fffcfa9aa2..5eb032cf2c 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_circular_src.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_circular_src.cml @@ -8,13 +8,13 @@ + 260.259246826]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_circular_srcmissingmask.cml b/lib/iris/tests/results/analysis/regrid/nearest_circular_srcmissingmask.cml index fffcfa9aa2..5eb032cf2c 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_circular_srcmissingmask.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_circular_srcmissingmask.cml @@ -8,13 +8,13 @@ + 260.259246826]]" shape="(4, 4)" standard_name="altitude" units="Unit('m')" value_type="float64"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_masked_altitude.cml b/lib/iris/tests/results/analysis/regrid/nearest_masked_altitude.cml index 40f8c1c308..b2aec5e891 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_masked_altitude.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_masked_altitude.cml @@ -7,61 +7,61 @@ + [345.971, 310.528, nan, nan, 444.776], + [345.971, 310.528, nan, nan, 444.776], + [461.227, 414.883, 323.68, 323.68, 280.81]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_partial_overlap.cml b/lib/iris/tests/results/analysis/regrid/nearest_partial_overlap.cml index 93ba0d09cb..f6647aa426 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_partial_overlap.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_partial_overlap.cml @@ -7,53 +7,53 @@ + [nan, nan, 310.528, 444.776], + [nan, nan, 310.528, 444.776], + [nan, nan, 414.883, 280.81]]]" shape="(2, 4, 4)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_subset.cml b/lib/iris/tests/results/analysis/regrid/nearest_subset.cml index cdbdc79016..7e12c9be60 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_subset.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_subset.cml @@ -7,61 +7,61 @@ + [345.971, 310.528, 425.157, 425.157, 444.776], + [345.971, 310.528, 425.157, 425.157, 444.776], + [461.227, 414.883, 323.68, 323.68, 280.81]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_subset_anon.cml b/lib/iris/tests/results/analysis/regrid/nearest_subset_anon.cml index 9f5ef6419c..40390f387c 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_subset_anon.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_subset_anon.cml @@ -7,61 +7,61 @@ + [345.971, 310.528, 425.157, 425.157, 444.776], + [345.971, 310.528, 425.157, 425.157, 444.776], + [461.227, 414.883, 323.68, 323.68, 280.81]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_1.cml b/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_1.cml index cdbdc79016..7e12c9be60 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_1.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_1.cml @@ -7,61 +7,61 @@ + [345.971, 310.528, 425.157, 425.157, 444.776], + [345.971, 310.528, 425.157, 425.157, 444.776], + [461.227, 414.883, 323.68, 323.68, 280.81]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_2.cml b/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_2.cml index cdbdc79016..7e12c9be60 100644 --- a/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_2.cml +++ b/lib/iris/tests/results/analysis/regrid/nearest_subset_masked_2.cml @@ -7,61 +7,61 @@ + [345.971, 310.528, 425.157, 425.157, 444.776], + [345.971, 310.528, 425.157, 425.157, 444.776], + [461.227, 414.883, 323.68, 323.68, 280.81]]]" shape="(2, 4, 5)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/analysis/regrid/no_overlap.cml b/lib/iris/tests/results/analysis/regrid/no_overlap.cml index 8ae1e17189..6aa4d218f8 100644 --- a/lib/iris/tests/results/analysis/regrid/no_overlap.cml +++ b/lib/iris/tests/results/analysis/regrid/no_overlap.cml @@ -7,53 +7,53 @@ + [nan, nan, nan, nan], + [nan, nan, nan, nan], + [nan, nan, nan, nan]]]" shape="(2, 4, 4)" standard_name="altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/concatenate/concat_2x2d_aux_xy_bounds.cml b/lib/iris/tests/results/concatenate/concat_2x2d_aux_xy_bounds.cml index be44dd1ed5..4f279cef01 100644 --- a/lib/iris/tests/results/concatenate/concat_2x2d_aux_xy_bounds.cml +++ b/lib/iris/tests/results/concatenate/concat_2x2d_aux_xy_bounds.cml @@ -10,14 +10,14 @@ diff --git a/lib/iris/tests/results/concatenate/concat_3d_simple.cml b/lib/iris/tests/results/concatenate/concat_3d_simple.cml index dceefc9694..67c7cc4376 100644 --- a/lib/iris/tests/results/concatenate/concat_3d_simple.cml +++ b/lib/iris/tests/results/concatenate/concat_3d_simple.cml @@ -19,24 +19,24 @@ + [6000.0, 7000.0, 6000.0, 7000.0], + [4000.0, 5000.0, 4000.0, 5000.0], + [6000.0, 7000.0, 6000.0, 7000.0]]]" shape="(4, 4, 4)" units="Unit('1')" value_type="float32"/> + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + ..., + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0]]]" shape="(70, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -490,17 +490,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/cube_io/pickling/single_cube.cml b/lib/iris/tests/results/cube_io/pickling/single_cube.cml index 1f511efa4e..2cd3dbb3cb 100644 --- a/lib/iris/tests/results/cube_io/pickling/single_cube.cml +++ b/lib/iris/tests/results/cube_io/pickling/single_cube.cml @@ -9,387 +9,387 @@ + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + ..., + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0]]]" shape="(70, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -490,17 +490,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/cube_merge/multidim_coord_merge.cml b/lib/iris/tests/results/cube_merge/multidim_coord_merge.cml index 38319925a9..0767f41844 100644 --- a/lib/iris/tests/results/cube_merge/multidim_coord_merge.cml +++ b/lib/iris/tests/results/cube_merge/multidim_coord_merge.cml @@ -4,37 +4,37 @@ diff --git a/lib/iris/tests/results/cube_merge/multidim_coord_merge_transpose.cml b/lib/iris/tests/results/cube_merge/multidim_coord_merge_transpose.cml index 23dab2aaa9..c649dc8569 100644 --- a/lib/iris/tests/results/cube_merge/multidim_coord_merge_transpose.cml +++ b/lib/iris/tests/results/cube_merge/multidim_coord_merge_transpose.cml @@ -4,37 +4,37 @@ diff --git a/lib/iris/tests/results/cube_slice/2d_intersect_and_reverse.cml b/lib/iris/tests/results/cube_slice/2d_intersect_and_reverse.cml index fc183e0c06..3f9e5fef9e 100644 --- a/lib/iris/tests/results/cube_slice/2d_intersect_and_reverse.cml +++ b/lib/iris/tests/results/cube_slice/2d_intersect_and_reverse.cml @@ -21,44 +21,44 @@ diff --git a/lib/iris/tests/results/cube_slice/2d_to_1d_cube_multi_slice3.cml b/lib/iris/tests/results/cube_slice/2d_to_1d_cube_multi_slice3.cml index db5522441b..ee69b13b5c 100644 --- a/lib/iris/tests/results/cube_slice/2d_to_1d_cube_multi_slice3.cml +++ b/lib/iris/tests/results/cube_slice/2d_to_1d_cube_multi_slice3.cml @@ -22,26 +22,26 @@ diff --git a/lib/iris/tests/results/cube_slice/2d_to_2d_revesed.cml b/lib/iris/tests/results/cube_slice/2d_to_2d_revesed.cml index c251b78efb..6df2838935 100644 --- a/lib/iris/tests/results/cube_slice/2d_to_2d_revesed.cml +++ b/lib/iris/tests/results/cube_slice/2d_to_2d_revesed.cml @@ -22,44 +22,44 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + ..., + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0]]]" shape="(70, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -448,17 +448,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 35845.0, 40000.0], + [334.817, 350.85, 373.297, ..., 32192.7, + 35845.0, 40000.0], + [333.031, 349.068, 371.52, ..., 32192.7, + 35845.0, 40000.0], + ..., + [314.701, 330.773, 353.275, ..., 32192.7, + 35845.0, 40000.0], + [315.121, 331.192, 353.693, ..., 32192.7, + 35845.0, 40000.0], + [305.167, 321.257, 343.784, ..., 32192.7, + 35845.0, 40000.0]]]" shape="(100, 100, 70)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -484,17 +484,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 494.655, 489.205], + [484.056, 487.953, 480.798, ..., 491.387, + 498.13, 497.565], + [450.347, 451.535, 454.265, ..., 487.154, + 495.415, 495.203], + ..., + [600.616, 589.583, 574.646, ..., 350.999, + 348.507, 337.723], + [584.25, 573.971, 563.173, ..., 335.118, + 333.133, 329.552], + [562.918, 552.169, 545.849, ..., 329.355, + 327.593, 325.258]]]" shape="(5, 16, 21)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -415,18 +415,18 @@ + 218.732, 216.367]]" shape="(16, 21)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> diff --git a/lib/iris/tests/results/imagerepo.json b/lib/iris/tests/results/imagerepo.json index 90c888c7c9..51d37daf3c 100644 --- a/lib/iris/tests/results/imagerepo.json +++ b/lib/iris/tests/results/imagerepo.json @@ -1,140 +1,179 @@ { "example_tests.test_COP_1d_plot.TestCOP1DPlot.test_COP_1d_plot.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/baff589936602d8ec977334ae4dac9b61a6dc4d99532c86cc2913e36c4cc0f61.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/baff589936602d8ec977334ae4dac9b61a6dc4d99532c86cc2913e36c4cc0f61.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aefec91c3601249cc9b3336dc4c8cdb31a64c6d997b3c0eccb5932d285e42f33.png" ], "example_tests.test_COP_maps.TestCOPMaps.test_cop_maps.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea9138db95668524913e6ac168997e85957e917e876396b96a81b5ce3c496935.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea9138db95668524913e6ac168997e85957e917e876396b96a81b5ce3c496935.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea9130db95668524913c6ac178995b0d956e917ec76396b96a853dcf94696935.png" ], "example_tests.test_SOI_filtering.TestSOIFiltering.test_soi_filtering.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fac460b9c17b78723e05a5a9954edaf062332799954e9ca5c63b9a52d24e5a95.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8460b9c17b78723e05a5a9954edaf062333799954e9ca5c63b9a52d24e4a9d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8460b9c17b78723e05a5a9954edaf062333799954e9ca5c63b9a52d24e4a9d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa167295c5e0696a3c17a58c9568da536233da19994cdab487739b4b9b444eb5.png" ], "example_tests.test_TEC.TestTEC.test_TEC.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e1a561b69b1a9a42846e9a49c7596e3cce6c907b3a83c17e1b8239b3e4f33bc4.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e1a561b69b1a9e43846e9a49c7596e2cce6c907b3a83c16e1b9231b3e4f33b8c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e1a561b69b1a9e43846e9a49c7596e2cce6c907b3a83c16e1b9231b3e4f33b8c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e5a761b69a589a4bc46f9e48c65c6631ce61d1ce3982c13739b33193c0ee3f8c.png" ], "example_tests.test_anomaly_log_colouring.TestAnomalyLogColouring.test_anomaly_log_colouring.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ec4464e185a39f93931e9b1e91696d2949dde6e63e26a47a5ad391938d9a5a0c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ec4464e185a39f93931e9b1e91696d2949dde6e63e26a47a5ad391938d9a5a0c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ecc164e78e979b19b3789b0885a564a56cc2c65e3ec69469db1bdb9a853c1e24.png" ], "example_tests.test_atlantic_profiles.TestAtlanticProfiles.test_atlantic_profiles.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/9f8260536bd28e1320739437b5f437b0a51d66f4cc5d08fcd00fdb1c93fcb21c.png", "https://scitools.github.io/test-iris-imagehash/images/v4/9f8260536bd28e1320739437b5f437b0a51d66f4cc7c09f4d00fdb1c93fcb21c.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/9f8a60536bd28e1320739437b5f437b0a53d66f4cc5c08f4d00fdb1c93fcb21c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/9f8a60536bd28e1320739437b5f437b0a53d66f4cc5c08f4d00fdb1c93fcb21c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/9fc060f462a08f07203ebc77a1f36707e61f4e38d8f7d08a910197fc877cec58.png" ], "example_tests.test_atlantic_profiles.TestAtlanticProfiles.test_atlantic_profiles.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/a6eaa57e6e81ddf999311ba3b3775e20845d5889c199673b4e22a4675e8ca11c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a6eaa57e6e81ddf999311ba3b3775e20845d5889c199673b4e22a4675e8ca11c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eeea64dd6ea8cd99991f1322b3761e06845718d89995b3131f32a4765ec2a1cd.png" ], "example_tests.test_coriolis_plot.TestCoriolisPlot.test_coriolis_plot.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e78665de9a699659e55e9965886979966986c5e63e98c19e3a256679e1981a24.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e78665de9a699659e55e9965886979966986c5e63e98c19e3a256679e1981a24.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e68665de9a699659c1fe99a5896965966996c46e3e19c1da3a652669c51e1a26.png" ], "example_tests.test_cross_section.TestCrossSection.test_cross_section.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea95317b9562e4d1649f5a05856e4ca4da52947e4ea5f13f1b499d42f13b1b41.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea95317b9562e4d1649f5a05856e4ca4da52947e4ea5f13f1b499d42f13b1b41.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea91b17b9562e4d1609f5a05856e4ca45a52957e5ea5f13b1bca9dc0b17b1ac1.png" ], "example_tests.test_cross_section.TestCrossSection.test_cross_section.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea9521fb956a394069921e93f07f4aad856cc47e4e95857a1ea5da3591ba1b81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea9521fb956a394069921e93f07f4aad856cc47e4e95857a1ea5da3591ba1b81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea9521fb956a394068931e9be07e4aa5856cc47e4a91957a1ba55bb5b17a3b81.png" ], "example_tests.test_custom_aggregation.TestCustomAggregation.test_custom_aggregation.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe816e81917e907eb43e873f85677ac190f0703c6a95811f1ac33ce1a57a6f18.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe816e81917e907eb43e873f85677ac190f0703c6a95811f1ac33ce1a57a6f18.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe816e81817e907eb43e873f85637ac198d8703c6a94811f1ac73ee1a57a6f90.png" ], "example_tests.test_custom_file_loading.TestCustomFileLoading.test_custom_file_loading.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/faa0cbf1845e34be913787416edcc8bc3bc81f9b63332662a4ed30cdc1b2cd21.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fba0cbf1845e34be912787416edcc8bc3b881f9b62332762a5ad32cdc1b2cd21.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fba0cbf1845e34be912787416edcc8bc3b881f9b62332762a5ad32cdc1b2cd21.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/faa1cb47845e34bc912797436cccc8343f11359b73523746c48c72d9d9b34da5.png" ], "example_tests.test_deriving_phenomena.TestDerivingPhenomena.test_deriving_phenomena.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/b9993986866952e6c9464639c4766bd9c669916e7b99c1663f99768990763e81.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/b99139de866952e6c946c639c47e6bd18769d16e7a9981662e813699d0763e89.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/b99139de866952e6c946c639c47e6bd18769d16e7a9981662e813699d0763e89.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ec97681793689768943c97e8926669d186e8c33f6c99c32e6b936c83d33e2c98.png" ], "example_tests.test_global_map.TestGlobalMap.test_global_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa9979468566857ef07e3e8978566b91cb0179883c89946686a96b9d83766f81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa9979468566857ef07e3e8978566b91cb0179883c89946686a96b9d83766f81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa997b958466846ed13e87467a997a898d66d17e2cc9906684696f99d3162f81.png" ], "example_tests.test_hovmoller.TestGlobalMap.test_hovmoller.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bab430b4ce4bce43c5becf89c54b1a63c543c56e1e64907e3bb469b490de1ac1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bab430b4ce4bce43c5becf89c54b1a63c543c56e1e64907e3bb469b490de1ac1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eeb46cb4934b934bc07e974bc14b38949943c0fe3e94c17f6ea46cb4c07b3f00.png" ], "example_tests.test_inset_plot.TestInsetPlot.test_inset_plot.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ebff6992f50096a5b245dac4f6559496b49248dbc95dcb699529912dcf244a54.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e9ff6992b50096a5b245dac4f64594b6b49248dbc95dcb699529952dcf244a56.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e9ff6992b50096a5b245dac4f64594b6b49248dbc95dcb699529952dcf244a56.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ebff6992b50096ad9267dac4d64094b294924cdbc95d4b699d29952dcda46e94.png" ], "example_tests.test_lagged_ensemble.TestLaggedEnsemble.test_lagged_ensemble.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bbbb31e1c44e64e4b0459b5bb1716ecac464f496ce34618eb1079b39b193ce25.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bbbb31e1c44e64e4b0459b5bb1716ecac464f496ce34618eb1079b39b193ce25.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bbbb31b1c44e64e4b1579b5b917133cecc61f146c414668eb1119b1bb197ce34.png" ], "example_tests.test_lagged_ensemble.TestLaggedEnsemble.test_lagged_ensemble.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/abfef958fd462c993a07d87960464b81d1009687c139d3b594e9cf87c6b89687.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/abfef958fd462c993a07d87960464b81d1009687c139d3b594e9cf87c6b89687.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aafec5e9e5e03e099a07e0f86542db879438261ec3b13ce78d8dc65a92d83d89.png" ], "example_tests.test_lineplot_with_legend.TestLineplotWithLegend.test_lineplot_with_legend.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/eae942526540b869961f8da694589da69543cc9af1014afbc3fd596b84fe19a7.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/eae942146540b869961f8de694589da69543cc9af1014afbc3fd596b84fe19a7.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eae942146540b869961f8de694589da69543cc9af1014afbc3fd596b84fe19a7.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eafd9e12a5a061e9925ec716de489e9685078ec981b229e70ddb79219cc3768d.png" ], "example_tests.test_orca_projection.TestOrcaProjection.test_orca_projection.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fb11731a94cea4ee64b35e91d1d2304e9e5ac7397b20e1fe12852487e666ce46.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fb11731a94cea4ee64b35e91d1d2304e9e5ac7397b20e1fe12852487e666ce46.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bb11721a87cce5e4cce79e81d19b3b5e1e1cd3783168e07835853485e65e2e1e.png" ], "example_tests.test_orca_projection.TestOrcaProjection.test_orca_projection.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e5a665a69a599659e5db1865c2653b869996cce63e99e19a1a912639e7181e65.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e5a665a69a599659e5db1865c2653b869996cce63e99e19a1a912639e7181e65.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e58661969e799659c1f719a6c867359a1996c0773649c09c3e612679c07b3f66.png" ], "example_tests.test_orca_projection.TestOrcaProjection.test_orca_projection.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/f2c464ce9e399332e1b74ce1cc79338c6586e5b33b31b37a66c9664cc06e1a64.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/f2c464ce9e399332e1b74ce1cc79338c6586e5b33b31b37a66c9664cc06e1a64.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a58660ce9e739b31c93d1cc9c8df33863383e33b3f11c03f2664366cc8ee3cc1.png" ], "example_tests.test_orca_projection.TestOrcaProjection.test_orca_projection.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a83846ea46ce539c93391de32cc86cf87a33fa168721cdb3e896e374b04.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a83846ea46ce539c93391de32cc86cf87a33fa168721cdb3e896e374b04.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be817a87845ea56cec79817a919e338436a5c1e73fa16c736c4a3e816a1e6b1c.png" ], "example_tests.test_polar_stereo.TestPolarStereo.test_polar_stereo.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e168317a92d36d89c5bb9e94c55e6f0c9a93c15a6ec584763b21716791de3a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e168317a92d36d89c5bb9e94c55e6f0c9a93c15a6ec584763b21716791de3a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b9e16079971e9e93c8ce0f84c31e3b929f92c0ff3ca1c17e39e03961c07e3f80.png" ], "example_tests.test_polynomial_fit.TestPolynomialFit.test_polynomial_fit.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/abff4a9df26435886520c97f12414695c4b69d23934bc86adc969237d68ccc6f.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/aaff4a9df26435886520c97f12414695c4b69d23934bc86adc969a17d69ccc6f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/aaff4a9df26435886520c97f12414695c4b69d23934bc86adc969a17d69ccc6f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aeffcb34d244348be5a2c96c3a4fc6d0c4b69f2d87294ccb9f1a125684cd7c11.png" ], "example_tests.test_projections_and_annotations.TestProjectionsAndAnnotations.test_projections_and_annotations.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa854f19851a30e4cc76cd0bb179325ca7c665b0c938cb4b4e719e9cb727b5c0.png", "https://scitools.github.io/test-iris-imagehash/images/v4/fac54f19851a30e4cc76cd0bb179325cb78665b0c938cb4b4e719e9c9727b5c0.png", "https://scitools.github.io/test-iris-imagehash/images/v4/fa854e19851a30e4cc76cd0bb179325cb7c664b0c938cb4bce739e9c37a3b5c0.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa854e19851a30e4cc76cd0bb179325cb78665b1c938c94bce739e9c3727b5c0.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa854e19851a30e4cc76cd0bb179325cb78665b1c938c94bce739e9c3727b5c0.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa854f19851a30e4cc76cd0bb0f932dca7c665b1c92ccb4b4ed19e9c3721b5c8.png" ], "example_tests.test_projections_and_annotations.TestProjectionsAndAnnotations.test_projections_and_annotations.1": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e385699d9c3896627243318fcdad5a7dc6dba492e9b69964936dc21974b18592.png", "https://scitools.github.io/test-iris-imagehash/images/v4/e385699d9c3896727243318f8dad5a7dc65ba492b93699649b6dc25b64938592.png", "https://scitools.github.io/test-iris-imagehash/images/v4/e385699d9c3896627243318fcdad5a7dc6dba492b93699649b6dc25964938592.png", "https://scitools.github.io/test-iris-imagehash/images/v4/e3856b999c3896727243318f8dad5a75965ba492f9b69964db4cc65b64918592.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e3856b999c3896727243318f8dad5a75865ba492e9b69964db6cc65b74918592.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e3856b999c3896727243318f8dad5a75865ba492e9b69964db6cc65b74918592.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e3856d999c389662734731afcdad5a7384daa592b1b69b64d26dc29974b18590.png" ], "example_tests.test_rotated_pole_mapping.TestRotatedPoleMapping.test_rotated_pole_mapping.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa15615e97a193adc15e1e81c4fa3eb49d30817e3e05c17e7ba59927817e1e01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa15615e97a193adc15e1e81c4fa3eb49d30817e3e05c17e7ba59927817e1e01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ee46607e97a19781c0df1f81d0bb3e241f20c16f3fc0c1fe39263d33d06f3e80.png" ], "example_tests.test_rotated_pole_mapping.TestRotatedPoleMapping.test_rotated_pole_mapping.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ba056717c3e099e9b90f8e81c4da589499b696763e45e56b3b893929c17b7e01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ba056717c3e099e9b90f8e81c4da589499b696763e45e56b3b893929c17b7e01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea57685f95a886a1c0de9da090be3e2697e1c0ff3f00c17e6b266c17c07f3f00.png" ], "example_tests.test_rotated_pole_mapping.TestRotatedPoleMapping.test_rotated_pole_mapping.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ba1e605ec7a191a1b85e9e81c4da58909996b37e3a65e16f7b817939e57a1e01.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ba1e605ec7a193a1b85e9e81c4da58909996b3763a65e16f7b816939ed7a1e01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ba1e605ec7a193a1b85e9e81c4da58909996b3763a65e16f7b816939ed7a1e01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a697e97a18681c6da9f8190bf3e263624c1ef3b48c17a2b223c47c0ff3f81.png" ], "example_tests.test_rotated_pole_mapping.TestRotatedPoleMapping.test_rotated_pole_mapping.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8172d0847ecd2bc913939c36846c714933799cc3cc8727e67639f939996a58.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8172d0847ecd2bc913939c36846c714933799cc3cc8727e67639f939996a58.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8172c6857ecd38cb3392ce36c564311931d85ec64e9787719a39993c316e66.png" ], "example_tests.test_wind_speed.TestWindSpeed.test_wind_speed.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bcf924fb9306930ce12ccf97c73236b28ecec4cd3e29847b18e639e6c14f1a09.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bcf924fb9306930ce12ccf97c73236b28ecec4cd3e29847b18e639e6c14f1a09.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e9e960e996169306c1ee9e96c29e36739e13c07d3d61c07f39a139a1c07f3f01.png" ], "example_tests.test_wind_speed.TestWindSpeed.test_wind_speed.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bcf924fb9306930ce12ccf97c73236b28ecec4cc3e29847b38e639e6c14f1a09.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bcf924fb9306930ce12ccf97c73236b28ecec4cc3e29847b38e639e6c14f1a09.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e9e960e996169306c1ee9e86c29e36739e13c07d3d61c07f39a139a1c17f3f01.png" ], "iris.tests.experimental.test_animate.IntegrationTest.test_cube_animation.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe81957ac17e6a85817e6a85857e942a3e81957a7e81917a7a81d95ec17e2ca1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe81957ac17e6a85817e6a85857e942a3e81957a7e81917a7a81d95ec17e2ca1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe81c17e817e3e81817e7e81857e7e817e81c07e7e81c17e7a81817e817e8c2a.png" ], "iris.tests.experimental.test_animate.IntegrationTest.test_cube_animation.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be81c17ec17e7e81c17e3e81c57ea55a3e80c17e3e81c1fe7a81c285c95f2c03.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be81c17ec17e7e81c17e3e81c57ea55a3e80c17e3e81c1fe7a81c285c95f2c03.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe81857e817e6a85817e7a81857e7e817e81957a7e81817e7a81817e817e843e.png" ], "iris.tests.experimental.test_animate.IntegrationTest.test_cube_animation.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea857a81957a857e957ec17e817e6a816a853e817a853e816e818d3a862ad3fe.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea857a81957a857e957ec17e817e6a816a853e817a853e816e818d3a862ad3fe.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be81857ec17e7a81c17e7e81857e3e803e81817a3e81c17e7a81c17ec97e2c2b.png" ], "iris.tests.test_analysis.TestProject.test_cartopy_projection.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/9e1952c9c165b4fc668a9d47c1461d7a60fb2e853eb426bd62fd229c9f04c16d.png" ], "iris.tests.test_mapping.TestBasic.test_contourf.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85a69cc96ad92e193c9963385929e1cc3819acde6d965ce6e666b30386e65b1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a69cc96ad92e193c9963385929e1cc3819acde6d965ce6e666b30386e65b1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e97a346c9685cb899685c9c39695c79396ec634969ce2c74697a3864697b3c8c.png" ], "iris.tests.test_mapping.TestBasic.test_pcolor.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e95a69c896a592e59bc99e3384929636c32d98cde6d964ce7e666332386465b1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e95a69c896a592e59bc99e3384929636c32d98cde6d964ce7e666332386465b1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e97a347c96858b8d9685c9c39696c393966c634969ce3c64697a3864697b3c9c.png" ], "iris.tests.test_mapping.TestBasic.test_unmappable.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/eaa5684eb54a947ad09eb731c521978dc2fb1cc0e4966ce26e2c6b2d3a6e691a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eaa5684eb54a947ad09eb731c521978dc2fb1cc0e4966ce26e2c6b2d3a6e691a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea853e48957ac1df957ac8be852bc1b1944e7a9878e03f4c6a253e6c7a912dc2.png" ], "iris.tests.test_mapping.TestBoundedCube.test_grid.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa81917e857e6e81857e7a857a81917a7a81857e857e7e81857e7a817a81852e.png", @@ -142,585 +181,766 @@ "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7a81857e7a817a81857a7a81857e857e7a85857e7a817a81857a.png" ], "iris.tests.test_mapping.TestBoundedCube.test_pcolormesh.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81e535857e92ca8ec23d21b13ce15e7a811ea5c47e1a5ac17b652d3b05e4f2.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81e535857e92ca8ec23d21b13ce15e7a811ea5c47e1a5ac17b652d3b05e4f2.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81c17a857e1ea5857e634a7a81cd257e8584da857e3b29817e68f47a81c791.png" ], "iris.tests.test_mapping.TestLimitedAreaCube.test_grid.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/bf80e2b1c17f1d0ac4f7c8d739a637202749699b6bb3ce3666e4b048944d9d89.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/bf80e2f1c17f1d0ac457c8d619a637213749699b6bb34e3666e4b04e944d9d89.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bf80e2f1c17f1d0ac457c8d619a637213749699b6bb34e3666e4b04e944d9d89.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea05392995bac6d691ce3f21666569d86a96c6360ee195cb91e8ce54953b313b.png" ], "iris.tests.test_mapping.TestLimitedAreaCube.test_outline.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e3e80857e7a817a817a817a81817f7a81857e857e857e857e7a81.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e21857e7a817a817a857a81857a7a81857a857e857a857e7a84.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e21857e7a817a817a857a81857a7a81857a857e857a857e7a84.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa1585e885e87a1785fa7a177a177e807a1585e85fa0857a85e86817857f6a16.png" ], "iris.tests.test_mapping.TestLimitedAreaCube.test_pcolormesh.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bf81e6b1c17e1d4884bfc8df39a43720374969db69b34e26c4e4b0ca904f9d89.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bf81e6b1c17e1d4884bfc8df39a43720374969db69b34e26c4e4b0ca904f9d89.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea57396995a8c6d691ea3f25664569d86b16c63686ed958991ea4a549531393b.png" ], "iris.tests.test_mapping.TestLimitedAreaCube.test_scatter.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ea053d2e916ac2d9c4d894346b24f3477acf68ad39329ed8c696e136c1ab9a71.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ea053d2e916ac2d9c4d895346b2473477acf68ad39329ed8c69ee126c1ab9a71.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea053d2e916ac2d9c4d895346b2473477acf68ad39329ed8c69ee126c1ab9a71.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea05bd2e916ac2d984983d346b2473477acf69ad3d3296d8c696e126c1ab1e71.png" ], "iris.tests.test_mapping.TestLowLevel.test_keywords.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a31871f7e856470c1fa9b8c7b81647384665b9ed1b998c1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a31871f7e856470c1fa9b8c7b81647384665b9ed1b998c1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a63a71b3e016061c1fe9b8c3e01a473847e5b94d1fb9ac3.png" ], "iris.tests.test_mapping.TestLowLevel.test_keywords.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea811831957fe3cea68c6ce0d9f29b9b6a816463953e61cc917f1ae36ac09d38.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea811831957fe3cea68c6ce0d9f29b9b6a816463953e61cc917f1ae36ac09d38.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa819097857e6560957e7bcc7a819c316e81951e857e62c281fe79a17aa19637.png" ], "iris.tests.test_mapping.TestLowLevel.test_params.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ee819cb7913b63c8846e64737bb1999c6ec52633953a69c8916f6c636e92911c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ee819cb7913b63c8846e64737bb1999c6ec52633953a69c8916f6c636e92911c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8190be857e6739917a7bc47a8594337bb1911c857e6ec3913279007e819637.png" ], "iris.tests.test_mapping.TestLowLevel.test_params.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a31871f7e856470c1fa9b8c7b81647384665b9ed1b998c1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a31871f7e856470c1fa9b8c7b81647384665b9ed1b998c1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be21a71bc1de58e43a63a71b3e016061c1fe9b8c3e01a473847e5b94d1fb9ac3.png" ], "iris.tests.test_mapping.TestLowLevel.test_params.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea811831957ae3cea68c6ce0c9f39b9b6a816473953e63cc917f1ae36ac09d38.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea811831957ae3cea68c6ce0c9f39b9b6a816473953e63cc917f1ae36ac09d38.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81909f857e6520957e5bcc7a8194716e31851e857e6ac281fe3f817a81963f.png" ], "iris.tests.test_mapping.TestLowLevel.test_simple.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/eae0943295154bcc844e6c314fb093ce7bc7c4b3a4307bc4916f3f316ed2b4ce.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eae0943295154bcc844e6c314fb093ce7bc7c4b3a4307bc4916f3f316ed2b4ce.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/faa0e55c855fdce7857a1ab16a85a50c3ea1e55e856658a5c11837096e8fe17a.png" ], "iris.tests.test_mapping.TestMappingSubRegion.test_simple.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bd913e01d07ee07e926e87876f8196c1e0d36967393c1f181e2c3cb8b0f960d7.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bd913e01d07ee07e926e87876f8196c1e0d36967393c1f181e2c3cb8b0f960d7.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b9913d90c66eca6ec66ec2f3689195b6cf5b2f00392cb3496695621d34db6c92.png" ], "iris.tests.test_mapping.TestUnmappable.test_simple.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe818d6ac17e5a958d7ab12b9d677615986e666dc4f20dea7281d98833889b22.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe818d6ac17e5a958d7ab12b9d677615986e666dc4f20dea7281d98833889b22.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81b54a817eca35817ec701857e3e64943e7bb41b846f996e817e006ee1b19b.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_coord.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2ff7c00a56de9023b52e4143da5d16d7ecad1b76f2094c963929c6471c8.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2ff7c00a56de9023b52e4143da5d16d7ecad1b76f2094c963929c6471c8.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfec2d77e01a5a5ed013b4ac4521c94817d4e6d91ff63349c6d61991e3278cc.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_coord_coord.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/87ff95776a01e1f67801cc36f4075b81c5437668c1167c88d2676d39d6867b68.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/87ff95776a01e1f67801cc36f4075b81c5437668c1167c88d2676d39d6867b68.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8fff941e7e01e1c2f801c878a41e5b0d85cf36e1837e2d9992c62f21769e6a4d.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_coord_coord_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fbe0623dc9879d91b41e4b449b6579e78798a49b7872d2644b8c919b39306e6c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fbe0623dc9879d91b41e4b449b6579e78798a49b7872d2644b8c919b39306e6c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bbe0c21ccd179dc3b05e4b689b0771b48698961b7962da446e8ca5bb36716c6e.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_coord_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8ff897066b41f076f81dce1fb007da79c50633e9c40626b8d1066df9d6067969.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ff897066b41f076f81dce1fb007da79c50633e9c40626b8d1066df9d6067969.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8ff897066a01f0f2f818ee1eb007ca41853e3b81c57e36a991fe2ca9725e29ed.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffac1547a0792546c179db7f1254f6d945b7392841678e895017e3e91c17a0f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffac1547a0792546c179db7f1254f6d945b7392841678e895017e3e91c17a0f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8ff8c1fa7a05b4ea6c059d2ff1494e4b90f26304846d78d1872a6cfc938b2e3e.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_cube_coord.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/83fec1ff7e0098757103a71ce4506dc3d11e7b20d2477ec094857db895217f6a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83fec1ff7e0098757103a71ce4506dc3d11e7b20d2477ec094857db895217f6a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8fffc1dc7e019c70f001b70ee4386de1814e7938837b6a7f84d07c9f15b02f21.png" ], "iris.tests.test_plot.Test1dPlotMultiArgs.test_cube_cube.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8ff8c2d73a09b4a76c099d26f14b0e5ad0d643b0d42763e9d51378f895867c39.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8fe8c0173a19b4066d599946f35f0ed5d0b74729d40369d8953678e897877879.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8fe8c0173a19b4066d599946f35f0ed5d0b74729d40369d8953678e897877879.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8ff8c0567a01b096e4019daff10b464bd4da6391943678e5879f7e3103e67f1c.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_coord.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2777e04256f68023352f6d61da5c109dec8d19bcf089cc9d99a9c85d999.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2777e06256f68023352f6d61da5c009decad19bcf089cc9d99a9c85d989.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2777e06256f68023352f6d61da5c009decad19bcf089cc9d99a9c85d989.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/83fec2777e002427e801bb4ae65a1c94813dcec999db4bbc9ccd79991f3238cc.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_coord_coord.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83fe9dd77f00e1d73000cc1df707db8184427ef8d1367c88d2667d39d0866b68.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/83fe9d977f41e1d73000cc1df707d98184427ef8d1367c88d2667d39d0866b68.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83fe9d977f41e1d73000cc1df707d98184427ef8d1367c88d2667d39d0866b68.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/83ff9d9f7e01e1c2b001c8f8f63e1b1d81cf36e1837e259982ce2f215c9a626c.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_coord_coord_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fbe0623dc9879d91b41e4b449b6579e78798a49b7872d2644b8c919b39306e6c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fbe0623dc9879d91b41e4b449b6579e78798a49b7872d2644b8c919b39306e6c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bbe0c21ccd179dc3b05e4b689b0771b48698961b7962da446e8ca5bb36716c6e.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_coord_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/87ffb5867f0060d4301f6d9fb007d899c50699e9c8668e78d8678d69de069969.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/87ffb5867f0060d4301f6d9fb007d899c50699e9c8668e78d8678d69de069969.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/87ffb79e7f0060d8303fcd1eb007d801c52699e18d769e2199e60ce1da5629ed.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc1dc7e00b0dc66179d95f127cfc9d44959ba846658e891075a3e99415a2f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc1dc7e00b0dc66179d95f127cfc9d44959ba846658e891075a3e99415a2f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffc1d87e00b49964179d28f16bce4b98724b268c6d58e1972e4874998b2e7e.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_cube_coord.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83fec1ff7f90987720029f1ef458cd43811cdb60d647de609485ddb899215f62.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/83fec1ff7f94987720009f1ef458cd43810cdb60d647de609485ddb89921df62.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83fec1ff7f94987720009f1ef458cd43810cdb60d647de609485ddb89921df62.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffc1de7e009c7030019786f438cde3810fd97c93734a778ce07c9f99b02731.png" ], "iris.tests.test_plot.Test1dQuickplotPlotMultiArgs.test_cube_cube.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc8967e0098a6241f9d26e34b8e42f4d20bb4942759e9941f78f8d7867a39.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/83f9c8967e009da6245f9946e25f9ed6f0940f29f40749d8853678e8d7857879.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83f9c8967e009da6245f9946e25f9ed6f0940f29f40749d8853678e8d7857879.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc9d67e00909624079daef160cf4bd45a439184367ae5979f7e3119e6261c.png" ], "iris.tests.test_plot.Test1dQuickplotScatter.test_coord_coord.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a3fac1947c99184e62669ca7f65bc96ab81d97b7e248199cc7913662d94ac5a1.png", "https://scitools.github.io/test-iris-imagehash/images/v4/a3fac1947c99184e62669ca7f65bc96ab81d97b7c248399cc7917662d84ac5a1.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a3fac1b47c99184e62669ca7f65bc96ab81d97b7e248199cc7913662d84acda0.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a3fac1b47c99184e62669ca7f65bc96ab81d97b7e248199cc7913662d84acda0.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b2ecc1a8b9994a16e666b5e3ce151969a5fb4ed49909653990d46b9bfc097684.png" ], "iris.tests.test_plot.Test1dQuickplotScatter.test_coord_coord_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bea07c99c15eb16e9891ce50c742394a3ced6cb13390f1cc73c29f1b2d0ecd66.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bea07c99c15eb16e9891ce50c742394a3ced6cb13390f1cc73c29f1b2d0ecd66.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bea06899c14eb16e9895ce46c74a396a74ed64b13390b3c61b439f1b4d2ccde6.png" ], "iris.tests.test_plot.Test1dQuickplotScatter.test_coord_cube.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ae7f1f07f3e0e0f0211b9e066e074d83926ed8f8cd3792dad1964db0d80e9b09.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ae7f1f07f3e0e0f0311b9e066e074d839266d8e8cd379adad1964db0d80e9b09.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ae7f1f07f3e0e0f0311b9e066e074d839266d8e8cd379adad1964db0d80e9b09.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be852fc1e078c83eb30e3607672149c098d95c5b9e4636f2c1fc299d999f7e03.png" ], "iris.tests.test_plot.Test1dQuickplotScatter.test_cube_coord.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a5f896d99a67b94c621deda3f69392cccd246db39018989ec4836de9ed249292.png", "https://scitools.github.io/test-iris-imagehash/images/v4/a5f896d99a66b94c621deda3f69392cccd646db3901898dec4836de9cd249292.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a5f896d99a67b94c621ceda3f6d392cccd246db3901898dec4836de9cd249292.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a5f896d99a67b94c621ceda3f6d392cccd246db3901898dec4836de9cd249292.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/edfa96cb9a256b4f65466d9892d9c865693a1a9c94b39ed8484b35ad9a864c32.png" ], "iris.tests.test_plot.Test1dQuickplotScatter.test_cube_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/a4fb19b3db04c6cd6307b98678601c738c39d71cf3866186d8616e69bd191b9e.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a4fb19b3db04c6cd6307b98678601c738c39d71cf3866186d8616e69bd191b9e.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e8b33c129649c78de3a773e578650c728e92279be12de1edc4f246b2939c3b01.png" ], "iris.tests.test_plot.Test1dScatter.test_coord_coord.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bbfac39d9899384a6f6694a7b613cb489c95b7b7c24a399cc5913262d84acda0.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bbfac39d9899384a6f6694a7b613cb489c95b7b7c24a399cc5913262d84acda0.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b2ecc12999994e16e666b5e3ce171969a5fb4ed49909e53990c44b9b7c09f684.png" ], "iris.tests.test_plot.Test1dScatter.test_coord_coord_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bea07c99c15eb16e9891ce50c742394a3ced6cb13390f1cc73c29f1b2d0ecd66.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bea07c99c15eb16e9891ce50c742394a3ced6cb13390f1cc73c29f1b2d0ecd66.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bea06899c14eb16e9895ce46c74a396a74ed64b13390b3c61b439f1b4d2ccde6.png" ], "iris.tests.test_plot.Test1dScatter.test_coord_cube.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/af7e1f0ff1e1e0f0d918960e6c076d8bd266d868c537365a90966db0de0e1b09.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ae7e1f0ff1e1e0f0d918960e6c076d83d266d868c537365ad0966db0de4e1b09.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ae7e1f0ff1e1e0f0d918960e6c076d83d266d868c537365ad0966db0de4e1b09.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be812fc1c078c03e930e3627672369c1d8d85c5b96463662e1fc699d9b9f7e03.png" ], "iris.tests.test_plot.Test1dScatter.test_cube_coord.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/edf896d79a67b94c651ced23d29392cccd646d33901912fcc4836d69ed249292.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/edf896d79a67b94c651ced23d29392cccd646d33901912fcc4836d69ed249292.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/edda96cb9a256b4765c26d9892dbc665693a1a9494b796c86c4b37ad92864c32.png" ], "iris.tests.test_plot.Test1dScatter.test_cube_cube.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/acf939339a16c64de306318638673c738c19d71cf3866186d8636e69bd191b9e.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/acf939339a16c64de306318638673c738c19d71cf3866186d8636e69bd191b9e.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/edb23c529649c78de38773e538650c729e92279be12de1edc4f246b2139c3b01.png" ], "iris.tests.test_plot.TestAttributePositive.test_1d_positive_down.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/87fef8117980c7c160078f1ffc049e7e90159a7a95419a7e910dcf1ece19ce3a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/87fef8117980c7c160078f1ffc049e7e90159a7a95419a7e910dcf1ece19ce3a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a7fe781b708487c360079e3bb4789869816bdb64c76b4a3cce7b4e749a6130c5.png" ], "iris.tests.test_plot.TestAttributePositive.test_1d_positive_up.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/87ff85d47800bd9f660779d0863f49c9947f4e1e9141de38d700da28ce1d9a2b.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/87ff85d47a00bc9f660779d8863f49c9907f4e1e9141de38d708da28ce1d9a0b.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/87ff85d47a00bc9f660779d8863f49c9907f4e1e9141de38d708da28ce1d9a0b.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a7ff958b7a00b09c661761c9907fcb0d9163ce7895289a618f381bffccf97200.png" ], "iris.tests.test_plot.TestAttributePositive.test_2d_positive_down.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fb946ba684e194fb901b3a0587641ad03b1ae7674e64c15a5b99c767c47e3a98.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fb946ba684e194fb901b3a0587641ad03b1ae7674e64c15a5b99c767c47e3a98.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fb946ba484e194dbc01f3665c0e4399a3f0fc2653f90c99e3f613e64c81e3f81.png" ], "iris.tests.test_plot.TestAttributePositive.test_2d_positive_up.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ee176c7f93e093a0c50f9383815e6e156859e17e6e15e17a9be08e2d851a9b83.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ee176c7f93e093a0c50f9383815e6e156859e17e6e15e17a9be08e2d851a9b83.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ebc06be1941e941ec07f941f907f6fa0950fc07e6f80c07f6b806be1c07f3f80.png" ], "iris.tests.test_plot.TestContour.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/cff8a55f7a15b55a7817854ad007a5e8c04f3ce8c04f3e2ac4706ab295b37a96.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/cff8a55f7a15b55a7817854ad007a5e8c04f3ce8c04f3e2ac4706ab295b37a96.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eaece0173d17951fbd03974a914964e8c04a72e8c1531ee1cc746bb293973ecd.png" ], "iris.tests.test_plot.TestContour.test_ty.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8bfc815e78018597fc019b65b425d121955e7eda854b7d6a80db7eb481b72b61.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfc815e78018597fc019b65b425d121955e7eda854b7d6a80db7eb481b72b61.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ebfa8553fc01b15ab4044a269546caa5956b7e9bc0b97f2cc2d62d360b363b49.png" ], "iris.tests.test_plot.TestContour.test_tz.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe81ff780185fff800955ad4027e00d517d400855f7e0085ff7e8085ff6aed.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe81ff780085fff800855fd4027e00d517d400855f7e0085ff7e8085ff6aed.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe81ff780085fff800855fd4027e00d517d400855f7e0085ff7e8085ff6aed.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe817ffc00855ef0007e81d4027e80815fd56a03ff7a8085ff3aa883ff6aa5.png" ], "iris.tests.test_plot.TestContour.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa56c3cc34e891b1c9a91c36c5a170e3c71b3e5993a784e492c49b4ecec76393.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa56c3cc34e891b1c9a91c36c5a170e3c71b3e5993a784e492c49b4ecec76393.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e36cb95b199999765cd3694b06478c7396329958434c2cecb6c6d69ce1b92.png" ], "iris.tests.test_plot.TestContour.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe857f7a01a56afa05854ad015bd00d015d50a90577e80857f7ea0857f7abf.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe857f7a01a56afa05854ad015bd00d015d50a90577e80857f7ea0857f7abf.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/affe815ffc008554f8007e01d0027e808557d5ea815f7ea0817f2fea817d2aff.png" ], "iris.tests.test_plot.TestContour.test_zy.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8bff81ff7a0195fcf8019578d4027e00d550d402857c7e0185fe7a8385fe6aaf.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8bff81ff7a0195fcf8019578d4027e00d550d402857c7e0185fe7a8385fe6aaf.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/abff857ff8018578f8017a80d4027e00855ec42a81fe7a8185fe6a8f85fe6ab7.png" ], "iris.tests.test_plot.TestContourf.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/faa562ed68569d52857abd12953a8f12951f64e0d30f3ac96a4d6a696ee06a32.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/faa562ed68569d52857abd12953a8f12951f64e0d30f3ac96a4d6a696ee06a32.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea857a81957ac57e957a857a957a958ac5723b0d6ac56b833e856e606a923e90.png" ], "iris.tests.test_plot.TestContourf.test_ty.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/eaa5e03f957a4f80954a9e41e16e9c60970fb5b24ada634e6e93692d4ba562d8.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eaa5e03f957a4f80954a9e41e16e9c60970fb5b24ada634e6e93692d4ba562d8.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea851f00957ac0f7957ac07f957a628d815e7b126ab13e816a953ae46a859ed3.png" ], "iris.tests.test_plot.TestContourf.test_tz.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e954a7a81857e957e857efc00857e7e007a85c02a7e859f287a85c1fe.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e954a7a81857e957e857efc00857e7e007a85c02a7e859f287a85c1fe.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7a81857e7a81857e7a81857e7a806a85857a7a85857e7a85817e.png" ], "iris.tests.test_plot.TestContourf.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e95a6938b6b5969193901a4fc1e594a7c69999cbce33639879526e72330e65e4.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e95a6938b6b5969193901a4fc1e594a7c69999cbce33639879526e72330e65e4.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e97a3c7e968597b19685c9c696a7c79491c16e59691a387f6978396e68683184.png" ], "iris.tests.test_plot.TestContourf.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa85857ec45a7a81857e854a857ee56a917ec56a3a85c56a3a85c4ea7a8112fe.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa85857ec45a7a81857e854a857ee56a917ec56a3a85c56a3a85c4ea7a8112fe.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81817e857e7a81857a7a81957a6e81917a6caa3a85c57a3a8585fa6a8591fe.png" ], "iris.tests.test_plot.TestContourf.test_zy.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81817ec40a7a81857e957e857ef40a857ef60b7a81c40a7b81e60f7a814aff.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81817ec40a7a81857e957e857ef40a857ef60b7a81c40a7b81e60f7a814aff.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81817e857e7a81857e7a81817a7e81817a668f7a91857e7a81857e7a85817e.png" ], "iris.tests.test_plot.TestHybridHeight.test_bounds.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/eab5313f954a7b9260f39789c5ec4cd084d0c4e45aa1c5fe3a04797bb13b3b06.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eab5313f954a7b9260f39789c5ec4cd084d0c4e45aa1c5fe3a04797bb13b3b06.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ee856aa5957a955ac0bf954bc17e3b819548c07f3e81c07e2ec46ea4c07f3e84.png" ], "iris.tests.test_plot.TestHybridHeight.test_bounds.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be853f80854ac17ec0bdc2f5c17a0d09cc1fc07f5ab5e1fe3f409d7a38743e00.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be853f80854ac17ec0bdc2f5c17a0d09cc1fc07f5ab5e1fe3f409d7a38743e00.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bf813e85c07ec57ec17e9073c07e3f81856ec17a3f80c0fe3e813f84c2733e80.png" ], "iris.tests.test_plot.TestHybridHeight.test_bounds.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/eab5313f954a7b9260f39789c5ec4cd084d0c4e45aa1c5fe3a04797bb13b3b06.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/eab5313f954a7b9260f39789c5ec4cd084d0c4e45aa1c5fe3a04797bb13b3b06.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ee856aa5957a955ac0bf954bc17e3b819548c07f3e81c07e2ec46ea4c07f3e84.png" ], "iris.tests.test_plot.TestHybridHeight.test_orography.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa17291f95e895e8645e7a95c17a6eece4b4e1333b01c07e1bb13909914b9ec1.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa17291f95e895e8645e7a91c17a6ee464f4e1333b01c17e1bb1390d914b9ec1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa17291f95e895e8645e7a91c17a6ee464f4e1333b01c17e1bb1390d914b9ec1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a91957a857ac4fe268cc07f6e846e05d9373b81d17b1b6a1b41c4fa2cc4.png" ], "iris.tests.test_plot.TestHybridHeight.test_orography.1": [ "https://scitools.github.io/test-iris-imagehash/images/v4/bb07314fc4e0c6b4c31e9ee1847939a1c116c15e7b94e57e1ea9391de16e1ac3.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/bb07314fc6e1c6b4c31e9ee1846939a1c116c15e7b14e17e1ea9393de16e1ac3.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bb07314fc6e1c6b4c31e9ee1846939a1c116c15e7b14e17e1ea9393de16e1ac3.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/af0b690f96f0d2d4c25e94a194ad3da19a52c25e3f02c07f3fa52d03c16a3fcb.png" ], "iris.tests.test_plot.TestHybridHeight.test_points.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea953bfb956ac4f4649f1a05c56e6ca45a53945e6ea5c13f1b498542c13f1b41.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea953bfb956ac4f4649f1a05c56e6ca45a53945e6ea5c13f1b498542c13f1b41.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe857b91917a847ec0bd3f01c47e6ca43b11915a3ea4db3b1b4a84c4c03f3fc1.png" ], "iris.tests.test_plot.TestHybridHeight.test_points.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be813fc0c15ac13dc1bfc27dc17e1d93c51fc43f1ea1c17a3ec138e4b1721a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be813fc0c15ac13dc1bfc27dc17e1d93c51fc43f1ea1c17a3ec138e4b1721a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be813a81c17ec57ec17e952ac07f3f808556c17e3f80c07f3e813f80c27e3f81.png" ], "iris.tests.test_plot.TestHybridHeight.test_points.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea9561ef956a7b92609b922dc16e6ec6845ac47e5aa5c57e5ec04861957b1b81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea9561ef956a7b92609b922dc16e6ec6845ac47e5aa5c57e5ec04861957b1b81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe856a85957a955ac03f956ac17f3f809552c07f3e81c07e3e806e85c07e3f84.png" ], "iris.tests.test_plot.TestHybridHeight.test_points.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea953bfb956ac4f4649f1a05c56e6ca45a53945e6ea5c13f1b498542c13f1b41.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea953bfb956ac4f4649f1a05c56e6ca45a53945e6ea5c13f1b498542c13f1b41.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe857b91917a847ec0bd3f01c47e6ca43b11915a3ea4db3b1b4a84c4c03f3fc1.png" ], "iris.tests.test_plot.TestHybridHeight.test_points.4": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/baf5347ecf0ac3f1c1f68f83850b1f83cc11c0fc7ad0c17a1be138e4b07e1a0d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/baf5347ecf0ac3f1c1f68f83850b1f83cc11c0fc7ad0c17a1be138e4b07e1a0d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b878387e978ec2f0c0f09f83878f3f81c070c0fe78d0c1763fa13856d03e3f0f.png" ], "iris.tests.test_plot.TestMissingCS.test_missing_cs.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fac16ee0953b911bc15e9648e56ec4e691be7bcc7a8184733ea16a90c17e930d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fac16ee0953b911bc15e9648e56ec4e691be7bcc7a8184733ea16a90c17e930d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa816ac1857e853cc17f957ac15f3e849486c8f43e81c13b3f813e91c07e3f46.png" ], "iris.tests.test_plot.TestMissingCoord.test_no_u.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe816a95c17fb51e953e9485857a1f409552856a1f81c17e5ab94e15c0ff5a85.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe816a95c17fb51e953e9485857a1f409552856a1f81c17e5ab94e15c0ff5a85.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a95955a954ac17f954ac07e3f48951ec07e3e81c0ff7ea16a81c0bf3e81.png" ], "iris.tests.test_plot.TestMissingCoord.test_no_u.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/be0e695ac3f096b5943fd2a185fc1e8590e594ee1e05c17a4f403d0fe1fe4b42.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/be0e695ac3f096b5943fd2a185fc1e8590e594ee1e05c17a4f403d0fe1fe4b42.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea956ab5954a954ac17f954a817e3f40950ac07f3e81c0ff7a856aa1c0ff3f80.png" ], "iris.tests.test_plot.TestMissingCoord.test_no_v.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b6c0773d09956a955a857a1d88845ec57e3f81c07e4ae56b21d0ff5a85.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b6c0773d09956a955a857a1d88845ec57e3f81c07e4ae56b21d0ff5a85.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa816a85957a857ac17e954ac17e1fa2950bc07e3e81c07f3e807a85c17f3f81.png" ], "iris.tests.test_plot.TestMissingCoord.test_no_v.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa9562d4c7c43d0bb57b97e0857a3f1995d284763a05c17a7b856a2dc0f45a84.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa9562d4c7c43d0bb57b97e0857a3f1995d284763a05c17a7b856a2dc0f45a84.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa856a85957a857ac17e954ac17e9d02954ac07e3e81c07f3e857a85c2fd3f80.png" ], "iris.tests.test_plot.TestMissingCoord.test_none.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b6c0763d09b54a955a857a3f88845ec57a3e85c07e6a616b25d0ff7a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b6c0763d09b54a955a857a3f88845ec57a3e85c07e6a616b25d0ff7a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa816a85957a857ac17e954ac17e3fa29506c07e3e81c07f3e807a84c1ff3f81.png" ], "iris.tests.test_plot.TestMissingCoord.test_none.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562f6c0773d09b54a955a857a3f81955ac47e3e85c17e7aa16a25c0765aa1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562f6c0773d09b54a955a857a3f81955ac47e3e85c17e7aa16a25c0765aa1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa856a85957a957ac17e954ac17a1f06954ac07e3e81c07f3e817a85c0ff3f80.png" ], "iris.tests.test_plot.TestPcolor.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85e67c9c7e1391e97a596b03a3696a13c4f63066318695ec5c9695e6c49c6a5.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e67c9c7e1391e97a596b03a3696a13c4f63066318695ec5c9695e6c49c6a5.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea817a81957e857e957e953e957e857e857e6aa06a816ac16a017a816a9585fa.png" ], "iris.tests.test_plot.TestPcolor.test_ty.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b3878958b38f8c7236a557a542c7868d54b877875978abc789722.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b387895ab38f8c7236a557a542c7868d54b05787197eab478972a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b387895ab38f8c7236a557a542c7868d54b05787197eab478972a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea953f83954ac2bc956ac07e956a3509c0de61796ab57a816a856ad16ab590fb.png" ], "iris.tests.test_plot.TestPcolor.test_tz.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e874978b978b6875978b6875978b7854950b78506855787468747ea2687597aa.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e874978b978b6875978b6875978b7854950b78506855787468747ea2687597aa.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857a7a84857a7a85857e7a813a2f7a817a85857a7a85857a7a85857a.png" ], "iris.tests.test_plot.TestPcolor.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e95e696994b196b793b19a1ec3c191c5c6e596191e4e693269336c36391a6e3a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e95e696994b196b793b19a1ec3c191c5c6e596191e4e693269336c36391a6e3a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e97a387e968596319697c3c19284a62c93a560c36933393a6c7e793b6c6b31cd.png" ], "iris.tests.test_plot.TestPcolor.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85e87a197a1695a97a1695a97a17d5a97a17906785a7816685a7e86685ad687.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e87a197a1695a97a1695a97a17d5a97a17906785a7816685a7e86685ad687.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857a7e01857e7a81857e7a81e8177a816a8585fa7a85857e7a81857e.png" ], "iris.tests.test_plot.TestPcolor.test_zy.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/af42c0bdd0ad2f52d0bd3f42d0bd7f02d0bd7f003d527f002f427ea82f42d6a8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/af42c0bdd0ad2f52d0ad2b52d0bd7f02d0bd7f002d527f002f527e0d2f52d4ad.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/af42c0bdd0ad2f52d0ad2b52d0bd7f02d0bd7f002d527f002f527e0d2f52d4ad.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e80857e7a81857e7a812d557a817a85857e7a81857e7a80857e.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa1594f3858a670c94e37b1cccb13e736a1d8cf17a1f94e2c119938e9463678c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa1594f3858a670c94e37b1cccb13e736a1d8cf17a1f94e2c119938e9463678c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea858782957a703f957a3878957a7a65957a6bc06ae76f806ad50fd06a859c50.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_ty.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ad5e94a5c3b0c3f096a5695a96a53c0f711b3c0f7d1b97b46943c3e0cc416b5a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ad5e94a5c3b0c3f096a5695a96a53c0f711b3c0f7d1b97b46943c3e0cc416b5a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea85857a857e7e81957a7a81957a6a85857acac6c1fb6aa67a81956e6a81b506.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_tz.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a95e3c1f96a096a5d6a5eb40c3f0ebe0c1c0c3f07c0b3e3e96a13c1e6d5b694a.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a95e381f96a096a5d6a5eb40c3f0ebf0c1e0c3f07c0a3e3e96a13c1e6d5b694a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a95e381f96a096a5d6a5eb40c3f0ebf0c1e0c3f07c0a3e3e96a13c1e6d5b694a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817e81857e857a857e7a81857e6a85817b81e63a913e857e81c17e7a81956e.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bc7a1c32d3c366cdc585c39986cdc79ec792e3a6960d584939793c3438743873.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bc7a1c32d3c366cdc585c39986cdc79ec792e3a6960d584939793c3438743873.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e96ac78796953c4c9685383996c538e69692637263696b49693ac796693ac71b.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea1f781f95e085e885e0954295e195ea95a085e87a153e7f95e06a1778557a1f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea1f781f95e085e885e0954295e195ea95a085e87a153e7f95e06a1778557a1f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a81857e857e857e7a81857e6a81c17f95786aa77a807e81c17c7e819558.png" ], "iris.tests.test_plot.TestPcolorNoBounds.test_zy.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ba173a1795e895e8c5e8f400c1f8c1f895a8c5e87a077a5ec5e83e173e177e02.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ba173a1795e895e8c5e8f400c1f8c1f895a8c5e87a077a5ec5e83e173e177e02.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a80857e857e857e7a81817e3e81817e857f6aa07a857e80c17f7e80c15f.png" ], "iris.tests.test_plot.TestPcolormesh.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85e67c9c7e1391e97a596b03a3696a13c4fe3026318695ec5c9695e6c49c6a5.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e67c9c7e1391e97a596b03a3696a13c4fe3026318695ec5c9695e6c49c6a5.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea817a81957e857e957e953e957e857e857e6aa06a816ac16a017a816a9585fa.png" ], "iris.tests.test_plot.TestPcolormesh.test_ty.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b3878958b38f8c7236a557a542c7868d54b877875978abc789722.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b387895ab38f8c7236a557a542c7868d54b05787197eabc789722.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea74c707958b387895ab38f8c7236a557a542c7868d54b05787197eabc789722.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea953f83954ac2fc956ac07e956a3509c0de61796ab57a816a854ad16ab590fb.png" ], "iris.tests.test_plot.TestPcolormesh.test_tz.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e874978b978b6875978b6875978b7854950b78506855787468747ea2687597aa.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e874978b978b6875978b6875978b7854950b78506855787468747ea2687597aa.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857a7a84857a7a85857e7a813a2f7a817a85857a7a85857a7a85857a.png" ], "iris.tests.test_plot.TestPcolormesh.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e95e696994b196b593b19a1ec3c591c5c6e596191e4e693269336c36391a6e3a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e95e696994b196b593b19a1ec3c591c5c6e596191e4e693269336c36391a6e3a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e9693878969696139296c38f9bcc3474692169cb6c7339393c6cc387c78796cc.png" ], "iris.tests.test_plot.TestPcolormesh.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85e87a197a1695a97a16d5a97a17d5a97a17806785a7816685a7e86685ad687.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e87a197a1695a97a16d5a97a17d5a97a17806785a7816685a7e86685ad687.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e6e05857e7a81857e7a81a0577a816a8585fa7a85857e7a81857e.png" ], "iris.tests.test_plot.TestPcolormesh.test_zy.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/af42c0bdd0ad2f52d0bd3f42d0bd7f02d0bd7f002d527f002f427fa82f42d6a8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/af4280bdd0ad2f52d0ad2b52d0bd7f02d0bd7f002d527f002f527f0d2f52d4ad.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/af4280bdd0ad2f52d0ad2b52d0bd7f02d0bd7f002d527f002f527f0d2f52d4ad.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e80857e7a81857e7a8129577a817a85857e7a81857e7a80857e.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_tx.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa1594f3858a670c94e37b1cccb13e736a1d84f17a1d94e2c11d938e9463678e.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa1594f3858a670c94e37b1cccb13e736a1d8cf17a1d94e2c11993ae9463678c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa1594f3858a670c94e37b1cccb13e736a1d8cf17a1d94e2c11993ae9463678c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea858782957a703f957a3878957a7a65957e6bc06ae56f806ad50fd06a859c50.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_ty.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ad5e94a5c3b0c3f096a1695a96a53c1f711b3c0f791b97b46943c3e06c436b5a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ad5e94a5c3b0c3f096a1695a96a53c1f711b3c0f791b97b46943c3e06c436b5a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea85857a857e7e81957a7a81957a6a85857acae6c1fb6aa47a81956e6a81b506.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_tz.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/a95e3c1f96a096a5d6a56b40c3f06be2c1c0c3f07c0b3ebe96a13c1e6d5b694a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a95e3c1f96a096a5d6a56b40c3f06be2c1c0c3f07c0b3ebe96a13c1e6d5b694a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa813e81857e857a857e7a81857e6a85817b00e63eb93e857e81c17e7a81956e.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bc7a1c32d3c366cdc785c39986cdc78ec792e7a6960d584939793c3438703873.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bc7a1c32d3c366cdc785c39986cdc78ec792e7a6960d584939793c3438703873.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e129c7169ed638ec9ed6387196c761c665396724612dcf0d693896929ed698c9.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea1f781f95e085e895e0fd4295e095ea95a085e87a153e7e95e06a1778157a17.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea1f781f95e085e895e0fd4295e095ea95a085e87a153e7e95e06a1778157a17.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a85857a857e857e7a81857e7a81817f95506aaf7a807e81c17c7a81957a.png" ], "iris.tests.test_plot.TestPcolormeshNoBounds.test_zy.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ba176a1795e895e8c5e87c00c1f8c1f894a8c5e87a077adec5e83e173e177a06.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ba176a1795e895e8c5e87c00c1f8c1f894a8c5e87a077adec5e83e173e177a06.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa817a80857a857e857e7a81857e3e81817e2fc56aa07a857e80c17f7e80c17f.png" ], "iris.tests.test_plot.TestPlot.test_t.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83fe955f6a05e5137305d9c4f443127195187e9cd5467fa3d4917b68fc007a1a.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe95027e05e7007305d9c4a447127f853f069f814f2fa7d4d12b6cfc007e5a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe95027e05e7007305d9c4a447127f853f069f814f2fa7d4d12b6cfc007e5a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe9c1a7e05e718f305d9d2e46312718138049e824e2fa783db2bed76b4fe00.png" ], "iris.tests.test_plot.TestPlot.test_t_dates.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/abffd5ae2a15cdb6b10178d7d4082e57d7290906f685814277b1dc88724cfd26.png", "https://scitools.github.io/test-iris-imagehash/images/v4/abffd5ae2a15c9b6a10178d7d4082c57d7290906f6c58942f7b1dc88724cfd26.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/abffd4a02a01cc84f10078d7d4082c77d73909ded6ef816273bd9c98725cdd26.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/abffd4a02a01cc84f10078d7d4082c77d73909ded6ef816273bd9c98725cdd26.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/87fc9d8a7e054d83f5067bc1c1423471927ba73c8d9f864e09a1a7b358c8276f.png" ], "iris.tests.test_plot.TestPlot.test_x.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe95297e87c74a6a059158f89c3d6ed0536597c0387836d0f87866d0697097.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe95297e87c74a6a059158f89c3d6ed0536597c0387836d0f87866d0697097.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8bfe956b7c01c2f26300929dfc1e3c6690736f91817e3b0c84be6be5d1603ed1.png" ], "iris.tests.test_plot.TestPlot.test_y.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8fe896266f068d873b83cb71e435725cd07c607ad07e70fcd0007a7881fe7ab8.png", "https://scitools.github.io/test-iris-imagehash/images/v4/8fe896066f068d873b83cb71e435725cd07c607ad07c70fcd0007af881fe7bb8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8fe896366f0f8d93398bcb71e435f24ed074646ed07670acf010726d81f2798c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8fe896366f0f8d93398bcb71e435f24ed074646ed07670acf010726d81f2798c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aff8946c7a14c99fb193d263e42432d8d00c2d27944a3f8dc5223ef703ff6b90.png" ], "iris.tests.test_plot.TestPlot.test_z.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffac1547a0792546c179db7f1254f6d945b7392841678e895017e3e91c17a0f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffac1547a0792546c179db7f1254f6d945b7392841678e895017e3e91c17a0f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8ff8c1fa7a05b4ea6c059d2ff1494e4b90f26304846d78d1872a6cfc938b2e3e.png" + ], + "iris.tests.test_plot.TestPlotCitation.test.0": [ + "https://scitools.github.io/test-iris-imagehash/images/v4/abf895067a1d9506f811783585437abd85426ab995067af9f00687f96afe87c8.png" + ], + "iris.tests.test_plot.TestPlotCitation.test_axes.0": [ + "https://scitools.github.io/test-iris-imagehash/images/v4/abf895067a1d9506f811783585437abd85426ab995067af9f00687f96afe87c8.png" + ], + "iris.tests.test_plot.TestPlotCitation.test_figure.0": [ + "https://scitools.github.io/test-iris-imagehash/images/v4/abf895067a1d9506f811783585437abd85426ab995067af9f00687f96afe87c8.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_non_cube_coordinate.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e81857e7a81857e7a81857e7a818576c02a7e95856a7e81c17a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e7e81857e7a81857e7a81857e7a818576c02a7e95856a7e81c17a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81857e857e3e85857e7a81857e7a81857e7a817e81780b7a81c56a7a81857e.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe8142f5c17ebd2cc16eb548954a9542916a347a915e60bd4afd68793f916296.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe8142f5c17ebd2cc16eb548954a9542916a347a915e60bd4afd68793f916296.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea853f10956ac5e1957a854e957a203e955e6aa76ae17aa16a856aaf6ab19e12.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.1": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa8542b7b503b548857abd08857abd09945eed6b91d968c161b972d76aa462b5.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8542b7b503b548857abd08857abd09945eed6a91d96ac163b972d36aa462b5.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8542b7b503b548857abd08857abd09945eed6a91d96ac163b972d36aa462b5.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea853a85857a857a957a857a957ad05a857b3e946a606b917a816f647a853af4.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8bf88f457a03b5307e16b561f007b53ed067217ac1786afec0f570bf8178681a.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8bf98f057a03b5307e16b561f007b53ad067217ac1786afec0f570bf8178685a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8bf98f057a03b5307e16b561f007b53ad067217ac1786afec0f570bf8178685a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eafdcec9bc219530b696a56694c2852a95656b7b81986acdc0e516adad186eda.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe8f367e05952afe05a50b980ded4bd05d69c2c1fb71c1c06272f4d0a06af4.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffe8f367e05952afe05a50b980ded4bd05d69c2c1fb71c1c06272f4d0a06af4.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aff24ab7bd05952fbd0f950f914fcd48c47860f3e1b9329094266e345a850f6c.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/aa953d0f85fab50fd0f2956a7a1785fafa176877d00f68f1d02c60f2f008d0f0.png", "https://scitools.github.io/test-iris-imagehash/images/v4/ebeaa5419e94b5019e97950d685395bee05361fad05560fad01570fef001dabe.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ebeaa5419e95b5419e97950d6853953ee053617ad05560fad01570fef001dabe.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ebeaa5419e95b5419e97950d6853953ee053617ad05560fad01570fef001dabe.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ebfaa56f96a1856cd681a56ee8162d52e8467e12c50c7e8095ad7e0095ad03ff.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_tx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ebfaaf439e87b5019687b5019687b56ac05561fae07103fe6079687a607178f8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ebfa2d4b968795059e87970f6854697ae055697ac08561fad041d7aef001d6ae.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ebfa2d4b968795059e87970f6854697ae055697ac08561fad041d7aef001d6ae.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eb7a3e0c978187a4950190bc6856687a607e687bc0fcc1e394acfc0197fc2bfb.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_x.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/aeb8b5095a87cd60386592d9ec97ad6dd23ca4f6d0797827f0096216c1f878e6.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/aeb8b5095a87cd60386592d9ec97ad6dd23ca4f6d0797827f0096216c1f878e6.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/affa950ddb13c03634359ad8a4c80f26911f26f3c06e0ff3f4007b4285fd6e72.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_y.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8fea97194f07c9c830d79169ce16269f91097af6c47861f6d0796076d0797a16.png", "https://scitools.github.io/test-iris-imagehash/images/v4/8fee970b4f07c9c930d79129ce16269f91097af6c4f861f4d0786076d0797a16.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/afea97094f07c9c870d79129ce16269f91096af6c4f861f6c07960f6d0797a16.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/afea97094f07c9c870d79129ce16269f91096af6c4f861f6c07960f6d0797a16.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/afee9632de05c9d9f180d168c454a53e931b3e84956a3b8c85d94ce703ff7284.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea85603f956a9741951e9d83c1fa8d2fd0a55af0d25f345ae5f062c72d68612d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea85603f956a9741951e9d83c1fa8d2fd0a55af0d25f345ae5f062c72d68612d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea853f00957ac07c957ac0be951a69f3c47c7a5f3a6127816b953e646b813761.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e85a69cc96ad92e193c9963385929e1cc3819acde6d965ce6e666b30386e65b1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a69cc96ad92e193c9963385929e1cc3819acde6d965ce6e666b30386e65b1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e97a346c9685cb899685c9c39695c79396ec634969ce2c74697a3864697b3c8c.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8ffcc65767039740bc069d9ad00b8dadd03f52f181dd347a847a62ff81e8626c.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8ffcc65777039740bc069d9ad00b8dadd03d52f181dd707a847a62ff81e8626c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8ffcc65777039740bc069d9ad00b8dadd03d52f181dd707a847a62ff81e8626c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ebffca44f502b36498309c9b940999add1bb62bba784374acc5a6a246acc6b65.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea5649c434ac92e5d9c9361b95b39c38c3835a5ec6d966ced34c633099ace5a5.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea5649c434ac92e5d9c9361b95b39c38c3835a5ec6d966ced34c633099ace5a5.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a6b6c96a597a591c9949b94b61b69c7926b5bccce66646b3869b831a52c26.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2dd2d09295c3c0c7d13c1bc6d23d2c696de0e53c3ac393daf6d205c2c4.png", "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2fd2d09295c3c0c7d13c1bc6d23d2c696ce0e53c3ac393dbf6d205c2c0.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2f92d09295c3d0c7d13c1bc6d23d2c696cf0e53c3ac2b3d9f6d201c2c4.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2f92d09295c3d0c7d13c1bc6d23d2c696cf0e53c3ac2b3d9f6d201c2c4.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e3e2f97a1c19996a1c8f26c1e360f684a3c2c6913dca497b9d38097a903ff.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e3e3f96a1c3e197a169f1785e3b0e68523e1c398bc58687b1d86096e1039f.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_yx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e9686d8c9696924797879e3b86929e58696d69cc6869659379626133398d9ccd.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e961658f961e92469e1e1c7966f36cd86165618c70e166b39b9698719e1e9ec8.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e961658f961e92469e1e1c7966f36cd86165618c70e166b39b9698719e1e9ec8.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e1a530e29e5ecf199a5acd8f64f1326161a530e265999cd29e52cf199a5e6669.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bf803f00c05fc4bfc07ec15dc05fd8bbc07cc96c333a32113bd02dd27ced3ec0.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bf803f00c05fc4bfc07ec15dc05fd8bbc07cc96c333a32113bd02dd27ced3ec0.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be813ea0c17ec55ac17ed23dc07e295ac57e3b653f803f813e816e853e81b542.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea95956a95626993941a6a2d956e6ed6845a6e65c4bec7b64a9594686ea19578.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea95956a95626993941a6a2d956e6ed6845a6e65c4bec7b64a9594686ea19578.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea85856e857e4893957a7aa1956a7b81954b3b817a856fd46a85846e6e85857e.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8fe82f047c018c83bc01bc5af01fd1bcd15a327c847860fdc57a69beb0be68bd.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8fe82f047c018c83bc01bc5af01fd1bcd15a32fd847860fdc57269beb0be689d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8fe82f047c018c83bc01bc5af01fd1bcd15a32fd847860fdc57269beb0be689d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/8bedcf25bc03a4929c103a5bf03fdbbc81cb364d86e46da70f86899b3a0f6cc0.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/cee8953a7a15856978579696d03d672cc49a6e5a842d3d2cc0b66bd1c2ea39f1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/cee8953a7a15856978579696d03d672cc49a6e5a842d3d2cc0b66bd1c2ea39f1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aee1f93a63168569b852d697913d632485ca2e43952d3bbcc2b66bd1426b3c71.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ee953f0591ea3f07914a95fa7e07d1fa68156a15d07c6a3dd038c0fef000d0fa.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ae953f0591ea3f07914a95fa7e07d1fa68156a15d07c6a7dd068c0fef000d0fa.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ae953f0591ea3f07914a95fa7e07d1fa68156a15d07c6a7dd068c0fef000d0fa.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bec11ab5c1be857ac13e7ae53c422d423e017a85b542fc00c1fefe0091fe03ff.png" ], "iris.tests.test_plot.TestPlotCoordinatesGiven.test_zx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e87a973d96a56953968769439685a54ae05117eae0511fba60513bba69717aba.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e87a952d96a56953968769439685a54ae85197eae0511fba60513bba69717aba.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e87a952d96a56953968769439685a54ae85197eae0511fba60513bba69717aba.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a96ac97a16c5897a1791e95a53b0b913c6953687c4ec3685cc6c36e7c87c3.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_coord_names.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b87830b0c786cf269ec766c99399cce998d3b3166f2530d3658c692d30ec6735.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_coord_names.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e9a53a59961ec5a62c691a587b9662e1c0e1e53e9e0e9b873ec15a7161bc642f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e9a53a59961ec5a62c691a587b9662e1c0e1e53e9e0e9b873ec15a7161bc642f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b8a53b59c71ac5a6b8791c1867876b63d9e0e65c96199d871cc23339633664ce.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_coords.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b87830b0c786cf269ec766c99399cce998d3b3166f2530d3658c692d30ec6735.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_coords.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e9a53a59961ec5a62c691a587b9662e1c0e1e53e9e0e9b873ec15a7161bc642f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e9a53a59961ec5a62c691a587b9662e1c0e1e53e9e0e9b873ec15a7161bc642f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b8a53b59c71ac5a6b8791c1867876b63d9e0e65c96199d871cc23339633664ce.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_default.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/f9789b388786678686966c9093879ce592c79bc94d19929b6939cf66316c672c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/b87830b0c786cf269ec766c99399cce998d3b3166f2530d3658c692d30ec6735.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_yx_order.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa81948e857e4971907ea72e95fa66b2952e4ead6d429b527ac7a5286e981836.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa81948e857e4971907ea72e95fa66b2952e4ead6d429b527ac7a5286e981836.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa85978e837e68f094d3673089626ad792073985659a9b1a7a15b52869f19f56.png" ], "iris.tests.test_plot.TestPlotDimAndAuxCoordsKwarg.test_yx_order.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea159694856a6b5096afa53a36941da1e4f5c369cd1ae6d69b6a1c80625af2f6.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea159694856a6b5096afa53a36941da1e4f5c369cd1ae6d69b6a1c80625af2f6.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea95969c874a63d39ca3ad2a231cdbc9c4973631cd6336c633182cbc61c3d3f2.png" ], "iris.tests.test_plot.TestPlotOtherCoordSystems.test_plot_tmerc.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e63399cd99cd64b29999335965369b262649c98c9b3966c6998d3319ccd69333.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e63399cd99cd64b29999335965369b262649c98c9b3966c6998d3319ccd69333.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e665326d999ecc9b3319b3246666cce69b496cccccc9669923193336666699a6.png" ], "iris.tests.test_plot.TestQuickplotPlot.test_t.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83ffb5d67fd4e5962211d9c6a443da77d5389c8ed346d923d011d968dc00da48.png", "https://scitools.github.io/test-iris-imagehash/images/v4/82ffb5d67fdde5962211d9c6a441da77d5389c8cd346d927d011d968dc00da48.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/82fabd867fd5e5822201d9c6a4539a77953d8cbf834f99e7d051996cdc00da48.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/82fabd867fd5e5822201d9c6a4539a77953d8cbf834f99e7d051996cdc00da48.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/83ffb59a7f00e59a2205d9d6e4619a74d9388c8e884e8da799d30b6dddb47e00.png" ], "iris.tests.test_plot.TestQuickplotPlot.test_t_dates.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffd5ae7f51efb6200378d7d4082c17d7280906d6e58962db31d800da6cdd26.png", "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffd4ae7f55efbe200178d7d4082c17d7280906d6e58962df319800da6cdd26.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffd4827f51ef94200078d7c4082c57d739095ed6ed8962db759808da6cdd26.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffd4827f51ef94200078d7c4082c57d739095ed6ed8962db759808da6cdd26.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/82fd958a7e006f9ba0077bc5c9462c759873dd3c8d8f826699a187b358c82f67.png" ], "iris.tests.test_plot.TestQuickplotPlot.test_x.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/83ffb5097e84c54a621799d8601d9966d213cd67c039d876d078d866d869d8f7.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/83ffbd097e84c54a621799d8601d9966d253cc27c039d876d078d866d869d8f7.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83ffbd097e84c54a621799d8601d9966d253cc27c039d876d078d866d869d8f7.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/82ff950b7f81c0d6620199bcfc5e986695734da1816e1b2c85be2b65d96276d1.png" ], "iris.tests.test_plot.TestQuickplotPlot.test_y.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a7ffb6067f008d87339bc973e435d86ef034c87ad07c586cd001da69897e5838.png", "https://scitools.github.io/test-iris-imagehash/images/v4/a7ffb6067f008d87339bc973e435d86ef034c87ad07cd86cd001da68897e58a8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a7efb6367f008d97338fc973e435d86ef030c86ed070d86cd030d86d89f0d82c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a7efb6367f008d97338fc973e435d86ef030c86ed070d86cd030d86d89f0d82c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a2fbb46e7f10c99f2013d863e46498dcd06c0d2798421fa5dd221e7789ff6f10.png" ], "iris.tests.test_plot.TestQuickplotPlot.test_z.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc1dc7e00b0dc66179d95f127cfc9d44959ba846658e891075a3e99415a2f.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/83ffc1dc7e00b0dc66179d95f127cfc9d44959ba846658e891075a3e99415a2f.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a3ffc1d87e00b49964179d28f16bce4b98724b268c6d58e1972e4874998b2e7e.png" ], "iris.tests.test_plot.TestSimple.test_bounds.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa9562fcc7c0b50bb53b9f8085727a157a95c0f67a85e07e0be08069e07d9fa0.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa9562fcc7c0b50bb53b9f8085727a157a95c0f67a85e07e0be08069e07d9fa0.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a85954a957ac17e954ac17a9c3e956ac07e3e81c07f3e857aa5c2753f80.png" ], "iris.tests.test_plot.TestSimple.test_points.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b7c2763d09956a955a855a1d88d45ec57a3f81c07e6ae16b21c0ff7a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b7c2763d09956a955a855a1d88d45ec57a3f81c07e6ae16b21c0ff7a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a85957a957ac17e954ac17e1ca2954ac07e3e81c07f3e807a85c1ff3f81.png" ], "iris.tests.test_plot.TestSymbols.test_cloud_cover.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e95a330c96a5ccf2695a330c96a5ccf2695a330c96b5ccf3694a330c96b5ccf3.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e95a330c96a5ccf2695a330c96a5ccf2695a330c96b5ccf3694a330c96b5ccf3.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eb52916494ad6e1b6b5291e494ad6e1b6b5291e494ad6e1b6b5291e494ad6e1b.png" ], "iris.tests.test_quickplot.TestLabels.test_alignment.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/fa95350f952ad2f0c1f66ac1c55a4af4e550a52b3e05905e1e419e6f937e3b21.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/fa95350f952ad3f0c1f66a81e55a4af4e550a52b3e05905e1e419e6f937e1b21.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa95350f952ad3f0c1f66a81e55a4af4e550a52b3e05905e1e419e6f937e1b21.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be8137f4954ac03fc0ff3e81d03f496a6d00b4af3ea0c07f6fa232c0db7f2d00.png" ], "iris.tests.test_quickplot.TestLabels.test_contour.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a3fd956a7a01a5ee321fc96666919b6ec15fdca593600d2586785a259dfa5a01.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a3fd956a7a01a5ee3217c9e66691996ec15fdca593680d2586785a259dfa5a01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a3fd956a7a01a5ee3217c9e66691996ec15fdca593680d2586785a259dfa5a01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a7fd95da7a01654a3217c962e4819a56c96f3c8593624da584da3b658db662db.png" ], "iris.tests.test_quickplot.TestLabels.test_contour.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/faa12bc1954ef43fc0bf9f02854a4ee48548c17a5ab5c17e7a0d7875a17e3a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/faa12bc1954ef43fc0bf9f02854a4ee48548c17a5ab5c17e7a0d7875a17e3a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bf802f85c17fc17fc07eb42ac07f3f929130c07e3f80c07f7aa02e85c07f3e81.png" ], "iris.tests.test_quickplot.TestLabels.test_contourf.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fe812f88957a955a857a9257c17f7aa5c03dc0bf5a85c07e7f402d40a57a3f01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fe812f88957a955a857a9257c17f7aa5c03dc0bf5a85c07e7f402d40a57a3f01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be816a95957a957ac0fe1e8bc07f7f806e01c07f3f80c07f3fa23f00c07f3d00.png" ], "iris.tests.test_quickplot.TestLabels.test_contourf.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/faa12bc1954ef43fc0bf9f02854a4ee48548c17a5ab5c17e7a0d7875a17e3a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/faa12bc1954ef43fc0bf9f02854a4ee48548c17a5ab5c17e7a0d7875a17e3a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bf802f85c17fc17fc07eb42ac07f3f929130c07e3f80c07f7aa02e85c07f3e81.png" ], "iris.tests.test_quickplot.TestLabels.test_contourf.2": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa852f81955ac532c0bf9e89c57edae69357e13f4ea0c05a3f8561a4935a3e01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa852f81955ac532c0bf9e89c57edae69357e13f4ea0c05a3f8561a4935a3e01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be816a95907ae508c17e955ac07f3fa0945bc07f3f80c07f3aa36f01c0ff3f80.png" ], "iris.tests.test_quickplot.TestLabels.test_contourf_nameless.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/faa52ec1955ac536c0bf9e09c57edae69357e13f4e80c0da2f81618493da3f01.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/faa52ec1955ac536c0bf9e09c57edae69357e13f4e80c0da2f81618493da3f01.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be816af5907ee508c17e955ac03f3f809419c07f3f80c07f3a8b6f81c0ff3f80.png" ], "iris.tests.test_quickplot.TestLabels.test_map.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4fcee19a6e9b64cb609925cd25.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4fcee19a6e9b64cb609925cd25.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a636c86a597a593c9b49b94b79969c396c95bccc69a64db30d9b039a52c26.png" ], "iris.tests.test_quickplot.TestLabels.test_map.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4ecef19a6e9b64cb609925cd25.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4ecef19a6e9b64cb609925cd25.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a636c86a597a593c9b49b94b79969c396c95bccc69a64db30d9b039a52c26.png" ], "iris.tests.test_quickplot.TestLabels.test_pcolor.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bb423d4e94a5c6b9c15adaadc1fb6a469c8de43a3e07904e5f016b57984e1ea1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bb423d4e94a5c6b9c15adaadc1fb6a469c8de43a3e07904e5f016b57984e1ea1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eea16affc05ab500956e974ac53f3d80925ac03f2f81c07e3fa12da1c2fe3f80.png" ], "iris.tests.test_quickplot.TestLabels.test_pcolormesh.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bb433d4e94a4c6b9c15adaadc1fb6a469c8de43a3e07904e5f016b57984e1ea1.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bb433d4e94a4c6b9c15adaadc1fb6a469c8de43a3e07904e5f016b57984e1ea1.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eea16affc05ab500956e974ac53f3d80925ac03f3f81c07e3fa12da1c27e3f80.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_non_cube_coordinate.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa816a85857a955ae17e957ec57e7a81855fc17e3a81c57e1a813a85c57a1a05.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa816a85857a955ae17e957ec57e7a81855fc17e3a81c57e1a813a85c57a1a05.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fe816a85857a957ac07f957ac07f3e80956ac07f3e80c07f3e813e85c07e3f80.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa856a95e15ab51a953e9485857a1f409552857e1fc1c07e5abd4a35e07f4aa5.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa856a95e15ab51a953e9485857a1f409552857e1fc1c07e5abd4a35e07f4aa5.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a95955a956ac17f950ac07e3f48951ac07f3f81c0ff3ea16aa1c0be3e81.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b7c2763d09956a955a855a1d88d45ec57a3f81c07e6ae16b21c0ff7a81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/fa8562b7c2763d09956a955a855a1d88d45ec57a3f81c07e6ae16b21c0ff7a81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a85957a957ac17e954ac17e1ca2954ac07e3e81c07f3e807a85c1ff3f81.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/8aff878b7f00953062179561f087953ad167997a80784a7fc1e5d86d9978485f.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/8aff878b7f80953860179561f087953ad167997a80784a7fc1e5d86d9978485b.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/8aff878b7f80953860179561f087953ad167997a80784a7fc1e5d86d9978485b.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eafdc6c9f720953030968d6795d28d6a95674b7b81304aedc9e51cad8d186c9a.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.3": [ "https://scitools.github.io/test-iris-imagehash/images/v4/82ff8db67f94952e76159d6bb01dcd629059c962c1fbd9c1c062da74d820ca74.png", "https://scitools.github.io/test-iris-imagehash/images/v4/82be8db67f95952e761d9d6bb01dcd628059c962c1fbd9e1c072da64d060ca74.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/82fe8db67f95952e76159d6bb01dcd629059c962c1fbd9e1c072da64d020ca74.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/82fe8db67f95952e76159d6bb01dcd629059c962c1fbd9e1c072da64d020ca74.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a2ff6a967f00952eb40d9d0f900fcd62c47069f3d1f93a909c266e34d8a56f68.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/aa97b70ff5f0970f20b2956a6a17957af805da71d06f5a75d02cd870d800d8f2.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e1faa549de9497090697971d60539f3ef171c87ac075487ad025d87ed801da3e.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e1faa549de9497090697971d60539f3ef171c87ac075487ad025d87ed801da3e.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eadab54fd7a1856d90819d6df8169962e946d862802ed8809ded7e809d2d03ff.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_tx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e8faad47f784bd0596859d03969f9962c05dc96ee07189fe6870c862687178f8.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a8fa2d4797859585b6959d07605f896ee051697ad061d9fad0619aaed801deae.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a8fa2d4797859585b6959d07605f896ee051697ad061d9fad0619aaed801deae.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aa5b3c0c978187a4b60199bc605f6976687e6873d07c99e390acdc0391fc2f7b.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_x.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a6ffb5097e84cde2224598d1649f8d6cd2388c76d0799867d009da76c9f8d866.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a6bfb5097f84cde2224599d1649f8d6cd2388c76d0799867d009da76c1f8d866.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a6bfb5097f84cde2224599d1649f8d6cd2388c76d0799867d009da76c1f8d866.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a6fbb50cfbd0c036203598dce4c88d26d32f8cf3886e1df3dc047b4289ec6e72.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_y.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a7ff978b7f00c9c830d7992166179e969509d866c478d964d079c876d869da26.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a7ff97837f00c9c830d79921661f9e9695099876c478d964c079c876d879da26.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a7ff97837f00c9c830d79921661f9e9695099876c478d964c079c876d879da26.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a2ffb6127f0dc9993085d960c6748d3e9b121ca49d6a1b048df34ce789ff7205.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a9ff16eb740954a9e05855a19a3c0fbc13e1ea5c07d5ad0cb58e45e3c35.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a9ff16eb740954a9e05855a19a3c0fbc13e1ea5c07d5ad0cb58e45e3c35.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/ea856a95957a957ac07e954ac17e3e87950bc07f3ea4c27d3e833ac1c1e03f80.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/e5a565b69e1a9a42917e1a19c17b3a619e59c47b3a25c53e3b8430e5c57a3e85.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e5a565b69e1a9a42917e1a19c17b3a619e59c47b3a25c53e3b8430e5c57a3e85.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e5a761a79a589e58c07d1e48c07c3f819e41c07f3d84c17e3fa62585c0fe3f83.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/afffe6d67700958636179d92e019992dd039daf5817d987a807a48e499684a6d.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/aeffe6d67780958636179d92e019892dd139daf5815d987a807a48e699684a6d.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/aeffe6d67780958636179d92e019892dd139daf5815d987a807a48e699684a6d.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/eaff6ad4f74ab16490109c9b942999add1b74bb785a41d4acd526a254acc6365.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.3": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4fcee19a6e9b64cb609925cd25.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea5e618434ac36e5c1c9369b95b39c38c3a39a4fcee19a6e9b64cb609925cd25.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85a636c86a597a593c9b49b94b79969c396c95bccc69a64db30d9b039a52c26.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2fd2d09295c2d1c3d33c1bc2d67d2c696ce0653c3ac2b1d976da05c2c4.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2fd2d09295c2d1c3d33c1bc2d27d2c696ce0e53c3ad2b1d976da01c2c4.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ad2f6d2fd2d09295c2d1c3d33c1bc2d27d2c696ce0e53c3ad2b1d976da01c2c4.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e3e2f97a1c19996a1c8f26d1e3a0f684a3c2c6913dc2497b9db8095e502ff.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e3c1f97a1c3e197a1c9f37c5e390668521e0c390bdd8685b1d86096e5279f.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_yx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e968658e969692c797879e3b86929e58696d49cd6869c9a37962c923990d9c6d.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e9e1658e961e92569e9e3c7966d36c586165698c70e1ce739b3698619e1e984c.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e9e1658e961e92569e9e3c7966d36c586165698c70e1ce739b3698619e1e984c.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e1a530e29e5ecf199a5acd8f64f1326161a538e665a198d29e52cb1d9a5e6669.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.0": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/bf813f80c156c05dc0fec29dc17f1a6dd05fc0ff1aa1c57e3b243b20375a1e81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/bf813f80c156c05dc0fec29dc17f1a6dd05fc0ff1aa1c57e3b243b20375a1e81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/be816a81d17ec57ac07e952ac07f3aa0955ec17e3f80c07f3f803f80c0bf3f81.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.1": [ - "https://scitools.github.io/test-iris-imagehash/images/v4/ea95629d956a996069939e9bc07f7aad856cc47e5e81857a1e254a35c1be1b81.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ea95629d956a996069939e9bc07f7aad856cc47e5e81857a1e254a35c1be1b81.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/fa816a85957a957ac03f957ac07f3ba1954ac07e3e81c07f3ea47a85c07e3e80.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.2": [ "https://scitools.github.io/test-iris-imagehash/images/v4/87ed2f867f008d8220179852f01fd9bed1789a6c847cc877c46ac972987ec8fd.png", "https://scitools.github.io/test-iris-imagehash/images/v4/87ed2f067f008d8220179852f01fd9bed1789a6c847cc877c468c9f6987ec8fd.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/87ed2f067f008d8220179c52f01fd9bed1789a6c847cc877c560c976987ec8fd.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/87ed2f067f008d8220179c52f01fd9bed1789a6c847cc877c560c976987ec8fd.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/a3eded05fe11a492b000985af07fdbb4d1e3366d8c644da79fa68993180f6ec1.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.3": [ "https://scitools.github.io/test-iris-imagehash/images/v4/a2f9b5ba7600a56962df9e96f01dc926c498cc46847f9d6cd0244bf19a6b19f1.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/a2f9b5ba7600856962df9e96f01dcd26c498cc46847f9d6cd0244bf19a6b1975.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/a2f9b5ba7600856962df9e96f01dcd26c498cc46847f9d6cd0244bf19a6b1975.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/aef9f93a770085e9205fd696d13c4b2485ca1a43952f1934daa66bd1ca6b3c71.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.4": [ "https://scitools.github.io/test-iris-imagehash/images/v4/ae953f87d5e82d86801f91ee6e1591fe7e117876c07d6877d068d878d800d07a.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/ae953f87d5e82d87801b91ee6e1599fe7e117874c07d6877d068d878d800d07a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/ae953f87d5e82d87801b91ee6e1599fe7e117874c07d6877d068d878d800d07a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/bec1329dc5be85dac01d58d73e419d423e41daa59822dc00c5fefe0091fe03ff.png" ], "iris.tests.test_quickplot.TestQuickplotCoordinatesGiven.test_zx.5": [ "https://scitools.github.io/test-iris-imagehash/images/v4/e87a952d96856943969f694696858d4ee0519d6ee07f9b6a78619b2a79711a2a.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/e87a952d96856943969f694696858d4ae0519d6ee07f996a78719b2a79711a3a.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/e87a952d96856943969f694696858d4ae0519d6ee07f996a78719b2a79711a3a.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/e85e96ac97a168d897a5791695a19927913c3953687ecce3687c86e3487cc6c3.png" ], "iris.tests.test_quickplot.TestTimeReferenceUnitsLabels.test_not_reference_time_units.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/82faa1977fdf89976200ddf6e000d9e7f75f9866d560dae4dc00d966dc005e20.png", "https://scitools.github.io/test-iris-imagehash/images/v4/82b8a1977fdf89876200dde6e000d9e7f77f9866d560dfe4dc00d966fc005e20.png", "https://scitools.github.io/test-iris-imagehash/images/v4/82f8a1977fdf89876200ddf6e000d9e7f77f9866d560dee4dc00d966dc005e20.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/82f8a1977fdf89876200dde6e000d9e7f77f9866d560dfe4dc00dd64dc005e20.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/82f8a1977fdf89876200dde6e000d9e7f77f9866d560dfe4dc00dd64dc005e20.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/82faa19e7f51898c6001dd86845fd9a2dd7f996281ee19f389ef03ffdc007e00.png" ], "iris.tests.test_quickplot.TestTimeReferenceUnitsLabels.test_reference_time_units.0": [ "https://scitools.github.io/test-iris-imagehash/images/v4/82fe81987fd777ffe0002addd4002805dda8de65dde9d4625bfddc209841de20.png", "https://scitools.github.io/test-iris-imagehash/images/v4/82fe81987fdf77ffe0002a9dd4002805ddaade65d9a9d5625bfddc209841de20.png", - "https://scitools.github.io/test-iris-imagehash/images/v4/82fe81987fdf77ffe0002addd4002805dd28df67d9a9d4625bfddc209841de20.png" + "https://scitools.github.io/test-iris-imagehash/images/v4/82fe81987fdf77ffe0002addd4002805dd28df67d9a9d4625bfddc209841de20.png", + "https://scitools.github.io/test-iris-imagehash/images/v4/82fa80997f547799a0037a00d52f0956ddaf9f7e98a1816e09f5d8260bfffe00.png" ] } \ No newline at end of file diff --git a/lib/iris/tests/results/integration/netcdf/TestSaveMultipleAuxFactories/hybrid_height_cubes.cml b/lib/iris/tests/results/integration/netcdf/TestSaveMultipleAuxFactories/hybrid_height_cubes.cml index 701f72f589..5bf9fa94a4 100644 --- a/lib/iris/tests/results/integration/netcdf/TestSaveMultipleAuxFactories/hybrid_height_cubes.cml +++ b/lib/iris/tests/results/integration/netcdf/TestSaveMultipleAuxFactories/hybrid_height_cubes.cml @@ -8,28 +8,28 @@ + [5661, 5714, 5767, 5820, 5873, 5926], + [5979, 6032, 6085, 6138, 6191, 6244], + [6297, 6350, 6403, 6456, 6509, 6562], + [6615, 6668, 6721, 6774, 6827, 6880]]]" shape="(4, 5, 6)" standard_name="altitude" units="Unit('m')" value_type="int64"> @@ -72,28 +72,28 @@ + [56223, 56753, 57283, 57813, 58343, 58873], + [59403, 59933, 60463, 60993, 61523, 62053], + [62583, 63113, 63643, 64173, 64703, 65233], + [65763, 66293, 66823, 67353, 67883, 68413]]]" shape="(4, 5, 6)" standard_name="altitude" units="Unit('m')" value_type="int64"> diff --git a/lib/iris/tests/results/merge/theta_two_times.cml b/lib/iris/tests/results/merge/theta_two_times.cml index a6161004d5..0dd396e337 100644 --- a/lib/iris/tests/results/merge/theta_two_times.cml +++ b/lib/iris/tests/results/merge/theta_two_times.cml @@ -9,387 +9,387 @@ + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + ..., + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0]]]" shape="(70, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -489,17 +489,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"> diff --git a/lib/iris/tests/results/netcdf/netcdf_lcc.cml b/lib/iris/tests/results/netcdf/netcdf_lcc.cml index 1bb93c6988..ace6c632d9 100644 --- a/lib/iris/tests/results/netcdf/netcdf_lcc.cml +++ b/lib/iris/tests/results/netcdf/netcdf_lcc.cml @@ -12,40 +12,40 @@ + ..., 47.5385017395, 47.5386810303, 47.538860321]]" shape="(60, 60)" standard_name="latitude" units="Unit('degrees')" value_type="float64" var_name="lat"/> + ..., 11.7454500198, 11.7587404251, 11.77202034]]" shape="(60, 60)" standard_name="longitude" units="Unit('degrees')" value_type="float64" var_name="lon"/> + -41.7297, -41.7297]]" shape="(192, 192)" standard_name="latitude" units="Unit('degrees')" value_type="float32" var_name="lat"/> + 45.5158, 45.9993]]" shape="(192, 192)" standard_name="longitude" units="Unit('degrees')" value_type="float32" var_name="lon"/> + 67.5437, 67.3271]]" shape="(95, 85)" standard_name="latitude" units="Unit('degrees')" value_type="float32" var_name="lat"/> + 57.0309, 57.9421]]" shape="(95, 85)" standard_name="longitude" units="Unit('degrees')" value_type="float32" var_name="lon"/> diff --git a/lib/iris/tests/results/netcdf/netcdf_rotated_xyt_precipitation.cml b/lib/iris/tests/results/netcdf/netcdf_rotated_xyt_precipitation.cml index ab60a3b7a2..36f3e31170 100644 --- a/lib/iris/tests/results/netcdf/netcdf_rotated_xyt_precipitation.cml +++ b/lib/iris/tests/results/netcdf/netcdf_rotated_xyt_precipitation.cml @@ -22,33 +22,33 @@ + 67.2542, 67.1424]]" shape="(190, 174)" standard_name="latitude" units="Unit('degrees')" value_type="float32" var_name="lat"/> + 58.7689, 59.214]]" shape="(190, 174)" standard_name="longitude" units="Unit('degrees')" value_type="float32" var_name="lon"/> + 476.751, 445.735], + [534.494, 574.562, 720.976, ..., 507.224, + 470.836, 518.705], + [727.317, 800.517, 595.591, ..., 465.849, + 476.977, 486.773], + ..., + [687.474, 753.275, 707.277, ..., 446.561, + 452.217, 488.646], + [567.94, 686.381, 848.409, ..., 461.055, + 455.619, 468.224], + [698.235, 812.745, 675.237, ..., 517.086, + 475.494, 508.362]]]" shape="(10, 83, 83)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -497,18 +497,18 @@ + 84.2878, 118.704]]" shape="(83, 83)" standard_name="surface_altitude" units="Unit('m')" value_type="float32" var_name="surface_altitude"> diff --git a/lib/iris/tests/results/netcdf/netcdf_save_load_ndim_auxiliary.cml b/lib/iris/tests/results/netcdf/netcdf_save_load_ndim_auxiliary.cml index e5e7850dda..6b25d9fb2d 100644 --- a/lib/iris/tests/results/netcdf/netcdf_save_load_ndim_auxiliary.cml +++ b/lib/iris/tests/results/netcdf/netcdf_save_load_ndim_auxiliary.cml @@ -22,33 +22,33 @@ + 67.2542, 67.1424]]" shape="(190, 174)" standard_name="latitude" units="Unit('degrees')" value_type="float32" var_name="lat"/> + 58.7689, 59.214]]" shape="(190, 174)" standard_name="longitude" units="Unit('degrees')" value_type="float32" var_name="lon"/> + 16.9649, 16.8182]]" shape="(160, 256)" standard_name="latitude" units="Unit('degrees')" value_type="float32" var_name="lat"/> + 10.449, 10.5996]]" shape="(160, 256)" standard_name="longitude" units="Unit('degrees')" value_type="float32" var_name="lon"/> + ..., 48.0579386958, 48.055666981, 48.0533563384]]" shape="(290, 180)" standard_name="latitude" units="Unit('degrees')" value_type="float64" var_name="lat"/> + ..., 1.85911871182, 1.92607194716, + 1.99301683617]]" shape="(290, 180)" standard_name="longitude" units="Unit('degrees')" value_type="float64" var_name="lon"/> + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + ..., + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0], + [40000.0, 40000.0, 40000.0, ..., 40000.0, + 40000.0, 40000.0]]]" shape="(70, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -484,17 +484,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + [5661, 5714, 5767, 5820, 5873, 5926], + [5979, 6032, 6085, 6138, 6191, 6244], + [6297, 6350, 6403, 6456, 6509, 6562], + [6615, 6668, 6721, 6774, 6827, 6880]]]" shape="(4, 5, 6)" standard_name="altitude" units="Unit('m')" value_type="int64"> diff --git a/lib/iris/tests/results/unit/analysis/cartography/project/TestAll/cube.cml b/lib/iris/tests/results/unit/analysis/cartography/project/TestAll/cube.cml index e8e480dab9..6c192a1006 100644 --- a/lib/iris/tests/results/unit/analysis/cartography/project/TestAll/cube.cml +++ b/lib/iris/tests/results/unit/analysis/cartography/project/TestAll/cube.cml @@ -10,23 +10,23 @@ + ..., 47.2804916021, 51.4709777887, + 42.1572752986]]" shape="(10, 10)" standard_name="latitude" units="Unit('degrees')" value_type="float64"> @@ -41,22 +41,22 @@ + ..., 14.270914103, -4.55555121054, + -17.7002310265]]" shape="(10, 10)" standard_name="longitude" units="Unit('degrees')" value_type="float64"> diff --git a/lib/iris/tests/results/unit/analysis/maths/add/TestBroadcasting/collapse_all_dims.cml b/lib/iris/tests/results/unit/analysis/maths/add/TestBroadcasting/collapse_all_dims.cml index 692923e361..c6e6271a63 100644 --- a/lib/iris/tests/results/unit/analysis/maths/add/TestBroadcasting/collapse_all_dims.cml +++ b/lib/iris/tests/results/unit/analysis/maths/add/TestBroadcasting/collapse_all_dims.cml @@ -93,17 +93,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> + 1220.0], + [3260.0, 3266.0, 3272.0, ..., 3368.0, 3374.0, + 3380.0], + [5420.0, 5426.0, 5432.0, ..., 5528.0, 5534.0, + 5540.0]]]" shape="(4, 3, 21)" standard_name="altitude" units="Unit('m')" value_type="float64"> @@ -51,14 +51,14 @@ + 8980, 8990, 9000, 9010, 9020, 9030, 9040, 9050, + 9060, 9070, 9080, 9090, 9100]]" shape="(3, 21)" standard_name="surface_altitude" units="Unit('m')" value_type="int64"/> diff --git a/lib/iris/tests/results/unit/cube/Cube/intersection__Metadata/metadata_wrapped.cml b/lib/iris/tests/results/unit/cube/Cube/intersection__Metadata/metadata_wrapped.cml index 7a03c27542..17eebb6ea4 100644 --- a/lib/iris/tests/results/unit/cube/Cube/intersection__Metadata/metadata_wrapped.cml +++ b/lib/iris/tests/results/unit/cube/Cube/intersection__Metadata/metadata_wrapped.cml @@ -4,31 +4,31 @@ + 140.0], + [4340.0, 4346.0, 4352.0, ..., 2288.0, 2294.0, + 2300.0], + [6500.0, 6506.0, 6512.0, ..., 4448.0, 4454.0, + 4460.0]]]" shape="(4, 3, 21)" standard_name="altitude" units="Unit('m')" value_type="float64"> @@ -50,14 +50,14 @@ + 10760, 10770, 10780, 10790, 7200, 7210, 7220, + 7230, 7240, 7250, 7260, 7270, 7280, 7290, 7300]]" shape="(3, 21)" standard_name="surface_altitude" units="Unit('m')" value_type="int64"/> diff --git a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.000128.1990.12.01.00.00.b.pp.txt b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.000128.1990.12.01.00.00.b.pp.txt index eab529b80c..cbe97ecc83 100644 --- a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.000128.1990.12.01.00.00.b.pp.txt +++ b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.000128.1990.12.01.00.00.b.pp.txt @@ -51,17 +51,11 @@ bdx: 3.75 bmdi: -1e+30 bmks: 1.0 - data: [[ 240.82592773 240.82592773 240.82592773 ..., 240.82592773 - 240.82592773 240.82592773] - [ 242.12207031 241.77215576 241.44598389 ..., 242.22338867 - 242.34320068 242.34771729] - [ 247.85180664 247.38049316 247.16583252 ..., 246.6003418 247.23925781 - 247.91339111] + data: [[ 240.82593 240.82593 240.82593 ..., 240.82593 240.82593 240.82593] + [ 242.12207 241.77216 241.44598 ..., 242.22339 242.3432 242.34772] + [ 247.8518 247.3805 247.16583 ..., 246.60034 247.23926 247.91339] ..., - [ 245.66558838 245.46948242 244.70819092 ..., 246.77563477 - 246.06317139 245.80212402] - [ 244.78546143 244.65252686 244.53283691 ..., 245.31152344 - 245.09912109 244.86914062] - [ 246.94824219 246.94824219 246.94824219 ..., 246.94824219 - 246.94824219 246.94824219]] + [ 245.66559 245.46948 244.70819 ..., 246.77563 246.06317 245.80212] + [ 244.78546 244.65253 244.53284 ..., 245.31152 245.09912 244.86914] + [ 246.94824 246.94824 246.94824 ..., 246.94824 246.94824 246.94824]] ] \ No newline at end of file diff --git a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.004224.1990.12.01.00.00.b.pp.txt b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.004224.1990.12.01.00.00.b.pp.txt index 55fe4b2f60..c31f1a94e0 100644 --- a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.004224.1990.12.01.00.00.b.pp.txt +++ b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.004224.1990.12.01.00.00.b.pp.txt @@ -51,17 +51,11 @@ bdx: 3.75 bmdi: -1e+30 bmks: 1.0 - data: [[ 240.82592773 240.82592773 240.82592773 ..., 240.82592773 - 240.82592773 240.82592773] - [ 242.12207031 241.77215576 241.44598389 ..., 242.22338867 - 242.34320068 242.34771729] - [ 247.85180664 247.38049316 247.16583252 ..., 246.6003418 247.23925781 - 247.91339111] + data: [[ 240.82593 240.82593 240.82593 ..., 240.82593 240.82593 240.82593] + [ 242.12207 241.77216 241.44598 ..., 242.22339 242.3432 242.34772] + [ 247.8518 247.3805 247.16583 ..., 246.60034 247.23926 247.91339] ..., - [ 245.66558838 245.46948242 244.70819092 ..., 246.77563477 - 246.06317139 245.80212402] - [ 244.78546143 244.65252686 244.53283691 ..., 245.31152344 - 245.09912109 244.86914062] - [ 246.94824219 246.94824219 246.94824219 ..., 246.94824219 - 246.94824219 246.94824219]] + [ 245.66559 245.46948 244.70819 ..., 246.77563 246.06317 245.80212] + [ 244.78546 244.65253 244.53284 ..., 245.31152 245.09912 244.86914] + [ 246.94824 246.94824 246.94824 ..., 246.94824 246.94824 246.94824]] ] \ No newline at end of file diff --git a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.008320.1990.12.01.00.00.b.pp.txt b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.008320.1990.12.01.00.00.b.pp.txt index 831187f987..c0ff6f8087 100644 --- a/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.008320.1990.12.01.00.00.b.pp.txt +++ b/lib/iris/tests/results/usecases/pp_to_cf_conversion/to_pp/000003000000.03.236.008320.1990.12.01.00.00.b.pp.txt @@ -51,17 +51,11 @@ bdx: 3.75 bmdi: -1e+30 bmks: 1.0 - data: [[ 241.99389648 241.99389648 241.99389648 ..., 241.99389648 - 241.99389648 241.99389648] - [ 243.81646729 243.47302246 243.14752197 ..., 243.89624023 - 244.00805664 244.03814697] - [ 249.7878418 249.33514404 249.13220215 ..., 248.4831543 249.08959961 - 249.80609131] + data: [[ 241.9939 241.9939 241.9939 ..., 241.9939 241.9939 241.9939 ] + [ 243.81647 243.47302 243.14752 ..., 243.89624 244.00806 244.03815] + [ 249.78784 249.33514 249.1322 ..., 248.48315 249.0896 249.80609] ..., - [ 248.08996582 247.90258789 247.17382812 ..., 249.07489014 - 248.41125488 248.19787598] - [ 246.16143799 246.0357666 245.93414307 ..., 246.71551514 246.487854 - 246.25048828] - [ 247.35028076 247.35028076 247.35028076 ..., 247.35028076 - 247.35028076 247.35028076]] + [ 248.08997 247.90259 247.17383 ..., 249.07489 248.41125 248.19788] + [ 246.16144 246.03577 245.93414 ..., 246.71552 246.48785 246.25049] + [ 247.35028 247.35028 247.35028 ..., 247.35028 247.35028 247.35028]] ] \ No newline at end of file diff --git a/lib/iris/tests/results/util/as_compatible_shape_collapsed.cml b/lib/iris/tests/results/util/as_compatible_shape_collapsed.cml index 13e2576d45..07eeb53157 100644 --- a/lib/iris/tests/results/util/as_compatible_shape_collapsed.cml +++ b/lib/iris/tests/results/util/as_compatible_shape_collapsed.cml @@ -7,65 +7,65 @@ + [[0.0, 42485.4], + [0.0, 42476.3], + [0.0, 42467.1], + ..., + [0.0, 42358.5], + [0.0, 42371.5], + [0.0, 42377.8]]]]" id="9041e969" points="[[[21245.7, 21247.7, 21244.9, ..., 21195.1, + 21197.7, 21201.0], + [21232.0, 21234.2, 21235.3, ..., 21196.8, + 21199.6, 21203.8], + [21218.7, 21219.1, 21220.5, ..., 21195.1, + 21199.1, 21202.9], + ..., + [21238.5, 21234.7, 21230.5, ..., 21179.6, + 21187.6, 21193.7], + [21239.5, 21234.8, 21230.2, ..., 21182.1, + 21189.7, 21193.9], + [21242.7, 21238.1, 21233.6, ..., 21179.2, + 21185.8, 21188.9]]]" shape="(1, 100, 100)" standard_name="altitude" units="Unit('m')" value_type="float32"> @@ -117,17 +117,17 @@ + 300.34]]" shape="(100, 100)" standard_name="surface_altitude" units="Unit('m')" value_type="float32"/> 85: - summary_insert = "..., " - else: - summary_insert = "" + + summary_insert = "" + summary_threshold = 85 + edge_items = 3 ffunc = str - return np.core.arrayprint._formatArray(arr, ffunc, len(arr.shape), - max_line_len=50, - next_line_prefix='\t\t', - separator=', ', edge_items=3, - summary_insert=summary_insert)[:-1] + formatArray = np.core.arrayprint._formatArray + max_line_len = 50 + legacy = '1.13' + if arr.size > summary_threshold: + summary_insert = '...' + options = np.get_printoptions() + options['legacy'] = legacy + np.set_printoptions(**options) + result = formatArray(arr, ffunc, max_line_len, + next_line_prefix='\t\t', separator=', ', + edge_items=edge_items, + summary_insert=summary_insert, + legacy=legacy) + + return result def new_axis(src_cube, scalar_coord=None): diff --git a/requirements/core.txt b/requirements/core.txt index 19b28f98fa..b3d3d5f39a 100644 --- a/requirements/core.txt +++ b/requirements/core.txt @@ -4,7 +4,7 @@ # Without these, iris won't even import. cartopy -matplotlib<1.9 +matplotlib netcdf4<1.4 numpy scipy